Line data Source code
1 : #ifndef SDMDataObjectParser_CLASS
2 : #define SDMDataObjectParser_CLASS
3 :
4 : #include <iostream>
5 : #include <string>
6 : #include <vector>
7 : #include <libxml/parser.h>
8 : #include <libxml/tree.h>
9 :
10 :
11 :
12 : #ifdef REG_BASIC
13 : #undef REG_BASIC
14 : #endif
15 :
16 : #ifdef REG_EXTENDED
17 : #undef REG_EXTENDED
18 : #endif
19 :
20 : #ifdef REG_ICASE
21 : #undef REG_ICASE
22 : #endif
23 :
24 : #ifdef REG_NOSUB
25 : #undef REG_NOSUB
26 : #endif
27 :
28 : #ifdef REG_NEWLINE
29 : #undef REG_NEWLINE
30 : #endif
31 :
32 : #ifdef REG_NOTBOL
33 : #undef REG_NOTBOL
34 : #endif
35 :
36 : #ifdef REG_NOTEOL
37 : #undef REG_NOTEOL
38 : #endif
39 :
40 : #ifdef REG_STARTEND
41 : #undef REG_STARTEND
42 : #endif
43 :
44 : #ifndef WITHOUT_BOOST
45 : #include <boost/regex.hpp>
46 : #else
47 : #include <regex>
48 : #endif
49 :
50 : #include <alma/ASDMBinaries/SDMDataObject.h>
51 :
52 :
53 : #ifndef WITHOUT_ACS
54 : #include "almaEnumerations_IFC.h"
55 : #endif
56 : #include <alma/Enumerations/CAtmPhaseCorrection.h>
57 :
58 : #include <alma/Enumerations/CPrimitiveDataType.h>
59 :
60 : #include <alma/Enumerations/CCorrelatorType.h>
61 :
62 : namespace asdmbinaries {
63 :
64 : /**
65 : * A class to represent an exception thrown during the parsing of an XML header
66 : * in a MIME message containing ALMA binary data.
67 : */
68 : class SDMDataObjectParserException {
69 :
70 : public:
71 : /**
72 : * An empty contructor.
73 : */
74 : SDMDataObjectParserException();
75 :
76 : /**
77 : * A constructor with a message associated with the exception.
78 : * @param m a string containing the message.
79 : */
80 : SDMDataObjectParserException(std::string m);
81 :
82 : /**
83 : * The destructor.
84 : */
85 : virtual ~SDMDataObjectParserException();
86 :
87 : /**
88 : * Returns the message associated to this exception.
89 : * @return a string.
90 : */
91 : std::string getMessage() const;
92 :
93 : protected:
94 : std::string message;
95 :
96 : };
97 :
98 : inline SDMDataObjectParserException::SDMDataObjectParserException() : message ("SDMDataObjectParserException") {}
99 0 : inline SDMDataObjectParserException::SDMDataObjectParserException(std::string m) : message(m) {}
100 0 : inline SDMDataObjectParserException::~SDMDataObjectParserException() {}
101 0 : inline std::string SDMDataObjectParserException::getMessage() const {
102 0 : return "SDMDataObjectParserException : " + message;
103 : }
104 :
105 :
106 : // class HeaderParser
107 : class HeaderParser {
108 : friend class SDMDataObjectParser;
109 : friend class SDMDataObject;
110 :
111 : public:
112 : HeaderParser();
113 : virtual ~HeaderParser();
114 :
115 : void parseFile(const std::string& filename, SDMDataObject& sdmDataObject);
116 : void parseMemory(const std::string& buffer, SDMDataObject& sdmDataObject);
117 :
118 : void reset();
119 :
120 :
121 :
122 : private:
123 : void parseSDMDataHeader(xmlNode* a_node, SDMDataObject& sdmDataObject);
124 :
125 : void parseProjectPath(xmlNode* a_node, SDMDataObject& sdmDataObject);
126 : long long parseStartTime(xmlNode* a_node);
127 : std::string parseDataOID(xmlNode* a_node);
128 : int parseDimensionality(xmlNode* a_node);
129 : int parseNumTime(xmlNode* a_node);
130 : void parseExecBlock(xmlNode* a_node, SDMDataObject& sdmDataObject);
131 : int parseExecBlockNum(xmlNode* a_node);
132 : int parseScanNum(xmlNode* a_node);
133 : int parseSubscanNum(xmlNode* a_node);
134 :
135 : int parseNumAntenna(xmlNode* a_node);
136 :
137 : void parseCorrelationMode(xmlNode* a_node, SDMDataObject& sdmDataObject);
138 : void parseSpectralResolution(xmlNode* a_node, SDMDataObject& sdmDataObject);
139 : void parseProcessorType(xmlNode* a_node, SDMDataObject& sdmDataObject);
140 : void parseDataStruct (xmlNode* a_node, SDMDataObject& sdmDataObject);
141 :
142 : SDMDataObject::Baseband parseBaseband(xmlNode* a_node, SDMDataObject& sdmDataObject);
143 :
144 : void parseSpectralWindow(xmlNode* a_node, SDMDataObject& sdmDataObject, std::vector<SDMDataObject::SpectralWindow>& spectralWindow);
145 :
146 : SDMDataObject::BinaryPart parseBinaryPart(xmlNode* a_node, const std::string& attachmentName);
147 : SDMDataObject::AutoDataBinaryPart parseAutoDataBinaryPart(xmlNode* a_node, const std::string& attachmentName);
148 : SDMDataObject::ZeroLagsBinaryPart parseZeroLagsBinaryPart(xmlNode* a_node, const std::string& attachmentName);
149 :
150 : // SDMDataObject::TypedBinaryPart parseTypedBinaryPart(xmlNode* a_node, const std::string& attachmentName);
151 :
152 : xmlDoc *doc;
153 :
154 : #ifndef WITHOUT_BOOST
155 : static const boost::regex PROJECTPATH3;
156 : #else
157 : static const std::regex PROJECTPATH3;
158 : #endif
159 : const static std::string SDMDATAHEADER;
160 : const static std::string SCHEMAVERSION;
161 : const static std::string BYTEORDER;
162 : const static std::string PROJECTPATH;
163 : const static std::string STARTTIME;
164 : const static std::string DATAOID;
165 : const static std::string XLINKHREF;
166 : const static std::string XLINKTITLE;
167 :
168 : const static std::string DIMENSIONALITY;
169 : const static std::string NUMTIME;
170 :
171 : const static std::string EXECBLOCK;
172 : const static std::string EXECBLOCKNUM;
173 : const static std::string SCANNUM;
174 : const static std::string SUBSCANNUM;
175 :
176 : const static std::string NUMANTENNA;
177 :
178 : const static std::string CORRELATIONMODE;
179 : const static std::string SPECTRALRESOLUTION;
180 : const static std::string PROCESSORTYPE;
181 : const static std::string DATASTRUCT;
182 : const static std::string APC;
183 : const static std::string REF;
184 :
185 : const static std::string BASEBAND;
186 : const static std::string NAME;
187 :
188 : const static std::string SPECTRALWINDOW;
189 : const static std::string SW;
190 : const static std::string SWBB;
191 : const static std::string CROSSPOLPRODUCTS;
192 : const static std::string SDPOLPRODUCTS;
193 : const static std::string SCALEFACTOR;
194 : const static std::string NUMSPECTRALPOINT;
195 : const static std::string NUMBIN;
196 : const static std::string SIDEBAND;
197 : const static std::string IMAGE;
198 :
199 : const static std::string FLAGS;
200 : const static std::string ACTUALTIMES;
201 : const static std::string ACTUALDURATIONS;
202 : const static std::string ZEROLAGS;
203 : const static std::string CORRELATORTYPE;
204 : const static std::string CROSSDATA;
205 : const static std::string AUTODATA;
206 : const static std::string NORMALIZED;
207 :
208 : const static std::string SIZE;
209 : const static std::string AXES;
210 : const static std::string TYPE;
211 : }; // class HeaderParser
212 :
213 : // class CorrSubsetHeaderParser
214 : class CorrSubsetHeaderParser {
215 : friend class SDMDataSubset;
216 :
217 : public:
218 : CorrSubsetHeaderParser();
219 : virtual ~CorrSubsetHeaderParser();
220 : void parseFile(const std::string& filename, SDMDataSubset& sdmCorrDataSubset);
221 : void parseMemory(const std::string& buffer, SDMDataSubset& sdmCorrDataSubset);
222 : void parseCrossDataType(xmlNode* a_node, SDMDataSubset& sdmCorrDataSubset);
223 : void reset();
224 :
225 : private:
226 : // Regular expressions used to decipher the content of projectPath attribute.
227 : #ifndef WITHOUT_BOOST
228 : static const boost::regex PROJECTPATH4;
229 : static const boost::regex PROJECTPATH5;
230 : #else
231 : static const std::regex PROJECTPATH4;
232 : static const std::regex PROJECTPATH5;
233 : #endif
234 :
235 : void parseSDMDataSubsetHeader(xmlNode* a_node, SDMDataSubset& sdmCorrDataSubset);
236 : // void parseProjectPath(xmlNode* a_node, SDMDataSubset& sdmCorrDataSubset);
237 : void parseSchedulePeriodTime(xmlNode* a_node, SDMDataSubset& sdmCorrDataSubset);
238 : long long parseTime(xmlNode* a_node);
239 : long long parseInterval(xmlNode* a_node);
240 : void parseAbortObservation(xmlNode* a_node, SDMDataSubset& sdmCorrDataSubset);
241 :
242 : xmlDoc* doc;
243 :
244 : const static std::string SDMDATASUBSETHEADER;
245 : const static std::string PROJECTPATH;
246 : const static std::string SCHEDULEPERIODTIME;
247 : const static std::string TIME;
248 : const static std::string INTERVAL;
249 : const static std::string DATASTRUCT;
250 : const static std::string REF;
251 : const static std::string ABORTOBSERVATION;
252 : const static std::string ABORTTIME;
253 : const static std::string ABORTREASON;
254 : const static std::string XLINKHREF;
255 : const static std::string DATAREF;
256 : const static std::string FLAGSREF;
257 : const static std::string ACTUALTIMESREF;
258 : const static std::string ACTUALDURATIONSREF;
259 : const static std::string ZEROLAGSREF;
260 : const static std::string CROSSDATAREF;
261 : const static std::string TYPE;
262 : const static std::string AUTODATAREF;
263 : }; // class CorrSubsetHeaderParser
264 :
265 :
266 : // class TPSubsetHeaderParser
267 : class TPSubsetHeaderParser {
268 : friend class SDMDataSubset;
269 : public:
270 : TPSubsetHeaderParser();
271 : virtual ~TPSubsetHeaderParser();
272 : void parseFile(const std::string& filename,SDMDataSubset& sdmTPDataSubset );
273 : void parseMemory(const std::string& buffer,SDMDataSubset& sdmTPDataSubset );
274 : void reset();
275 :
276 : private:
277 : // Regular expressions used to decipher the content of projectPath attribute.
278 : #ifndef WITHOUT_BOOST
279 : static const boost::regex PROJECTPATH3;
280 : #else
281 : static const std::regex PROJECTPATH3;
282 : #endif
283 :
284 : void parseSDMDataSubsetHeader(xmlNode* a_node,SDMDataSubset& sdmTPDataSubset);
285 : void parseProjectPath(xmlNode* a_node, SDMDataSubset& sdmTPDataSubset);
286 : void parseSchedulePeriodTime(xmlNode* a_node, SDMDataSubset& sdmCorrDataSubset);
287 : long long parseTime(xmlNode* a_node);
288 : long long parseInterval(xmlNode* a_node);
289 : std::string parseDataStructureDesc(xmlNode* a_node);
290 : void parseBinaryData(xmlNode* a_node, SDMDataSubset& sdmTPDataSubset);
291 :
292 : xmlDoc* doc;
293 :
294 : const static std::string SDMDATASUBSETHEADER;
295 : const static std::string PROJECTPATH;
296 : const static std::string SCHEDULEPERIODTIME;
297 : const static std::string TIME;
298 : const static std::string INTERVAL;
299 : const static std::string DATASTRUCT;
300 : const static std::string REF;
301 : const static std::string DATAREF;
302 : const static std::string XLINKHREF;
303 : const static std::string FLAGSREF;
304 : const static std::string ACTUALTIMESREF;
305 : const static std::string ACTUALDURATIONSREF;
306 : const static std::string AUTODATAREF;
307 : }; // class TPSubsetHeaderParser
308 :
309 :
310 : class SDMDataObjectParser {
311 : friend class SDMDataObject;
312 : friend class SDMDataSubset;
313 : friend class HeaderParser;
314 :
315 : public:
316 : SDMDataObjectParser();
317 : virtual ~SDMDataObjectParser();
318 : void parseFileHeader(const std::string& filename, SDMDataObject& sdmDataObject);
319 : void parseMemoryHeader(const std::string& buffer, SDMDataObject& sdmDataObject);
320 :
321 : void parseFileCorrSubsetHeader(const std::string& filename, SDMDataSubset& sdmCorrSubset);
322 : void parseMemoryCorrSubsetHeader(const std::string& buffer, SDMDataSubset& sdmCorrSubset);
323 :
324 : void parseFileTPSubsetHeader(const std::string& filename, SDMDataSubset& sdmCorrDataSubset);
325 : void parseMemoryTPSubsetHeader(const std::string& filename, SDMDataSubset& sdmCorrDataSubset);
326 :
327 : static void isElement(xmlNode* a_node, const std::string& elementName);
328 : static bool testElement(xmlNode* a_node, const std::string& elementName);
329 : static void inElements(xmlNode* a_node, const std::vector<std::string>& elementNames);
330 :
331 : static xmlAttr* hasAttr(xmlNode* a_node, const std::string& attrName);
332 :
333 : static void tokenize(const std::string& str,
334 : std::vector<std::string>& tokens,
335 : const std::string& delimiters = " ");
336 :
337 : static void tokenize(const std::string& str,
338 : std::set<std::string>& tokens,
339 : const std::string& delimiters = " ");
340 : static std::string substring(const std::string &s, int a, int b);
341 : static std::string trim(const std::string &s);
342 :
343 : static std::string parseString(xmlNode* a_node);
344 : static long long parseLongLong(xmlNode* a_node);
345 : static int parseInt(xmlNode* a_node);
346 : static bool parseBool(xmlNode* a_node);
347 : static float parseFloat(xmlNode* a_node);
348 : static int parseIntAttr(xmlNode* a_node, const std::string& attrName);
349 : static bool parseBoolAttr(xmlNode* a_node, const std::string& attrName);
350 : static float parseFloatAttr(xmlNode* a_node, const std::string& attrName);
351 : static std::string parseStringAttr(xmlNode* a_node, const std::string& attrName);
352 : static const ByteOrder* parseByteOrderAttr(xmlNode* a_node, const std::string& attrName);
353 :
354 45984 : template<class Enum, class EnumHelper> static Enum parseStringAttr(xmlNode* a_node, const std::string& attrName) {
355 45984 : xmlAttr* attr = 0;
356 :
357 45984 : if ((attr = hasAttr(a_node, attrName))) {
358 45984 : std::string s = std::string((const char*)attr->children->content);
359 : try {
360 45984 : Enum result = EnumHelper::literal(SDMDataObjectParser::trim(s));
361 45984 : return result;
362 : }
363 0 : catch(std::string m) {
364 0 : throw SDMDataObjectParserException(m);
365 : }
366 45984 : }
367 : else
368 0 : throw SDMDataObjectParserException("could not find attribute '" + attrName + "' in " + std::string((const char*)a_node->name));
369 : }
370 :
371 8853 : template<class Enum, class EnumHelper> static Enum parseLiteral(xmlNode* a_node) {
372 8853 : if ((a_node != NULL) && (a_node->next == NULL)) {
373 : try {
374 8853 : Enum result = EnumHelper::literal(SDMDataObjectParser::trim(std::string((const char*) a_node->content)));
375 8853 : return result;
376 : }
377 0 : catch (std::string m) {
378 0 : throw SDMDataObjectParserException(m);
379 : }
380 : }
381 : else
382 0 : throw SDMDataObjectParserException("The content of an element could not parsed into a literal");
383 : }
384 :
385 :
386 : static std::vector<std::string> parseStringsAttr(xmlNode* a_node, const std::string& attrName);
387 : static std::set<std::string> parseStringSetAttr(xmlNode* a_node, const std::string& attrName);
388 :
389 23754 : template<class Enum, class EnumHelper> static std::vector<Enum> parseStringsAttr(xmlNode* a_node, const std::string& attrName) {
390 23754 : xmlAttr* attr = 0;
391 :
392 23754 : if ((attr = hasAttr(a_node, attrName))) {
393 23754 : std::vector<std::string> v_s;
394 23754 : tokenize((const char*)attr->children->content, v_s);
395 :
396 23754 : std::vector<Enum> result;
397 23754 : unsigned int i = 0;
398 : try {
399 85278 : for (i = 0; i < v_s.size(); i++)
400 61524 : result.push_back(EnumHelper::literal(v_s.at(i)));
401 47508 : return result;
402 : }
403 0 : catch (std::string m) {
404 0 : throw SDMDataObjectParserException(m);
405 : }
406 23754 : }
407 : else
408 0 : throw SDMDataObjectParserException("could not find attribute '" + attrName + "' in " + std::string((const char*)a_node->name));
409 : }
410 :
411 : static std::vector<unsigned int> parseProjectPath(xmlNode* a_node, unsigned int len);
412 :
413 : static std::vector<unsigned int> parseProjectPath(xmlNode* a_node);
414 :
415 : private:
416 :
417 : #ifndef WITHOUT_BOOST
418 : static const boost::regex PROJECTPATH3;
419 : static const boost::regex PROJECTPATH4;
420 : static const boost::regex PROJECTPATH5;
421 : static const boost::regex PROJECTPATH4OR5;
422 : #else
423 : static const std::regex PROJECTPATH3;
424 : static const std::regex PROJECTPATH4;
425 : static const std::regex PROJECTPATH5;
426 : static const std::regex PROJECTPATH4OR5;
427 : #endif
428 :
429 : HeaderParser headerParser;
430 : CorrSubsetHeaderParser corrSubsetHeaderParser;
431 : TPSubsetHeaderParser tpSubsetHeaderParser;
432 :
433 : }; // class SDMDataObjectParser
434 :
435 :
436 : } // namespace asdmbinaries
437 : #endif // HeaderParser_CLASS
|