* support-test-*.cs: Rename from test-*-p2.cs.
[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
32 using System;
33 using System.Collections;
34 using System.ComponentModel;
35 using System.Configuration.Install;
36
37 namespace System.ServiceProcess
38 {
39         public class ServiceInstaller : System.Configuration.Install.ComponentInstaller
40         {
41                 public ServiceInstaller () {}
42                 
43                 private string display_name;
44                 private string service_name;
45                 private string[] services_depended_on;
46                 private ServiceStartMode start_type;
47
48 #if NET_2_0
49                 private string description;
50                 public string Description {
51                         get {
52                                 return description;
53                         }
54                         set {
55                                 description = value;
56                         }
57                 }
58 #endif
59
60                 public string DisplayName {
61                         get {
62                                 return display_name;
63                         }
64                         set {
65                                 display_name = value;
66                         }
67                 }
68
69                 public string ServiceName {
70                         get {
71                                 return service_name;
72                         }
73                         set {
74                                 if (value == null || value.Length == 0 || value.Length > 256)
75                                         throw new ArgumentException ();
76                                 service_name = value;
77                         }
78                 }
79
80                 public string[] ServicesDependedOn {
81                         get {
82                                 return services_depended_on;
83                         }
84                         set {
85                                 services_depended_on = value;
86                         }
87                 }
88
89                 public ServiceStartMode StartType {
90                         get {
91                                 return start_type;
92                         }
93                         set {
94                                 start_type = value;
95                         }
96                 }
97
98                 public override void CopyFromComponent (IComponent component) {
99                         if (!component.GetType ().IsSubclassOf (typeof (ServiceBase)))
100                                 throw new ArgumentException ();
101                 }
102
103                 public override void Install (IDictionary stateSaver) {
104                         throw new NotImplementedException ();
105                 }
106         
107                 public override bool IsEquivalentInstaller (ComponentInstaller otherInstaller) {
108                         throw new NotImplementedException ();
109                 }
110
111                 public override void Rollback (IDictionary savedState) {
112                         throw new NotImplementedException ();
113                 }
114
115                 public override void Uninstall (IDictionary savedState) {
116                         throw new NotImplementedException ();
117                 }
118         }
119 }