1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>daemon_windows.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.2.15 -->
<center>
<a class="qindex" href="main.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
<hr><h1>daemon_windows.h</h1><a href="a00089.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <font class="comment">// Package : omniEvents</font>
00002 <font class="comment">// daemon_windows.h Created : 2004/07/30</font>
00003 <font class="comment">// Author : Alex Tingle</font>
00004 <font class="comment">//</font>
00005 <font class="comment">// Copyright (C) 2004 Alex Tingle.</font>
00006 <font class="comment">//</font>
00007 <font class="comment">// This file is part of the omniEvents application.</font>
00008 <font class="comment">//</font>
00009 <font class="comment">// omniEvents is free software; you can redistribute it and/or</font>
00010 <font class="comment">// modify it under the terms of the GNU Lesser General Public</font>
00011 <font class="comment">// License as published by the Free Software Foundation; either</font>
00012 <font class="comment">// version 2.1 of the License, or (at your option) any later version.</font>
00013 <font class="comment">//</font>
00014 <font class="comment">// omniEvents is distributed in the hope that it will be useful,</font>
00015 <font class="comment">// but WITHOUT ANY WARRANTY; without even the implied warranty of</font>
00016 <font class="comment">// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</font>
00017 <font class="comment">// Lesser General Public License for more details.</font>
00018 <font class="comment">//</font>
00019 <font class="comment">// You should have received a copy of the GNU Lesser General Public</font>
00020 <font class="comment">// License along with this library; if not, write to the Free Software</font>
00021 <font class="comment">// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</font>
00022 <font class="comment">//</font>
00023
00024 <font class="preprocessor">#ifndef OMNIEVENTS__DAEMON_WINDOWS_H</font>
00025 <font class="preprocessor"></font><font class="preprocessor">#define OMNIEVENTS__DAEMON_WINDOWS_H</font>
00026 <font class="preprocessor"></font>
00027 <font class="preprocessor">#ifndef __WIN32__</font>
00028 <font class="preprocessor"></font><font class="preprocessor"># error("This file is only intended for Windows.")</font>
00029 <font class="preprocessor"></font><font class="preprocessor">#endif</font>
00030 <font class="preprocessor"></font>
00031 <font class="preprocessor">#include <windows.h></font>
00032 <font class="preprocessor">#include <winsvc.h></font>
00033 <font class="preprocessor">#include <iostream></font>
00034
00035 <font class="keyword">namespace </font>OmniEvents {
00036
<a name="l00040"></a><a class="code" href="a00074.html">00040</a> <font class="keyword">class </font><a class="code" href="a00074.html">Service</a>
00041 {
00042 <font class="keyword">public</font>:
00043 <a class="code" href="a00074.html#a0">Service</a>();
00044 <a class="code" href="a00074.html#a1">~Service</a>();
00045
00046 <font class="keywordtype">void</font> <a class="code" href="a00074.html#a2">start</a>(<font class="keywordtype">int</font>& argc,<font class="keywordtype">char</font>**& argv);
00047
00048 <font class="keywordtype">void</font> <a class="code" href="a00074.html#a3">tracefile</a>(<font class="keyword">const</font> <font class="keywordtype">char</font>* val);
00049 <font class="keywordtype">void</font> <a class="code" href="a00074.html#a4">pidfile</a>(<font class="keyword">const</font> <font class="keywordtype">char</font>* val);
00050 <font class="keywordtype">void</font> <a class="code" href="a00074.html#a5">foreground</a>(<font class="keywordtype">bool</font> val);
00051
00053 <font class="keywordtype">void</font> <a class="code" href="a00074.html#a6">daemonize</a>();
00054
00056 <font class="keywordtype">void</font> <a class="code" href="a00074.html#a7">runningOk</a>();
00057
00059 <font class="keywordtype">void</font> <a class="code" href="a00074.html#a8">shutdown</a>();
00060
00061 <font class="comment">// Callbacks.</font>
00062
00064 <font class="keyword">static</font> <font class="keywordtype">void</font> <a class="code" href="a00074.html#d0">log</a>(<font class="keyword">const</font> <font class="keywordtype">char</font>* message);
00065
00067 <font class="keyword">static</font> <font class="keywordtype">void</font> <a class="code" href="a00074.html#d1">ctrlHandler</a>(DWORD controlCode);
00068
00069 <font class="keyword">private</font>:
<a name="l00070"></a><a class="code" href="a00074.html#o0">00070</a> <font class="keywordtype">char</font>* <a class="code" href="a00074.html#o0">_tracefile</a>;
<a name="l00071"></a><a class="code" href="a00074.html#o1">00071</a> <font class="keyword">const</font> <font class="keywordtype">char</font>* <a class="code" href="a00074.html#o1">_regSubKey</a>;
<a name="l00072"></a><a class="code" href="a00074.html#o2">00072</a> <font class="keywordtype">bool</font> <a class="code" href="a00074.html#o2">_serviceRunning</a>;
<a name="l00073"></a><a class="code" href="a00074.html#o3">00073</a> <font class="keywordtype">int</font> <a class="code" href="a00074.html#o3">_callCount</a>;
<a name="l00074"></a><a class="code" href="a00074.html#o4">00074</a> <font class="keywordtype">char</font>* <a class="code" href="a00074.html#o4">_parameters</a>;
<a name="l00075"></a><a class="code" href="a00074.html#o5">00075</a> <font class="keywordtype">char</font>** <a class="code" href="a00074.html#o5">_argv</a>;
<a name="l00076"></a><a class="code" href="a00074.html#o6">00076</a> std::ostream* <a class="code" href="a00074.html#o6">_logstream</a>;
<a name="l00077"></a><a class="code" href="a00074.html#o7">00077</a> SERVICE_STATUS_HANDLE <a class="code" href="a00074.html#o7">_serviceStatusHandle</a>;
00078
00079 <font class="keywordtype">void</font> <a class="code" href="a00074.html#c0">Service::setArgcArgv</a>(<font class="keywordtype">int</font>& argc,<font class="keywordtype">char</font>**& argv);
00080 <font class="keywordtype">void</font> <a class="code" href="a00074.html#c1">install</a>(<font class="keywordtype">int</font> argc,<font class="keywordtype">char</font>** argv) <font class="keyword">const</font>;
00081 <font class="keywordtype">void</font> <a class="code" href="a00074.html#c2">uninstall</a>() <font class="keyword">const</font>;
00082
00084 <font class="keywordtype">void</font> <a class="code" href="a00074.html#c3">readParameters</a>();
00086 <font class="keywordtype">void</font> <a class="code" href="a00074.html#c4">writeParameters</a>(<font class="keywordtype">int</font> argc, <font class="keywordtype">char</font>** argv) <font class="keyword">const</font>;
00087
00088 <font class="keywordtype">bool</font> <a class="code" href="a00074.html#c5">Service::setServiceStatus</a>(
00089 DWORD currentState,
00090 DWORD win32ExitCode,
00091 DWORD serviceSpecificExitCode,
00092 DWORD checkPoint,
00093 DWORD waitHint
00094 );
00095
00096 }; <font class="comment">// class Service</font>
00097
00098 } <font class="comment">// end namespace OmniEvents</font>
00099
00100 <font class="preprocessor">#endif // OMNIEVENTS__DAEMON_WINDOWS_H</font>
00101 <font class="preprocessor"></font>
</pre></div><hr><address align="right"><small>Generated on Fri Nov 19 17:42:20 2004 for OmniEvents by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0
width=110 height=53></a>1.2.15 </small></address>
</body>
</html>
|