Open Lighting Architecture  0.9.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RpcPeer.h
1 /*
2  * This library is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public
4  * License as published by the Free Software Foundation; either
5  * version 2.1 of the License, or (at your option) any later version.
6  *
7  * This library is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10  * Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public
13  * License along with this library; if not, write to the Free Software
14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15  *
16  * RpcController.h
17  * Interface for a basic RPC Controller.
18  * Copyright (C) 2005-2009 Simon Newton
19  */
20 
21 #ifndef COMMON_RPC_RPCPEER_H_
22 #define COMMON_RPC_RPCPEER_H_
23 
24 #include <ola/Callback.h>
26 #include <string>
27 
28 namespace ola {
29 namespace rpc {
30 
31 class RpcPeer {
32  public:
33  explicit RpcPeer(const ola::network::GenericSocketAddress &socket_addr)
34  : m_socket_addr(socket_addr) {
35  }
36 
37  const ola::network::GenericSocketAddress& SocketAddress() const {
38  return m_socket_addr;
39  }
40 
44  RpcPeer& operator=(const RpcPeer& other) {
45  if (this != &other) {
46  m_socket_addr = other.m_socket_addr;
47  }
48  return *this;
49  }
50 
55  std::string ToString() const {
56  return m_socket_addr.ToString();
57  }
58 
64  friend ostream& operator<<(ostream &out, const RpcPeer &peer) {
65  return out << peer.ToString();
66  }
67 
68  private:
70 };
71 } // namespace rpc
72 } // namespace ola
73 
74 #endif // COMMON_RPC_RPCPEER_H_