summaryrefslogtreecommitdiff
path: root/src/mongo/util/net/hostandport.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/net/hostandport.h')
-rw-r--r--src/mongo/util/net/hostandport.h179
1 files changed, 179 insertions, 0 deletions
diff --git a/src/mongo/util/net/hostandport.h b/src/mongo/util/net/hostandport.h
new file mode 100644
index 00000000000..11acf5def25
--- /dev/null
+++ b/src/mongo/util/net/hostandport.h
@@ -0,0 +1,179 @@
+// hostandport.h
+
+/* Copyright 2009 10gen Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#pragma once
+
+#include "sock.h"
+#include "../../db/cmdline.h"
+#include "../mongoutils/str.h"
+
+namespace mongo {
+
+ using namespace mongoutils;
+
+ /** helper for manipulating host:port connection endpoints.
+ */
+ struct HostAndPort {
+ HostAndPort() : _port(-1) { }
+
+ /** From a string hostname[:portnumber]
+ Throws user assertion if bad config string or bad port #.
+ */
+ HostAndPort(string s);
+
+ /** @param p port number. -1 is ok to use default. */
+ HostAndPort(string h, int p /*= -1*/) : _host(h), _port(p) {
+ verify( !str::startsWith(h, '#') );
+ }
+
+ HostAndPort(const SockAddr& sock ) : _host( sock.getAddr() ) , _port( sock.getPort() ) { }
+
+ static HostAndPort me();
+
+ bool operator<(const HostAndPort& r) const {
+ string h = host();
+ string rh = r.host();
+ if( h < rh )
+ return true;
+ if( h == rh )
+ return port() < r.port();
+ return false;
+ }
+
+ bool operator==(const HostAndPort& r) const {
+ return host() == r.host() && port() == r.port();
+ }
+
+ bool operator!=(const HostAndPort& r) const { return !(*this == r); }
+
+ /* returns true if the host/port combo identifies this process instance. */
+ bool isSelf() const; // defined in isself.cpp
+
+ bool isLocalHost() const;
+
+ /**
+ * @param includePort host:port if true, host otherwise
+ */
+ string toString( bool includePort=true ) const;
+
+ operator string() const { return toString(); }
+
+ bool empty() const {
+ return _host.empty() && _port < 0;
+ }
+ string host() const {
+ return _host;
+ }
+ int port() const {
+ if (hasPort())
+ return _port;
+ return CmdLine::DefaultDBPort;
+ }
+ bool hasPort() const {
+ return _port >= 0;
+ }
+ void setPort( int port ) {
+ _port = port;
+ }
+
+ private:
+ void init(const char *);
+ string _host;
+ int _port; // -1 indicates unspecified
+ };
+
+ inline HostAndPort HostAndPort::me() {
+ const char* ips = cmdLine.bind_ip.c_str();
+ while(*ips) {
+ string ip;
+ const char * comma = strchr(ips, ',');
+ if (comma) {
+ ip = string(ips, comma - ips);
+ ips = comma + 1;
+ }
+ else {
+ ip = string(ips);
+ ips = "";
+ }
+ HostAndPort h = HostAndPort(ip, cmdLine.port);
+ if (!h.isLocalHost()) {
+ return h;
+ }
+ }
+
+ string h = getHostName();
+ verify( !h.empty() );
+ verify( h != "localhost" );
+ return HostAndPort(h, cmdLine.port);
+ }
+
+ inline string HostAndPort::toString( bool includePort ) const {
+ string h = host();
+ int p = port();
+
+ if ( ! includePort )
+ return h;
+
+ stringstream ss;
+ ss << h;
+ if ( p != -1 ) {
+ ss << ':';
+#if defined(_DEBUG)
+ if( p >= 44000 && p < 44100 ) {
+ log() << "warning: special debug port 44xxx used" << endl;
+ ss << p+1;
+ }
+ else
+ ss << p;
+#else
+ ss << p;
+#endif
+ }
+ return ss.str();
+ }
+
+ inline bool HostAndPort::isLocalHost() const {
+ string _host = host();
+ return ( _host == "localhost"
+ || startsWith(_host.c_str(), "127.")
+ || _host == "::1"
+ || _host == "anonymous unix socket"
+ || _host.c_str()[0] == '/' // unix socket
+ );
+ }
+
+ inline void HostAndPort::init(const char *p) {
+ massert(13110, "HostAndPort: host is empty", *p);
+ const char *colon = strrchr(p, ':');
+ if( colon ) {
+ int port = atoi(colon+1);
+ uassert(13095, "HostAndPort: bad port #", port > 0);
+ _host = string(p,colon-p);
+ _port = port;
+ }
+ else {
+ // no port specified.
+ _host = p;
+ _port = -1;
+ }
+ }
+
+ inline HostAndPort::HostAndPort(string s) {
+ init(s.c_str());
+ }
+
+}