blob: f39bf7cf1be9792020d5293f628c08b4d2ab37be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_HOST_HOST_SERVICE_WIN_H_
#define REMOTING_HOST_HOST_SERVICE_WIN_H_
#include <windows.h>
#include "base/file_path.h"
#include "base/memory/singleton.h"
#include "base/observer_list.h"
#include "base/string16.h"
#include "base/synchronization/waitable_event.h"
#include "remoting/host/wts_console_monitor_win.h"
class CommandLine;
class MessageLoop;
namespace remoting {
class WtsConsoleObserver;
class HostService : public WtsConsoleMonitor {
public:
static HostService* GetInstance();
// This function parses the command line and selects the action routine.
bool InitWithCommandLine(const CommandLine* command_line);
// Invoke the choosen action routine.
int Run();
// WtsConsoleMonitor implementation
virtual void AddWtsConsoleObserver(WtsConsoleObserver* observer) OVERRIDE;
virtual void RemoveWtsConsoleObserver(
WtsConsoleObserver* observer) OVERRIDE;
private:
HostService();
~HostService();
// Notifies the service of changes in session state.
void OnSessionChange();
// This routine registers the service with the service control manager.
int Install();
// This routine uninstalls the service previously regerested by Install().
int Remove();
// This is a common entry point to the main service loop called by both
// RunAsService() and RunInConsole().
void RunMessageLoop();
// This function handshakes with the service control manager and starts
// the service.
int RunAsService();
// This function starts the service in interactive mode (i.e. as a plain
// console application).
int RunInConsole();
static BOOL WINAPI ConsoleControlHandler(DWORD event);
static VOID CALLBACK OnServiceStopped(PVOID context);
// The control handler of the service.
static DWORD WINAPI ServiceControlHandler(DWORD control,
DWORD event_type,
LPVOID event_data,
LPVOID context);
// The main service entry point.
static VOID WINAPI ServiceMain(DWORD argc, WCHAR* argv[]);
static LRESULT CALLBACK SessionChangeNotificationProc(HWND hwnd,
UINT message,
WPARAM wparam,
LPARAM lparam);
// Current physical console session id.
uint32 console_session_id_;
// The list of observers receiving notifications about any session attached
// to the physical console.
ObserverList<WtsConsoleObserver> console_observers_;
// The host binary name.
FilePath host_binary_;
// Service message loop.
MessageLoop* message_loop_;
// The action routine to be executed.
int (HostService::*run_routine_)();
// The service name.
string16 service_name_;
// The service status structure.
SERVICE_STATUS service_status_;
// The service status handle.
SERVICE_STATUS_HANDLE service_status_handle_;
// True if the service is being stopped.
bool shutting_down_;
// A waitable event that is used to wait until the service is stopped.
base::WaitableEvent stopped_event_;
// Singleton.
friend struct DefaultSingletonTraits<HostService>;
DISALLOW_COPY_AND_ASSIGN(HostService);
};
} // namespace remoting
#endif // REMOTING_HOST_HOST_SERVICE_WIN_H_
|