mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
122 lines
4.2 KiB
Text
122 lines
4.2 KiB
Text
|
'#--
|
||
|
'# Copyright (c) 2006-2007 Luis Lavena, Multimedia systems
|
||
|
'#
|
||
|
'# 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.
|
||
|
'#++
|
||
|
|
||
|
#if __FB_VERSION__ <> "0.17"
|
||
|
#error ServiceFB is designed to compile with FreeBASIC version "0.17"
|
||
|
#else
|
||
|
|
||
|
#ifndef __FB_WIN32__
|
||
|
#error Platform unsupported. Compiling ServiceFB requires Windows platform.
|
||
|
#else
|
||
|
|
||
|
#ifndef __ServiceFB_bi__
|
||
|
#define __ServiceFB_bi__
|
||
|
|
||
|
#include once "windows.bi"
|
||
|
#inclib "advapi32"
|
||
|
|
||
|
namespace fb
|
||
|
namespace svc '# fb.svc
|
||
|
#ifdef SERVICEFB_DEBUG_LOG
|
||
|
'# debug print
|
||
|
declare sub _dprint(byref as string)
|
||
|
#else
|
||
|
#define _dprint(message)
|
||
|
#endif
|
||
|
|
||
|
'# service states used by end user with 'state' property
|
||
|
enum ServiceStateEnum
|
||
|
Running = SERVICE_RUNNING
|
||
|
Paused = SERVICE_PAUSED
|
||
|
Stopped = SERVICE_STOPPED
|
||
|
end enum
|
||
|
|
||
|
|
||
|
'# ServiceProcess type (object)
|
||
|
'# use this to create new services and reference the on*() methods to perform the related
|
||
|
'# tasks.
|
||
|
type ServiceProcess
|
||
|
'# ctor/dtor
|
||
|
declare constructor()
|
||
|
declare constructor(byref as string)
|
||
|
declare destructor()
|
||
|
|
||
|
'# methods (public)
|
||
|
declare sub Run()
|
||
|
declare sub StillAlive(as integer = 10)
|
||
|
|
||
|
'# helper methods (private)
|
||
|
declare sub UpdateState(as DWORD, as integer = 0, as integer = 0)
|
||
|
|
||
|
'# pseudo-events
|
||
|
'# for onInit you should return FALSE (0) in case you want to abort
|
||
|
'# service initialization.
|
||
|
'# If everything was ok, then return TRUE (-1)
|
||
|
onInit as function(byref as ServiceProcess) as integer
|
||
|
onStart as sub(byref as ServiceProcess)
|
||
|
onStop as sub(byref as ServiceProcess)
|
||
|
onPause as sub(byref as ServiceProcess)
|
||
|
onContinue as sub(byref as ServiceProcess)
|
||
|
|
||
|
'# properties (public)
|
||
|
name as string
|
||
|
description as string
|
||
|
state as ServiceStateEnum
|
||
|
commandline as string '# TODO
|
||
|
shared_process as integer
|
||
|
|
||
|
'# properties (private)
|
||
|
_svcStatus as SERVICE_STATUS
|
||
|
_svcHandle as SERVICE_STATUS_HANDLE
|
||
|
_svcStopEvent as HANDLE
|
||
|
_threadHandle as any ptr
|
||
|
end type
|
||
|
|
||
|
|
||
|
'# ServiceHost type (object)
|
||
|
'# use this, beside ServiceProcess, to manage the registration and running of
|
||
|
'# several services sharing the same process.
|
||
|
'# NOTE: ServiceHost.Run() and ServiceProcess.Run() are mutually exclusive, that
|
||
|
'# means don't mix single service with multiple service in the same program!
|
||
|
type ServiceHost
|
||
|
'# ctor/dtor()
|
||
|
declare constructor()
|
||
|
declare destructor()
|
||
|
|
||
|
'# methods (public)
|
||
|
declare sub Add(byref as ServiceProcess)
|
||
|
declare sub Run()
|
||
|
|
||
|
'# properties (public)
|
||
|
count as integer
|
||
|
end type
|
||
|
end namespace '# fb.svc
|
||
|
end namespace '# fb
|
||
|
|
||
|
#ifdef SERVICEFB_INCLUDE_UTILS
|
||
|
#include once "ServiceFB_Utils.bi"
|
||
|
#endif
|
||
|
|
||
|
#endif '# __ServiceFB_bi__
|
||
|
#endif '# __FB_WIN32__
|
||
|
#endif '# __FB_VERSION__
|