ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/AnywhereTS-MSSQL/trunk/TSControlPanel/Program.cs
Revision: 73
Committed: Thu Jul 12 22:00:37 2012 UTC (10 years, 10 months ago) by william
File size: 6052 byte(s)
Log Message:
+ attempt to get inner exception, if any

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Windows.Forms;
4 using System.Data.SqlClient;
5 using System.Collections;
6 using System.Text;
7 using log4net;
8
9 namespace AnywhereTS
10 {
11 static class Program
12 {
13 /// <summary>
14 /// The main entry point for the application.
15 /// </summary>
16 [STAThread]
17 static void Main()
18 {
19 AppDomain currentDomain = AppDomain.CurrentDomain;
20 currentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
21 Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException, true);
22
23 Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
24
25 Application.EnableVisualStyles();
26 Application.SetCompatibleTextRenderingDefault(false);
27
28 frmClientProperties objCustomDialogBox = new frmClientProperties();
29 objCustomDialogBox.dialogMode = frmClientProperties.ATSClientMode.CONTROL_PANEL; // Select the mode to run the form in.
30 Application.Run(objCustomDialogBox);
31 }
32
33 static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
34 {
35 CurrentDomain_UnhandledException(sender, new UnhandledExceptionEventArgs(e.Exception, false));
36 }
37 static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs args)
38 {
39 DialogResult result = DialogResult.Cancel;
40 Exception e = (Exception)args.ExceptionObject;
41 if (e == null)
42 {
43 Logging.ATSAdminLog.Error("Encountered unhandled Exception, but the exception was null");
44 return;
45 }
46 if (e.GetType() == typeof(SqlException))
47 {
48 SqlException sql_ex = (e as SqlException);
49 List<string> strs = new List<string>();
50 using (log4net.NDC.Push(string.Format("{0}: ID={1} MESSAGE={2}{3}Diagnostics:{3}{4}", sql_ex.GetType().Name, sql_ex.Number.ToString(), sql_ex.Message, System.Environment.NewLine, sql_ex.ToString())))
51 {
52 Exception inner = sql_ex.InnerException;
53 if (inner != null)
54 {
55
56 if (inner.GetType() == typeof(SqlException))
57 {
58 SqlException sql_inner = inner as SqlException;
59 using (log4net.NDC.Push(string.Format("{0}: ID={1} MESSAGE={2}{3}Diagnostics:{3}{4}", sql_inner.GetType().Name, sql_inner.Number.ToString(), sql_inner.Message, System.Environment.NewLine, sql_inner.ToString())))
60 {
61 strs = Logging.GetMessagesFromThreadContextStack("NDC");
62 Logging.ATSAdminLog.Error("Encountered unhandled Exception");
63 }
64 }
65 else
66 {
67 using (log4net.NDC.Push(string.Format("{0}: MESSAGE={1}{2}Diagnostics:{2}{3}", inner.GetType().Name, inner.Message, System.Environment.NewLine, inner.ToString())))
68 {
69 strs = Logging.GetMessagesFromThreadContextStack("NDC");
70 Logging.ATSAdminLog.Error("Encountered unhandled Exception");
71 }
72 }
73 }
74 else
75 {
76 strs = Logging.GetMessagesFromThreadContextStack("NDC");
77 Logging.ATSAdminLog.Error("Encountered unhandled Exception");
78 }
79 }
80 StringBuilder builder = new StringBuilder();
81 foreach (string str in strs) { builder.AppendLine(str); }
82 result = ShowAbortRetryIgnoreDialog("Encountered unhandled Exception", builder.ToString());
83 if (result == DialogResult.Abort)
84 Application.Exit();
85 }
86 else
87 {
88 List<string> strs = new List<string>();
89 using (log4net.NDC.Push(string.Format("{0}: MESSAGE={1}{2}Diagnostics:{2}{3}", e.GetType().Name, e.Message, System.Environment.NewLine, e.ToString())))
90 {
91 Exception inner = e.InnerException;
92 if (inner != null)
93 {
94 using (log4net.NDC.Push(string.Format("{0}: MESSAGE={1}{2}Diagnostics:{2}{3}", inner.GetType().Name, inner.Message, System.Environment.NewLine, inner.ToString())))
95 {
96 strs = Logging.GetMessagesFromThreadContextStack("NDC");
97 Logging.ATSAdminLog.Error("Encountered unhandled Exception");
98 }
99 }
100 else
101 {
102 strs = Logging.GetMessagesFromThreadContextStack("NDC");
103 Logging.ATSAdminLog.Error("Encountered unhandled Exception");
104 }
105 }
106 StringBuilder builder = new StringBuilder();
107 foreach (string str in strs) { builder.AppendLine(str); }
108 result = ShowAbortRetryIgnoreDialog("Encountered unhandled Exception", builder.ToString());
109 if (result == DialogResult.Abort)
110 Application.Exit();
111 }
112 }
113 // Creates the error message and displays it.
114 private static DialogResult ShowAbortRetryIgnoreDialog(string title, string message)
115 {
116 return MessageBox.Show(message, title, MessageBoxButtons.AbortRetryIgnore, MessageBoxIcon.Stop, MessageBoxDefaultButton.Button1);
117 }
118 }
119 }