New test.
[mono.git] / mcs / class / System.ServiceProcess / System.ServiceProcess / ServiceBase.cs
index 21b0e3be35b2fca73bf25f346ab83bcacff63839..10d3335e4449298df80de033c5514085f1a5d7b5 100644 (file)
@@ -9,7 +9,6 @@
 // (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
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-
 using System;
+using System.ComponentModel;
 using System.Globalization;
 using System.Diagnostics;
 
 namespace System.ServiceProcess
 {
+#if ONLY_1_1
+       [Designer ("Microsoft.VisualStudio.Install.UserNTServiceDesigner, " + Consts.AssemblyMicrosoft_VisualStudio, "System.ComponentModel.Design.IRootDesigner")]
+#endif
+       [InstallerType (typeof (ServiceProcessInstaller))]
        public class ServiceBase : System.ComponentModel.Component
        {
-               // This member is used for interoperation with monod
-               internal static ServiceBase [] RegisteredServices = null;
-               
-               public ServiceBase() { }
-
-                public const int MaxNameLength = 80;
-
-                bool hasStarted = false;
-                
-                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 {
-
-                        get { return auto_log; }
-
-                        set { auto_log = value; }
-                }
-
-                public bool CanHandlePowerEvent {
-
-                        get { return can_handle_power_event; }
-
-                        set {
-                                if (hasStarted)
-                                        throw new InvalidOperationException (
-                                                Locale.GetText ("Cannot modify this property " +
-                                                                "after the service has started."));
+               internal delegate void RunServiceCallback (ServiceBase [] services);
 
-                                can_handle_power_event = value;
-                        }
-                }
+               // This member is used for interoperation with mono-service
+               internal static RunServiceCallback RunService = null;
 
-                public bool CanPauseAndContinue {
+               public const int MaxNameLength = 80;
 
-                        get { return can_pause_and_continue; }
+               bool hasStarted;
+               bool auto_log = true;
+               bool can_handle_power_event;
+               bool can_pause_and_continue;
+               bool can_shutdown;
+               bool can_stop = true;
+               EventLog event_log;
+               string service_name;
 
-                        set {
-                                if (hasStarted)
-                                        throw new InvalidOperationException (
-                                                Locale.GetText ("Cannot modify this property " +
-                                                                "after the service has started."));
-
-                                can_pause_and_continue = value;
-                        }
-                }
-
-                public bool CanShutdown {
-
-                        get { return can_shutdown; }
-
-                        set {
-                                if (hasStarted)
-                                        throw new InvalidOperationException (
-                                                Locale.GetText ("Cannot modify this property " +
-                                                                "after the service has started."));
-
-                                can_shutdown = value;
-                        }
-                }
+               public ServiceBase ()
+               {
+               }
 
-                public bool CanStop {
+               [DefaultValue (true)]
+               [ServiceProcessDescription ("Whether the service should automatically write to the event log on common events such as Install and Start.")]
+               public bool AutoLog {
+                       get { return auto_log; }
+                       set { auto_log = value; }
+               }
 
-                        get { return can_stop; }
+               [DefaultValue (false)]
+               public bool CanHandlePowerEvent {
+                       get { return can_handle_power_event; }
+                       set {
+                               if (hasStarted)
+                                       throw new InvalidOperationException (
+                                                       Locale.GetText ("Cannot modify this property " +
+                                                                                       "after the service has started."));
+
+                               can_handle_power_event = value;
+                       }
+               }
 
-                        set {
-                                if (hasStarted)
-                                        throw new InvalidOperationException (
-                                                Locale.GetText ("Cannot modify this property " +
-                                                                "after the service has started."));
+               [DefaultValue (false)]
+               public bool CanPauseAndContinue {
+                       get { return can_pause_and_continue; }
+                       set {
+                               if (hasStarted)
+                                       throw new InvalidOperationException (
+                                                       Locale.GetText ("Cannot modify this property " +
+                                                                                       "after the service has started."));
+
+                               can_pause_and_continue = value;
+                       }
+               }
 
-                                can_stop = value;
-                        }
-                }
-                
-                public virtual EventLog EventLog {
-                        get { 
-                                                       if (event_log == null)
-                                                               event_log = new EventLog ("Application", ".", service_name);
-                                                       return event_log; 
-                                               }
-                }
+               [DefaultValue (false)]
+               public bool CanShutdown {
+                       get { return can_shutdown; }
+                       set {
+                               if (hasStarted)
+                                       throw new InvalidOperationException (
+                                                       Locale.GetText ("Cannot modify this property " +
+                                                                                       "after the service has started."));
+
+                               can_shutdown = value;
+                       }
+               }
 
-                public string ServiceName {
+               [DefaultValue (true)]
+               public bool CanStop {
+                       get { return can_stop; }
+                       set {
+                               if (hasStarted)
+                                       throw new InvalidOperationException (
+                                                       Locale.GetText ("Cannot modify this property " +
+                                                                                       "after the service has started."));
+
+                               can_stop = value;
+                       }
+               }
 
-                        get { return service_name; }
+               [Browsable (false)]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               public virtual EventLog EventLog {
+                       get {
+                               if (event_log == null)
+                                       event_log = new EventLog ("Application", ".", service_name);
+                               return event_log;
+                       }
+               }
 
-                        set {
-                                if (hasStarted)
-                                        throw new InvalidOperationException (
-                                                Locale.GetText ("Cannot modify this property " +
-                                                                "after the service has started."));
+               [ServiceProcessDescription ("The name by which the service is identified to the system.")]
+               [TypeConverter ("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
+               public string ServiceName {
+                       get { return service_name; }
+                       set {
+                               if (hasStarted)
+                                       throw new InvalidOperationException (
+                                                       Locale.GetText ("Cannot modify this property " +
+                                                                                       "after the service has started."));
+
+                               service_name = value;
+                       }
+               }
 
-                                service_name = value;
-                        }
-                }
-                                
-               protected override void Dispose (bool disposing) { }
+               protected override void Dispose (bool disposing)
+               {
+               }
 
-               protected virtual void OnStart (string [] args) { }
+               protected virtual void OnStart (string [] args)
+               {
+               }
 
-               protected virtual void OnStop () { }
-               
-               protected virtual void OnContinue () { }
+               protected virtual void OnStop ()
+               {
+               }
 
-               protected virtual void OnCustomCommand () { }
+               protected virtual void OnContinue ()
+               {
+               }
 
-               protected virtual void OnPause () { }
+               protected virtual void OnCustomCommand (int command)
+               {
+               }
 
-               protected virtual void OnPowerEvent () { }
+               protected virtual void OnPause ()
+               {
+               }
 
-               protected virtual void OnShutdown () { }
+               protected virtual bool OnPowerEvent (PowerBroadcastStatus powerStatus)
+               {
+                       return true;
+               }
 
-        public static void Run (ServiceBase service) 
+               protected virtual void OnShutdown ()
                {
-                       Run (new ServiceBase [] {service});
                }
 
-               public static void Run (ServiceBase [] servicesToRun) 
+               public static void Run (ServiceBase service)
                {
-                       RegisteredServices = servicesToRun;
+                       Run (new ServiceBase [] { service });
                }
 
+               public static void Run (ServiceBase [] servicesToRun)
+               {
+                       if (RunService != null)
+                               RunService (servicesToRun);
+               }
        }
 }