summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-11-29 19:18:42 -0800
committerPixel <pixel@nobis-crew.org>2011-11-29 19:18:42 -0800
commit637fd157a03142438353346ec9b6da76b41870ff (patch)
treeacc0075cc4bc705cbd8e1a43f1833e68121d09ce
parent14dc0cfcab678fafd5774d33884a40d5a5972421 (diff)
Getting rid of the std::pair; they are ugly as hell.
-rw-r--r--includes/HttpServer.h9
-rw-r--r--src/HttpServer.cc22
2 files changed, 18 insertions, 13 deletions
diff --git a/includes/HttpServer.h b/includes/HttpServer.h
index 227faa4..6c97799 100644
--- a/includes/HttpServer.h
+++ b/includes/HttpServer.h
@@ -22,7 +22,9 @@ class HttpServer {
public:
Action(const Regex & regex, const Regex & host = Regexes::any) : m_regex(regex), m_host(host), m_refCount(0) { }
~Action() { Assert(m_refCount == 0); }
- typedef std::pair<Regex::Captures, Regex::Captures> ActionMatch;
+ struct ActionMatch {
+ Regex::Captures uri, host;
+ };
ActionMatch matches(const char * uri, const char * host);
void unref() { if (Atomic::Decrement(&m_refCount) == 0) delete this; }
void ref() { Atomic::Increment(&m_refCount); }
@@ -41,7 +43,10 @@ class HttpServer {
void setLocal(const char * local) { Assert(!m_started); m_local = local; }
void registerAction(Action * action);
void flushAllActions();
- typedef std::pair<Action *, Action::ActionMatch> ActionFound;
+ struct ActionFound {
+ Action * action;
+ Action::ActionMatch matches;
+ };
ActionFound findAction(const char * uri, const char * host);
private:
bool m_started;
diff --git a/src/HttpServer.cc b/src/HttpServer.cc
index ac479ff..7a5a725 100644
--- a/src/HttpServer.cc
+++ b/src/HttpServer.cc
@@ -459,7 +459,7 @@ bool Balau::HttpWorker::handleClient() {
// process query; everything should be here now
HttpServer::ActionFound f = m_server->findAction(uri.to_charp(), host.to_charp());
- if (f.first) {
+ if (f.action) {
IO<OutputCheck> out(new OutputCheck(m_socket));
Http::Request req;
req.method = method;
@@ -470,7 +470,7 @@ bool Balau::HttpWorker::handleClient() {
req.files = files;
req.persistent = persistent;
try {
- if (!f.first->Do(m_server, req, f.second, out))
+ if (!f.action->Do(m_server, req, f.matches, out))
persistent = false;
}
catch (GeneralException e) {
@@ -544,11 +544,11 @@ void Balau::HttpServer::flushAllActions() {
Balau::HttpServer::Action::ActionMatch Balau::HttpServer::Action::matches(const char * uri, const char * host) {
ActionMatch r;
- r.second = m_host.match(host);
- if (r.second.empty())
+ r.host = m_host.match(host);
+ if (r.host.empty())
return r;
- r.first = m_regex.match(uri);
+ r.uri = m_regex.match(uri);
return r;
}
@@ -559,16 +559,16 @@ Balau::HttpServer::ActionFound Balau::HttpServer::findAction(const char * uri, c
ActionFound r;
for (i = m_actions.begin(); i != m_actions.end(); i++) {
- r.first = *i;
- r.second = r.first->matches(uri, host);
- if (!r.second.first.empty())
+ r.action = *i;
+ r.matches = r.action->matches(uri, host);
+ if (!r.matches.uri.empty())
break;
}
- if (r.second.first.empty())
- r.first = NULL;
+ if (r.matches.uri.empty())
+ r.action = NULL;
else
- r.first->ref();
+ r.action->ref();
m_actionsLock.leave();