MagAO-X
Operations Applications Utilities Source
tunneledHost.hpp
Go to the documentation of this file.
1 /** \file tunneledHost.hpp
2  * \brief Managing specifics of a remote INDI host to be tunneled over ssh.
3  *
4  * \ingroup xindiserver_files
5  */
6 
7 #include <cstdlib>
8 #include <string>
9 #include <sstream>
10 
11 #include <iostream>
12 
13 #ifndef tunneledHost_hpp
14 #define tunneledHost_hpp
15 
16 #ifndef INDI_DEFAULT_PORT
17 #define INDI_DEFAULT_PORT (7624)
18 #endif
19 
20 namespace MagAOX
21 {
22 namespace netcom
23 {
24 
25 ///Contains the details of a tunneled-host specification and provides parsing.
27 {
28 
29 protected:
30  std::string m_name; ///< The host name or ip address
31  int m_remotePort {INDI_DEFAULT_PORT}; ///< The remote port on the host
32  int m_localPort {0}; ///< The local port which will be forwarded
33 
34 public:
35  ///Get the host name
36  /**
37  * \returns the current value of m_name
38  */
39  std::string name() const
40  {
41  return m_name;
42  }
43 
44  ///Set the host name.
45  /**
46  * \returns 0 on sucess.
47  * \returns -1 on error.
48  */
49  int name(const std::string & nn /**< [in] the new name */)
50  {
51  m_name = nn;
52  return 0;
53  }
54 
55  ///Get the remote port
56  /**
57  * \returns the current value of m_remotePort
58  */
59  int remotePort() const
60  {
61  return m_remotePort;
62  }
63 
64  ///Set the remote port
65  /**
66  * \returns 0 on sucess.
67  * \returns -1 on error.
68  */
69  int remotePort(const int & rp /**< [in] the new remote port*/)
70  {
71  m_remotePort = rp;
72  return 0;
73  }
74 
75  ///Get the localPort
76  /**
77  * \returns the current value of m_localPort
78  */
79  int localPort() const
80  {
81  return m_localPort;
82  }
83 
84  ///Set the local port
85  /**
86  * \returns 0 on sucess.
87  * \returns -1 on error.
88  */
89  int localPort(const int & lp /**< [in] the new local port*/)
90  {
91  m_localPort = lp;
92  return 0;
93  }
94 
95  ///Get the remote specification string, "name:remotePort"
96  /**
97  * \returns the remote-spec as "name:remotePort"
98  */
99  std::string remoteSpec()
100  {
101  std::ostringstream k;
102  k << m_name << ':' << m_remotePort;
103 
104  return k.str();
105  }
106 
107  ///Get the full specification string, "name:remotePort:localPort"
108  /**
109  * \returns the full-spec as "name:remotePort:localPort"
110  */
111  std::string fullSpec()
112  {
113  std::ostringstream k;
114  k << m_name << ':' << m_remotePort << ':' << m_localPort ;
115 
116  return k.str();
117  }
118 
119  ///Parse a host specification string into the component parts.
120  /**
121  * Expects a string in the form 'hostname[:remotePort]:localPort'.
122  * hostname and localPort are required. remotePort is optional, as the
123  * default INDI port of 7624 is assumed.
124  * Whitespace anywhere in the string is ignored. The ports are converted
125  * to integers.
126  *
127  * \returns 0 on success
128  * \returns -1 on any error, in which case none of the values should be used.
129  */
130  int parse( const std::string & cnws)
131  {
132  //Remove whitespace
133  std::string cn = cnws;
134  cn.erase(std::remove_if(cn.begin(), cn.end(), ::isspace), cn.end());
135 
136  //Find first colon
137  size_t first = cn.find(':', 0);
138 
139  if(first == 0) //too early
140  {
141  std::cerr << "No host found.\n";
142  return -1;
143  }
144 
145  if(first == cn.size()-1) //too late
146  {
147  std::cerr << "Localport can't be empty.\n";
148  return -1;
149  }
150 
151  if(first == std::string::npos) //not there
152  {
153  std::cerr << "Must specify localport.\n";
154  return -1;
155  }
156 
157 
158  //Look for a 2nd :
159  size_t second = cn.find(':', first+1);
160 
161  //There is a 2nd
162  if(second != std::string::npos )
163  {
164  if(second == cn.size()-1) //too early
165  {
166  std::cerr << "Localport can't be empty.\n";
167  return -1;
168  }
169 
170  m_name = cn.substr(0, first);
171  ++first;
172 
173  //Only change default for a non-empty remote port, not for "::"
174  if(second-first > 1)
175  {
176  m_remotePort = atoi( cn.substr(first, second - first).c_str());
177  }
178 
179  m_localPort = atoi( cn.substr(second+1, cn.size()-second-1).c_str());
180  }
181  else //Just one colon
182  {
183  m_name = cn.substr(0, first);
184  ++first;
185 
186  m_localPort = atoi( cn.substr(first, cn.size()-first).c_str());
187  }
188 
189  return 0;
190  }
191 
192 };
193 
194 } //namespace netcom
195 } //namespace MagAOX
196 
197 #endif //tunneledHost_hpp
#define INDI_DEFAULT_PORT
std::string remoteSpec()
Get the remote specification string, "name:remotePort".
int m_localPort
The local port which will be forwarded.
int remotePort(const int &rp)
Set the remote port.
int localPort(const int &lp)
Set the local port.
int parse(const std::string &cnws)
Parse a host specification string into the component parts.
int remotePort() const
Get the remote port.
Contains the details of a tunneled-host specification and provides parsing.
int m_remotePort
The remote port on the host.
std::string name() const
Get the host name.
std::string m_name
The host name or ip address.
int name(const std::string &nn)
Set the host name.
int localPort() const
Get the localPort.
std::string fullSpec()
Get the full specification string, "name:remotePort:localPort".