forked from CommentViewerCollection/MultiCommentViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
227 lines (215 loc) · 8.25 KB
/
Copy pathProgram.cs
File metadata and controls
227 lines (215 loc) · 8.25 KB
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
using CommentViewerCommon;
using Common;
using MultiCommentViewer.Test;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Threading;
namespace MultiCommentViewer
{
class Program
{
static ILogger _logger;
[STAThread]
//static async Task Main(string[] args)
static void Main()
{
_logger = new Common.LoggerTest();
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
var app = new AppNoStartupUri
{
ShutdownMode = ShutdownMode.OnExplicitShutdown
};
app.InitializeComponent();
SynchronizationContext.SetSynchronizationContext(new DispatcherSynchronizationContext());
var p = new Program();
p.ExitRequested += (sender, e) =>
{
app.Shutdown();
};
var t = p.StartAsync();
Handle(t);
app.Run();
}
static async void Handle(Task t)
{
try
{
await t;
}
catch (Exception ex)
{
Debug.WriteLine(ex.Message);
_logger.LogException(ex);
}
}
private string GetOptionsPath()
{
var currentDir = Directory.GetParent(Assembly.GetExecutingAssembly().Location).FullName;
return Path.Combine(currentDir, "settings", "options.txt");
}
public async Task StartAsync()
{
var io = new Test.IOTest();
//settingsディレクトリの有無を確認し、無ければ作成する
const string SettingsDirName = "settings";
if (!Directory.Exists(SettingsDirName))
{
Directory.CreateDirectory(SettingsDirName);
}
//OptionsはMainViewModelのContentRendered()で読み込みたい。しかし、その前にConnectionNameWidth等が参照されるため現状ではコンストラクタ以前に読み込む必要がある。
//実行される順番は
//ctor->ConnectionNameWidth->Activated->Loaded->ContentRendered
//理想は、とりあえずViewを表示して、そこに"読み込み中です"みたいな表示を出している間に必要なものを読み込むこと。
//しかし、それをやるにはViewの位置はデフォルト値になってしまう。それでも良いか。
//これ↓が一番いいかも
//ここでOptionsのインスタンスを作成し、MainViewModelに渡す。とりあえずデフォルト値で初期化させ、ContentRenderedで保存されたOptionsを読み込み差し替える。
var options = new DynamicOptionsTest();
try
{
var s = io.ReadFile(GetOptionsPath());
options.Deserialize(s);
}
catch (Exception ex)
{
_logger.LogException(ex);
}
try
{
SendErrorFile();
}
catch { }
ISitePluginLoader sitePluginLoader = new Test.SitePluginLoaderTest();
IBrowserLoader browserLoader = new BrowserLoader(_logger);
//var model = new Model(new SitePluginLoaderTest(), options, _logger, io);
//(IIo io, ILogger logger, IOptions options, ISitePluginLoader sitePluginLoader, IBrowserLoader browserLoader)
//var viewModel = new MainViewModel(model);
var viewModel = new MainViewModel(io, _logger, options, sitePluginLoader, browserLoader);
viewModel.CloseRequested += ViewModel_CloseRequested;
void windowClosed(object sender, EventArgs e)
{
viewModel.RequestClose();
try
{
var s = options.Serialize();
io.WriteFile(GetOptionsPath(), s);
}
catch (Exception ex)
{
_logger.LogException(ex);
}
try
{
var s = _logger.GetExceptions();
SendErrorReport(s, GetTitle(), GetVersion());
}
catch (Exception ex)
{
//ここで例外が起きても送れない・・・。
Debug.WriteLine(ex.Message);
}
}
//SplashScreen splashScreen = new SplashScreen(); //not disposable, but I'm keeping the same structure
//{
// splashScreen.Closed += windowClosed; //if user closes splash screen, let's quit
// splashScreen.Show();
await viewModel.InitializeAsync();
var mainForm = new MainWindow();
mainForm.Closed += windowClosed;
mainForm.DataContext = viewModel;
mainForm.Show();
// splashScreen.Owner = mainForm;
// splashScreen.Closed -= windowClosed;
// splashScreen.Close();
//}
}
public event EventHandler<EventArgs> ExitRequested;
void ViewModel_CloseRequested(object sender, EventArgs e)
{
OnExitRequested(EventArgs.Empty);
}
protected virtual void OnExitRequested(EventArgs e)
{
ExitRequested?.Invoke(this, e);
}
private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
var ex = e.ExceptionObject as Exception;
try
{
_logger.LogException(ex, "UnhandledException");
var s = _logger.GetExceptions();
using (var sw = new System.IO.StreamWriter("error.txt", true))
{
sw.WriteLine(s);
}
}
catch { }
}
private string GetTitle()
{
var asm = System.Reflection.Assembly.GetExecutingAssembly();
var title = asm.GetName().Name;
return title;
}
private string GetVersion()
{
var asm = System.Reflection.Assembly.GetExecutingAssembly();
var ver = asm.GetName().Version;
var s = $"v{ver.Major}.{ver.Minor}.{ver.Build}";
return s;
}
/// <summary>
/// エラー情報をサーバに送信する
/// </summary>
/// <param name="errorData"></param>
/// <param name="title"></param>
/// <param name="version"></param>
private void SendErrorReport(string errorData, string title, string version)
{
if (string.IsNullOrEmpty(errorData))
{
return;
}
var fileStreamContent = new StreamContent(new System.IO.MemoryStream(Encoding.UTF8.GetBytes(errorData)));
using (var client = new HttpClient())
using (var formData = new MultipartFormDataContent())
{
client.DefaultRequestHeaders.Add("User-Agent", $"{title} {version}");
formData.Add(fileStreamContent, "error", title + "_" + version + "_" + "error.txt");
var t = client.PostAsync("https://int-main.net/upload", formData);
var response = t.Result;
if (!response.IsSuccessStatusCode)
{
}
else
{
}
}
}
/// <summary>
/// error.txtがあったらサーバに送信して削除する
/// </summary>
private void SendErrorFile()
{
if (System.IO.File.Exists("error.txt"))
{
string errorContent;
using (var sr = new System.IO.StreamReader("error.txt"))
{
errorContent = sr.ReadToEnd();
}
SendErrorReport(errorContent, GetTitle(), GetVersion());
System.IO.File.Delete("error.txt");
}
}
}
}