summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/http/HTTPServletInvoker.cpp
blob: 40f8b66443b431063434d0f62f1d35447ef7dde1 (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
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
#include "HTTPServletInvoker.h"
#include <glog/logging.h>

#ifdef BUILD_AS_PLUGINS
#include <Pluma/Connector.hpp>
#endif

namespace uscxml {

#ifdef BUILD_AS_PLUGINS
PLUMA_CONNECTOR
bool connect(pluma::Host& host) {
	host.add( new HTTPServletInvokerProvider() );
	return true;
}
#endif

HTTPServletInvoker::HTTPServletInvoker() {
  _isInterpreterGlobal = false;
}

HTTPServletInvoker::HTTPServletInvoker(Interpreter* interpreter) {
  _isInterpreterGlobal = true;
  _interpreter = interpreter;
  std::stringstream path;
  path << _interpreter->getName();
  int i = 2;
  while(!HTTPServer::registerServlet(path.str(), this)) {
    path.clear();
    path.str();
    path << _interpreter->getName() << toStr(i++);
  }
}

HTTPServletInvoker::~HTTPServletInvoker() {
  HTTPServer::unregisterServlet(this);

};

boost::shared_ptr<IOProcessorImpl> HTTPServletInvoker::create(Interpreter* interpreter) {
	boost::shared_ptr<HTTPServletInvoker> invoker = boost::shared_ptr<HTTPServletInvoker>(new HTTPServletInvoker());
	invoker->_interpreter = interpreter;
	return invoker;
}

Data HTTPServletInvoker::getDataModelVariables() {
	Data data;
	assert(_url.length() > 0);
	data.compound["location"] = Data(_url, Data::VERBATIM);
	return data;
}

void HTTPServletInvoker::send(const SendRequest& req) {
  assert(!_isInterpreterGlobal);
  
  if (req.name.find("reply.", 0, req.name.length())) {
    // this is a reply
    const std::string requestId = req.name.substr(6);
    if (_requests.find(requestId) == _requests.end()) {
      LOG(ERROR) << "Replying to non existing request " << requestId;
      return;
    }
      
    HTTPServer::Request httpRequest = _requests[requestId];
    HTTPServer::Reply httpReply(httpRequest);
    httpReply.content = req.content;

    std::map<std::string, std::string>::const_iterator nameListIter = req.namelist.begin();
    while(nameListIter != req.namelist.end()) {
      httpReply.headers[nameListIter->first] = nameListIter->second;
      nameListIter++;
    }

    std::multimap<std::string, std::string>::const_iterator paramIter = req.params.begin();
    while(paramIter != req.params.end()) {
      httpReply.headers[paramIter->first] = paramIter->second;
      paramIter++;
    }

    HTTPServer::reply(httpReply);
    return;
  }
}

void HTTPServletInvoker::cancel(const std::string sendId) {
  assert(!_isInterpreterGlobal);
}

void HTTPServletInvoker::invoke(const InvokeRequest& req) {
  assert(!_isInterpreterGlobal);

  _invokeId = req.invokeid;
  if (req.params.find("path") == req.params.end()) {
    LOG(ERROR) << "Path parameter required with httpserver";
  }
  _path = (*req.params.find("path")).second;
  
  if (req.params.find("callback") != req.params.end()) {
    _callback = (*req.params.find("callback")).second;
  } else {
    _callback = _path;
    std::replace(_callback.begin(), _callback.end(), '/', '.');
  }

  if (!HTTPServer::registerServlet(_path, this)) {
    LOG(ERROR) << "Cannot register http servlet at " << _path << ": " << " already taken";
  }
}

/**
 * Receive a request and deliver it to the interpreter
 */
void HTTPServletInvoker::httpRecvRequest(const HTTPServer::Request& req) {
  tthread::lock_guard<tthread::recursive_mutex> lock(_mutex);
  
//  evhttp_request_own(req.curlReq);

  _requests[toStr((uintptr_t)req.curlReq)] = req;
  
  Event event;
  
  if (_isInterpreterGlobal) {
    event.name = "http." + req.type;
    event.origin = toStr((uintptr_t)req.curlReq);
  } else {
    event.name = _callback;
    event.data.compound["reqId"] = Data(toStr((uintptr_t)req.curlReq), Data::VERBATIM);
  }
  
  std::map<std::string, std::string>::const_iterator headerIter = req.headers.begin();
  while(headerIter != req.headers.end()) {
    event.data.compound["headers"].compound[headerIter->first] = Data(headerIter->second, Data::VERBATIM);
    headerIter++;
  }

  event.data.compound["content"] = Data(req.content, Data::VERBATIM);
  event.data.compound["type"] = Data(req.type, Data::VERBATIM);
  
  returnEvent(event);

}
  
std::string HTTPServletInvoker::getPath() {
  return _path;
}

}