ad82f287178e5f9405f6c72f63a6ab80055bcb59
[mono.git] / mcs / class / System.ServiceProcess / System.ServiceProcess / ServiceInstaller.cs
1 //
2 // System.ServiceProcess.ServiceInstaller.cs
3 //
4 // Authors:
5 //      Geoff Norton (gnorton@customerdna.com)
6 //
7 // (C) 2005, Geoff Norton
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Collections;
33 using System.ComponentModel;
34 using System.Configuration.Install;
35 using System.Runtime.InteropServices;
36
37 namespace System.ServiceProcess
38 {
39         [MonoTODO]
40         public class ServiceInstaller : ComponentInstaller
41         {
42                 public ServiceInstaller ()
43                 {
44                 }
45                 
46                 private string display_name;
47                 private string service_name;
48                 private string[] services_depended_on;
49                 private ServiceStartMode start_type;
50                 private string description;
51 #if NET_4_0
52                 private bool delayedAutoStart;
53 #endif
54
55 #if NET_4_0
56                 [DefaultValue(false)]
57                 [ServiceProcessDescription("Indicates that the service's start should be delayed after other automatically started services have started.")]
58                 public bool DelayedAutoStart {
59                         get {
60                                 return delayedAutoStart;
61                         }
62                         set {
63                                 delayedAutoStart = value;
64                         }
65                 }
66 #endif
67
68                 [ComVisible (false)]
69                 [DefaultValue ("")]
70                 [ServiceProcessDescription ("Indicates the service's description (a brief comment that explains the purpose of the service). ")]
71                 public string Description {
72                         get {
73                                 return description;
74                         }
75                         set {
76                                 description = value;
77                         }
78                 }
79
80                 [DefaultValue("")]
81                 [ServiceProcessDescription ("Indicates the friendly name that identifies the service to the user.")]
82                 public string DisplayName {
83                         get {
84                                 return display_name;
85                         }
86                         set {
87                                 display_name = value;
88                         }
89                 }
90
91                 [DefaultValue("")]
92                 [ServiceProcessDescription ("Indicates the name used by the system to identify this service.")]
93                 [TypeConverter("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
94                 public string ServiceName {
95                         get {
96                                 return service_name;
97                         }
98                         set {
99                                 if (value == null || value.Length == 0 || value.Length > 256)
100                                         throw new ArgumentException ();
101                                 service_name = value;
102                         }
103                 }
104
105                 [ServiceProcessDescription ("Indicates the services that must be running in order for this service to run.")]
106                 public string[] ServicesDependedOn {
107                         get {
108                                 return services_depended_on;
109                         }
110                         set {
111                                 services_depended_on = value;
112                         }
113                 }
114
115                 [DefaultValue (ServiceStartMode.Manual)]
116                 [ServiceProcessDescription ("Indicates how and when this service is started.")]
117                 public ServiceStartMode StartType {
118                         get {
119                                 return start_type;
120                         }
121                         set {
122                                 start_type = value;
123                         }
124                 }
125
126                 public override void CopyFromComponent (IComponent component)
127                 {
128                         if (!component.GetType ().IsSubclassOf (typeof (ServiceBase)))
129                                 throw new ArgumentException ();
130                 }
131
132                 public override void Install (IDictionary stateSaver)
133                 {
134                         throw new NotImplementedException ();
135                 }
136         
137                 public override bool IsEquivalentInstaller (ComponentInstaller otherInstaller)
138                 {
139                         throw new NotImplementedException ();
140                 }
141
142                 public override void Rollback (IDictionary savedState)
143                 {
144                         throw new NotImplementedException ();
145                 }
146
147                 public override void Uninstall (IDictionary savedState)
148                 {
149                         throw new NotImplementedException ();
150                 }
151         }
152 }