File: fileArchive.cpp

package info (click to toggle)
groops 0%2Bgit20250907%2Bds-1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 11,140 kB
  • sloc: cpp: 135,607; fortran: 1,603; makefile: 20
file content (242 lines) | stat: -rw-r--r-- 6,058 bytes parent folder | download
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
/***********************************************/
/**
* @file fileArchive.cpp
*
* @brief Read and write archives files.
*
* @author Torsten Mayer-Guerr
* @date 2005-01-01
*
*/
/***********************************************/

#include "base/import.h"
#include "base/string.h"
#include "inputOutput/logging.h"
#include "inputOutput/archive.h"
#include "inputOutput/archiveXml.h"
#include "inputOutput/archiveJson.h"
#include "inputOutput/archiveBinary.h"
#include "inputOutput/archiveAscii.h"
#include "inputOutput/file.h"
#include "inputOutput/fileArchive.h"

/***** FUNCTIONS *******************************/

OutFileArchive::OutFileArchive(const FileName &fileName, const std::string &type, UInt version) : archive(nullptr)
{
  open(fileName, type, version);
}

/***********************************************/

OutFileArchive::~OutFileArchive()
{
  close();
}

/***********************************************/

void OutFileArchive::open(const FileName &fileName, const std::string &type, UInt version)
{
  try
  {
    close();
    if(fileName.empty())
      return;

    // determine format from extension
    const std::string extension = String::upperCase(fileName.typeExtension());
    if(extension == "XML")
    {
      file.open(fileName);
      file.exceptions(std::ios::badbit | std::ios::failbit);
      archive = new OutArchiveXml(file, type, version);
    }
    else if(extension == "JSON")
    {
      file.open(fileName);
      file.exceptions(std::ios::badbit | std::ios::failbit);
      archive = new OutArchiveJson(file, type, version);
    }
    else if(extension == "DAT")
    {
      file.open(fileName, std::ios::binary | std::ios::out);
      file.exceptions(std::ios::badbit | std::ios::failbit);
      archive = new OutArchiveBinary(file, type, version);
    }
    else
    {
      file.open(fileName);
      file.exceptions(std::ios::badbit | std::ios::failbit);
      archive = new OutArchiveAscii(file, type, version);
    }
  }
  catch(std::exception &e)
  {
    GROOPS_RETHROW_EXTRA("filename=<"+fileName.str()+">", e)
  }
}

/***********************************************/

void OutFileArchive::close()
{
  if(archive)
  {
    delete archive;
    archive = nullptr;
  }
  file.close();
}

/***********************************************/

void OutFileArchive::comment(const std::string &text)
{
  if(archive)
    archive->comment(text);
}

/***********************************************/
/***********************************************/

InFileArchive::InFileArchive(const FileName &fileName, const std::string &type, UInt version) : archive(nullptr)
{
  open(fileName, type, version);
}

/***********************************************/

InFileArchive::~InFileArchive()
{
  close();
}

/***********************************************/

void InFileArchive::open(const FileName &fileName, const std::string &typeStr, UInt version)
{
  try
  {
    close();
    if(fileName.empty())
      return;

    // determine format from extension
    const std::string extension = String::upperCase(fileName.typeExtension());
    if(extension=="XML")
    {
      file.open(fileName);
      file.exceptions(std::ios::badbit | std::ios::failbit);
      char c;
      file>>c;
      file.putback(c);
      if(c!='<')
        throw(Exception("Seems not to be a valid XML file."));
      archive = new InArchiveXml(file);
    }
    else if(extension=="JSON")
    {
      file.open(fileName);
      file.exceptions(std::ios::badbit | std::ios::failbit);
      char c;
      file>>c;
      file.putback(c);
      if(c!='{')
        throw(Exception("Seems not to be a valid JSON file."));
      archive = new InArchiveJson(file);
    }
    else if(extension=="DAT")
    {
      file.open(fileName, std::ios::binary | std::ios::in);
      file.exceptions(std::ios::badbit | std::ios::failbit);
      char c;
      file>>c;
      file.putback(c);
      if((c!='b') && (c!='B'))
        throw(Exception("Seems not to be a groops binary file."));
      if(c=='b')
        logWarning<<"File <"<<fileName<<"> is a rather old GROOPS binary file: will not be supported in future"<<Log::endl;
      archive = new InArchiveBinary(file);
    }
    else
    {
      file.open(fileName);
      file.exceptions(std::ios::badbit | std::ios::failbit);
      archive = new InArchiveAscii(file);
    }

    // check type
    if((!typeStr.empty()) && (!type().empty()) && (type()!=typeStr))
      throw(Exception("file type is '"+type()+"' but must be '"+typeStr+"'"));

    // check version
    if(this->version() > version)
      logWarning<<"File <"<<fileName<<"> is created with a newer version ("<<this->version()<<") of GROOPS ("<<version<<"). "
                <<"This may causes problems. You should update your GROOPS software."<<Log::endl;
  }
  catch(std::exception &e)
  {
    GROOPS_RETHROW_EXTRA("filename=<"+fileName.str()+">", e)
  }
}

/***********************************************/

void InFileArchive::close()
{
  if(archive)
  {
    delete archive;
    archive = nullptr;
  }
  file.close();
}

/***********************************************/

std::string InFileArchive::type() const
{
  if(!archive)
    throw(Exception("In InFileArchive::type: no file open"));
  return archive->type();
}

/***********************************************/

UInt InFileArchive::version() const
{
  if(!archive)
    throw(Exception("InFileArchive::version: no file open"));
  return archive->version();
}

/***********************************************/

Bool InFileArchive::canSeek() const
{
  if(!archive || (archive->archiveType() != InArchive::BINARY))
    return FALSE;
  return file.canSeek();
}

/***********************************************/

std::streampos InFileArchive::position()
{
  if(!archive)
    throw(Exception("InFileArchive::position: no file open"));
  return file.tellg();
}

/***********************************************/

void InFileArchive::seek(std::streampos pos)
{
  if(!archive)
    throw(Exception("InFileArchive::seek: no file open"));
  file.seekg(pos);
}

/***********************************************/