merge -r 60439:60440
[mono.git] / mcs / class / System.ServiceProcess / System.ServiceProcess / ServiceBase.cs
index 1e58783227ca574ee2ec1b7bc40bc906b59420d8..82758996bed8268cb24d3183383c16c6a0a872bc 100644 (file)
@@ -4,8 +4,31 @@
 // Authors:
 //      Cesar Octavio Lopez Nataren (cesar@ciencias.unam.mx)
 //      Duncan Mak (duncan@ximian.com)
+//      Joerg Rosenkranz (joergr@voelcker.com)
 //
 // (C) 2003, Ximian Inc and Cesar Octavio Lopez Nataren.
+// (C) 2005, Voelcker Informatik AG
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
 
@@ -17,18 +40,23 @@ namespace System.ServiceProcess
 {
        public class ServiceBase : System.ComponentModel.Component
        {
+               internal delegate void RunServiceCallback (ServiceBase [] services);
+               
+               // This member is used for interoperation with mono-service
+               internal static RunServiceCallback RunService = null;
+               
                public ServiceBase() { }
 
                 public const int MaxNameLength = 80;
 
-                bool hasStarted;
+                bool hasStarted = false;
                 
-                bool auto_log;
-                bool can_handle_power_event;
-                bool can_pause_and_continue;
-                bool can_shutdown;
-                bool can_stop;
-                EventLog event_log;
+                bool auto_log = true;
+                bool can_handle_power_event = false;
+                bool can_pause_and_continue = false;
+                bool can_shutdown = false;
+                bool can_stop = true;
+                EventLog event_log = null;
                 string service_name;
 
                 public bool AutoLog {
@@ -95,7 +123,11 @@ namespace System.ServiceProcess
                 }
                 
                 public virtual EventLog EventLog {
-                        get { return event_log; }
+                        get { 
+                                                       if (event_log == null)
+                                                               event_log = new EventLog ("Application", ".", service_name);
+                                                       return event_log; 
+                                               }
                 }
 
                 public string ServiceName {
@@ -117,10 +149,27 @@ namespace System.ServiceProcess
                protected virtual void OnStart (string [] args) { }
 
                protected virtual void OnStop () { }
+               
+               protected virtual void OnContinue () { }
+
+               protected virtual void OnCustomCommand () { }
+
+               protected virtual void OnPause () { }
+
+               protected virtual void OnPowerEvent () { }
+
+               protected virtual void OnShutdown () { }
 
-                public static void Run (ServiceBase service) { }
+        public static void Run (ServiceBase service) 
+               {
+                       Run (new ServiceBase [] {service});
+               }
 
-               public static void Run (ServiceBase [] ServicesToRun) { }
+               public static void Run (ServiceBase [] servicesToRun) 
+               {
+                       if (RunService != null)
+                               RunService (servicesToRun);
+               }
 
        }
 }