7
7
'
8
8
' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY
9
9
10
+ Imports System.Globalization
10
11
Imports System.IO
12
+ Imports System.Text.RegularExpressions
11
13
Imports Microsoft.VisualBasic.ApplicationServices
14
+ Imports Newtonsoft.Json
12
15
Imports WinNUT_Client_Common
13
16
14
17
Namespace My
@@ -19,23 +22,31 @@ Namespace My
19
22
' StartupNextInstance : Déclenché lors du lancement d'une application à instance unique et si cette application est déjà active.
20
23
' NetworkAvailabilityChanged : Déclenché quand la connexion réseau est connectée ou déconnectée.
21
24
Partial Friend Class MyApplication
25
+ ' Default culture for output so logs can be shared with the project.
26
+ Private Shared DEF_CULTURE_INFO As CultureInfo = CultureInfo.InvariantCulture
27
+
28
+
22
29
Private CrashBug_Form As New Form
23
30
Private BtnClose As New Button
24
31
Private BtnGenerate As New Button
25
32
Private Msg_Crash As New Label
26
33
Private Msg_Error As New TextBox
27
34
35
+ Private crashReportData As String
36
+
28
37
Private Sub MyApplication_Startup(sender As Object , e As StartupEventArgs) Handles Me .Startup
29
- 'Init WinNUT Variables
38
+ ' Uncomment below and comment out Handles line for _UnhandledException sub when debugging unhandled exceptions.
39
+ ' AddHandler AppDomain.CurrentDomain.UnhandledException, AddressOf AppDomainUnhandledException
30
40
Init_Globals()
31
- LogFile.LogTracing( "Init Globals Variables Complete " , LogLvl.LOG_DEBUG, Me )
41
+ LogFile.LogTracing( "MyApplication_Startup complete. " , LogLvl.LOG_DEBUG, Me )
32
42
End Sub
33
43
34
- Private Sub MyApplication_UnhandledException( ByVal sender As Object , ByVal e As UnhandledExceptionEventArgs) Handles Me .UnhandledException
35
- e.ExitApplication = False
44
+ Private Sub AppDomainUnhandledException(sender As Object , e As System.UnhandledExceptionEventArgs)
45
+ MyApplication_UnhandledException(sender, New UnhandledExceptionEventArgs( False , e.ExceptionObject))
46
+ End Sub
36
47
37
- Dim Frms As New FormCollection
38
- Frms = Application.OpenForms()
48
+ Private Sub MyApplication_UnhandledException(sender As Object , e As UnhandledExceptionEventArgs) Handles Me .UnhandledException
49
+ e.ExitApplication = False
39
50
40
51
With Msg_Crash
41
52
.Location = New Point( 6 , 6 )
@@ -49,19 +60,12 @@ Namespace My
49
60
.Size = New Point( 470 , 100 )
50
61
End With
51
62
52
- Dim Exception_data = BuildExceptionString(e.Exception)
53
-
54
- If e.Exception.InnerException IsNot Nothing Then
55
- Exception_data &= vbNewLine & "InnerException present:" & vbNewLine
56
- Exception_data &= BuildExceptionString(e.Exception.InnerException)
57
- End If
58
-
59
63
With Msg_Error
60
64
.Location = New Point( 6 , 110 )
61
65
.Multiline = True
62
66
.ScrollBars = ScrollBars.Vertical
63
67
.ReadOnly = True
64
- .Text = Exception_data .ToString()
68
+ .Text = e.Exception .ToString()
65
69
.Size = New Point( 470 , 300 )
66
70
End With
67
71
@@ -93,99 +97,89 @@ Namespace My
93
97
.Controls.Add(BtnGenerate)
94
98
End With
95
99
100
+ crashReportData = GenerateCrashReport(e.Exception)
101
+
96
102
AddHandler BtnClose.Click, AddressOf Application.Close_Button_Click
97
103
AddHandler BtnGenerate.Click, AddressOf Application.Generate_Button_Click
98
- AddHandler CrashBug_Form.FormClosing, AddressOf Application.CrashBug_FormClosing
99
104
100
105
CrashBug_Form.Show()
101
106
CrashBug_Form.BringToFront()
102
107
WinNUT.HasCrashed = True
103
108
End Sub
104
109
105
- ''' <summary>
106
- ''' Generate a friendly message describing an exception.
107
- ''' </summary>
108
- ''' <param name="ex">The exception that will be read for the message.</param>
109
- ''' <returns>The final string representation of the exception.</returns>
110
- Private Function BuildExceptionString(ex As Exception) As String
111
- Dim retStr = String .Empty
112
-
113
- retStr &= String .Format( "Exception type: {0}" & vbNewLine, ex.GetType.ToString)
114
- retStr &= String .Format( "Exception message: {0}" & vbNewLine, ex.Message)
115
- retStr &= "Exception stack trace:" & vbNewLine
116
- retStr &= ex.StackTrace & vbNewLine
117
-
118
- Return retStr
119
- End Function
120
-
121
- Private Sub CrashBug_FormClosing(sender As Object , e As FormClosingEventArgs)
122
- End
123
- End Sub
124
- Private Sub Close_Button_Click(sender As Object , e As EventArgs)
125
- End
126
- End Sub
127
-
128
- Private Sub Generate_Button_Click(sender As Object , e As EventArgs)
129
- 'Generate a bug report with all essential datas
130
- Dim Crash_Report As String = "WinNUT Bug Report" & vbNewLine
131
- Dim WinNUT_Config As New Dictionary( Of String , Object )
132
- Try
133
- WinNUT_Config = Arr_Reg_Key
134
- Catch ex As Exception
135
- Crash_Report &= "ALERT: Encountered exception while trying to access Arr_Reg_Key:" & vbNewLine
136
- Crash_Report &= BuildExceptionString(ex)
137
- End Try
138
-
139
- ' Initialize directory for data
140
- Dim CrashLog_Dir = ApplicationData & "\CrashLog"
141
- If Not Computer.FileSystem.DirectoryExists(CrashLog_Dir) Then
142
- Computer.FileSystem.CreateDirectory(CrashLog_Dir)
143
- End If
110
+ Private Shared Function GenerateCrashReport(ex As Exception) As String
111
+ Dim jsonSerializerSettings As New JsonSerializerSettings()
112
+ jsonSerializerSettings.Culture = DEF_CULTURE_INFO
113
+ jsonSerializerSettings.Formatting = Formatting.Indented
144
114
145
- Dim CrashLog_Filename As String = "Crash_Report_" & Format(Now, "dd-MM-yyyy" ) & "_" &
146
- String .Format( "{0}-{1}-{2}.txt" , Now.Hour.ToString( "00" ), Now.Minute.ToString( "00" ), Now.Second.ToString( "00" ))
115
+ Dim reportStream As New StringWriter(DEF_CULTURE_INFO)
116
+ reportStream.WriteLine( "WinNUT Bug Report" )
117
+ reportStream.WriteLine( "Generated at " + Date .UtcNow.ToString( "F" , DEF_CULTURE_INFO))
118
+ reportStream.WriteLine()
119
+ reportStream.WriteLine( "OS Version: " & Computer.Info.OSVersion)
120
+ reportStream.WriteLine( "WinNUT Version: " & ProgramVersion)
147
121
122
+ # Region "Config output"
123
+ Dim confCopy = New Dictionary( Of String , Object )
148
124
125
+ reportStream.WriteLine()
126
+ reportStream.WriteLine( "==== Parameters ====" )
127
+ reportStream.WriteLine()
149
128
150
- Crash_Report &= "Os Version : " & Computer.Info.OSVersion & vbNewLine
151
- Crash_Report &= "WinNUT Version : " & Reflection.Assembly.GetEntryAssembly().GetName().Version.ToString & vbNewLine
152
-
153
- Crash_Report &= vbNewLine & "WinNUT Parameters : " & vbNewLine
154
- If WinNUT_Config.Count > 0 Then
155
- ' Prepare config values by removing sensitive information.
129
+ ' Censor any identifying information
130
+ If Arr_Reg_Key IsNot Nothing AndAlso Arr_Reg_Key.Count > 0 Then
156
131
For Each kvp As KeyValuePair( Of String , Object ) In Arr_Reg_Key
132
+ Dim newVal As String
157
133
Select Case kvp.Key
158
134
Case "ServerAddress" , "Port" , "UPSName" , "NutLogin" , "NutPassword"
159
- WinNUT_Config.Remove(kvp.Key)
135
+ newVal = "*****"
136
+ Case Else
137
+ newVal = kvp.Value
160
138
End Select
139
+
140
+ confCopy.Add(kvp.Key, newVal)
161
141
Next
162
- Crash_Report &= Newtonsoft.Json.JsonConvert.SerializeObject(WinNUT_Config, Newtonsoft.Json.Formatting.Indented) & vbNewLine
163
142
143
+ reportStream.WriteLine(JsonConvert.SerializeObject(confCopy, jsonSerializerSettings))
144
+ reportStream.WriteLine()
164
145
Else
165
- Crash_Report &= "[EMPTY]" & vbNewLine
146
+ reportStream.WriteLine( "[EMPTY]" )
166
147
End If
148
+ # End Region
167
149
168
- Crash_Report &= vbNewLine & "Error Message : " & vbNewLine
169
- Crash_Report &= Msg_Error.Text & vbNewLine & vbNewLine
170
- Crash_Report &= "Last Events :" & vbNewLine
150
+ # Region "Exceptions"
151
+ reportStream.WriteLine( "==== Exception ====" )
152
+ reportStream.WriteLine()
153
+ reportStream.WriteLine(Regex.Unescape(JsonConvert.SerializeObject(ex, jsonSerializerSettings)))
154
+ reportStream.WriteLine()
155
+ # End Region
171
156
172
- For Each WinNUT_Event In LogFile.LastEvents
173
- Crash_Report &= WinNUT_Event & vbNewLine
174
- Next
157
+ reportStream.WriteLine( "==== Last Events ====" )
175
158
176
- Computer.Clipboard.SetText(Crash_Report)
159
+ LogFile.LastEvents.Reverse()
160
+ reportStream.WriteLine()
161
+ reportStream.WriteLine(Regex.Unescape(JsonConvert.SerializeObject(LogFile.LastEvents, jsonSerializerSettings)))
177
162
178
- Dim CrashLog_Report As StreamWriter
179
- CrashLog_Report = Computer.FileSystem.OpenTextFileWriter(CrashLog_Dir & "\" & CrashLog_Filename, True )
180
- CrashLog_Report.WriteLine(Crash_Report)
163
+ Return reportStream.ToString()
164
+ End Function
165
+
166
+ Private Sub Generate_Button_Click(sender As Object , e As EventArgs)
167
+ Dim logFileName = "CrashReport_" + Date .Now.ToString( "s" ).Replace( ":" , "." ) + ".txt"
168
+
169
+ Computer.Clipboard.SetText(crashReportData)
170
+
171
+ Directory.CreateDirectory(TEMP_DATA_PATH)
172
+ Dim CrashLog_Report = New StreamWriter(Path.Combine(TEMP_DATA_PATH, logFileName))
173
+ CrashLog_Report.WriteLine(crashReportData)
181
174
CrashLog_Report.Close()
182
175
183
176
' Open an Explorer window to the crash log.
184
- ' Dim fullFilepath As String = CrashLog_Dir & "\" & CrashLog_Filename
185
- ' If WinNUT IsNot Nothing Then
186
- Process.Start(CrashLog_Dir)
187
- ' End If
177
+ Process.Start(TEMP_DATA_PATH)
188
178
End
189
179
End Sub
180
+
181
+ Private Sub Close_Button_Click(sender As Object , e As EventArgs)
182
+ CrashBug_Form.Close()
183
+ End Sub
190
184
End Class
191
185
End Namespace
0 commit comments