-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigDialog.cs
203 lines (171 loc) · 7.03 KB
/
ConfigDialog.cs
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
/* FusionLogConfigurator - a .NET Fusion log configuration utility
* Copyright (C) 2012 Stephan Müller
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
using System;
using System.IO;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace FusLogConfig
{
public partial class ConfigDialog : Form
{
private FusionLogConfiguration _configuration;
public ConfigDialog()
{
InitializeComponent();
}
private void btnBrowseLogPath_Click(object sender, EventArgs e)
{
using(var dlg = new FolderBrowserDialog())
{
var oldPath = txtLogPath.Text;
if(!string.IsNullOrEmpty(oldPath) && Directory.Exists(oldPath))
{
dlg.SelectedPath = oldPath;
}
dlg.Description = "Select Fusion log directory:";
if (dlg.ShowDialog() == DialogResult.OK)
{
var selectedPath = dlg.SelectedPath;
txtLogPath.Text = selectedPath;
}
}
}
private void FusionConfigDialog_Load(object sender, EventArgs e)
{
_configuration = FusionRegistry.ReadLogConfiguration();
chkForceLog.Checked = _configuration.ForceLog;
chkLogFailures.Checked = _configuration.LogFailures;
chkLogResourceBinds.Checked = _configuration.LogResourceBinds;
txtLogPath.Text = _configuration.LogDirectory ?? "";
if (AdminProcessStarter.ElevationRequired)
{
AddShieldToButton(btnApply);
AddShieldToButton(btnOK);
}
chkForceLog.CheckStateChanged += delegate
{
_configuration.ForceLog = chkForceLog.Checked;
btnApply.Enabled = true;
};
chkLogFailures.CheckStateChanged += delegate
{
_configuration.LogFailures = chkLogFailures.Checked;
btnApply.Enabled = true;
};
chkLogResourceBinds.CheckStateChanged += delegate
{
_configuration.LogResourceBinds =
chkLogResourceBinds.Checked;
btnApply.Enabled = true;
};
txtLogPath.TextChanged += delegate
{
_configuration.LogDirectory = txtLogPath.Text;
btnApply.Enabled = true;
};
}
private bool Apply()
{
if (!IsConfigurationValid())
return false;
var args = CommandLine.Format(_configuration);
return AdminProcessStarter.StartSelf(args);
}
private bool IsConfigurationValid()
{
var logPath = _configuration.LogDirectory;
if (!DirectoryNameIsValid(logPath))
{
Error("The directory name '{0}' is not valid.", logPath);
return false;
}
if (Directory.Exists(logPath))
return true;
if (File.Exists(logPath))
{
Error("Cannot use {0} as the log path because it points to an existing file. Either delete the file or specifiy a different log directory!", logPath);
return false;
}
var logDirectoryQuestion = string.Format("The log directory {0} does not exist. Should it be created?", logPath);
var result = MessageBox.Show(this, logDirectoryQuestion, "Log directory", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
if (result == DialogResult.Cancel)
return false;
if (result == DialogResult.Yes)
{
var failedToCreate = !TryCreateDirectory(logPath);
if (failedToCreate)
return false;
}
return true;
}
private bool DirectoryNameIsValid(string name)
{
if (string.IsNullOrEmpty(name))
return false;
if (name.IndexOfAny(Path.GetInvalidPathChars()) >= 0)
return false;
return true;
}
private bool TryCreateDirectory(string logPath)
{
try
{
Directory.CreateDirectory(logPath);
return Directory.Exists(logPath) ;
}
catch (Exception ex)
{
if (Directory.Exists(logPath))
return true;
return Error("Directory {0} could not be created: {1}", logPath, ex.Message);
}
}
private bool Error(string format, params object[] args)
{
var message = string.Format(format, args);
MessageBox.Show(this, message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}
private void Exit()
{
Close();
}
private void btnCancel_Click(object sender, EventArgs e)
{
Exit();
}
private void btnOK_Click(object sender, EventArgs e)
{
Apply();
Exit();
}
private void btnApply_Click(object sender, EventArgs e)
{
if(Apply())
btnApply.Enabled = false;
}
// http://www.codeproject.com/KB/vista-security/UAC_Shield_for_Elevation.aspx
[DllImport("user32")]
public static extern UInt32 SendMessage (IntPtr hWnd, UInt32 msg, UInt32 wParam, UInt32 lParam);
private const int BCM_FIRST = 0x1600; //Normal button
private const int BCM_SETSHIELD = (BCM_FIRST + 0x000C); //Elevated button
static internal void AddShieldToButton(Button b)
{
SendMessage(b.Handle, BCM_SETSHIELD, 0, 0xFFFFFFFF);
}
}
}