-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTargetServer.cpp
350 lines (296 loc) · 9.21 KB
/
TargetServer.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
#include "TargetServer.h"
#include <errnoLib.h>
#include <hostLib.h>
#include <inetLib.h>
#include <sockLib.h>
#include "Task.h"
#include "Timer.h"
#include "WPIErrors.h"
#include <vxWorks.h>
#include <taskLibCommon.h>
#include <sstream>
#include <algorithm>
#include <iostream>
#include <string>
#include "Synchronized.h"
using std::cout;
using std::endl;
using std::istringstream;
using std::string;
static const int BUFLEN = 1024;
static const int SERVER_PORT_NUM = 1130;
#define ACK "ACK"
TargetServer::TargetServer()
: m_serverTask("RATargetServer", (FUNCPTR)s_ServerTask)
, m_newTargetSem (NULL)
, m_stopServer (false)
{
StartServerTask();
}
TargetServer::~TargetServer()
{
Stop();
ClearError();
}
int TargetServer::StartServerTask()
{
cout << "Starting target server..." << endl;
if (StatusIsFatal())
{
return -1;
}
int id = 0;
m_stopServer = false;
// Check for prior copy of running task
int oldId = taskNameToId((char*)m_serverTask.GetName());
if(oldId != ERROR)
{
// TODO: Report error. You are in a bad state.
taskDelete(oldId);
}
// spawn target server task
// this is done to ensure that the task is spawned with the
// floating point context save parameter.
bool started = m_serverTask.Start((int)this);
id = m_serverTask.GetID();
if (!started)
{
wpi_setWPIError(TaskError);
return id;
}
taskDelay(1);
cout << "Done: id " << id << endl;
return id;
}
void TargetServer::Start()
{
StartServerTask();
}
void TargetServer::Stop()
{
m_stopServer = true;
}
int TargetServer::s_ServerTask(TargetServer *thisPtr)
{
return thisPtr->ServerTask();
}
/**
* @brief Initialize the socket and serve images to the PC.
* This is the task that serves images to the PC in a loop. This runs
* as a separate task.
*/
int TargetServer::ServerTask()
{
#if 1
struct sockaddr_in serverAddr; /* server's socket address */
struct sockaddr_in clientAddr; /* client's socket address */
char clientRequest[128]; /* request/Message from client */
int sockAddrSize; /* size of socket address structure */
int sFd; /* socket file descriptor */
char inetAddr[INET_ADDR_LEN];
/* buffer for client's inet addr */
/* set up the local address */
sockAddrSize = sizeof (struct sockaddr_in);
bzero ((char *) &serverAddr, sockAddrSize);
serverAddr.sin_len = (u_char) sockAddrSize;
serverAddr.sin_family = AF_INET;
serverAddr.sin_port = htons (SERVER_PORT_NUM);
serverAddr.sin_addr.s_addr = htonl (INADDR_ANY);
/* create a UDP-based socket */
printf("Socket call...");
if ((sFd = socket (AF_INET, SOCK_DGRAM, 0)) == ERROR)
{
perror ("socket");
return (ERROR);
}
printf("Success!\n");
/* bind socket to local address */
printf("Binding...");
if (bind (sFd, (struct sockaddr *) &serverAddr, sockAddrSize) == ERROR)
{
perror ("bind");
close (sFd);
return (ERROR);
}
int smallRcvBufferSize = 256; // two d-grams
// hopefully this works
setsockopt(sFd, SOL_SOCKET, SO_RCVBUF, reinterpret_cast<char*>(& smallRcvBufferSize), sizeof(smallRcvBufferSize));
printf("Done!\n");
/* read data from a socket and satisfy requests */
/* read data from a socket and satisfy requests */
FOREVER
{
//printf("Waiting for a packet...\n");
if (recvfrom (sFd, (char *) &clientRequest, sizeof (clientRequest), 0,
(struct sockaddr *) &clientAddr, &sockAddrSize) == ERROR)
{
perror ("recvfrom");
close (sFd);
return (ERROR);
}
//printf("Recvfrom returned.\n");
/* if client requested that message be displayed, print it */
//if (clientRequest.display)
// {
/* convert inet address to dot notation */
istringstream packet(clientRequest);
float x,y,dist;
//{
//Synchronized sync(m_newTargetSem);
m_targets.clear();
while (packet >> x >> y >> dist) {
Target t(x,y,dist);
m_targets.push_back(t);
}
//}
//Wait(.1);
/*
inet_ntoa_b (clientAddr.sin_addr, inetAddr);
printf ("MSG FROM CLIENT (Internet Address %s, port %d):\n%s\n",
inetAddr, ntohs (clientAddr.sin_port), clientRequest);
for (int i = 0; i < sizeof(clientRequest); ++i) {
clientRequest[i] = ' ';
}
*/
//}
}
#else
/* Setup to PC sockets */
struct sockaddr_in serverAddr;
int sockAddrSize = sizeof(serverAddr);
int pcSock = ERROR;
bzero ((char *) &serverAddr, sockAddrSize);
serverAddr.sin_len = (u_char) sockAddrSize;
serverAddr.sin_family = AF_INET;
serverAddr.sin_port = htons (1735);
serverAddr.sin_addr.s_addr = htonl (INADDR_ANY);
int success;
while (true)
{
taskSafe();
// Create the socket.
if ((pcSock = socket (AF_INET, SOCK_STREAM, 0)) == ERROR)
{
wpi_setErrnoErrorWithContext("Failed to create the TargetServer socket");
continue;
}
// Set the TCP socket so that it can be reused if it is in the wait state.
int reuseAddr = 1;
setsockopt(pcSock, SOL_SOCKET, SO_REUSEADDR, reinterpret_cast<char*>(&reuseAddr), sizeof(reuseAddr));
// Bind socket to local address.
if (bind (pcSock, (struct sockaddr *) &serverAddr, sockAddrSize) == ERROR)
{
wpi_setErrnoErrorWithContext("Failed to bind the TargetServer port");
close (pcSock);
continue;
}
// Create queue for client connection requests.
if (listen (pcSock, 1) == ERROR)
{
wpi_setErrnoErrorWithContext("Failed to listen on the TargetServer port");
close (pcSock);
continue;
}
struct sockaddr_in clientAddr;
int clientAddrSize;
int newPCSock = accept (pcSock, reinterpret_cast<sockaddr*>(&clientAddr), &clientAddrSize);
if (newPCSock == ERROR)
{
close(pcSock);
continue;
}
//TODO: check camera error
char *bp;
char buffer[BUFLEN];
bp = buffer;
int bytes_to_read = BUFLEN-1;
int n;
while(!m_stopServer)
{
bool quick_escape = false; // ESCAPE!!
// Keep reading, either until we don't have any more
// stuff to read or we'll fill up the buffer
while ((n = read(newPCSock, bp, bytes_to_read)) > 0) {
// Advance "next available char" buffer by n bytes
bp += n;
// Subtact n bytes from bytes remaining in buffer
bytes_to_read -= n;
// Check to see if we processed a newline. That's all
// we care about for now.
for (char * b = bp; b >= buffer && !quick_escape; --b) {
if (*b == '\n') {
quick_escape = true;
break;
}
}
// Did we see a newline? Then stop reading, it's a waste
// of time.
if (quick_escape) break;
}
// Some kind of error occured during read
if (bytes_to_read < 0) {
// Whoops, buffer full
// Ignore the latest targets and restart
cout << "Some kinda problem occured, I'm breaking out" << endl;
// Break out of the server loop, reinitialize network link
break;
}
// Tie off the end of the string with a NUL character
*bp = 0;
// Reset buffer pointer back at the beginning of buffer,
// in case we loop through again
bp = buffer;
// Start reading numbers from the string we read
istringstream line(buffer);
*bp = 0;
float x, y, dist;
//semTake(m_newTargetSem, 1000);
m_targets.clear();
while (line >> x >> y >> dist) {
// Grab three numbers at a time, these
// constitute a single target
// Create the target
Target t(x,y,dist);
// Add it to our list
m_targets.push_back(t);
// DEBUG: report that we received it
cout << "TARGET FOUND: " << x << " " << y << " " << dist << endl;
}
int ack_len = strlen(ACK);
success = send(newPCSock, ACK, ack_len, 0);
if (success == ERROR) {
cout << "ACK failed, setting up connection again" << endl;
break;
}
//semGive(m_newTargetSem);
// buffer now contains cool data
//cout << buffer << endl;
//Wait(.1);
//continue;
}
// Clean up
close (newPCSock);
newPCSock = ERROR;
close (pcSock);
pcSock = ERROR;
taskUnsafe();
Wait(0.1);
}
return (OK);
#endif
}
std::vector<Target> TargetServer::GetTargets()
{
std::vector<Target> temp_targets;
/*
if (semTake(m_newTargetSem, 1000) == ERROR) {
return temp_targets;
}*/
//std::copy(m_targets.begin(), m_targets.end(), temp_targets.begin());
/*{
Synchronized sync(m_newTargetSem); */
temp_targets = m_targets;
//}
//semGive(m_newTargetSem);
return temp_targets;
}