This repository has been archived by the owner on Apr 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Server.cpp
138 lines (104 loc) · 2.08 KB
/
Server.cpp
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
* Server.cpp
*
* Created on: 2011-3-31
* Author: simophin
*/
#include "Server.h"
#include "IODevice.h"
#include "Thread.h"
#include "Commander.h"
#include "CommandMgr.h"
#include "CommandContext.h"
#include "Command.h"
#include "VideoProvider.h"
#include "Log.h"
#include "Error.h"
#include <assert.h>
#include <memory>
#include <stdlib.h>
class Server::ServerImpl: public Thread {
public:
IODevice *controlDevice, *dataDevice;
Commander cmdExe;
CommandContext cmdCtx;
CommandMgr *cmdMgr;
virtual Error entry();
};
Server::
Server(CommandMgr *cmdMgr,IODevice *ctrl_device, IODevice *data_device, VideoProvider *p)
:d(new Server::ServerImpl)
{
setDataDevice(data_device);
setControlDevice(ctrl_device);
d->cmdCtx.server = this;
d->cmdCtx.client = 0;
d->cmdCtx.videoProvider = p;
d->cmdMgr = cmdMgr;
}
Server::~Server() {
}
VideoProvider *Server::getProvider() const
{
return d->cmdCtx.videoProvider;
}
Error Server::wait(int ms)
{
return d->wait(NULL,ms);
}
void Server::
setDataDevice(IODevice *device)
{
d->dataDevice = device;
d->cmdCtx.dataDevice = device;
}
const IODevice *Server::
getDataDevice() const
{
return d->dataDevice;
}
const IODevice *Server::
getControlDevice() const
{
return d->controlDevice;
}
Error Server::
stop(int ms)
{
return d->stop(ms);
}
void Server::
setControlDevice(IODevice *device)
{
d->controlDevice = device;
d->cmdExe.setDevice(device);
d->cmdCtx.controlDevice = device;
}
Error Server::
start()
{
assert(d->controlDevice != 0 && d->dataDevice != 0);
return d->run();
}
Error Server::ServerImpl::entry() {
Error rc;
Command raw_cmd;
while(!shouldStop()) {
rc = controlDevice->poll(IODevice::POLL_READ | IODevice::POLL_ERROR, 500);
if (rc.getErrorType() == Error::ERR_TIMEOUT) continue;
else if (!rc.isSuccess()) break;
rc = cmdExe.readCommand(raw_cmd);
if (!rc.isSuccess()) {
break;
}
cmdMgr->handleCommand(raw_cmd,&cmdCtx);
}
// Clean up
if (cmdCtx.dataThread) {
cmdCtx.dataThread->stop();
cmdCtx.videoProvider->stopCapture();
delete cmdCtx.dataThread;
cmdCtx.dataThread = 0;
}
return rc;
}