1
|
using System;
|
2
|
using System.Net;
|
3
|
using System.Windows;
|
4
|
using System.Windows.Controls;
|
5
|
using System.Windows.Documents;
|
6
|
using System.Windows.Ink;
|
7
|
using System.Windows.Input;
|
8
|
using System.Windows.Media;
|
9
|
using System.Windows.Media.Animation;
|
10
|
using System.Windows.Shapes;
|
11
|
using System.Collections.Generic;
|
12
|
using MarkupToPDF.Serialize.S_Control;
|
13
|
using MarkupToPDF.Serialize.Core;
|
14
|
using System.Linq;
|
15
|
using MarkupToPDF.Controls.Line;
|
16
|
using MarkupToPDF.Controls.Text;
|
17
|
using MarkupToPDF.Controls.Shape;
|
18
|
using MarkupToPDF.Controls.Etc;
|
19
|
using MarkupToPDF.Controls.Polygon;
|
20
|
//using Telerik.Windows.Controls;
|
21
|
using System.IO;
|
22
|
using System.Windows.Media.Imaging;
|
23
|
//using MarkupToPDF.Common;
|
24
|
using System.Windows.Markup;
|
25
|
//using Telerik.Windows.Controls;
|
26
|
using System.Net.Cache;
|
27
|
using System.Collections.ObjectModel;
|
28
|
using MarkupToPDF.Common;
|
29
|
using MarkupToPDF.Controls.Cad;
|
30
|
using MarkupToPDF.Controls.Common;
|
31
|
using System.Threading.Tasks;
|
32
|
using System.ComponentModel;
|
33
|
|
34
|
namespace MarkupToPDF.Controls.Parsing
|
35
|
{
|
36
|
public class MarkupParser
|
37
|
{
|
38
|
///강인구 추가(2017.11.02)
|
39
|
///DATA_TYPE추가로 인한 클래스 변수 추가
|
40
|
public class MarkupReturn
|
41
|
{
|
42
|
public string ConvertData { get; set; }
|
43
|
public int DATA_TYPE { get; set; }
|
44
|
public string CommentID { get; set; }
|
45
|
}
|
46
|
|
47
|
public static MarkupReturn MarkupToString(CommentUserInfo Control, string UserId)
|
48
|
{
|
49
|
MarkupReturn res = new MarkupReturn();
|
50
|
res.DATA_TYPE = (int)Control.ControlType;
|
51
|
res.CommentID = Control.CommentID;
|
52
|
if (res.CommentID == null)
|
53
|
{
|
54
|
res.CommentID = shortGuid();
|
55
|
}
|
56
|
|
57
|
res.ConvertData = "";
|
58
|
res.ConvertData = Control.Serialize();
|
59
|
|
60
|
return res;
|
61
|
}
|
62
|
|
63
|
/// <summary>
|
64
|
/// create a commentuserinfo from given string
|
65
|
/// </summary>
|
66
|
/// <param name="str"></param>
|
67
|
/// <returns></returns>
|
68
|
public static CommentUserInfo FromString(string baseUri,string item, SolidColorBrush brush, string sProjectNo,double PageAngle)
|
69
|
{
|
70
|
CommentUserInfo instance = null;
|
71
|
var unkown = JsonSerializerHelper.JsonDeserialize<S_BaseControl>(item); //복호화작업
|
72
|
switch (unkown.Name)
|
73
|
{
|
74
|
#region Shape
|
75
|
#region Rectangle
|
76
|
case "RectangleControl":
|
77
|
instance = RectangleControl.FromString(item, brush, sProjectNo);
|
78
|
break;
|
79
|
#endregion
|
80
|
#region Triangle
|
81
|
case "TriControl":
|
82
|
instance = TriControl.FromString(item, brush, sProjectNo);
|
83
|
break;
|
84
|
#endregion
|
85
|
#region Cicle
|
86
|
case "CircleControl":
|
87
|
instance = CircleControl.FromString(item, brush, sProjectNo);
|
88
|
break;
|
89
|
#endregion
|
90
|
#region RectCloud
|
91
|
case "RectCloudControl":
|
92
|
instance = RectCloudControl.FromString(item, brush, sProjectNo);
|
93
|
break;
|
94
|
#endregion
|
95
|
#endregion
|
96
|
|
97
|
#region Polygon
|
98
|
#region Poly
|
99
|
case "PolygonControl":
|
100
|
instance = PolygonControl.FromString(item, brush, sProjectNo);
|
101
|
break;
|
102
|
#endregion
|
103
|
#region InkControl
|
104
|
case "InkControl":
|
105
|
instance = InkControl.FromString(item, brush, sProjectNo);
|
106
|
break;
|
107
|
#endregion
|
108
|
#region Cloud
|
109
|
case "CloudControl":
|
110
|
instance = CloudControl.FromString(item, brush, sProjectNo);
|
111
|
break;
|
112
|
#endregion
|
113
|
#endregion
|
114
|
|
115
|
#region Line
|
116
|
#region Line
|
117
|
case "LineControl":
|
118
|
instance = LineControl.FromString(item, brush, sProjectNo);
|
119
|
break;
|
120
|
#endregion
|
121
|
#region Arrow_Multi
|
122
|
case "ArrowControl_Multi":
|
123
|
instance = ArrowControl_Multi.FromString(item, brush, sProjectNo);
|
124
|
break;
|
125
|
#endregion
|
126
|
#region Arc
|
127
|
case "ArcControl":
|
128
|
instance = ArcControl.FromString(item, brush, sProjectNo);
|
129
|
break;
|
130
|
#endregion
|
131
|
#region ArrowArc
|
132
|
case "ArrowArcControl":
|
133
|
instance = ArrowArcControl.FromString(item, brush, sProjectNo);
|
134
|
break;
|
135
|
#endregion
|
136
|
#endregion
|
137
|
#region Text
|
138
|
case "TextControl":
|
139
|
instance = TextControl.FromString(item, brush, sProjectNo);
|
140
|
break;
|
141
|
#endregion
|
142
|
|
143
|
#region ArrowText
|
144
|
case "ArrowTextControl":
|
145
|
instance = ArrowTextControl.FromString(item, brush, sProjectNo,PageAngle);
|
146
|
break;
|
147
|
#endregion
|
148
|
|
149
|
#region ETC
|
150
|
#region Ink
|
151
|
case "InkPresenter":
|
152
|
using (S_PensilControl s = JsonSerializerHelper.JsonDeserialize<S_PensilControl>(item))
|
153
|
{
|
154
|
|
155
|
}
|
156
|
break;
|
157
|
#endregion
|
158
|
#region Date
|
159
|
case "DateControl":
|
160
|
instance = DateControl.FromString(item, brush, sProjectNo);
|
161
|
break;
|
162
|
#endregion
|
163
|
#region Image
|
164
|
case "ImgControl":
|
165
|
instance = ImgControl.FromString(item, brush, sProjectNo, baseUri);
|
166
|
break;
|
167
|
#endregion
|
168
|
#region Sign
|
169
|
case "SignControl":
|
170
|
instance = SignControl.FromString(item, brush, sProjectNo);
|
171
|
break;
|
172
|
#endregion
|
173
|
#region Symbol
|
174
|
case "SymControl":
|
175
|
instance = SymControl.FromString(item, brush, sProjectNo);
|
176
|
break;
|
177
|
#endregion
|
178
|
|
179
|
#region SymbolN
|
180
|
case "SymControlN":
|
181
|
instance = SymControlN.FromString(item, brush, sProjectNo);
|
182
|
break;
|
183
|
#endregion
|
184
|
#endregion
|
185
|
|
186
|
#region Cad
|
187
|
case "InsideWhiteControl":
|
188
|
instance = InsideWhiteControl.FromString(item, brush, sProjectNo);
|
189
|
break;
|
190
|
case "OverlapWhiteControl":
|
191
|
instance = OverlapWhiteControl.FromString(item, brush, sProjectNo);
|
192
|
break;
|
193
|
case "ClipWhiteControl":
|
194
|
instance = ClipWhiteControl.FromString(item, brush, sProjectNo);
|
195
|
break;
|
196
|
case "CoordinateControl":
|
197
|
instance = CoordinateControl.FromString(item, brush, sProjectNo);
|
198
|
break;
|
199
|
#endregion
|
200
|
default:
|
201
|
break;
|
202
|
}
|
203
|
|
204
|
return instance;
|
205
|
}
|
206
|
|
207
|
/// <summary>
|
208
|
/// 데이터베이스의 마크업데이터를 컨트롤로 변환한다.
|
209
|
/// </summary>
|
210
|
/// <param name="MarkupString"></param>
|
211
|
public static async Task<bool> ParseAsync(string baseUri, string sProjectNo, string MarkupString, Canvas Layer,double PageAngle, string DisplayColor, string ToolTipMessage, System.Threading.CancellationToken cts)
|
212
|
{
|
213
|
bool result = false;
|
214
|
|
215
|
if (MarkupString != "False")
|
216
|
{
|
217
|
SolidColorBrush _SetColor = new SolidColorBrush(Common.ValueConverter.StringToColorConverter.Parse(DisplayColor));
|
218
|
//SolidColorBrush _SetColor = new SolidColorBrush(Colors.Red);
|
219
|
string[] delimiterChars = { "|DZ|" };
|
220
|
string[] delimiterChars2 = { "|" };
|
221
|
string[] tokens = MarkupString.Split(delimiterChars, StringSplitOptions.RemoveEmptyEntries);
|
222
|
|
223
|
foreach (var token in tokens)
|
224
|
{
|
225
|
var item = await JsonSerializerHelper.UnCompressStringAsync(token,cts); //언패킹작업
|
226
|
CommentUserInfo control = MarkupParser.FromString(baseUri, item, _SetColor, sProjectNo,PageAngle);
|
227
|
|
228
|
if (control != null)
|
229
|
{
|
230
|
Layer.Children.Add(control);
|
231
|
control.ApplyTemplate();
|
232
|
control.SetValue(ToolTipService.ToolTipProperty, ToolTipMessage);
|
233
|
|
234
|
if (control is ArrowTextControl)
|
235
|
{
|
236
|
ArrowTextControl _instance = control as ArrowTextControl;
|
237
|
if (_instance.UnderLine == TextDecorations.Underline)
|
238
|
{
|
239
|
_instance.Base_TextBox.TextDecorations = _instance.UnderLine;
|
240
|
}
|
241
|
_instance.Base_TextBox.IsHitTestVisible = false;
|
242
|
}
|
243
|
else if (control is TextControl)
|
244
|
{
|
245
|
TextControl text = control as TextControl;
|
246
|
text.Base_TextBlock.TextDecorations = text.UnderLine;
|
247
|
text.Base_TextBlock.Margin = new Thickness(0, 0, 10, 0);
|
248
|
text.Base_TextBox.Visibility = Visibility.Collapsed;
|
249
|
text.Base_TextBlock.Visibility = Visibility.Visible;
|
250
|
}
|
251
|
else if (control is SymControlN)
|
252
|
{
|
253
|
SymControlN _instance = control as SymControlN;
|
254
|
|
255
|
var xamlData = MarkupToPDF.Serialize.Core.JsonSerializerHelper.UnCompressStamp(_instance.PathXathData);
|
256
|
|
257
|
System.IO.MemoryStream stream = new System.IO.MemoryStream();
|
258
|
System.IO.StreamWriter writer = new System.IO.StreamWriter(stream);
|
259
|
writer.Write(xamlData);
|
260
|
writer.Flush();
|
261
|
stream.Position = 0;
|
262
|
|
263
|
object obj = XamlReader.Load(stream);
|
264
|
_instance.Base_ViewBox.Child = obj as UIElement;
|
265
|
_instance.SetViewBox();
|
266
|
}
|
267
|
else if(control is ImgControl)
|
268
|
{
|
269
|
|
270
|
}
|
271
|
|
272
|
result = true;
|
273
|
}
|
274
|
}
|
275
|
}
|
276
|
|
277
|
return result;
|
278
|
}
|
279
|
|
280
|
/// <summary>
|
281
|
/// 데이터베이스의 마크업데이터를 컨트롤로 변환하여 baseLayer에 추가한다.
|
282
|
/// </summary>
|
283
|
/// <param name="MarkupString"></param>
|
284
|
public static async Task<Control> ParseExAsync(string baseUri, System.Threading.CancellationToken? cts,string sProjectNo,
|
285
|
string MarkupString, ObservableCollection<CommentUserInfo> baseLayer,double PageAngle, string DisplayColor, string ToolTipMessage, string markupInfoID = null, string commentId = null,Dictionary<string,string> STAMP_Contents = null)
|
286
|
{
|
287
|
Control res = null;
|
288
|
|
289
|
if (string.IsNullOrEmpty(MarkupString) || MarkupString == "False") return res;
|
290
|
|
291
|
SolidColorBrush _SetColor = new SolidColorBrush(Common.ValueConverter.StringToColorConverter.Parse(DisplayColor));
|
292
|
string[] delimiterChars = { "|DZ|" };
|
293
|
string[] delimiterChars2 = { "|" };
|
294
|
string[] data = MarkupString.Split(delimiterChars, StringSplitOptions.RemoveEmptyEntries);
|
295
|
|
296
|
foreach (var dataPease in data)
|
297
|
{
|
298
|
string item = await JsonSerializerHelper.UnCompressStringAsync(dataPease, null); //언패킹작업
|
299
|
|
300
|
CommentUserInfo control = MarkupParser.FromString(baseUri, item, _SetColor, sProjectNo, PageAngle);
|
301
|
|
302
|
res = control as Control;
|
303
|
if (control != null)
|
304
|
{
|
305
|
if (!string.IsNullOrEmpty(commentId)) control.CommentID = commentId;
|
306
|
if (!string.IsNullOrEmpty(markupInfoID)) control.MarkupInfoID = markupInfoID;
|
307
|
if (baseLayer != null)
|
308
|
{
|
309
|
baseLayer.Add(control);
|
310
|
control.ApplyTemplate();
|
311
|
Canvas.SetZIndex(control, control.ZIndex);
|
312
|
|
313
|
if (control is ArrowTextControl ArrTextCtrl)
|
314
|
{
|
315
|
if (ArrTextCtrl.UnderLine == TextDecorations.Underline)
|
316
|
{
|
317
|
ArrTextCtrl.Base_TextBox.TextDecorations = ArrTextCtrl.UnderLine;
|
318
|
}
|
319
|
ArrTextCtrl.Base_TextBox.IsHitTestVisible = false;
|
320
|
}
|
321
|
else if (control is TextControl TextCtrl)
|
322
|
{
|
323
|
TextCtrl.Base_TextBlock.TextDecorations = TextCtrl.UnderLine;
|
324
|
TextCtrl.Base_TextBlock.Margin = new Thickness(0, 0, 10, 0);
|
325
|
TextCtrl.Base_TextBox.Visibility = Visibility.Collapsed;
|
326
|
TextCtrl.Base_TextBlock.Visibility = Visibility.Visible;
|
327
|
}
|
328
|
else if (control is SymControlN SymCtrl)
|
329
|
{
|
330
|
var xamlData = MarkupToPDF.Serialize.Core.JsonSerializerHelper.UnCompressStamp(SymCtrl.PathXathData);
|
331
|
|
332
|
System.IO.MemoryStream stream = new System.IO.MemoryStream();
|
333
|
System.IO.StreamWriter writer = new System.IO.StreamWriter(stream);
|
334
|
xamlData = xamlData.Replace("#FFFF0000", DisplayColor);
|
335
|
|
336
|
if (STAMP_Contents?.Count > 0)
|
337
|
{
|
338
|
foreach (var Content in STAMP_Contents)
|
339
|
{
|
340
|
xamlData = xamlData.Replace(Content.Key, System.Security.SecurityElement.Escape(Content.Value));
|
341
|
}
|
342
|
}
|
343
|
|
344
|
writer.Write(xamlData);
|
345
|
writer.Flush();
|
346
|
stream.Position = 0;
|
347
|
|
348
|
object obj = XamlReader.Load(stream);
|
349
|
SymCtrl.Base_ViewBox.Child = obj as UIElement;
|
350
|
SymCtrl.SetViewBox();
|
351
|
}
|
352
|
}
|
353
|
}
|
354
|
}
|
355
|
|
356
|
return res;
|
357
|
}
|
358
|
|
359
|
public static async Task<S_BaseControl> GetBaseControlAsync(string MarkupString, System.Threading.CancellationToken cts)
|
360
|
{
|
361
|
var item = await JsonSerializerHelper.UnCompressStringAsync(MarkupString,cts); //언패킹작업
|
362
|
var unknownData = JsonSerializerHelper.JsonDeserialize<S_BaseControl>(item); //복호화작업
|
363
|
return unknownData;
|
364
|
}
|
365
|
|
366
|
public static async Task<string> GetMemoAsync(string MarkupString)
|
367
|
{
|
368
|
var item = await JsonSerializerHelper.UnCompressStringAsync(MarkupString,null); //언패킹작업
|
369
|
var unknownData = JsonSerializerHelper.JsonDeserialize<S_BaseControl>(item); //복호화작업
|
370
|
return unknownData.Memo;
|
371
|
}
|
372
|
|
373
|
//GUID생성(최민수 사원 수정)
|
374
|
private static string shortGuid()
|
375
|
{
|
376
|
byte[] bytes = new byte[16];
|
377
|
using (var provider = System.Security.Cryptography.RandomNumberGenerator.Create())
|
378
|
{
|
379
|
provider.GetBytes(bytes);
|
380
|
}
|
381
|
|
382
|
var guid = new Guid(bytes);
|
383
|
|
384
|
return Convert.ToBase64String(guid.ToByteArray())
|
385
|
.Substring(0, 10)
|
386
|
.Replace("/", "")
|
387
|
.Replace("+", "") + DateTime.UtcNow.Ticks.ToString("x");
|
388
|
}
|
389
|
}
|
390
|
}
|