mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
3c4816555e
svn path=/icecast/trunk/icecast/; revision=16440
194 lines
5.4 KiB
C++
194 lines
5.4 KiB
C++
#define _WIN32_WINNT 0x0400
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <direct.h>
|
|
extern "C" {
|
|
#include "thread/thread.h"
|
|
#include "avl/avl.h"
|
|
#include "log/log.h"
|
|
#include "global.h"
|
|
#include "httpp/httpp.h"
|
|
#include "net/sock.h"
|
|
#include "connection.h"
|
|
#include "refbuf.h"
|
|
#include "client.h"
|
|
#include "stats.h"
|
|
}
|
|
|
|
// Issues to be wary of. Careful of the runtime you use, I've had printf and similar routines
|
|
// crash because of this on apparently valid strings. some weird thing related to checking for
|
|
// multiple byte characters. DeleteService only marks a service for deletion, and the docs
|
|
// are unclear on the cases that lead to purging however a reboot should do it.
|
|
|
|
SERVICE_STATUS ServiceStatus;
|
|
SERVICE_STATUS_HANDLE hStatus;
|
|
|
|
void ServiceMain(int argc, char** argv);
|
|
void ControlHandler(DWORD request);
|
|
extern "C" int mainService(int argc, char **argv);
|
|
|
|
|
|
void installService (const char *path)
|
|
{
|
|
if (path) {
|
|
char fullPath[8096*2] = "\"";
|
|
int len = GetModuleFileName (NULL, fullPath+1, sizeof (fullPath)-1);
|
|
|
|
_snprintf(fullPath+len+1, sizeof (fullPath)-len, "\" \"%s\"", path);
|
|
|
|
SC_HANDLE manager = OpenSCManager( NULL, NULL, SC_MANAGER_ALL_ACCESS );
|
|
if (manager == NULL)
|
|
{
|
|
MessageBox (NULL, "OpenSCManager failed", NULL, MB_SERVICE_NOTIFICATION);
|
|
return;
|
|
}
|
|
|
|
SC_HANDLE service = CreateService(
|
|
manager,
|
|
PACKAGE_STRING,
|
|
PACKAGE_STRING " Streaming Media Server",
|
|
GENERIC_READ | GENERIC_EXECUTE,
|
|
SERVICE_WIN32_OWN_PROCESS,
|
|
SERVICE_AUTO_START,
|
|
SERVICE_ERROR_IGNORE,
|
|
fullPath,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NULL
|
|
);
|
|
if (service == NULL)
|
|
{
|
|
MessageBox (NULL, "CreateService failed", NULL, MB_SERVICE_NOTIFICATION);
|
|
CloseServiceHandle (manager);
|
|
return;
|
|
}
|
|
|
|
printf("Service Installed\n");
|
|
CloseServiceHandle (service);
|
|
CloseServiceHandle (manager);
|
|
}
|
|
}
|
|
void removeService()
|
|
{
|
|
SC_HANDLE manager = OpenSCManager( NULL, NULL, SC_MANAGER_ALL_ACCESS );
|
|
if (manager == NULL)
|
|
{
|
|
MessageBox (NULL, "OpenSCManager failed", NULL, MB_SERVICE_NOTIFICATION);
|
|
return;
|
|
}
|
|
|
|
SC_HANDLE service = OpenService (manager, PACKAGE_STRING, DELETE);
|
|
if (service) {
|
|
DeleteService(service);
|
|
CloseServiceHandle (service);
|
|
printf ("Service deleted, may require reboot to complete removal\n");
|
|
}
|
|
else
|
|
printf("Service not found\n");
|
|
CloseServiceHandle (manager);
|
|
Sleep (1500);
|
|
}
|
|
void ControlHandler(DWORD request)
|
|
{
|
|
switch(request) {
|
|
case SERVICE_CONTROL_STOP:
|
|
if (ServiceStatus.dwCurrentState != SERVICE_STOP)
|
|
{
|
|
ServiceStatus.dwCurrentState = SERVICE_STOP_PENDING;
|
|
SetServiceStatus (hStatus, &ServiceStatus);
|
|
global.running = ICE_HALTING;
|
|
return;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
// Report current status
|
|
SetServiceStatus (hStatus, &ServiceStatus);
|
|
}
|
|
|
|
void ServiceMain(int argc, char** argv)
|
|
{
|
|
ServiceStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
|
|
ServiceStatus.dwWin32ExitCode = 0;
|
|
ServiceStatus.dwServiceSpecificExitCode = 0;
|
|
ServiceStatus.dwCheckPoint = 0;
|
|
ServiceStatus.dwWaitHint = 0;
|
|
|
|
hStatus = RegisterServiceCtrlHandler(PACKAGE_STRING, (LPHANDLER_FUNCTION)ControlHandler);
|
|
if (hStatus == (SERVICE_STATUS_HANDLE)0) {
|
|
// Registering Control Handler failed
|
|
MessageBox (NULL, "RegisterServiceCtrlHandler failed", NULL, MB_SERVICE_NOTIFICATION);
|
|
return;
|
|
}
|
|
// We report the running status to SCM.
|
|
ServiceStatus.dwCurrentState = SERVICE_RUNNING;
|
|
ServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP;
|
|
SetServiceStatus (hStatus, &ServiceStatus);
|
|
|
|
/* Here we do the work */
|
|
|
|
int argc2 = 3;
|
|
char* argv2 [4];
|
|
|
|
argv2 [0] = argv[0];
|
|
argv2 [1] = "-c";
|
|
if (argc < 2)
|
|
argv2 [2] = "icecast.xml";
|
|
else
|
|
argv2 [2] = argv[1];
|
|
argv2[3] = NULL;
|
|
|
|
ServiceStatus.dwWin32ExitCode = mainService(argc2, (char **)argv2);
|
|
|
|
ServiceStatus.dwCurrentState = SERVICE_STOPPED;
|
|
SetServiceStatus(hStatus, &ServiceStatus);
|
|
}
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
if (argc < 2)
|
|
{
|
|
printf ("Usage:\n %s remove\n %s install path\n", argv[0], argv[0]);
|
|
return 0;
|
|
}
|
|
if (!strcmp(argv[1], "install"))
|
|
{
|
|
if (argc > 2)
|
|
installService(argv[2]);
|
|
else
|
|
printf ("install requires a path arg as well\n");
|
|
Sleep (2000);
|
|
return 0;
|
|
}
|
|
if (!strcmp(argv[1], "remove") || !strcmp(argv[1], "uninstall"))
|
|
{
|
|
removeService();
|
|
return 0;
|
|
}
|
|
|
|
if (_chdir(argv[1]) < 0)
|
|
{
|
|
char buffer [256];
|
|
_snprintf (buffer, sizeof(buffer), "Unable to change to directory %s", argv[1]);
|
|
MessageBox (NULL, buffer, NULL, MB_SERVICE_NOTIFICATION);
|
|
return 0;
|
|
}
|
|
|
|
SERVICE_TABLE_ENTRY ServiceTable[2];
|
|
ServiceTable[0].lpServiceName = PACKAGE_STRING;
|
|
ServiceTable[0].lpServiceProc = (LPSERVICE_MAIN_FUNCTION)ServiceMain;
|
|
|
|
ServiceTable[1].lpServiceName = NULL;
|
|
ServiceTable[1].lpServiceProc = NULL;
|
|
// Start the control dispatcher thread for our service
|
|
if (StartServiceCtrlDispatcher(ServiceTable) == 0)
|
|
MessageBox (NULL, "StartServiceCtrlDispatcher failed", NULL, MB_SERVICE_NOTIFICATION);
|
|
|
|
return 0;
|
|
}
|