forked from jaerith/ONIX-Data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOnixParser.cs
367 lines (281 loc) · 12.5 KB
/
OnixParser.cs
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
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Serialization;
using System.Xml.Schema;
using OnixData.Extensions;
using OnixData.Version3;
using OnixData.Version3.Header;
namespace OnixData
{
public class OnixParser : IDisposable, IEnumerable
{
#region CONSTANTS
public const int CONST_DTD_REFERENCE_LENGTH = 500;
public const string CONST_ONIX_MESSAGE_REFERENCE_TAG = "ONIXMessage";
public const string CONST_ONIX_MESSAGE_SHORT_TAG = "ONIXmessage";
public const string CONST_ONIX_HEADER_REFERENCE_TAG = "Header";
public const string CONST_ONIX_HEADER_SHORT_TAG = "header";
#endregion
private bool ParserRefVerFlag = false;
private bool ParserRVWFlag = false;
private FileInfo ParserFileInfo = null;
private StringBuilder ParserFileContent = null;
private XmlReader CurrOnixReader = null;
private OnixMessage CurrOnixMessage = null;
public bool ReferenceVersion
{
get { return this.ParserRefVerFlag; }
}
public bool ShouldApplyDefaults { get; set; }
public OnixParser(FileInfo OnixFilepath,
bool ReportValidationWarnings,
bool PreprocessOnixFile = true,
bool LoadEntireFileIntoMemory = false,
bool FilterBadEncodings = false)
{
if (!File.Exists(OnixFilepath.FullName))
throw new Exception("ERROR! File(" + OnixFilepath + ") does not exist.");
this.ShouldApplyDefaults = true;
this.ParserFileInfo = OnixFilepath;
this.ParserRVWFlag = ReportValidationWarnings;
bool ReferenceVersion = DetectDtdVersionReference(OnixFilepath);
string sOnixMsgTag = ReferenceVersion ? CONST_ONIX_MESSAGE_REFERENCE_TAG : CONST_ONIX_MESSAGE_SHORT_TAG;
this.ParserRefVerFlag = ReferenceVersion;
if (PreprocessOnixFile)
OnixFilepath.ReplaceIsoLatinEncodings(true, FilterBadEncodings);
this.CurrOnixReader = CreateXmlReader(this.ParserFileInfo, this.ParserRVWFlag);
if (LoadEntireFileIntoMemory)
{
this.CurrOnixMessage =
new XmlSerializer(typeof(OnixMessage), new XmlRootAttribute(sOnixMsgTag)).Deserialize(this.CurrOnixReader) as OnixMessage;
}
else
this.CurrOnixMessage = null;
}
public OnixParser(string OnixContent,
bool ReportValidationWarnings,
bool PreprocessOnixFile = true,
bool FilterBadEncodings = false)
{
if (String.IsNullOrEmpty(OnixContent))
throw new Exception("ERROR! Provided ONIX content is empty.");
this.ShouldApplyDefaults = true;
this.ParserFileInfo = null;
this.ParserRVWFlag = ReportValidationWarnings;
this.ParserFileContent = new StringBuilder(OnixContent);
if (PreprocessOnixFile)
this.ParserFileContent.ReplaceIsoLatinEncodings(FilterBadEncodings);
bool ReferenceVersion = DetectDtdVersionReference(OnixContent);
string sOnixMsgTag = ReferenceVersion ? CONST_ONIX_MESSAGE_REFERENCE_TAG : CONST_ONIX_MESSAGE_SHORT_TAG;
this.ParserRefVerFlag = ReferenceVersion;
this.CurrOnixReader = CreateXmlReader(this.ParserFileContent, this.ParserRVWFlag);
this.CurrOnixMessage =
new XmlSerializer(typeof(OnixMessage), new XmlRootAttribute(sOnixMsgTag)).Deserialize(this.CurrOnixReader) as OnixMessage;
}
public XmlReader CreateXmlReader()
{
XmlReader OnixReader =
(this.ParserFileInfo != null) ? CreateXmlReader(this.ParserFileInfo, this.ParserRVWFlag) : CreateXmlReader(this.ParserFileContent, this.ParserRVWFlag);
return OnixReader;
}
static public XmlReader CreateXmlReader(FileInfo CurrOnixFilepath, bool ReportValidationWarnings)
{
/*
* OLD WAY
XmlReaderSettings settings = new XmlReaderSettings();
settings.ConformanceLevel = ConformanceLevel.Document;
settings.ValidationType = ValidationType.Schema;
settings.DtdProcessing = DtdProcessing.Parse;
settings.ValidationFlags |= XmlSchemaValidationFlags.ProcessInlineSchema;
if (ReportValidationWarnings)
settings.ValidationFlags |= XmlSchemaValidationFlags.ReportValidationWarnings;
else
settings.ValidationFlags &= ~(XmlSchemaValidationFlags.ReportValidationWarnings);
return XmlReader.Create(CurrOnixFilepath.FullName, settings);
*/
XmlTextReader OnixXmlReader = new XmlTextReader(CurrOnixFilepath.FullName);
OnixXmlReader.XmlResolver = null;
OnixXmlReader.DtdProcessing = DtdProcessing.Ignore;
OnixXmlReader.Namespaces = false;
return OnixXmlReader;
}
static public XmlReader CreateXmlReader(StringBuilder OnixContent, bool ReportValidationWarnings)
{
XmlTextReader OnixXmlReader = new XmlTextReader(new StringReader(OnixContent.ToString()));
OnixXmlReader.XmlResolver = null;
OnixXmlReader.DtdProcessing = DtdProcessing.Ignore;
OnixXmlReader.Namespaces = false;
return OnixXmlReader;
}
public OnixHeader MessageHeader
{
get
{
string sOnixHdrTag =
this.ParserRefVerFlag ? CONST_ONIX_HEADER_REFERENCE_TAG : CONST_ONIX_HEADER_SHORT_TAG;
OnixHeader OnixHeader = new OnixHeader();
if (this.CurrOnixMessage != null)
OnixHeader = this.CurrOnixMessage.Header;
else
{
using (XmlReader OnixReader = CreateXmlReader())
{
XmlDocument XMLDoc = new XmlDocument();
XMLDoc.Load(OnixReader);
XmlNodeList HeaderList = XMLDoc.GetElementsByTagName(sOnixHdrTag);
if ((HeaderList != null) && (HeaderList.Count > 0))
{
XmlNode HeaderNode = HeaderList.Item(0);
string sHeaderBody = HeaderNode.OuterXml;
OnixHeader =
new XmlSerializer(typeof(OnixHeader), new XmlRootAttribute(sOnixHdrTag))
.Deserialize(new StringReader(sHeaderBody)) as OnixHeader;
}
}
}
return OnixHeader;
}
}
public OnixMessage Message
{
get
{
return this.CurrOnixMessage;
}
}
public void Dispose()
{
if (this.CurrOnixReader != null)
this.CurrOnixReader.Close();
}
IEnumerator IEnumerable.GetEnumerator()
{
return (IEnumerator)GetEnumerator();
}
public OnixEnumerator GetEnumerator()
{
if (this.ParserFileInfo != null)
return new OnixEnumerator(this, this.ParserFileInfo);
else if (this.ParserFileContent != null)
return new OnixEnumerator(this, this.ParserFileContent);
else
return null;
}
public bool DetectDtdVersionReference(FileInfo LegacyOnixFilepath)
{
if (LegacyOnixFilepath.Length < CONST_DTD_REFERENCE_LENGTH)
throw new Exception("ERROR! ONIX File is smaller than expected!");
byte[] buffer = new byte[CONST_DTD_REFERENCE_LENGTH];
using (FileStream fs = new FileStream(LegacyOnixFilepath.FullName, FileMode.Open, FileAccess.Read))
{
fs.Read(buffer, 0, buffer.Length);
fs.Close();
}
string sOnixMsgTop = Encoding.Default.GetString(buffer);
return DetectDtdVersionReference(sOnixMsgTop);
}
public bool DetectDtdVersionReference(string psOnixMsg)
{
bool bReferenceVersion = true;
string sRefMsgTag = "<" + CONST_ONIX_MESSAGE_REFERENCE_TAG + " ";
if (psOnixMsg.Contains(sRefMsgTag))
bReferenceVersion = true;
else
bReferenceVersion = false;
return bReferenceVersion;
}
}
public class OnixEnumerator : IDisposable, IEnumerator
{
private OnixParser OnixParser = null;
private XmlReader OnixReader = null;
private int CurrentIndex = -1;
private string ProductXmlTag = null;
private XmlDocument OnixDoc = null;
private XmlNodeList ProductList = null;
private OnixHeader OnixHeader = null;
private OnixProduct CurrentRecord = null;
private XmlSerializer ProductSerializer = null;
#region Properties
public List<OnixTextContent> CurrentCommList { get; set; }
#endregion
public OnixEnumerator(OnixParser ProvidedParser, FileInfo OnixFilepath)
{
this.ProductXmlTag = ProvidedParser.ReferenceVersion ? "Product" : "product";
this.OnixParser = ProvidedParser;
this.OnixReader = OnixParser.CreateXmlReader(OnixFilepath, false);
ProductSerializer = new XmlSerializer(typeof(OnixProduct), new XmlRootAttribute(this.ProductXmlTag));
CurrentCommList = new List<OnixTextContent>();
}
public OnixEnumerator(OnixParser ProvidedParser, StringBuilder OnixContent)
{
this.ProductXmlTag = ProvidedParser.ReferenceVersion ? "Product" : "product";
this.OnixParser = ProvidedParser;
this.OnixReader = OnixParser.CreateXmlReader(OnixContent, false);
ProductSerializer = new XmlSerializer(typeof(OnixProduct), new XmlRootAttribute(this.ProductXmlTag));
CurrentCommList = new List<OnixTextContent>();
}
public void Dispose()
{
if (this.OnixReader != null)
this.OnixReader.Close();
}
public bool MoveNext()
{
bool bResult = true;
if (OnixDoc == null)
{
this.OnixDoc = new XmlDocument();
this.OnixDoc.Load(this.OnixReader);
this.ProductList = this.OnixDoc.GetElementsByTagName(this.ProductXmlTag);
}
if (this.OnixHeader == null)
this.OnixHeader = OnixParser.MessageHeader;
if (++CurrentIndex < this.ProductList.Count)
{
string sInputXml = this.ProductList[CurrentIndex].OuterXml;
try
{
CurrentRecord =
this.ProductSerializer.Deserialize(new StringReader(sInputXml)) as OnixProduct;
if ((CurrentRecord != null) && OnixParser.ShouldApplyDefaults)
CurrentRecord.ApplyHeaderDefaults(this.OnixHeader);
CurrentCommList.Clear();
if ((CurrentRecord != null) &&
(CurrentRecord.CollateralDetail != null) &&
(CurrentRecord.CollateralDetail.OnixTextContentList != null) &&
(CurrentRecord.CollateralDetail.OnixTextContentList.Length > 0))
{
CurrentCommList.AddRange(CurrentRecord.CollateralDetail.OnixTextContentList);
}
}
catch (Exception ex)
{
CurrentRecord = new OnixProduct();
CurrentRecord.SetParsingError(ex);
CurrentRecord.SetInputXml(sInputXml);
}
}
else
bResult = false;
return bResult;
}
public void Reset()
{
return;
}
public object Current
{
get
{
return CurrentRecord;
}
}
}
}