New test.
[mono.git] / mcs / class / System.ServiceProcess / System.ServiceProcess / ServiceBase.cs
index 1dfe04b442cbed84ef1a617c8053233bd4871578..10d3335e4449298df80de033c5514085f1a5d7b5 100644 (file)
@@ -4,10 +4,11 @@
 // 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
 // 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
        {
-               public ServiceBase() { }
-
-                public const int MaxNameLength = 80;
-
-                bool hasStarted;
-                
-                bool auto_log;
-                bool can_handle_power_event;
-                bool can_pause_and_continue;
-                bool can_shutdown;
-                bool can_stop;
-                EventLog event_log;
-                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."));
-
-                                can_handle_power_event = value;
-                        }
-                }
-
-                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;
-                        }
-                }
-
-                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 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;
-                        }
-                }
-                
-                public virtual EventLog EventLog {
-                        get { return event_log; }
-                }
-
-                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;
-                        }
-                }
-                                
-               protected override void Dispose (bool disposing) { }
-
-               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 [] ServicesToRun) { }
-
+               internal delegate void RunServiceCallback (ServiceBase [] services);
+
+               // This member is used for interoperation with mono-service
+               internal static RunServiceCallback RunService = null;
+
+               public const int MaxNameLength = 80;
+
+               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;
+
+               public ServiceBase ()
+               {
+               }
+
+               [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; }
+               }
+
+               [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;
+                       }
+               }
+
+               [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;
+                       }
+               }
+
+               [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;
+                       }
+               }
+
+               [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;
+                       }
+               }
+
+               [Browsable (false)]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               public virtual EventLog EventLog {
+                       get {
+                               if (event_log == null)
+                                       event_log = new EventLog ("Application", ".", service_name);
+                               return event_log;
+                       }
+               }
+
+               [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;
+                       }
+               }
+
+               protected override void Dispose (bool disposing)
+               {
+               }
+
+               protected virtual void OnStart (string [] args)
+               {
+               }
+
+               protected virtual void OnStop ()
+               {
+               }
+
+               protected virtual void OnContinue ()
+               {
+               }
+
+               protected virtual void OnCustomCommand (int command)
+               {
+               }
+
+               protected virtual void OnPause ()
+               {
+               }
+
+               protected virtual bool OnPowerEvent (PowerBroadcastStatus powerStatus)
+               {
+                       return true;
+               }
+
+               protected virtual void OnShutdown ()
+               {
+               }
+
+               public static void Run (ServiceBase service)
+               {
+                       Run (new ServiceBase [] { service });
+               }
+
+               public static void Run (ServiceBase [] servicesToRun)
+               {
+                       if (RunService != null)
+                               RunService (servicesToRun);
+               }
        }
 }