forked from bitdiff/synoptic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindowsService.cs
138 lines (116 loc) · 4.24 KB
/
WindowsService.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
using System;
using System.Collections;
using System.Configuration.Install;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using Microsoft.Win32;
namespace Synoptic.Service
{
public sealed class WindowsService : ServiceBase
{
private readonly IDaemon _daemon;
private readonly IWindowsServiceConfiguration _configuration;
public WindowsService(IDaemon daemon, IWindowsServiceConfiguration configuration)
{
if (configuration == null)
throw new ArgumentNullException("configuration");
if (configuration.ServiceName == null)
throw new ArgumentNullException("configuration", "ServiceName cannot be null");
_daemon = daemon;
_configuration = configuration;
EventLog.Log = "Application";
ServiceName = _configuration.ServiceName;
CanStop = true;
CanShutdown = true;
}
protected override void OnStart(string[] args)
{
base.OnStart(args);
_daemon.Start();
}
protected override void OnStop()
{
base.OnStop();
_daemon.Stop();
}
protected override void OnShutdown()
{
base.OnShutdown();
_daemon.Stop();
}
public bool IsInstalled()
{
return ServiceController.GetServices().Any(service => service.ServiceName == ServiceName);
}
public void Install()
{
using (var installer = new TransactedInstaller())
{
SetInstallers(installer);
// There is a bug in .NET 3.5 where the image path will not be escaped correctly.
installer.Context = new InstallContext(null, new[] { "/assemblypath=\"" + Process.GetCurrentProcess().MainModule.FileName + "\" " + _configuration.CommandLineArguments });
installer.AfterInstall += ModifyImagePath;
installer.Install(new Hashtable());
}
}
private void ModifyImagePath(object sender, InstallEventArgs e)
{
string exe = Process.GetCurrentProcess().MainModule.FileName;
string path = string.Format("\"{0}\" {1}", exe, _configuration.CommandLineArguments);
RegistryKey key = Registry.LocalMachine.OpenSubKey("System\\CurrentControlSet\\Services");
if (key != null)
{
RegistryKey subKey = key.OpenSubKey(_configuration.ServiceName, true);
if (subKey != null)
subKey.SetValue("ImagePath", path);
}
}
public void Uninstall()
{
using (var installer = new TransactedInstaller())
{
SetInstallers(installer);
installer.Uninstall(null);
}
}
private void SetInstallers(Installer installer)
{
installer.Installers.Add(new ServiceProcessInstaller { Account = ServiceAccount.LocalSystem });
installer.Installers.Add(new ServiceInstaller { DisplayName = _configuration.DisplayName, Description = _configuration.Description, ServiceName = _configuration.ServiceName, StartType = ServiceStartMode.Automatic });
}
public void Run()
{
Run(this);
}
}
public interface IWindowsServiceConfiguration
{
string ServiceName { get; }
string CommandLineArguments { get; }
string Description { get; }
string DisplayName { get; }
}
public class WindowsServiceConfiguration : IWindowsServiceConfiguration
{
private readonly string _serviceName;
public WindowsServiceConfiguration(string serviceName)
{
if (String.IsNullOrEmpty(serviceName))
throw new ArgumentNullException("serviceName");
_serviceName = serviceName;
}
public string ServiceName
{
get { return _serviceName; }
}
public string CommandLineArguments { get; set; }
public string Description { get; set; }
public string DisplayName { get; set; }
}
public interface IDaemon
{
void Start();
void Stop();
}
}