/** * @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 . * @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 session, Data pushData); void returnData(const HTTPServer::Request& request, Data replyData); void processDisconnect(const HTTPServer::Request& request); void processConnect(const HTTPServer::Request& request); void processListSessions(const HTTPServer::Request& request); void processIssues(const HTTPServer::Request& request); // void processDebugPrepare(const HTTPServer::Request& request); // void processDebugAttach(const HTTPServer::Request& request); // void processDebugStart(const HTTPServer::Request& request); // void processDebugStop(const HTTPServer::Request& request); // void processDebugEval(const HTTPServer::Request& request); // void processDebugStart(const HTTPServer::Request& request); // void processDebugStop(const HTTPServer::Request& request); // void processDebugStep(const HTTPServer::Request& request); // void processDebugResume(const HTTPServer::Request& request); // void processDebugPause(const HTTPServer::Request& request); // void processAddBreakPoint(const HTTPServer::Request& request); // void processRemoveBreakPoint(const HTTPServer::Request& request); // void processPoll(const HTTPServer::Request& request); protected: void serverPushData(std::shared_ptr); std::string _url; std::map, HTTPServer::Request> _clientConns; std::map, BlockingQueue > _sendQueues; std::map > _sessionForId; std::recursive_mutex _mutex; }; } #endif /* end of include guard: DEBUGGERSERVLET_H_ATUMDA3G */