GPL v2.
[metaproxy-moved-to-github.git] / src / origin.hpp
1 /* $Id: origin.hpp,v 1.4 2007-05-09 21:23:09 adam Exp $
2    Copyright (c) 2005-2007, Index Data.
3
4 This file is part of Metaproxy.
5
6 Metaproxy is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Metaproxy; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 #ifndef YP2_ORIGIN_HPP
23 #define YP2_ORIGIN_HPP
24
25 #include <iosfwd>
26 #include <string>
27
28 namespace metaproxy_1 {
29     class Origin;
30 }
31
32 namespace std {
33     std::ostream& operator<<(std::ostream& os, metaproxy_1::Origin& o);
34 }
35
36 namespace metaproxy_1 {
37     
38     class Origin {
39     public:
40         Origin(std::string listen_host = "", unsigned int listen_port = 0);
41         
42         /// get function - right val in assignment
43         std::string listen_host() const;
44
45         /// set function - left val in assignment
46         std::string & listen_host();
47  
48         /// get function - right val in assignment
49         unsigned int listen_port() const;
50         
51         /// set function - left val in assignment
52         unsigned int & listen_port();
53  
54         /// set client IP info - left val in assignment
55         void set_tcpip_address(std::string addr, unsigned long id);
56
57     private:
58         friend std::ostream& 
59         std::operator<<(std::ostream& os,  metaproxy_1::Origin& o);
60         
61         enum origin_t {
62             API,
63             UNIX,
64             TCPIP
65         } m_type;
66         std::string m_address; // UNIX+TCPIP
67         unsigned int m_origin_id;
68         std::string m_listen_host;
69         unsigned int m_listen_port;
70     };
71
72 }
73
74
75
76 #endif
77 /*
78  * Local variables:
79  * c-basic-offset: 4
80  * indent-tabs-mode: nil
81  * c-file-style: "stroustrup"
82  * End:
83  * vim: shiftwidth=4 tabstop=8 expandtab
84  */