This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.Configuration.Install / System.Configuration.Install / AssemblyInstaller.cs
1 // System.Configuration.Install.AssemblyInstaller.cs
2 //
3 // Author:
4 //      Gert Driesen (drieseng@users.sourceforge.net)
5 //
6 // (C) Novell
7 //
8
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System.Collections;
31 using System.ComponentModel;
32 using System.Reflection;
33
34 namespace System.Configuration.Install
35 {
36         public class AssemblyInstaller : Installer
37         {
38                 public AssemblyInstaller ()
39                 {
40                 }
41
42                 public AssemblyInstaller (Assembly assembly, string[] commandLine)
43                 {
44                         _assembly = assembly;
45                         _commandLine = commandLine;
46                         _useNewContext = true;
47                 }
48
49                 public AssemblyInstaller (string filename, string[] commandLine)
50                 {
51                         Path = System.IO.Path.GetFullPath (filename);
52                         _commandLine = commandLine;
53                         _useNewContext = true;
54                 }
55
56                 [MonoTODO]
57                 public static void CheckIfInstallable (string assemblyName)
58                 {
59                         throw new NotImplementedException ();
60                 }
61
62                 [MonoTODO]
63                 public override void Commit (IDictionary savedState)
64                 {
65                         throw new NotImplementedException ();
66                 }
67
68                 [MonoTODO]
69                 public override void Install (IDictionary savedState)
70                 {
71                         throw new NotImplementedException ();
72                 }
73
74                 [MonoTODO]
75                 public override void Rollback (IDictionary savedState)
76                 {
77                         throw new NotImplementedException ();
78                 }
79
80                 [MonoTODO]
81                 public override void Uninstall (IDictionary savedState)
82                 {
83                         throw new NotImplementedException ();
84                 }
85
86                 public Assembly Assembly {
87                         get {
88                                 return _assembly;
89                         }
90                         set {
91                                 _assembly = value;
92                         }
93                 }
94
95                 public string[] CommandLine {
96                         get {
97                                 return _commandLine;
98                         }
99                         set {
100                                 _commandLine = value;
101                         }
102                 }
103
104                 public override string HelpText {
105                         get {
106                                 throw new NotImplementedException ();
107                         }
108                 }
109                 public string Path {
110                         get {
111                                 if (_assembly == null)
112                                         return null;
113                                 
114                                 return _assembly.Location;
115                         }
116                         set {
117                                 if (value == null)
118                                         _assembly = null;
119
120                                 _assembly = Assembly.LoadFrom (value);
121                         }
122                 }
123                 public bool UseNewContext {
124                         get {
125                                 return _useNewContext;
126                         }
127                         set {
128                                 _useNewContext = value;
129                         }
130                 }
131
132                 private Assembly _assembly;
133                 private string[] _commandLine;
134                 private bool _useNewContext;
135         }
136 }