Example #1
0
# "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.
# ----------------------------------------------------------------------

import default
import cmdline

from server import logger
from emadbserver import EMADBServer
	

logger.sysLogInfo("Starting %s" % default.VERSION_STRING)
srv = EMADBServer(cmdline.parser().parse_args())
srv.run()    # Looping  until exception is caught
srv.stop()
logger.sysLogInfo("Stopped %s" % default.VERSION_STRING)
Example #2
0
 def SvcPause(self):
     '''Service Pause entry point'''
     self.ReportServiceStatus(win32service.SERVICE_PAUSE_PENDING)
     log.info("Pausing  emadb %s Windows service", __version__)
     logger.sysLogInfo("Pausing emadb %s Windows service" % __version__)
     win32event.SetEvent(self.pause)
Example #3
0
 def SvcContinue(self):
     '''Service Continue entry point'''
     self.ReportServiceStatus(win32service.SERVICE_CONTINUE_PENDING)
     log.info("Resuming emadb %s Windows service", __version__)
     logger.sysLogInfo("Resuming emadb %s Windows service" % __version__)
     win32event.SetEvent(self.resume)
Example #4
0
 def SvcDoRun(self):
     '''Service Run entry point'''
     logger.sysLogInfo("Starting emadb %s Windows service" % __version__)
     self.server.run()
     self.server.stop()
     logger.sysLogInfo("emadb %s Windows service stopped" % __version__)
Example #5
0
 def SvcStop(self):
     '''Service Stop entry point'''
     self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
     log.info("Stopping emadb %s Windows service", __version__)
     logger.sysLogInfo("Stopping emadb %s Windows service" % __version__)
     win32event.SetEvent(self.stop)
Example #6
0
# 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.
# ----------------------------------------------------------------------

import default
import cmdline

from server import logger
from emadbserver import EMADBServer

logger.sysLogInfo("Starting %s" % default.VERSION_STRING)
srv = EMADBServer(cmdline.parser().parse_args())
srv.run()  # Looping  until exception is caught
srv.stop()
logger.sysLogInfo("Stopped %s" % default.VERSION_STRING)
Example #7
0
 def SvcDoReload(self):
     logger.sysLogInfo("reloading emadb service")
     win32event.SetEvent(self.reload)
Example #8
0
 def SvcContinue(self):
     '''Service Continue entry point'''
     self.ReportServiceStatus(win32service.SERVICE_CONTINUE_PENDING)
     log.info("Resuming emadb %s Windows service", __version__  )
     logger.sysLogInfo("Resuming emadb %s Windows service" % __version__ )
     win32event.SetEvent(self.resume)
Example #9
0
 def SvcPause(self):
     '''Service Pause entry point'''
     self.ReportServiceStatus(win32service.SERVICE_PAUSE_PENDING)
     log.info("Pausing  emadb %s Windows service",  __version__ )
     logger.sysLogInfo("Pausing emadb %s Windows service" % __version__ )
     win32event.SetEvent(self.pause)
Example #10
0
 def SvcStop(self):
     '''Service Stop entry point'''
     self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
     log.info("Stopping emadb %s Windows service", __version__ )
     logger.sysLogInfo("Stopping emadb %s Windows service" % __version__ )
     win32event.SetEvent(self.stop)
Example #11
0
 def SvcDoRun(self):
     '''Service Run entry point'''
     logger.sysLogInfo("Starting emadb %s Windows service" % __version__ )
     self.server.run()
     self.server.stop()
     logger.sysLogInfo("emadb %s Windows service stopped" % __version__ )
Example #12
0
 def SvcDoReload(self):
     logger.sysLogInfo("reloading emadb service")
     win32event.SetEvent(self.reload)