forked from NatLabRockies/SAM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobject.cpp
More file actions
312 lines (257 loc) · 6.54 KB
/
object.cpp
File metadata and controls
312 lines (257 loc) · 6.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/*
BSD 3-Clause License
Copyright (c) Alliance for Energy Innovation, LLC. See also https://github.com/NREL/SAM/blob/develop/LICENSE
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <wx/wfstream.h>
#include <wx/txtstrm.h>
#include <wx/datstrm.h>
#include <wx/tokenzr.h>
#include "object.h"
static ObjectCollection g_objectTypes;
void ObjectTypes::Register( Object *dummy )
{
if ( !dummy ) return;
ObjectCollection::iterator it = g_objectTypes.find( dummy->GetTypeName() );
if ( it != g_objectTypes.end() )
{
delete it->second;
it->second = dummy;
}
else
g_objectTypes[ dummy->GetTypeName() ] = dummy;
}
Object *ObjectTypes::Create( const wxString &type )
{
if ( Object *o = g_objectTypes.Lookup( type ) )
return o->Duplicate();
else
return 0;
}
wxArrayString ObjectTypes::AllTypes()
{
return g_objectTypes.GetNames();
}
ObjectCollection::ObjectCollection()
{
}
ObjectCollection::ObjectCollection( const ObjectCollection &rhs )
{
Copy( rhs );
}
ObjectCollection::~ObjectCollection()
{
for ( iterator it = begin();
it != end();
++it )
delete it->second;
}
void ObjectCollection::Copy( const ObjectCollection &rhs )
{
Clear();
for( ObjectCollection::const_iterator it = rhs.begin();
it != rhs.end();
++it )
Add( it->first, it->second->Duplicate() );
}
void ObjectCollection::Clear()
{
for ( iterator it = begin();
it != end();
++it )
delete it->second;
ObjectCollectionBase::clear();
}
void ObjectCollection::Add( const wxString &name, Object *obj )
{
iterator it = find( name );
if ( it != end() )
{
delete it->second;
it->second = obj;
}
else
(*this)[name] = obj;
}
bool ObjectCollection::Rename( const wxString &old_name, const wxString &new_name )
{
iterator it = find( old_name );
if ( it == end() || Lookup( new_name ) != 0 ) return false;
Object *obj = it->second;
erase( it );
(*this)[new_name] = obj;
return true;
}
bool ObjectCollection::Delete( const wxString &name )
{
iterator it = find( name );
if ( it != end() )
{
delete it->second;
erase( it );
return true;
}
return false;
}
Object *ObjectCollection::Lookup( const wxString &name )
{
iterator it = find( name );
if ( it != end() )
return it->second;
else
return 0;
}
wxArrayString ObjectCollection::GetNames()
{
wxArrayString list;
for ( iterator it = begin();
it != end();
++it )
list.Add( it->first );
return list;
}
void ObjectCollection::Write( wxOutputStream &output )
{
wxArrayString list;
wxDataOutputStream out(output);
out.Write16( 0x2f ); // identifier code
out.Write16( 1 ); // data format version
out.Write32( size() );
wxArrayString objs = GetNames();
objs.Sort();
for ( size_t i=0;i<objs.Count();i++ )
{
Object *obj = Lookup( objs[i] );
assert( obj != 0 );
out.WriteString( objs[i] );
out.WriteString( obj->GetTypeName() );
obj->Write( output );
}
out.Write16( 0x2f ); // identifier code to finish
}
bool ObjectCollection::Read( wxInputStream &input )
{
wxDataInputStream in( input );
m_lastError = wxEmptyString;
wxUint16 code = in.Read16();
in.Read16();
size_t count = in.Read32();
for ( size_t i=0;i<count;i++ )
{
wxString name = in.ReadString();
wxString type = in.ReadString();
Object* obj = ObjectTypes::Create(type);
if (obj != 0)
{
if (!obj->Read(input)) {
m_lastError += "Could not read " + type + " : " + name + "\n" + obj->GetLastError();
}
Add(name, obj);
}
}
return ( in.Read16() == code );
}
StringHash::StringHash()
{
// nothing to do
}
Object *StringHash::Duplicate()
{
StringHash *s = new StringHash;
s->Copy( this );
return s;
}
bool StringHash::Copy( Object *obj )
{
if ( StringHash *sh = dynamic_cast<StringHash*>(obj) )
{
*this = *sh;
return true;
}
else return false;
}
wxString StringHash::GetTypeName()
{
return "sam.stringhash";
}
void StringHash::Write( wxOutputStream &output )
{
wxDataOutputStream out(output);
out.Write8(0xb7);
out.Write32( size() );
for ( StringHash::iterator it = begin();
it != end();
++it )
{
out.WriteString( it->first );
out.WriteString( it->second );
}
out.Write8(0xb7);
}
bool StringHash::Read( wxInputStream &input )
{
wxDataInputStream in(input);
wxUint8 code = in.Read8();
size_t n = in.Read32();
for (size_t i=0;i<n;i++)
{
wxString name = in.ReadString();
wxString value = in.ReadString();
(*this)[name] = value;
}
return code == in.Read8();
}
void StringHash::Split(const wxString &input, char sep, char eq)
{
clear();
wxArrayString items = wxStringTokenize(input,sep);
for (int i=0;i<(int)items.Count();i++)
{
int eqpos = items[i].Index(eq);
if (eqpos >= 0)
(*this)[ items[i].Left(eqpos) ] = items[i].Mid(eqpos+1);
}
}
bool StringHash::ReadKeyValueFile( const wxString &file, bool clear )
{
if ( clear ) this->clear();
wxFileInputStream infile( file );
if (!infile.IsOk())
return false;
wxTextInputStream in(infile);
while ( infile.CanRead() )
{
wxString line( in.ReadLine() );
if (line.Trim(false).Trim() == "" || line.Left(1) == "'")
continue;
int pos = line.Find('=');
if ( pos != wxNOT_FOUND )
{
wxString key = line.Mid(0, pos);
wxString val = line.Mid(pos+1);
if ( !key.IsEmpty() && !val.IsEmpty() )
(*this)[ key ] = val;
}
}
return true;
}