-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathArchive.cpp
394 lines (321 loc) · 7.92 KB
/
Archive.cpp
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
/*This file is part of the FEBio Studio source code and is licensed under the MIT license
listed below.
See Copyright-FEBio-Studio.txt for details.
Copyright (c) 2021 University of Utah, The Trustees of Columbia University in
the City of New York, and others.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.*/
#include "stdafx.h"
#include "Archive.h"
#include <sstream>
#include <stdarg.h>
using std::stringstream;
//=============================================================================
IOMemBuffer::IOMemBuffer()
{
m_pbuf = 0;
m_nsize = 0;
m_nalloc = 0;
}
IOMemBuffer::~IOMemBuffer()
{
delete[] m_pbuf;
m_nsize = 0;
m_nalloc = 0;
}
void IOMemBuffer::append(void* pd, int n)
{
// make sure we need to do anything
if ((n <= 0) || (pd == 0)) return;
if (m_pbuf == 0)
{
m_pbuf = new char[n];
m_nalloc = n;
}
else if (m_nsize + n > m_nalloc)
{
m_nalloc = 4 * ((3 * m_nalloc / 2) / 4);
if (m_nalloc < 4) m_nalloc = 4;
if (m_nalloc < m_nsize + n) m_nalloc = m_nsize + n;
char* ptmp = new char[m_nalloc];
if (m_nsize > 0) memcpy(ptmp, m_pbuf, m_nsize);
delete[] m_pbuf;
m_pbuf = ptmp;
}
// copy the data
memcpy(m_pbuf + m_nsize, pd, n);
// increase size
m_nsize += n;
}
//////////////////////////////////////////////////////////////////////
// IArchive
//////////////////////////////////////////////////////////////////////
//-----------------------------------------------------------------------------
IArchive::IArchive()
{
m_bend = true;
m_bswap = false;
m_delfp = false;
m_nversion = 0;
m_fp = 0;
}
//-----------------------------------------------------------------------------
IArchive::~IArchive()
{
Close();
}
//-----------------------------------------------------------------------------
// see if there is a valid file pointer
bool IArchive::IsValid() const
{
return (m_fp != 0);
}
//-----------------------------------------------------------------------------
void IArchive::Close()
{
while (m_Chunk.empty() == false) CloseChunk();
// reset pointers
if (m_delfp) fclose(m_fp);
m_fp = 0;
m_bend = true;
m_bswap = false;
m_delfp = false;
}
//-----------------------------------------------------------------------------
bool IArchive::Open(const char* szfile, unsigned int signature)
{
FILE* fp = fopen(szfile, "rb");
if (fp == 0) return false;
m_delfp = true;
return Open(fp, signature, szfile);
}
//-----------------------------------------------------------------------------
bool IArchive::Open(FILE* fp, unsigned int signature, const char* szfile)
{
m_filename = szfile;
m_log.clear();
// make sure the file pointer is valid
if (fp == 0) return false;
// store the file pointer
m_fp = fp;
// read the master tag
unsigned int ntag;
if (fread(&ntag, sizeof(int), 1, m_fp) != 1)
{
Close();
return false;
}
unsigned byteSwappedSignature = signature;
bswap(byteSwappedSignature);
// see if the file needs to be byteswapped
if (ntag == signature) m_bswap = false;
else if (ntag == byteSwappedSignature) m_bswap = true;
else
{
// unknown file format
Close();
return false;
}
// open the master chunk
m_bend = false;
int nret = OpenChunk();
if (nret != IO_OK) return false;
return true;
}
int IArchive::OpenChunk()
{
// see if the end flag was set
// in that case we first need to clear the flag
if (m_bend)
{
m_bend = false;
return IO_END;
}
// create a new chunk
CHUNK* pc = new CHUNK;
// read the chunk ID
read(pc->id);
// read the chunk size
read(pc->nsize);
if (pc->nsize == 0) m_bend = true;
// record the position
pc->lpos = ftell(m_fp);
// add it to the stack
m_Chunk.push(pc);
return IO_OK;
}
void IArchive::CloseChunk()
{
// pop the last chunk
CHUNK* pc = m_Chunk.top(); m_Chunk.pop();
// get the current file position
long lpos = ftell(m_fp);
// calculate the offset to the end of the chunk
int noff = pc->nsize - (lpos - pc->lpos);
// skip any remaining part in the chunk
// I wonder if this can really happen
if (noff != 0)
{
fseek(m_fp, noff, SEEK_CUR);
lpos = ftell(m_fp);
}
// delete this chunk
delete pc;
// take a peek at the parent
if (m_Chunk.empty())
{
// we just deleted the master chunk
m_bend = true;
}
else
{
pc = m_Chunk.top();
int noff = pc->nsize - (lpos - pc->lpos);
if (noff == 0) m_bend = true;
}
}
unsigned int IArchive::GetChunkID()
{
CHUNK* pc = m_Chunk.top();
assert(pc);
return pc->id;
}
IArchive::IOResult IArchive::read(std::vector<int>& v)
{
CHUNK* pc = m_Chunk.top();
int nsize = pc->nsize / sizeof(int);
v.resize(nsize);
if (nsize > 0)
{
int nread = (int)fread(&v[0], sizeof(int), nsize, m_fp);
if (nread != nsize) return IO_ERROR;
}
return IO_OK;
}
IArchive::IOResult IArchive::read(std::vector<double>& v)
{
CHUNK* pc = m_Chunk.top();
int nsize = pc->nsize / sizeof(double);
if (nsize > 0)
{
v.resize(nsize);
int nread = (int)fread(&v[0], sizeof(double), nsize, m_fp);
if (nread != nsize) return IO_ERROR;
}
else v.clear();
return IO_OK;
}
IArchive::IOResult IArchive::read(std::vector<vec2d>& v)
{
CHUNK* pc = m_Chunk.top();
int nsize = pc->nsize / sizeof(vec2d);
v.resize(nsize);
if (nsize > 0)
{
int nread = (int)fread(&v[0], sizeof(vec2d), nsize, m_fp);
if (nread != nsize) return IO_ERROR;
}
return IO_OK;
}
void IArchive::log(const char* sz, ...)
{
if (sz == 0) return;
// get a pointer to the argument list
va_list args;
va_start(args, sz);
// count how many chars we need to allocate
va_list argscopy;
va_copy(argscopy, args);
char* szlog = NULL;
int l = vsnprintf(nullptr, 0, sz, argscopy) + 1;
va_end(argscopy);
if (l > 1)
{
szlog = new char[l]; assert(szlog);
if (szlog)
{
vsnprintf(szlog, l, sz, args);
}
}
va_end(args);
if (szlog == NULL) return;
l = (int)strlen(szlog);
if (l == 0) return;
stringstream ss;
if (m_log.empty() == false) ss << "\n";
ss << szlog;
m_log += ss.str();
}
std::string IArchive::GetLog() const
{
return m_log;
}
std::string IArchive::GetFilename() const
{
return m_filename;
}
//////////////////////////////////////////////////////////////////////
// OArchive
//////////////////////////////////////////////////////////////////////
OArchive::OArchive()
{
m_pRoot = 0;
m_pChunk = 0;
}
OArchive::~OArchive()
{
Close();
}
void OArchive::Close()
{
if (m_fp.IsValid())
{
m_pRoot->Write(&m_fp);
m_fp.Close();
}
delete m_pRoot;
m_pRoot = 0;
m_pChunk = 0;
}
bool OArchive::Create(const char* szfile, unsigned int signature)
{
m_filename = szfile;
// attempt to create the file
if (m_fp.Create(szfile) == false) return false;
// write the master tag
m_fp.Write(&signature, sizeof(int), 1);
assert(m_pRoot == 0);
m_pRoot = new OBranch(0);
m_pChunk = m_pRoot;
return true;
}
void OArchive::BeginChunk(unsigned int id)
{
// create a new branch
OBranch* pbranch = new OBranch(id);
// attach it to the current branch
m_pChunk->AddChild(pbranch);
// move the current branch pointer
m_pChunk = pbranch;
}
void OArchive::EndChunk()
{
m_pChunk = m_pChunk->GetParent();
}
std::string OArchive::GetFilename() const
{
return m_filename;
}