markus / MarkupToPDF / Controls / Parsing / MarkupParse.cs @ 43e1d368
이력 | 보기 | 이력해설 | 다운로드 (16.8 KB)
1 | 787a4489 | KangIngu | 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 | 53880c83 | ljiyeon | using Svg2Xaml; |
30 | 684ef11c | ljiyeon | using MarkupToPDF.Controls.Cad; |
31 | 40d88a02 | ljiyeon | using MarkupToPDF.Controls.Common; |
32 | ac4f1e13 | taeseongkim | using System.Threading.Tasks; |
33 | 787a4489 | KangIngu | |
34 | namespace MarkupToPDF.Controls.Parsing |
||
35 | { |
||
36 | 036650a0 | humkyung | 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 Data = new MarkupReturn(); |
||
50 | Data.ConvertData = ""; |
||
51 | 8cf823d0 | djkim | Data.DATA_TYPE = (int)Control.ControlType; |
52 | 036650a0 | humkyung | Data.CommentID = Control.CommentID; |
53 | if (Data.CommentID == null) |
||
54 | { |
||
55 | Data.CommentID = shortGuid(); |
||
56 | } |
||
57 | |||
58 | Data.ConvertData = Control.Serialize(); |
||
59 | |||
60 | return Data; |
||
61 | } |
||
62 | |||
63 | 661b7416 | humkyung | /// <summary> |
64 | /// create a commentuserinfo from given string |
||
65 | /// </summary> |
||
66 | /// <param name="str"></param> |
||
67 | /// <returns></returns> |
||
68 | a1e2ba68 | taeseongkim | public static CommentUserInfo FromString(string baseUri,string item, SolidColorBrush brush, string sProjectNo,double PageAngle) |
69 | 661b7416 | humkyung | { |
70 | CommentUserInfo instance = null; |
||
71 | 5529d2a2 | humkyung | var unkown = JsonSerializerHelper.JsonDeserialize<S_BaseControl>(item); //복호화작업 |
72 | 661b7416 | humkyung | 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 | 4f017ed3 | taeseongkim | instance = ArrowTextControl.FromString(item, brush, sProjectNo,PageAngle); |
146 | 661b7416 | humkyung | 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 | a1e2ba68 | taeseongkim | instance = ImgControl.FromString(item, brush, sProjectNo, baseUri); |
166 | 661b7416 | humkyung | 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 | a1e2ba68 | taeseongkim | 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 | 661b7416 | humkyung | { |
213 | e1c892f7 | taeseongkim | bool result = false; |
214 | |||
215 | 661b7416 | humkyung | if (MarkupString != "False") |
216 | { |
||
217 | SolidColorBrush _SetColor = new SolidColorBrush(Common.ValueConverter.StringToColorConverter.Parse(DisplayColor)); |
||
218 | 787a4489 | KangIngu | //SolidColorBrush _SetColor = new SolidColorBrush(Colors.Red); |
219 | 661b7416 | humkyung | string[] delimiterChars = { "|DZ|" }; |
220 | string[] delimiterChars2 = { "|" }; |
||
221 | 5529d2a2 | humkyung | string[] tokens = MarkupString.Split(delimiterChars, StringSplitOptions.RemoveEmptyEntries); |
222 | 661b7416 | humkyung | |
223 | 5529d2a2 | humkyung | foreach (var token in tokens) |
224 | 661b7416 | humkyung | { |
225 | 24c5e56c | taeseongkim | var item = await JsonSerializerHelper.UnCompressStringAsync(token,cts); //언패킹작업 |
226 | a1e2ba68 | taeseongkim | CommentUserInfo control = MarkupParser.FromString(baseUri, item, _SetColor, sProjectNo,PageAngle); |
227 | 24c5e56c | taeseongkim | |
228 | 661b7416 | humkyung | if (control != null) |
229 | { |
||
230 | 5529d2a2 | humkyung | Layer.Children.Add(control); |
231 | 661b7416 | humkyung | 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 | cd988cd8 | djkim | var xamlData = MarkupToPDF.Serialize.Core.JsonSerializerHelper.UnCompressStamp(_instance.PathXathData); |
256 | |||
257 | 661b7416 | humkyung | 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 | a1e2ba68 | taeseongkim | else if(control is ImgControl) |
268 | { |
||
269 | |||
270 | } |
||
271 | e1c892f7 | taeseongkim | |
272 | result = true; |
||
273 | 661b7416 | humkyung | } |
274 | } |
||
275 | } |
||
276 | e1c892f7 | taeseongkim | |
277 | return result; |
||
278 | 787a4489 | KangIngu | } |
279 | b200de5a | KangIngu | |
280 | 787a4489 | KangIngu | /// <summary> |
281 | /// 데이터베이스의 마크업데이터를 컨트롤로 변환한다. |
||
282 | /// </summary> |
||
283 | /// <param name="MarkupString"></param> |
||
284 | 43e1d368 | taeseongkim | public static async Task<Control> ParseExAsync(string baseUri, System.Threading.CancellationToken? cts,string sProjectNo, string MarkupString, ObservableCollection<CommentUserInfo> baseLayer,double PageAngle, string DisplayColor, string ToolTipMessage, string markupInfoID = null, string commentId = null,Dictionary<string,string> STAMP_Contents = null) |
285 | 787a4489 | KangIngu | { |
286 | 5529d2a2 | humkyung | Control res = null; |
287 | |||
288 | 787a4489 | KangIngu | if (MarkupString != "False") |
289 | { |
||
290 | SolidColorBrush _SetColor = new SolidColorBrush(Common.ValueConverter.StringToColorConverter.Parse(DisplayColor)); |
||
291 | string[] delimiterChars = { "|DZ|" }; |
||
292 | string[] delimiterChars2 = { "|" }; |
||
293 | string[] data = MarkupString.Split(delimiterChars, StringSplitOptions.RemoveEmptyEntries); |
||
294 | |||
295 | foreach (var dataPease in data) |
||
296 | { |
||
297 | 24c5e56c | taeseongkim | string item = ""; |
298 | 1edefbdf | taeseongkim | item = await JsonSerializerHelper.UnCompressStringAsync(dataPease, null); //언패킹작업 |
299 | //if (cts == null) |
||
300 | //{ |
||
301 | // item = await JsonSerializerHelper.UnCompressStringAsync(dataPease, null); //언패킹작업 |
||
302 | //} |
||
303 | //else |
||
304 | //{ |
||
305 | // if(cts.Value.IsCancellationRequested) |
||
306 | // { |
||
307 | // return null; |
||
308 | // } |
||
309 | 24c5e56c | taeseongkim | |
310 | 1edefbdf | taeseongkim | // item = await JsonSerializerHelper.UnCompressStringAsync(dataPease, cts); //언패킹작업 |
311 | //} |
||
312 | 366f00c2 | taeseongkim | |
313 | a1e2ba68 | taeseongkim | CommentUserInfo control = MarkupParser.FromString(baseUri, item, _SetColor, sProjectNo, PageAngle); |
314 | 366f00c2 | taeseongkim | |
315 | 5529d2a2 | humkyung | res = control as Control; |
316 | if (control != null) |
||
317 | 787a4489 | KangIngu | { |
318 | 5529d2a2 | humkyung | if (!string.IsNullOrEmpty(commentId)) control.CommentID = commentId; |
319 | if (!string.IsNullOrEmpty(markupInfoID)) control.MarkupInfoID = markupInfoID; |
||
320 | c00d0547 | humkyung | if (baseLayer != null) |
321 | 5529d2a2 | humkyung | { |
322 | c00d0547 | humkyung | baseLayer.Add(control); |
323 | control.ApplyTemplate(); |
||
324 | |||
325 | if (control is ArrowTextControl) |
||
326 | 684ef11c | ljiyeon | { |
327 | c00d0547 | humkyung | ArrowTextControl _instance = control as ArrowTextControl; |
328 | if (_instance.UnderLine == TextDecorations.Underline) |
||
329 | { |
||
330 | _instance.Base_TextBox.TextDecorations = _instance.UnderLine; |
||
331 | } |
||
332 | _instance.Base_TextBox.IsHitTestVisible = false; |
||
333 | 684ef11c | ljiyeon | } |
334 | c00d0547 | humkyung | else if (control is TextControl) |
335 | { |
||
336 | TextControl text = control as TextControl; |
||
337 | text.Base_TextBlock.TextDecorations = text.UnderLine; |
||
338 | text.Base_TextBlock.Margin = new Thickness(0, 0, 10, 0); |
||
339 | text.Base_TextBox.Visibility = Visibility.Collapsed; |
||
340 | text.Base_TextBlock.Visibility = Visibility.Visible; |
||
341 | } |
||
342 | else if (control is SymControlN) |
||
343 | { |
||
344 | SymControlN _instance = control as SymControlN; |
||
345 | 787a4489 | KangIngu | |
346 | cd988cd8 | djkim | var xamlData = MarkupToPDF.Serialize.Core.JsonSerializerHelper.UnCompressStamp(_instance.PathXathData); |
347 | |||
348 | c00d0547 | humkyung | System.IO.MemoryStream stream = new System.IO.MemoryStream(); |
349 | System.IO.StreamWriter writer = new System.IO.StreamWriter(stream); |
||
350 | 58b52175 | ljiyeon | xamlData = xamlData.Replace("#FFFF0000", DisplayColor); |
351 | 43e1d368 | taeseongkim | |
352 | if (STAMP_Contents?.Count > 0) |
||
353 | { |
||
354 | foreach (var Content in STAMP_Contents) |
||
355 | { |
||
356 | xamlData = xamlData.Replace(Content.Key, System.Security.SecurityElement.Escape(Content.Value)); |
||
357 | } |
||
358 | } |
||
359 | |||
360 | c00d0547 | humkyung | writer.Write(xamlData); |
361 | writer.Flush(); |
||
362 | stream.Position = 0; |
||
363 | 661b7416 | humkyung | |
364 | c00d0547 | humkyung | object obj = XamlReader.Load(stream); |
365 | _instance.Base_ViewBox.Child = obj as UIElement; |
||
366 | _instance.SetViewBox(); |
||
367 | } |
||
368 | 5529d2a2 | humkyung | } |
369 | 661b7416 | humkyung | } |
370 | } |
||
371 | } |
||
372 | |||
373 | 5529d2a2 | humkyung | return res; |
374 | 661b7416 | humkyung | } |
375 | |||
376 | 24c5e56c | taeseongkim | public static async Task<S_BaseControl> GetBaseControlAsync(string MarkupString, System.Threading.CancellationToken cts) |
377 | 661b7416 | humkyung | { |
378 | 24c5e56c | taeseongkim | var item = await JsonSerializerHelper.UnCompressStringAsync(MarkupString,cts); //언패킹작업 |
379 | 661b7416 | humkyung | var unknownData = JsonSerializerHelper.JsonDeserialize<S_BaseControl>(item); //복호화작업 |
380 | return unknownData; |
||
381 | } |
||
382 | 787a4489 | KangIngu | |
383 | ac4f1e13 | taeseongkim | public static async Task<string> GetMemoAsync(string MarkupString) |
384 | 5529d2a2 | humkyung | { |
385 | 24c5e56c | taeseongkim | var item = await JsonSerializerHelper.UnCompressStringAsync(MarkupString,null); //언패킹작업 |
386 | 5529d2a2 | humkyung | var unknownData = JsonSerializerHelper.JsonDeserialize<S_BaseControl>(item); //복호화작업 |
387 | return unknownData.Memo; |
||
388 | } |
||
389 | 684ef11c | ljiyeon | |
390 | 5529d2a2 | humkyung | //GUID생성(최민수 사원 수정) |
391 | private static string shortGuid() |
||
392 | { |
||
393 | byte[] bytes = new byte[16]; |
||
394 | using (var provider = System.Security.Cryptography.RandomNumberGenerator.Create()) |
||
395 | { |
||
396 | provider.GetBytes(bytes); |
||
397 | } |
||
398 | 661b7416 | humkyung | |
399 | 5529d2a2 | humkyung | var guid = new Guid(bytes); |
400 | 787a4489 | KangIngu | |
401 | 5529d2a2 | humkyung | return Convert.ToBase64String(guid.ToByteArray()) |
402 | .Substring(0, 10) |
||
403 | .Replace("/", "") |
||
404 | .Replace("+", "") + DateTime.UtcNow.Ticks.ToString("x"); |
||
405 | 787a4489 | KangIngu | } |
406 | } |
||
407 | 5529d2a2 | humkyung | } |