blob: 94474c77584d7e6c7b33696427c1567e8e5c7275 [file] [log] [blame]
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * Copyright (c) 2014 Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology
9 *
10 * This file is part of NFD (Named Data Networking Forwarding Daemon).
11 * See AUTHORS.md for complete list of NFD authors and contributors.
12 *
13 * NFD is free software: you can redistribute it and/or modify it under the terms
14 * of the GNU General Public License as published by the Free Software Foundation,
15 * either version 3 of the License, or (at your option) any later version.
16 *
17 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 * PURPOSE. See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
23 **/
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -080024
25#ifndef NFD_CORE_FACE_URI_H
26#define NFD_CORE_FACE_URI_H
27
28#include "common.hpp"
29
30namespace nfd {
31
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070032#ifdef HAVE_LIBPCAP
Junxiao Shie38b1c42014-04-01 23:45:36 -070033namespace ethernet {
34class Address;
35} // namespace ethernet
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070036#endif // HAVE_LIBPCAP
Junxiao Shie38b1c42014-04-01 23:45:36 -070037
38/** \brief represents the underlying protocol and address used by a Face
39 * \sa http://redmine.named-data.net/projects/nfd/wiki/FaceMgmt#FaceUri
40 */
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -080041class FaceUri
42{
43public:
Junxiao Shie38b1c42014-04-01 23:45:36 -070044 class Error : public std::invalid_argument
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -080045 {
46 public:
Junxiao Shie38b1c42014-04-01 23:45:36 -070047 explicit
48 Error(const std::string& what)
49 : std::invalid_argument(what)
50 {
51 }
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -080052 };
53
54 FaceUri();
Junxiao Shi61e3cc52014-03-03 20:40:28 -070055
56 /** \brief construct by parsing
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -080057 *
Junxiao Shie38b1c42014-04-01 23:45:36 -070058 * \param uri scheme://host[:port]/path
59 * \throw FaceUri::Error if URI cannot be parsed
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -080060 */
61 explicit
62 FaceUri(const std::string& uri);
63
Junxiao Shi61e3cc52014-03-03 20:40:28 -070064 // This overload is needed so that calls with string literal won't be
65 // resolved to boost::asio::local::stream_protocol::endpoint overload.
66 explicit
67 FaceUri(const char* uri);
68
Junxiao Shi61e3cc52014-03-03 20:40:28 -070069 /// exception-safe parsing
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -080070 bool
71 parse(const std::string& uri);
72
Junxiao Shie38b1c42014-04-01 23:45:36 -070073public: // scheme-specific construction
74 /// construct tcp4 or tcp6 canonical FaceUri
75 explicit
76 FaceUri(const boost::asio::ip::tcp::endpoint& endpoint);
77
78 /// construct udp4 or udp6 canonical FaceUri
79 explicit
80 FaceUri(const boost::asio::ip::udp::endpoint& endpoint);
81
Wentao Shang53df1632014-04-21 12:01:32 -070082 /// construct tcp canonical FaceUri with customized scheme
83 FaceUri(const boost::asio::ip::tcp::endpoint& endpoint, const std::string& scheme);
84
Junxiao Shie38b1c42014-04-01 23:45:36 -070085#ifdef HAVE_UNIX_SOCKETS
86 /// construct unix canonical FaceUri
87 explicit
88 FaceUri(const boost::asio::local::stream_protocol::endpoint& endpoint);
89#endif // HAVE_UNIX_SOCKETS
90
91 /// create fd FaceUri from file descriptor
92 static FaceUri
93 fromFd(int fd);
94
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070095#ifdef HAVE_LIBPCAP
Junxiao Shie38b1c42014-04-01 23:45:36 -070096 /// construct ether canonical FaceUri
97 explicit
98 FaceUri(const ethernet::Address& address);
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070099#endif // HAVE_LIBPCAP
Junxiao Shie38b1c42014-04-01 23:45:36 -0700100
101 /// create dev FaceUri from network device name
102 static FaceUri
103 fromDev(const std::string& ifname);
104
105public: // getters
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700106 /// get scheme (protocol)
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800107 const std::string&
108 getScheme() const;
109
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700110 /// get host (domain)
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800111 const std::string&
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700112 getHost() const;
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800113
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700114 /// get port
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800115 const std::string&
116 getPort() const;
117
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700118 /// get path
119 const std::string&
120 getPath() const;
121
122 /// write as a string
123 std::string
124 toString() const;
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800125
126private:
127 std::string m_scheme;
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700128 std::string m_host;
129 /// whether to add [] around host when writing string
130 bool m_isV6;
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800131 std::string m_port;
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700132 std::string m_path;
Junxiao Shie38b1c42014-04-01 23:45:36 -0700133
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700134 friend std::ostream& operator<<(std::ostream& os, const FaceUri& uri);
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800135};
136
137inline
138FaceUri::FaceUri()
Junxiao Shie38b1c42014-04-01 23:45:36 -0700139 : m_isV6(false)
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800140{
141}
142
143inline const std::string&
144FaceUri::getScheme() const
145{
146 return m_scheme;
147}
148
149inline const std::string&
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700150FaceUri::getHost() const
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800151{
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700152 return m_host;
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800153}
154
155inline const std::string&
156FaceUri::getPort() const
157{
158 return m_port;
159}
160
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700161inline const std::string&
162FaceUri::getPath() const
163{
164 return m_path;
165}
166
167inline std::string
168FaceUri::toString() const
169{
170 std::ostringstream os;
171 os << *this;
172 return os.str();
173}
174
175inline std::ostream&
176operator<<(std::ostream& os, const FaceUri& uri)
177{
178 os << uri.m_scheme << "://";
179 if (uri.m_isV6) {
180 os << "[" << uri.m_host << "]";
181 }
182 else {
183 os << uri.m_host;
184 }
185 if (!uri.m_port.empty()) {
186 os << ":" << uri.m_port;
187 }
188 os << uri.m_path;
189 return os;
190}
191
Alexander Afanasyev7b9347b2014-02-28 08:37:56 -0800192} // namespace nfd
193
194#endif // NFD_CORE_FACE_URI_H