X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Forigin.cpp;h=b6acea6372f0e583aa9f1a71d1bc6131e0d1e147;hb=ed1d79c860c13fb92e5b7eea8de2cd608a6caa0e;hp=6168e1ab23551be6247af164c2f56e657e659050;hpb=e6d572ef110d14fa55115021505b808620457bd3;p=metaproxy-moved-to-github.git diff --git a/src/origin.cpp b/src/origin.cpp index 6168e1a..b6acea6 100644 --- a/src/origin.cpp +++ b/src/origin.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2010 Index Data + Copyright (C) Index Data Metaproxy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -17,39 +17,17 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "config.hpp" +#include #include - +#include #include namespace mp = metaproxy_1; -mp::Origin::Origin(std::string listen_host, - unsigned int listen_port) - : m_type(API), m_address(""), m_origin_id(0), - m_listen_host(listen_host), m_listen_port(listen_port), m_max_sockets(0) +mp::Origin::Origin() : m_address(""), m_origin_id(0), m_max_sockets(0) { } -std::string mp::Origin::listen_host() const -{ - return m_listen_host; -}; - -std::string & mp::Origin::listen_host() -{ - return m_listen_host; -}; - -unsigned int mp::Origin::listen_port() const -{ - return m_listen_port; -}; - -unsigned int & mp::Origin::listen_port() -{ - return m_listen_port; -}; - void mp::Origin::set_max_sockets(int max_sockets) { m_max_sockets = max_sockets; @@ -62,26 +40,82 @@ int mp::Origin::get_max_sockets() void mp::Origin::set_tcpip_address(std::string addr, unsigned long s) { - m_type = TCPIP; + // assume first call is immediate reverse IP: + bind IP + // 2nd call might be X-Forwarded .. we use that for logging + std::string tmp = m_address; m_address = addr; + if (tmp.length()) + { + m_address.append(" "); + m_address.append(tmp); + } + else + { + size_t pos = addr.find(' '); + assert (pos != std::string::npos); + } m_origin_id = s; } +void mp::Origin::set_custom_session(const std::string &s) +{ + m_custom_session = s; +} + +std::string mp::Origin::get_forward_address() const +{ + // return first component of address + // That's either first part of X-Forwarded component + size_t pos = m_address.find(' '); + if (pos != std::string::npos) + return m_address.substr(0, pos); + else + return m_address; +} + std::string mp::Origin::get_address() { - return m_address; + // return 2nd last component of address (last is listening IP) + size_t pos2 = m_address.rfind(' '); + if (pos2 != std::string::npos && pos2 > 0) + { + size_t pos1 = m_address.rfind(' ', pos2 - 1); + if (pos1 != std::string::npos) + return m_address.substr(pos1 + 1, pos2 - pos1 - 1); + else + return m_address.substr(0, pos2); + } + else + return m_address; +} + +std::string mp::Origin::get_bind_address() +{ + // return last component of address + size_t pos2 = m_address.rfind(' '); + if (pos2 != std::string::npos && pos2 > 0) + { + return m_address.substr(pos2 + 1); + } + else + return m_address; } -std::ostream& std::operator<<(std::ostream& os, mp::Origin& o) + +std::ostream& std::operator<<(std::ostream& os, const mp::Origin& o) { - if (o.m_address != "") - os << o.m_address; + // print first component of address + std::string a = o.get_forward_address(); + if (a.length()) + os << a; else os << "0"; os << ":" << o.m_origin_id; + if (o.m_custom_session.length()) + os << ":" << o.m_custom_session; return os; } - + /* * Local variables: * c-basic-offset: 4