markus / MarkupToPDF / Controls / Parsing / MarkupParse.cs @ ac4f1e13
이력 | 보기 | 이력해설 | 다운로드 (15.3 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 | public static CommentUserInfo FromString(string item, SolidColorBrush brush, string sProjectNo) |
||
69 | { |
||
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 | instance = ArrowTextControl.FromString(item, brush, sProjectNo); |
||
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); |
||
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 | ac4f1e13 | taeseongkim | public static async Task ParseAsync(string sProjectNo, string MarkupString, Canvas Layer, string DisplayColor, string ToolTipMessage) |
212 | 661b7416 | humkyung | { |
213 | if (MarkupString != "False") |
||
214 | { |
||
215 | SolidColorBrush _SetColor = new SolidColorBrush(Common.ValueConverter.StringToColorConverter.Parse(DisplayColor)); |
||
216 | 787a4489 | KangIngu | //SolidColorBrush _SetColor = new SolidColorBrush(Colors.Red); |
217 | 661b7416 | humkyung | string[] delimiterChars = { "|DZ|" }; |
218 | string[] delimiterChars2 = { "|" }; |
||
219 | 5529d2a2 | humkyung | string[] tokens = MarkupString.Split(delimiterChars, StringSplitOptions.RemoveEmptyEntries); |
220 | 661b7416 | humkyung | |
221 | 5529d2a2 | humkyung | foreach (var token in tokens) |
222 | 661b7416 | humkyung | { |
223 | ac4f1e13 | taeseongkim | var item = await JsonSerializerHelper.UnCompressStringAsync(token); //언패킹작업 |
224 | 661b7416 | humkyung | CommentUserInfo control = MarkupParser.FromString(item, _SetColor, sProjectNo); |
225 | if (control != null) |
||
226 | { |
||
227 | 5529d2a2 | humkyung | Layer.Children.Add(control); |
228 | 661b7416 | humkyung | control.ApplyTemplate(); |
229 | control.SetValue(ToolTipService.ToolTipProperty, ToolTipMessage); |
||
230 | |||
231 | if (control is ArrowTextControl) |
||
232 | { |
||
233 | ArrowTextControl _instance = control as ArrowTextControl; |
||
234 | if (_instance.UnderLine == TextDecorations.Underline) |
||
235 | { |
||
236 | _instance.Base_TextBox.TextDecorations = _instance.UnderLine; |
||
237 | } |
||
238 | _instance.Base_TextBox.IsHitTestVisible = false; |
||
239 | } |
||
240 | else if (control is TextControl) |
||
241 | { |
||
242 | TextControl text = control as TextControl; |
||
243 | text.Base_TextBlock.TextDecorations = text.UnderLine; |
||
244 | text.Base_TextBlock.Margin = new Thickness(0, 0, 10, 0); |
||
245 | text.Base_TextBox.Visibility = Visibility.Collapsed; |
||
246 | text.Base_TextBlock.Visibility = Visibility.Visible; |
||
247 | } |
||
248 | else if (control is SymControlN) |
||
249 | { |
||
250 | SymControlN _instance = control as SymControlN; |
||
251 | |||
252 | cd988cd8 | djkim | var xamlData = MarkupToPDF.Serialize.Core.JsonSerializerHelper.UnCompressStamp(_instance.PathXathData); |
253 | |||
254 | 661b7416 | humkyung | System.IO.MemoryStream stream = new System.IO.MemoryStream(); |
255 | System.IO.StreamWriter writer = new System.IO.StreamWriter(stream); |
||
256 | writer.Write(xamlData); |
||
257 | writer.Flush(); |
||
258 | stream.Position = 0; |
||
259 | |||
260 | object obj = XamlReader.Load(stream); |
||
261 | _instance.Base_ViewBox.Child = obj as UIElement; |
||
262 | _instance.SetViewBox(); |
||
263 | } |
||
264 | } |
||
265 | } |
||
266 | } |
||
267 | 787a4489 | KangIngu | } |
268 | b200de5a | KangIngu | |
269 | 787a4489 | KangIngu | /// <summary> |
270 | /// 데이터베이스의 마크업데이터를 컨트롤로 변환한다. |
||
271 | /// </summary> |
||
272 | /// <param name="MarkupString"></param> |
||
273 | ac4f1e13 | taeseongkim | public static async Task<Control> ParseExAsync(string sProjectNo, string MarkupString, ObservableCollection<CommentUserInfo> baseLayer, string DisplayColor, string ToolTipMessage, string markupInfoID = null, string commentId = null) |
274 | 787a4489 | KangIngu | { |
275 | 5529d2a2 | humkyung | Control res = null; |
276 | |||
277 | 787a4489 | KangIngu | if (MarkupString != "False") |
278 | { |
||
279 | SolidColorBrush _SetColor = new SolidColorBrush(Common.ValueConverter.StringToColorConverter.Parse(DisplayColor)); |
||
280 | string[] delimiterChars = { "|DZ|" }; |
||
281 | string[] delimiterChars2 = { "|" }; |
||
282 | string[] data = MarkupString.Split(delimiterChars, StringSplitOptions.RemoveEmptyEntries); |
||
283 | |||
284 | foreach (var dataPease in data) |
||
285 | { |
||
286 | ac4f1e13 | taeseongkim | var item = await JsonSerializerHelper.UnCompressStringAsync(dataPease); //언패킹작업 |
287 | 5529d2a2 | humkyung | CommentUserInfo control = MarkupParser.FromString(item, _SetColor, sProjectNo); |
288 | res = control as Control; |
||
289 | if (control != null) |
||
290 | 787a4489 | KangIngu | { |
291 | 5529d2a2 | humkyung | if (!string.IsNullOrEmpty(commentId)) control.CommentID = commentId; |
292 | if (!string.IsNullOrEmpty(markupInfoID)) control.MarkupInfoID = markupInfoID; |
||
293 | c00d0547 | humkyung | if (baseLayer != null) |
294 | 5529d2a2 | humkyung | { |
295 | c00d0547 | humkyung | baseLayer.Add(control); |
296 | control.ApplyTemplate(); |
||
297 | |||
298 | if (control is ArrowTextControl) |
||
299 | 684ef11c | ljiyeon | { |
300 | c00d0547 | humkyung | ArrowTextControl _instance = control as ArrowTextControl; |
301 | if (_instance.UnderLine == TextDecorations.Underline) |
||
302 | { |
||
303 | _instance.Base_TextBox.TextDecorations = _instance.UnderLine; |
||
304 | } |
||
305 | _instance.Base_TextBox.IsHitTestVisible = false; |
||
306 | 684ef11c | ljiyeon | } |
307 | c00d0547 | humkyung | else if (control is TextControl) |
308 | { |
||
309 | TextControl text = control as TextControl; |
||
310 | text.Base_TextBlock.TextDecorations = text.UnderLine; |
||
311 | text.Base_TextBlock.Margin = new Thickness(0, 0, 10, 0); |
||
312 | text.Base_TextBox.Visibility = Visibility.Collapsed; |
||
313 | text.Base_TextBlock.Visibility = Visibility.Visible; |
||
314 | } |
||
315 | else if (control is SymControlN) |
||
316 | { |
||
317 | SymControlN _instance = control as SymControlN; |
||
318 | 787a4489 | KangIngu | |
319 | cd988cd8 | djkim | var xamlData = MarkupToPDF.Serialize.Core.JsonSerializerHelper.UnCompressStamp(_instance.PathXathData); |
320 | |||
321 | c00d0547 | humkyung | System.IO.MemoryStream stream = new System.IO.MemoryStream(); |
322 | System.IO.StreamWriter writer = new System.IO.StreamWriter(stream); |
||
323 | 58b52175 | ljiyeon | xamlData = xamlData.Replace("#FFFF0000", DisplayColor); |
324 | c00d0547 | humkyung | writer.Write(xamlData); |
325 | writer.Flush(); |
||
326 | stream.Position = 0; |
||
327 | 661b7416 | humkyung | |
328 | c00d0547 | humkyung | object obj = XamlReader.Load(stream); |
329 | _instance.Base_ViewBox.Child = obj as UIElement; |
||
330 | _instance.SetViewBox(); |
||
331 | } |
||
332 | 5529d2a2 | humkyung | } |
333 | 661b7416 | humkyung | } |
334 | } |
||
335 | } |
||
336 | |||
337 | 5529d2a2 | humkyung | return res; |
338 | 661b7416 | humkyung | } |
339 | |||
340 | ac4f1e13 | taeseongkim | public static async Task<S_BaseControl> GetBaseControlAsync(string MarkupString) |
341 | 661b7416 | humkyung | { |
342 | ac4f1e13 | taeseongkim | var item = await JsonSerializerHelper.UnCompressStringAsync(MarkupString); //언패킹작업 |
343 | 661b7416 | humkyung | var unknownData = JsonSerializerHelper.JsonDeserialize<S_BaseControl>(item); //복호화작업 |
344 | return unknownData; |
||
345 | } |
||
346 | 787a4489 | KangIngu | |
347 | ac4f1e13 | taeseongkim | public static async Task<string> GetMemoAsync(string MarkupString) |
348 | 5529d2a2 | humkyung | { |
349 | ac4f1e13 | taeseongkim | var item = await JsonSerializerHelper.UnCompressStringAsync(MarkupString); //언패킹작업 |
350 | 5529d2a2 | humkyung | var unknownData = JsonSerializerHelper.JsonDeserialize<S_BaseControl>(item); //복호화작업 |
351 | return unknownData.Memo; |
||
352 | } |
||
353 | 684ef11c | ljiyeon | |
354 | 5529d2a2 | humkyung | //GUID생성(최민수 사원 수정) |
355 | private static string shortGuid() |
||
356 | { |
||
357 | byte[] bytes = new byte[16]; |
||
358 | using (var provider = System.Security.Cryptography.RandomNumberGenerator.Create()) |
||
359 | { |
||
360 | provider.GetBytes(bytes); |
||
361 | } |
||
362 | 661b7416 | humkyung | |
363 | 5529d2a2 | humkyung | var guid = new Guid(bytes); |
364 | 787a4489 | KangIngu | |
365 | 5529d2a2 | humkyung | return Convert.ToBase64String(guid.ToByteArray()) |
366 | .Substring(0, 10) |
||
367 | .Replace("/", "") |
||
368 | .Replace("+", "") + DateTime.UtcNow.Ticks.ToString("x"); |
||
369 | 787a4489 | KangIngu | } |
370 | } |
||
371 | 5529d2a2 | humkyung | } |