-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathFRWriter.cs
434 lines (398 loc) · 13.7 KB
/
FRWriter.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
using System;
using System.IO;
using System.Collections;
using System.Drawing;
using System.ComponentModel;
using System.Reflection;
using System.Collections.Generic;
using System.Text;
using System.Globalization;
namespace FastReport.Utils
{
/// <summary>
/// Specifies the target for the serialize operation.
/// </summary>
public enum SerializeTo
{
/// <summary>
/// Serialize to the report file.
/// </summary>
Report,
/// <summary>
/// Serialize to the preview pages.
/// </summary>
Preview,
/// <summary>
/// Serialize to the source pages of a preview.
/// </summary>
SourcePages,
/// <summary>
/// Serialize to the designer's clipboard.
/// </summary>
Clipboard,
/// <summary>
/// Serialize to the designer's undo/redo buffer.
/// </summary>
Undo
}
internal class DiffEventArgs
{
private object obj;
private object diffObject;
public object Object
{
get { return obj; }
set { obj = value; }
}
public object DiffObject
{
get { return diffObject; }
set { diffObject = value; }
}
}
internal delegate void DiffEventHandler(object sender, DiffEventArgs e);
/// <summary>
/// The writer used to serialize object's properties to a report file.
/// </summary>
public class FRWriter : IDisposable
{
#region Fields
private XmlDocument doc;
private XmlItem root;
private XmlItem curItem;
private XmlItem curRoot;
//private StringBuilder FText;
private object diffObject;
private bool saveChildren;
private bool saveExternalPages;
private bool writeHeader;
private BlobStore blobStore;
private SerializeTo serializeTo;
private Hashtable diffObjects;
#endregion
#region Properties
internal event DiffEventHandler GetDiff;
internal BlobStore BlobStore
{
get { return blobStore; }
set { blobStore = value; }
}
/// <summary>
/// Gets or sets current xml item name.
/// </summary>
public string ItemName
{
get { return curItem.Name; }
set { curItem.Name = value; }
}
/// <summary>
/// Gets or sets target of serialization.
/// </summary>
public SerializeTo SerializeTo
{
get { return serializeTo; }
set { serializeTo = value; }
}
/// <summary>
/// Gets the ethalon object to compare with.
/// </summary>
public object DiffObject
{
get { return diffObject; }
}
/// <summary>
/// Gets or sets a value that determines whether is necessary to serialize child objects.
/// </summary>
public bool SaveChildren
{
get { return saveChildren; }
set { saveChildren = value; }
}
/// <summary>
/// Gets or sets a value that determines whether is necessary to serialize external pages.
/// </summary>
public bool SaveExternalPages
{
get { return saveExternalPages; }
set { saveExternalPages = value; }
}
/// <summary>
/// Gets or sets a value that determines whether is necessary to add xml header.
/// </summary>
public bool WriteHeader
{
get { return writeHeader; }
set { writeHeader = value; }
}
#endregion
#region Private Methods
private string PropName(string name)
{
return serializeTo == SerializeTo.Preview ? ShortProperties.GetShortName(name) : name;
}
#endregion
#region Public Methods
/// <summary>
/// Serializes the specified object.
/// </summary>
/// <param name="obj">The object to serialize.</param>
/// <remarks>
/// The object must implement the <see cref="IFRSerializable"/> interface. This method
/// invokes the <b>Serialize</b> method of the object.
/// </remarks>
/// <example>This example demonstrates the use of writer.
/// <code>
/// public void Serialize(FRWriter writer)
/// {
/// // get the etalon object. It will be used to write changed properties only.
/// Base c = writer.DiffObject as Base;
///
/// // write the type name
/// writer.ItemName = ClassName;
///
/// // write properties
/// if (Name != "")
/// writer.WriteStr("Name", Name);
/// if (Restrictions != c.Restrictions)
/// writer.WriteValue("Restrictions", Restrictions);
///
/// // write child objects if allowed
/// if (writer.SaveChildren)
/// {
/// foreach (Base child in ChildObjects)
/// {
/// writer.Write(child);
/// }
/// }
/// }
/// </code>
/// </example>
public void Write(IFRSerializable obj)
{
Write(obj, null);
}
/// <summary>
/// Serializes the object using specified etalon.
/// </summary>
/// <param name="obj">The object to serialize.</param>
/// <param name="diff">The etalon object.</param>
public void Write(IFRSerializable obj, object diff)
{
if (obj == null)
return;
XmlItem saveCurItem = curItem;
XmlItem saveCurRoot = curRoot;
//StringBuilder saveText = FText;
object saveDiffObject = diffObject;
try
{
//FText = new StringBuilder();
curItem = curItem == null ? root : curItem.Add();
curRoot = curItem;
diffObject = diff;
if (obj is Base && SerializeTo == SerializeTo.Preview)
{
diffObject = (obj as Base).OriginalComponent;
curItem.Name = diffObject != null ? (obj as Base).Alias : (obj as Base).ClassName;
}
if (GetDiff != null)
{
DiffEventArgs e = new DiffEventArgs();
e.Object = obj;
GetDiff(this, e);
diffObject = e.DiffObject;
}
if (diffObject == null)
{
try
{
Type objType = obj.GetType();
if (!diffObjects.Contains(objType))
diffObjects[objType] = Activator.CreateInstance(objType);
diffObject = diffObjects[objType];
}
catch
{
}
}
obj.Serialize(this);
}
finally
{
//if (FText.Length > 0)
// FText.Remove(FText.Length - 1, 1);
//FCurRoot.Text = FText.ToString();
//FText = saveText;
curItem = saveCurItem;
curRoot = saveCurRoot;
diffObject = saveDiffObject;
}
}
/// <summary>
/// Writes a string property.
/// </summary>
/// <param name="name">Property name.</param>
/// <param name="value">Property value.</param>
public void WriteStr(string name, string value)
{
curRoot.SetProp(PropName(name), value);
//FText.Append(PropName(name));
//FText.Append("=\"");
//FText.Append(Converter.ToXml(value));
//FText.Append("\" ");
}
/// <summary>
/// Writes a boolean property.
/// </summary>
/// <param name="name">Property name.</param>
/// <param name="value">Property value.</param>
public void WriteBool(string name, bool value)
{
curRoot.SetProp(PropName(name), value ? "true" : "false");
// FText.Append(PropName(name));
//FText.Append("=\"");
//FText.Append(value ? "true" : "false");
//FText.Append("\" ");
}
/// <summary>
/// Writes an integer property.
/// </summary>
/// <param name="name">Property name.</param>
/// <param name="value">Property value.</param>
public void WriteInt(string name, int value)
{
curRoot.SetProp(PropName(name), value.ToString());
//FText.Append(PropName(name));
//FText.Append("=\"");
//FText.Append(value.ToString());
//FText.Append("\" ");
}
/// <summary>
/// Writes a float property.
/// </summary>
/// <param name="name">Property name.</param>
/// <param name="value">Property value.</param>
public void WriteFloat(string name, float value)
{
curRoot.SetProp(PropName(name), value.ToString(CultureInfo.InvariantCulture.NumberFormat));
//FText.Append(PropName(name));
//FText.Append("=\"");
//FText.Append(value.ToString(CultureInfo.InvariantCulture.NumberFormat));
//FText.Append("\" ");
}
/// <summary>
/// Writes a double property.
/// </summary>
/// <param name="name">Property name.</param>
/// <param name="value">Property value.</param>
public void WriteDouble(string name, double value)
{
curRoot.SetProp(PropName(name), value.ToString(CultureInfo.InvariantCulture.NumberFormat));
//FText.Append(PropName(name));
//FText.Append("=\"");
//FText.Append(value.ToString(CultureInfo.InvariantCulture.NumberFormat));
//FText.Append("\" ");
}
/// <summary>
/// Writes an enumeration property.
/// </summary>
/// <param name="name">Property name.</param>
/// <param name="value">Property value.</param>
public void WriteValue(string name, object value)
{
curRoot.SetProp(PropName(name), value != null ? Converter.ToString(value) : "null");
//FText.Append(PropName(name));
//FText.Append("=\"");
//FText.Append(value != null ? Converter.ToXml(value) : "null");
//FText.Append("\" ");
}
/// <summary>
/// Writes an object reference property.
/// </summary>
/// <param name="name">Property name.</param>
/// <param name="value">Property value.</param>
public void WriteRef(string name, Base value)
{
curRoot.SetProp(PropName(name), value != null ? value.Name : "null");
//FText.Append(PropName(name));
//FText.Append("=\"");
//FText.Append(value != null ? value.Name : "null");
//FText.Append("\" ");
}
/// <summary>
/// Writes a standalone property value.
/// </summary>
/// <param name="name">Name of property.</param>
/// <param name="value">Property value.</param>
/// <remarks>
/// This method produces the following output:
/// <PropertyName>PropertyValue</PropertyName>
/// </remarks>
public void WritePropertyValue(string name, string value)
{
XmlItem item = curItem.Add();
item.Name = name;
item.Value = value;
}
/// <summary>
/// Determines if two objects are equal.
/// </summary>
/// <param name="obj1">The first object.</param>
/// <param name="obj2">The second object.</param>
/// <returns><b>true</b> if objects will be serialized to the same value.</returns>
public bool AreEqual(object obj1, object obj2)
{
if (obj1 == obj2)
return true;
if (obj1 == null || obj2 == null)
return false;
string s1 = Converter.ToString(obj1);
string s2 = Converter.ToString(obj2);
return s1 == s2;
}
/// <summary>
/// Disposes the writer.
/// </summary>
public void Dispose()
{
doc.Dispose();
foreach (object obj in diffObjects.Values)
{
if (obj is IDisposable)
(obj as IDisposable).Dispose();
}
}
/// <summary>
/// Saves the writer output to a stream.
/// </summary>
/// <param name="stream">Stream to save to.</param>
public void Save(Stream stream)
{
doc.AutoIndent = serializeTo == SerializeTo.Report;
doc.WriteHeader = WriteHeader;
doc.Save(stream);
}
#endregion
/// <summary>
/// Initializes a new instance of the <b>FRWriter</b> class with default settings.
/// </summary>
public FRWriter()
{
doc = new XmlDocument();
root = doc.Root;
//FText = new StringBuilder();
saveChildren = true;
writeHeader = true;
diffObjects = new Hashtable();
}
/// <summary>
/// Initializes a new instance of the <b>FRWriter</b> class with specified xml item that will
/// receive writer's output.
/// </summary>
/// <param name="root">The xml item that will receive writer's output.</param>
public FRWriter(XmlItem root) : this()
{
this.root = root;
}
}
}