-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathFRReader.cs
669 lines (616 loc) · 21 KB
/
FRReader.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
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
using System;
using System.IO;
using System.Reflection;
using System.Collections.Generic;
using System.Windows.Forms;
namespace FastReport.Utils
{
/// <summary>
/// The reader used to deserialize object's properties from a report file.
/// </summary>
public class FRReader : IDisposable
{
#region Fields
private XmlDocument doc;
private XmlItem root;
private XmlItem curItem;
private XmlItem curRoot;
private XmlProperty[] props;
private string errors;
private List<FixupInfo> fixups;
private Report report;
private BlobStore blobStore;
private bool readChildren;
private SerializeTo deserializeFrom;
#endregion
#region Properties
/// <summary>
/// Gets a string that contains errors occured during the load.
/// </summary>
public string Errors
{
get { return errors; }
}
internal BlobStore BlobStore
{
get { return blobStore; }
set { blobStore = value; }
}
/// <summary>
/// Gets the current item name.
/// </summary>
public string ItemName
{
get { return curItem.Name; }
}
/// <summary>
/// Gets or sets a value indicating whther is necessary to read the object's children.
/// </summary>
public bool ReadChildren
{
get { return readChildren; }
set { readChildren = value; }
}
/// <summary>
/// Returns Root element for this reader
/// </summary>
public XmlItem Root
{
get
{
if (curItem != null)
return GetRoot(curItem, 11);
return null;
}
}
/// <summary>
/// Gets or sets target of serialization.
/// </summary>
public SerializeTo DeserializeFrom
{
get { return deserializeFrom; }
set { deserializeFrom = value; }
}
public Report Report
{
get { return report; }
}
private XmlItem GetRoot(XmlItem item, int count)
{
if (count < 0 || item.Parent == null)
return item;
return GetRoot(item.Parent, count - 1);
}
#endregion
#region Private Methods
private void GetProps()
{
if (curRoot != null)
{
props = curRoot.Properties;
}
}
private string PropName(string name)
{
return ShortProperties.GetFullName(name);
}
private string PropValue(string name)
{
int i = IndexOf(name);
if (i != -1)
return props[i].Value;
return "";
}
private int IndexOf(string name)
{
if (props == null)
return -1;
// property key should be trimmed
name = name.Trim();
int result = -1;
for (int i = 0; i < props.Length; i++)
{
if (String.Compare(props[i].Key, name, true) == 0)
{
result = i;
break;
}
}
return result;
}
private void FixupReferences()
{
if (report == null)
return;
foreach (FixupInfo fixup in fixups)
{
PropertyInfo pi = fixup.obj.GetType().GetProperty(fixup.name);
if (pi != null)
pi.SetValue(fixup.obj, report.FindObject(fixup.value), null);
}
fixups.Clear();
}
#endregion
#region Public Methods
/// <summary>
/// Reads the specified object.
/// </summary>
/// <param name="obj">The object to read.</param>
/// <remarks>
/// The object must implement the <see cref="IFRSerializable"/> interface. This method
/// invokes the <b>Deserialize</b> method of the object.
/// </remarks>
/// <example>This example demonstrates the use of <b>ReadProperties</b>, <b>ReadChildren</b>,
/// <b>NextItem</b>, <b>Read</b> methods.
/// <code>
/// public void Deserialize(FRReader reader)
/// {
/// // read simple properties like "Text", complex properties like "Border.Lines"
/// reader.ReadProperties(this);
///
/// // moves the current reader item
/// while (reader.NextItem())
/// {
/// // read the "Styles" collection
/// if (String.Compare(reader.ItemName, "Styles", true) == 0)
/// reader.Read(Styles);
/// else if (reader.ReadChildren)
/// {
/// // if read of children is enabled, read them
/// Base obj = reader.Read();
/// if (obj != null)
/// obj.Parent = this;
/// }
/// }
/// }
/// </code>
/// </example>
public void Read(IFRSerializable obj)
{
XmlItem saveCurItem = curItem;
XmlItem saveCurRoot = curRoot;
XmlProperty[] saveProps = props;
try
{
if (curItem == null)
curItem = root;
curRoot = curItem;
GetProps();
obj.Deserialize(this);
}
finally
{
curItem = saveCurItem;
curRoot = saveCurRoot;
props = saveProps;
}
}
internal void Read(IFRSerializable obj, XmlItem Root)
{
curItem = Root;
Read(obj);
}
/// <summary>
/// Reads an object from current xml node.
/// </summary>
/// <returns>The object.</returns>
/// <remarks>
/// This method creates an instance of object described by the current xml node, then invokes
/// its <b>Deserialize</b> method.
/// </remarks>
/// <example>This example demonstrates the use of <b>ReadProperties</b>, <b>ReadChildren</b>,
/// <b>NextItem</b>, <b>Read</b> methods.
/// <code>
/// public void Deserialize(FRReader reader)
/// {
/// // read simple properties like "Text", complex properties like "Border.Lines"
/// reader.ReadProperties(this);
///
/// // moves the current reader item
/// while (reader.NextItem())
/// {
/// // read the "Styles" collection
/// if (String.Compare(reader.ItemName, "Styles", true) == 0)
/// reader.Read(Styles);
/// else if (reader.ReadChildren)
/// {
/// // if read of children is enabled, read them
/// Base obj = reader.Read();
/// if (obj != null)
/// obj.Parent = this;
/// }
/// }
/// }
/// </code>
/// </example>
public IFRSerializable Read()
{
XmlItem saveCurItem = curItem;
XmlItem saveCurRoot = curRoot;
XmlProperty[] saveProps = props;
IFRSerializable result = null;
try
{
if (curItem == null)
curItem = root;
curRoot = curItem;
GetProps();
if (report != null && (report.IsAncestor || report.HasPageLinks))
result = report.FindObject(ReadStr("Name"));
if (result == null && curItem.Name != "inherited")
{
Type type = RegisteredObjects.FindType(curItem.Name);
if (type != null)
{
result = Activator.CreateInstance(type) as IFRSerializable;
if (result is Report)
report = result as Report;
}
else
{
if (!Config.WebMode)
MessageBox.Show(Res.Get("Messages,CantFindObject") + " " + curItem.Name);
else
throw new ClassException(curItem.Name);
}
}
if (result != null)
result.Deserialize(this);
}
finally
{
curItem = saveCurItem;
curRoot = saveCurRoot;
props = saveProps;
}
return result;
}
private int getDotCount(string s)
{
if (String.IsNullOrEmpty(s))
return 0;
int i = 0;
int count = 0;
while ((i = s.IndexOf('.', i)) != -1)
{
++i;
++count;
}
return count;
}
private void DoReadProperties(object obj, XmlProperty[] properties)
{
for (int i = 0; i < properties.Length; i++)
{
string name = properties[i].Key;
string value = properties[i].Value;
// check multiple properties like Frame.LeftLine.Typ
object obj1 = obj;
int len = name.Length;
int start = 0;
int j = 0;
// find '.'
while (j < len && name[j] != '.')
j++;
if (j < len)
{
while (j < len)
{
// get subproperty
PropertyInfo pi = obj1.GetType().GetProperty(name.Substring(start, j - start));
if (pi == null) break;
obj1 = pi.GetValue(obj1, null);
// find next '.'
start = j + 1;
j++;
while (j < len && name[j] != '.')
j++;
}
name = name.Substring(start);
}
try
{
name = PropName(name);
PropertyInfo pi = obj1.GetType().GetProperty(name);
if (pi == null)
continue;
if (value == "null")
{
if (pi.PropertyType == typeof(string))
pi.SetValue(obj1, "null", null);
else
pi.SetValue(obj1, null, null);
}
else
{
if (pi.PropertyType == typeof(string))
{
pi.SetValue(obj1, value, null);
}
else if (pi.PropertyType.IsClass && pi.PropertyType.IsSubclassOf(typeof(Base)))
{
// it's a reference
fixups.Add(new FixupInfo(obj1, name, value));
}
else
{
pi.SetValue(obj1, Converter.FromString(pi.PropertyType, value), null);
}
}
}
catch (Exception e)
{
errors += e.Message + "\r\n";
}
}
}
/// <summary>
/// Reads properties of specified object.
/// </summary>
/// <param name="obj">The object to read.</param>
/// <remarks>
/// This method reads simple properties like "Text", "Border.Lines" etc. for specified object.
/// To read nested properties like collections, you should override the <see cref="Base.DeserializeSubItems"/>
/// method of an object.
/// </remarks>
/// <example>This example demonstrates the use of <b>ReadProperties</b>, <b>ReadChildren</b>,
/// <b>NextItem</b>, <b>Read</b> methods.
/// <code>
/// public void Deserialize(FRReader reader)
/// {
/// // read simple properties like "Text", complex properties like "Border.Lines"
/// reader.ReadProperties(this);
///
/// // moves the current reader item
/// while (reader.NextItem())
/// {
/// // read the "Styles" collection
/// if (String.Compare(reader.ItemName, "Styles", true) == 0)
/// reader.Read(Styles);
/// else if (reader.ReadChildren)
/// {
/// // if read of children is enabled, read them
/// Base obj = reader.Read();
/// if (obj != null)
/// obj.Parent = this;
/// }
/// }
/// }
/// </code>
/// </example>
public void ReadProperties(object obj)
{
if (props == null)
return;
// speed optimization, for use in the preview mode
if (obj is TextObject && props.Length == 1 && props[0].Key == "x")
{
(obj as TextObject).Text = props[0].Value;
return;
}
// Fix for multilevel properties with dots such Barcode.CalcCheckSum
// Reported wrong working with saving from On-line Designer
XmlProperty[] FProps0 = new XmlProperty[0];
XmlProperty[] FProps1 = new XmlProperty[0];
XmlProperty[] FProps2 = new XmlProperty[0];
for (int i = 0; i < props.Length; i++)
{
int dotCount = getDotCount(props[i].Key);
switch (dotCount)
{
case 0:
AppendProperty(ref FProps0, props[i]);
break;
case 1:
AppendProperty(ref FProps1, props[i]);
break;
default:
AppendProperty(ref FProps2, props[i]);
break;
}
}
// without dots
if (FProps0.Length > 0)
DoReadProperties(obj, FProps0);
// with one dot
if (FProps1.Length > 0)
DoReadProperties(obj, FProps1);
// with two dots
if (FProps2.Length > 0)
DoReadProperties(obj, FProps2);
}
private void AppendProperty(ref XmlProperty[] fProps, XmlProperty xmlProperty)
{
Array.Resize<XmlProperty>(ref fProps, fProps.Length + 1);
fProps[fProps.Length - 1] = xmlProperty;
}
/// <summary>
/// Moves the current xml item.
/// </summary>
/// <returns><b>false</b> if there is no more items to move on; <b>true</b> otherwise.</returns>
/// <remarks>
/// This method is used to read child objects.
/// </remarks>
/// <example>This example demonstrates the use of <b>ReadProperties</b>, <b>ReadChildren</b>,
/// <b>NextItem</b>, <b>Read</b> methods.
/// <code>
/// public void Deserialize(FRReader reader)
/// {
/// // read simple properties like "Text", complex properties like "Border.Lines"
/// reader.ReadProperties(this);
///
/// // moves the current reader item
/// while (reader.NextItem())
/// {
/// // read the "Styles" collection
/// if (String.Compare(reader.ItemName, "Styles", true) == 0)
/// reader.Read(Styles);
/// else if (reader.ReadChildren)
/// {
/// // if read of children is enabled, read them
/// Base obj = reader.Read();
/// if (obj != null)
/// obj.Parent = this;
/// }
/// }
/// }
/// </code>
/// </example>
public bool NextItem()
{
if (curItem == curRoot)
{
if (curRoot.Count > 0)
{
curItem = curRoot[0];
return true;
}
else
return false;
}
else
{
int i = curRoot.IndexOf(curItem);
if (i < curRoot.Count - 1)
{
curItem = curRoot[i + 1];
return true;
}
else
return false;
}
}
/// <summary>
/// Checks if current item has specified property.
/// </summary>
/// <param name="name">The property name to check.</param>
/// <returns><b>true</b> if current item has specified property.</returns>
public bool HasProperty(string name)
{
return IndexOf(name) != -1;
}
/// <summary>
/// Reads the string property.
/// </summary>
/// <param name="name">Name of property.</param>
/// <returns>Property value.</returns>
public string ReadStr(string name)
{
return PropValue(name);
}
/// <summary>
/// Reads the boolean property.
/// </summary>
/// <param name="name">Name of property.</param>
/// <returns>Property value.</returns>
public bool ReadBool(string name)
{
string prop = PropValue(name);
return (prop == "1" || prop.ToLower() == "true") ? true : false;
}
/// <summary>
/// Reads the integer property.
/// </summary>
/// <param name="name">Name of property.</param>
/// <returns>Property value.</returns>
public int ReadInt(string name)
{
return int.Parse(PropValue(name));
}
/// <summary>
/// Reads the float property.
/// </summary>
/// <param name="name">Name of property.</param>
/// <returns>Property value.</returns>
public float ReadFloat(string name)
{
return (float)Converter.FromString(typeof(float), PropValue(name));
}
/// <summary>
/// Reads the double property.
/// </summary>
/// <param name="name">Name of property.</param>
/// <returns>Property value.</returns>
public double ReadDouble(string name)
{
return (double)Converter.FromString(typeof(double), PropValue(name));
}
/// <summary>
/// Reads the enum property.
/// </summary>
/// <param name="name">Name of property.</param>
/// <param name="typ">Type of property.</param>
/// <returns>Property value.</returns>
public object ReadValue(string name, Type typ)
{
string propValue = PropValue(name);
if (propValue == "null")
{
if (typ == typeof(string))
return "null";
return null;
}
return Converter.FromString(typ, propValue);
}
/// <summary>
/// Reads the standalone property value.
/// </summary>
/// <returns>Property value.</returns>
public string ReadPropertyValue()
{
return curItem.Value;
}
/// <summary>
/// Disposes the reader, fixups the property references.
/// </summary>
public void Dispose()
{
FixupReferences();
doc.Dispose();
}
/// <summary>
/// Loads the xml items from a stream.
/// </summary>
/// <param name="stream">The stream to load from.</param>
public void Load(Stream stream)
{
doc.Load(stream);
}
#endregion
/// <summary>
/// Initializes a new instance of the <b>FRReader</b> class with specified report.
/// </summary>
/// <param name="report">Reference to a report.</param>
public FRReader(Report report)
{
doc = new XmlDocument();
root = doc.Root;
fixups = new List<FixupInfo>();
errors = "";
this.report = report;
readChildren = true;
}
/// <summary>
/// Initializes a new instance of the <b>FRReader</b> class with specified report and xml item with
/// contents to read.
/// </summary>
/// <param name="report">Reference to a report.</param>
/// <param name="root">Xml item with contents to read.</param>
public FRReader(Report report, XmlItem root) : this(report)
{
this.root = root;
}
private class FixupInfo
{
public object obj;
public string name;
public string value;
public FixupInfo(object obj, string name, string value)
{
this.obj = obj;
this.name = name;
this.value = value;
}
}
}
}