blob: 2ba7eb9edc86357bc83b5cae1a81165afc65b283 (
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
|
/**
* @file
* @author 2012-2014 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
* @copyright Simplified BSD
*
* @cond
* This program is free software: you can redistribute it and/or modify
* it under the terms of the FreeBSD license as published by the FreeBSD
* project.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the FreeBSD license along with this
* program. If not, see <http://www.opensource.org/licenses/bsd-license>.
* @endcond
*/
#ifndef DEBUGGERSERVLET_H_ATUMDA3G
#define DEBUGGERSERVLET_H_ATUMDA3G
#include "uscxml/Common.h"
#include "uscxml/util/BlockingQueue.h"
#include "uscxml/server/HTTPServer.h"
#include "uscxml/debug/Debugger.h"
namespace uscxml {
class USCXML_API DebuggerServlet : public Debugger, public HTTPServlet {
public:
virtual ~DebuggerServlet() {}
// from Debugger
virtual void addBreakpoint(const Breakpoint& breakpoint) {};
bool isCORS(const HTTPServer::Request& request);
void handleCORS(const HTTPServer::Request& request);
bool requestFromHTTP(const HTTPServer::Request& request);
void setURL(const std::string& url) {
_url = url;
}
void pushData(std::shared_ptr<DebugSession> session, Data pushData);
void returnData(const HTTPServer::Request& request, Data replyData);
void processDisconnect(const HTTPServer::Request& request);
void processConnect(const HTTPServer::Request& request);
void processListInstances(const HTTPServer::Request& request);
void processIssues(const HTTPServer::Request& request);
protected:
void serverPushData(std::shared_ptr<DebugSession>);
std::string _url;
std::map<std::shared_ptr<DebugSession>, HTTPServer::Request> _clientConns;
std::map<std::shared_ptr<DebugSession>, BlockingQueue<Data> > _sendQueues;
std::map<std::string, std::shared_ptr<DebugSession> > _sessionForId;
std::recursive_mutex _mutex;
};
}
#endif /* end of include guard: DEBUGGERSERVLET_H_ATUMDA3G */
|