2 * ServiceMain function for qmgr running within svchost
4 * Copyright 2007 (C) Google (Roy Shea)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/debug.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(qmgr
);
28 HANDLE stop_event
= NULL
;
30 static SERVICE_STATUS_HANDLE status_handle
;
31 static SERVICE_STATUS status
;
34 UpdateStatus(DWORD dwCurrentState
, DWORD dwWin32ExitCode
, DWORD dwWaitHint
)
36 status
.dwServiceType
= SERVICE_WIN32_OWN_PROCESS
;
37 status
.dwCurrentState
= dwCurrentState
;
38 if (dwCurrentState
== SERVICE_START_PENDING
)
39 status
.dwControlsAccepted
= 0;
41 status
.dwControlsAccepted
42 = (SERVICE_ACCEPT_STOP
| SERVICE_ACCEPT_PAUSE_CONTINUE
43 | SERVICE_ACCEPT_SHUTDOWN
);
44 status
.dwWin32ExitCode
= 0;
45 status
.dwServiceSpecificExitCode
= 0;
46 status
.dwCheckPoint
= 0;
47 status
.dwWaitHint
= dwWaitHint
;
49 if (!SetServiceStatus(status_handle
, &status
)) {
50 ERR("failed to set service status\n");
55 /* Handle incoming ControlService signals */
57 ServiceHandler(DWORD ctrl
, DWORD event_type
, LPVOID event_data
, LPVOID context
)
60 case SERVICE_CONTROL_STOP
:
61 case SERVICE_CONTROL_SHUTDOWN
:
62 TRACE("shutting down service\n");
63 UpdateStatus(SERVICE_STOP_PENDING
, NO_ERROR
, 0);
67 FIXME("ignoring handle service ctrl %x\n", ctrl
);
68 UpdateStatus(status
.dwCurrentState
, NO_ERROR
, 0);
75 /* Main thread of the service */
84 hr
= CoInitializeEx(NULL
, COINIT_MULTITHREADED
);
88 hr
= CoInitializeSecurity(NULL
, -1, NULL
, NULL
, RPC_C_AUTHN_LEVEL_NONE
,
89 RPC_C_IMP_LEVEL_IMPERSONATE
, NULL
, EOAC_NONE
,
94 hr
= CoRegisterClassObject(&CLSID_BackgroundCopyManager
,
95 (IUnknown
*) &BITS_ClassFactory
.IClassFactory_iface
,
96 CLSCTX_LOCAL_SERVER
, REGCLS_MULTIPLEUSE
, &dwReg
);
103 /* Service entry point */
105 ServiceMain(DWORD dwArgc
, LPWSTR
*lpszArgv
)
111 stop_event
= CreateEventW(NULL
, TRUE
, FALSE
, NULL
);
113 ERR("failed to create stop_event\n");
117 status_handle
= RegisterServiceCtrlHandlerExW(L
"BITS", ServiceHandler
, NULL
);
118 if (!status_handle
) {
119 ERR("failed to register handler: %u\n", GetLastError());
123 UpdateStatus(SERVICE_START_PENDING
, NO_ERROR
, 3000);
125 ERR("failed starting service thread\n");
126 UpdateStatus(SERVICE_STOPPED
, NO_ERROR
, 0);
130 globalMgr
.jobEvent
= CreateEventW(NULL
, TRUE
, FALSE
, NULL
);
131 if (!globalMgr
.jobEvent
) {
132 ERR("Couldn't create event: error %d\n", GetLastError());
133 UpdateStatus(SERVICE_STOPPED
, NO_ERROR
, 0);
137 fileTxThread
= CreateThread(NULL
, 0, fileTransfer
, NULL
, 0, &threadId
);
140 ERR("Failed starting file transfer thread\n");
141 UpdateStatus(SERVICE_STOPPED
, NO_ERROR
, 0);
145 UpdateStatus(SERVICE_RUNNING
, NO_ERROR
, 0);
147 WaitForSingleObject(fileTxThread
, INFINITE
);
148 UpdateStatus(SERVICE_STOPPED
, NO_ERROR
, 0);
149 CloseHandle(stop_event
);
150 TRACE("service stopped\n");