프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / KCOM / App.xaml.cs @ 1137be84

이력 | 보기 | 이력해설 | 다운로드 (10.3 KB)

1 787a4489 KangIngu

2 af22332b ljiyeon
using KCOM.Common;
3 c4a4d59c ljiyeon
using KCOM.ServiceDeepView;
4 787a4489 KangIngu
using System;
5
using System.Collections.Generic;
6
using System.ComponentModel;
7
using System.Configuration;
8
using System.Data;
9 c4a4d59c ljiyeon
using System.Diagnostics;
10
using System.IO;
11 787a4489 KangIngu
using System.Linq;
12 c4a4d59c ljiyeon
using System.Net;
13
using System.Reflection;
14 787a4489 KangIngu
using System.Runtime.CompilerServices;
15
using System.ServiceModel;
16
using System.Windows;
17 c4a4d59c ljiyeon
using System.Xml;
18 a7346d3c humkyung
using log4net;
19 e52385b9 ljiyeon
using System.Text;
20
using System.Runtime.InteropServices;
21 cf2671a6 ljiyeon
using KCOM.Views;
22
using System.Threading.Tasks;
23 787a4489 KangIngu
24 a7346d3c humkyung
[assembly: log4net.Config.XmlConfigurator(Watch = true)]
25 787a4489 KangIngu
namespace KCOM
26
{
27
    public class OpenProperties
28
    {
29
        public string DocumentItemID { get; set; }
30
        public bool bPartner { get; set; }
31
        public bool CreateFinalPDFPermission { get; set; }
32
        public bool NewCommentPermission { get; set; }
33
        public string ProjectNO { get; set; }
34
        public string UserID { get; set; }
35
        public int Mode { get; set; }
36
    }
37
    /// <summary>
38
    /// App.xaml에 대한 상호 작용 논리
39
    /// </summary>
40
    public partial class App : Application
41
    {
42
        public static BasicHttpBinding _binding;
43
        public static EndpointAddress _EndPoint;
44
        public static EndpointAddress _EndPoint_SaveLoad;
45
        public static EndpointAddress _EndPoint_Symbol;
46
        public static string UserID;
47
        public static string UserName;
48
        public static string UserIP;
49
        public static IKCOM.ViewInfo ViewInfo;
50
        public static string urlHost;
51
        public static string urlPort;
52
        public static string urlHost_DB;
53
        public static string urlPort_DB;
54
        public static string Custom_ViewInfoId;
55
        public static bool ParameterMode = false;
56 84c48033 djkim
        public static bool isExternal = false;
57 787a4489 KangIngu
58 a7346d3c humkyung
        /// <summary>
59
        /// logger
60
        /// </summary>
61 ce3f0d7a humkyung
        public static ILog DBLogger = null;
62
        public static ILog FileLogger = null;
63 a7346d3c humkyung
64
        /// <summary>
65
        /// Application Data Folder
66
        /// </summary>
67
        public static string AppDataFolder
68
        {
69
            get
70
            {
71
                return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MARKUS");
72
            }
73
        }
74 787a4489 KangIngu
75 1137be84 djkim
76 787a4489 KangIngu
        public static RestSharp.RestClient BaseClient { get; set; }
77
        public static IKCOM.KCOM_SystemInfo SystemInfo { get; set; }
78 1137be84 djkim
79 264c9309 ljiyeon
80 787a4489 KangIngu
        private static OpenProperties ParamDecoding(string DecodingText, System.Text.Encoding oEncoding = null)
81
        {
82
            if (oEncoding == null)
83
                oEncoding = System.Text.Encoding.UTF8;
84
85
            byte[] byteArray = Convert.FromBase64String(DecodingText);
86
87
            string jsonBack = oEncoding.GetString(byteArray);
88
89
            return Newtonsoft.Json.JsonConvert.DeserializeObject<OpenProperties>(jsonBack);
90
        }
91
92 c4a4d59c ljiyeon
        private string versionPath = null;
93 cf2671a6 ljiyeon
        //public SplashScreen splash = new SplashScreen("splash.png");
94 e0cfc73c ljiyeon
        public static SplashScreenWindow splashScreen = new SplashScreenWindow();
95 cdfb57ff taeseongkim
96
        public App()
97
        {
98 1137be84 djkim
99 cdfb57ff taeseongkim
        }
100
101
        protected override async void OnStartup(StartupEventArgs e)
102
        {
103 1137be84 djkim
104 787a4489 KangIngu
            try
105 a7346d3c humkyung
            {
106 566f0526 taeseongkim
107
108 cf2671a6 ljiyeon
                splashScreen.Show();
109 1137be84 djkim
110 a7346d3c humkyung
                /// create log database and table
111
                using (IAbstractDatabase database = new AppSQLiteDatabase() { FilePath = Path.Combine(AppDataFolder, "log4net.db") })
112
                {
113
                    string sSql = "CREATE TABLE IF NOT EXISTS Log (LogId INTEGER PRIMARY KEY,Date DATETIME NOT NULL,Level VARCHAR(50) NOT NULL,Logger VARCHAR(255) NOT NULL,Message TEXT DEFAULT NULL,StackTrace TEXT DEFAULT NULL);";
114
                    database.ExecuteNonQuery(sSql);
115
                }
116
                /// up to here
117
                AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
118 ce3f0d7a humkyung
                log4net.GlobalContext.Properties["LogDBFilePath"] = Path.Combine(AppDataFolder, "log4net.db");
119
                log4net.GlobalContext.Properties["LogFilePath"] = Path.Combine(AppDataFolder, "Log", "log4net.log");
120
                App.DBLogger = LogManager.GetLogger("DBLogger");
121
                App.FileLogger = LogManager.GetLogger("EventLogger");
122 a7346d3c humkyung
123 1137be84 djkim
                #region  //  DNS 체크
124
125
                string localdomain = CommonLib.Common.GetConfigString("HOST_DOMAIN", "DOMAIN", "");
126
127
                var hostEntry = CommonLib.DNSHelper.GetHostEntryTask();
128
129
                if (hostEntry == null)
130
                {
131
                    System.Diagnostics.Debug.WriteLine("(hostEntry == null");
132
                    App.FileLogger.Fatal("hostEntry == null");
133
                    isExternal = true;
134
                }
135
                else if (!hostEntry.HostName.EndsWith(localdomain))
136
                {
137
                    // 외부 사용자
138
                    App.FileLogger.Fatal("hostEntry != localdomain :" + hostEntry.HostName);
139
                    isExternal = true;
140
                }
141
                #endregion
142 cf2671a6 ljiyeon
                //splash.Show(false, false);                
143 1137be84 djkim
144 787a4489 KangIngu
                if (e.Args.Count() > 0)
145
                {
146 c4a4d59c ljiyeon
                    var result = ParamDecoding(e.Args[0].Replace(@"kcom://", "").Replace(@"/", ""));
147 787a4489 KangIngu
                    App.ViewInfo = new IKCOM.ViewInfo
148
                    {
149
                        DocumentItemID = result.DocumentItemID,
150 35afe17c djkim
                        EnsembleID = result.DocumentItemID,
151 787a4489 KangIngu
                        //DocumentItemID = "10001",
152
                        bPartner = result.bPartner,
153 bc664e9b djkim
                        CreateFinalPDFPermission = result.CreateFinalPDFPermission,
154
                        NewCommentPermission = result.NewCommentPermission,
155 787a4489 KangIngu
                        ProjectNO = result.ProjectNO,
156
                        UserID = result.UserID,
157
                        //UserID = "H2009115",
158
                        //Mode = 0 , 1 , 2
159
                    };
160
                    ParameterMode = true;
161
                }
162 c4a4d59c ljiyeon
                else
163
                {
164
                    string[] strArg = Environment.GetCommandLineArgs();
165
                    if (strArg.Length > 1)
166
                    {
167
                        //label1.Text = strArg[1];
168
169
                        var result = ParamDecoding(strArg[1].Replace(@"kcom://", "").Replace(@"/", ""));
170
                        App.ViewInfo = new IKCOM.ViewInfo
171
                        {
172
                            DocumentItemID = result.DocumentItemID,
173 35afe17c djkim
                            EnsembleID = result.DocumentItemID,
174 c4a4d59c ljiyeon
                            //DocumentItemID = "10001",
175
                            bPartner = result.bPartner,
176
                            CreateFinalPDFPermission = result.CreateFinalPDFPermission,
177
                            NewCommentPermission = result.NewCommentPermission,
178
                            ProjectNO = result.ProjectNO,
179
                            UserID = result.UserID,
180
                            //UserID = "H2009115",
181
                            //Mode = 0 , 1 , 2
182
                        };
183
                        ParameterMode = true;
184 1137be84 djkim
                    }
185 c4a4d59c ljiyeon
                }
186 992a98b4 KangIngu
187
                //App.ViewInfo.CreateFinalPDFPermission = false;
188
                //App.ViewInfo.NewCommentPermission = false;
189 c4a4d59c ljiyeon
                //GetQueryStringParameters();
190
                _binding = new BasicHttpBinding(BasicHttpSecurityMode.TransportCredentialOnly);
191 787a4489 KangIngu
                _binding.MaxBufferSize = 2147483647;
192
                _binding.MaxReceivedMessageSize = 2147483647;
193
                _binding.OpenTimeout = new TimeSpan(0, 1, 0);
194
                _binding.ReceiveTimeout = new TimeSpan(0, 10, 0);
195
                _binding.CloseTimeout = new TimeSpan(0, 5, 0);
196
                _binding.SendTimeout = new TimeSpan(0, 5, 0);
197
                _binding.TextEncoding = System.Text.Encoding.UTF8;
198
                _binding.TransferMode = TransferMode.Buffered;
199
                //Support.SetLicense();
200 af22332b ljiyeon
201 84c48033 djkim
                string sBaseServiceURL = string.Empty;//CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "");
202 1137be84 djkim
203 84c48033 djkim
#if DEBUG
204 eb5cdefc djkim
                //sBaseServiceURL = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal);
205 566f0526 taeseongkim
                System.Diagnostics.Debug.WriteLine("sBaseServiceURL");
206 cdfb57ff taeseongkim
                sBaseServiceURL = CommonLib.Common.GetConfigString("Debug_BaseClientAddress", "URL", "", isExternal);
207 992a98b4 KangIngu
#else
208 36d6ae21 taeseongkim
                sBaseServiceURL = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal);
209 992a98b4 KangIngu
#endif
210 cdfb57ff taeseongkim
211 84c48033 djkim
                _EndPoint = new EndpointAddress(string.Format("{0}/ServiceDeepView.svc", sBaseServiceURL));
212 264c9309 ljiyeon
213 cdfb57ff taeseongkim
                await SplashScreenAsnyc();
214
                base.OnStartup(e);
215
216
                //this.MainWindow = new MainWindow();
217
218 787a4489 KangIngu
            }
219
            catch (Exception ex)
220
            {
221 5aaf27a2 djkim
                MessageBox.Show("Err:" + ex.ToString());
222 787a4489 KangIngu
            }
223 f7e7a61a ljiyeon
            finally
224
            {
225 cdfb57ff taeseongkim
                await SplashScreenAsnyc();
226 1137be84 djkim
            }
227 787a4489 KangIngu
        }
228 a7346d3c humkyung
229 cdfb57ff taeseongkim
        private async Task<bool> SplashScreenAsnyc()
230
        {
231
            int value = 100 / ISplashMessage.SplashMessageCnt;
232
233
            for (int i = 1; i < ISplashMessage.SplashMessageCnt; i++)
234
            {
235
                System.Threading.Thread.Sleep(3);
236
                await splashScreen.Dispatcher.InvokeAsync(() => splashScreen.Progress = i * value);
237
            }
238
239
            splashScreen.Close();
240
241
            return true;
242
        }
243
244 e0cfc73c ljiyeon
        public static void splashString(string text)
245
        {
246
            Task.Factory.StartNew(() =>
247
            {
248
                splashScreen.Dispatcher.Invoke(() => splashScreen.SplashText = text);
249
            });
250
        }
251
252
253 a7346d3c humkyung
        /// <summary>
254
        /// log unhandled exception
255
        /// </summary>
256
        /// <author>humkyung</author>
257
        /// <date>2019.05.21</date>
258
        /// <param name="sender"></param>
259
        /// <param name="e"></param>
260
        private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
261
        {
262
            try
263
            {
264 360e4f75 djkim
                App.FileLogger.Fatal(e.ExceptionObject as Exception);
265
                //App.DBLogger.Fatal(e.ExceptionObject as Exception);
266 a7346d3c humkyung
            }
267
            catch (Exception ex)
268
            {
269 8614f701 taeseongkim
                Console.WriteLine(ex.InnerException?.ToString());
270 a7346d3c humkyung
            }
271
            finally
272
            {
273 8614f701 taeseongkim
#if RELEASE
274 a7346d3c humkyung
                Environment.Exit(0);
275 8614f701 taeseongkim
#endif
276 a7346d3c humkyung
            }
277
        }
278
279 c4a4d59c ljiyeon
        private void ErrorLogFileWrite(string Err)
280
        {
281 ce3f0d7a humkyung
            App.FileLogger.Debug(Err);
282 c4a4d59c ljiyeon
        }
283 787a4489 KangIngu
    }
284
}
클립보드 이미지 추가 (최대 크기: 500 MB)