mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
da925bddf8
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13790 d0543943-73ff-0310-b7d9-9358b9ac24b2
105 lines
3.5 KiB
C
105 lines
3.5 KiB
C
/*
|
|
* Copyright 2008 Arsen Chaloyan
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <apr_lib.h>
|
|
#include "unimrcp_server.h"
|
|
#include "apt_log.h"
|
|
|
|
#define WIN_SERVICE_NAME "unimrcp"
|
|
|
|
static SERVICE_STATUS_HANDLE win_service_status_handle = NULL;
|
|
static SERVICE_STATUS win_service_status;
|
|
|
|
static mrcp_server_t *server = NULL;
|
|
static apt_dir_layout_t *service_dir_layout = NULL;
|
|
|
|
/** SCM state change handler */
|
|
static void WINAPI win_service_handler(DWORD control)
|
|
{
|
|
apt_log(APT_LOG_MARK,APT_PRIO_INFO,"Service Handler %d",control);
|
|
switch (control)
|
|
{
|
|
case SERVICE_CONTROL_INTERROGATE:
|
|
break;
|
|
case SERVICE_CONTROL_SHUTDOWN:
|
|
case SERVICE_CONTROL_STOP:
|
|
if(server) {
|
|
win_service_status.dwCurrentState = SERVICE_STOP_PENDING;
|
|
if(!SetServiceStatus(win_service_status_handle, &win_service_status)) {
|
|
apt_log(APT_LOG_MARK,APT_PRIO_WARNING,"Failed to Set Service Status %d",GetLastError());
|
|
}
|
|
|
|
/* shutdown server */
|
|
unimrcp_server_shutdown(server);
|
|
}
|
|
win_service_status.dwCurrentState = SERVICE_STOPPED;
|
|
win_service_status.dwCheckPoint = 0;
|
|
win_service_status.dwWaitHint = 0;
|
|
break;
|
|
}
|
|
|
|
if(!SetServiceStatus(win_service_status_handle, &win_service_status)) {
|
|
apt_log(APT_LOG_MARK,APT_PRIO_WARNING,"Failed to Set Service Status %d",GetLastError());
|
|
}
|
|
}
|
|
|
|
static void WINAPI win_service_main(DWORD argc, LPTSTR *argv)
|
|
{
|
|
apt_log(APT_LOG_MARK,APT_PRIO_INFO,"Service Main");
|
|
win_service_status.dwServiceType = SERVICE_WIN32;
|
|
win_service_status.dwControlsAccepted = SERVICE_ACCEPT_STOP;
|
|
win_service_status.dwWin32ExitCode = 0;
|
|
win_service_status.dwServiceSpecificExitCode = 0;
|
|
win_service_status.dwCheckPoint = 0;
|
|
win_service_status.dwWaitHint = 0;
|
|
|
|
win_service_status_handle = RegisterServiceCtrlHandler(WIN_SERVICE_NAME, win_service_handler);
|
|
if(win_service_status_handle == (SERVICE_STATUS_HANDLE)0) {
|
|
apt_log(APT_LOG_MARK,APT_PRIO_WARNING,"Failed to Register Service Control Handler %d",GetLastError());
|
|
return;
|
|
}
|
|
|
|
win_service_status.dwCurrentState = SERVICE_START_PENDING;
|
|
if(!SetServiceStatus(win_service_status_handle, &win_service_status)) {
|
|
apt_log(APT_LOG_MARK,APT_PRIO_WARNING,"Failed to Set Service Status %d",GetLastError());
|
|
}
|
|
|
|
/* start server */
|
|
server = unimrcp_server_start(service_dir_layout);
|
|
|
|
win_service_status.dwCurrentState = server ? SERVICE_RUNNING : SERVICE_STOPPED;
|
|
if(!SetServiceStatus(win_service_status_handle, &win_service_status)) {
|
|
apt_log(APT_LOG_MARK,APT_PRIO_WARNING,"Failed to Set Service Status %d",GetLastError());
|
|
}
|
|
}
|
|
|
|
/** Run SCM service */
|
|
apt_bool_t uni_service_run(apt_dir_layout_t *dir_layout, apr_pool_t *pool)
|
|
{
|
|
SERVICE_TABLE_ENTRY win_service_table[] = {
|
|
{ WIN_SERVICE_NAME, win_service_main },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
service_dir_layout = dir_layout;
|
|
apt_log(APT_LOG_MARK,APT_PRIO_INFO,"Run as Service");
|
|
if(!StartServiceCtrlDispatcher(win_service_table)) {
|
|
apt_log(APT_LOG_MARK,APT_PRIO_WARNING,"Failed to Connect to SCM %d",GetLastError());
|
|
}
|
|
return TRUE;
|
|
}
|