2005-07-20 10:55:40 -05:00
|
|
|
#include <windows.h>
|
|
|
|
#include "log.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "IMService.h"
|
|
|
|
|
|
|
|
IMService::IMService(void)
|
|
|
|
{
|
2005-08-05 17:02:06 +04:00
|
|
|
serviceName= "MySqlManager";
|
|
|
|
displayName= "MySQL Manager";
|
2005-07-20 10:55:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
IMService::~IMService(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void IMService::Stop()
|
|
|
|
{
|
|
|
|
ReportStatus(SERVICE_STOP_PENDING);
|
|
|
|
// stop the IM work
|
|
|
|
}
|
|
|
|
|
|
|
|
void IMService::Run()
|
|
|
|
{
|
|
|
|
// report to the SCM that we're about to start
|
|
|
|
ReportStatus((DWORD)SERVICE_START_PENDING);
|
|
|
|
|
|
|
|
// init goes here
|
2005-08-03 16:20:27 -05:00
|
|
|
ReportStatus((DWORD)SERVICE_RUNNING);
|
2005-07-20 10:55:40 -05:00
|
|
|
|
|
|
|
// wait for main loop to terminate
|
|
|
|
}
|
|
|
|
|
|
|
|
void IMService::Log(const char *msg)
|
|
|
|
{
|
|
|
|
log_info(msg);
|
|
|
|
}
|
|
|
|
|
2005-08-05 17:02:06 +04:00
|
|
|
int HandleServiceOptions(Options options)
|
2005-07-20 10:55:40 -05:00
|
|
|
{
|
2005-08-03 16:20:27 -05:00
|
|
|
int ret_val= 0;
|
2005-07-20 10:55:40 -05:00
|
|
|
|
|
|
|
IMService winService;
|
|
|
|
|
2005-08-05 17:02:06 +04:00
|
|
|
if (options.install_as_service)
|
2005-07-20 10:55:40 -05:00
|
|
|
{
|
|
|
|
if (winService.IsInstalled())
|
|
|
|
log_info("Service is already installed\n");
|
|
|
|
else if (winService.Install())
|
2005-08-03 16:20:27 -05:00
|
|
|
log_info("Service installed successfully\n");
|
2005-07-20 10:55:40 -05:00
|
|
|
else
|
|
|
|
{
|
2005-08-03 16:20:27 -05:00
|
|
|
log_info("Service failed to install\n");
|
2005-08-09 07:57:37 -06:00
|
|
|
ret_val= 1;
|
2005-07-20 10:55:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (options.remove_service)
|
|
|
|
{
|
|
|
|
if (! winService.IsInstalled())
|
|
|
|
log_info("Service is not installed\n");
|
2005-08-03 16:20:27 -05:00
|
|
|
else if (winService.Remove())
|
|
|
|
log_info("Service removed successfully\n");
|
2005-08-05 17:02:06 +04:00
|
|
|
else
|
2005-07-20 10:55:40 -05:00
|
|
|
{
|
2005-08-03 16:20:27 -05:00
|
|
|
log_info("Service failed to remove\n");
|
2005-08-09 07:57:37 -06:00
|
|
|
ret_val= 1;
|
2005-07-20 10:55:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2005-08-09 07:57:37 -06:00
|
|
|
ret_val= winService.Init() ? 0 : 1;
|
2005-07-20 10:55:40 -05:00
|
|
|
return ret_val;
|
|
|
|
}
|