0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/util/hostandport.h

101 lines
3.0 KiB
C
Raw Normal View History

2010-04-18 19:05:57 +02:00
// 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"
namespace mongo {
/** helper for manipulating host:port connection endpoints.
*/
struct HostAndPort {
HostAndPort() : _port(-1) { }
HostAndPort(string h, int p = -1) : _host(h), _port(p) { }
2010-04-21 22:43:51 +02:00
static HostAndPort me() {
return HostAndPort("localhost", cmdLine.port);
}
2010-04-21 20:41:09 +02:00
static HostAndPort fromString(string s) {
const char *p = s.c_str();
uassert(13110, "HostAndPort: bad config string", *p);
const char *colon = strchr(p, ':');
HostAndPort m;
if( colon ) {
int port = atoi(colon+1);
uassert(13095, "HostAndPort: bad port #", port > 0);
return HostAndPort(string(p,colon-p),port);
}
// no port specified.
return HostAndPort(p, cmdLine.port);
}
2010-04-18 19:05:57 +02:00
bool operator<(const HostAndPort& r) const { return _host < r._host || (_host==r._host&&_port<r._port); }
/* returns true if the host/port combo identifies this process instance. */
bool isSelf() const;
bool isLocalHost() const;
2010-04-21 03:55:34 +02:00
// @returns host:port
string toString() const;
2010-04-20 18:29:00 +02:00
string host() const { return _host; }
int port() const { return _port; }
2010-04-18 19:05:57 +02:00
private:
// invariant (except full obj assignment):
string _host;
2010-04-18 19:14:00 +02:00
int _port; // -1 indicates unspecified
2010-04-18 19:05:57 +02:00
};
/** returns true if strings share a common starting prefix */
inline bool sameStart(const char *p, const char *q) {
while( 1 ) {
if( *p == 0 || *q == 0 )
return true;
if( *p != *q )
break;
p++; q++;
}
return false;
}
inline bool HostAndPort::isSelf() const {
2010-04-18 19:14:00 +02:00
int p = _port == -1 ? CmdLine::DefaultDBPort : _port;
if( p != cmdLine.port )
2010-04-18 19:05:57 +02:00
return false;
assert( _host != "localhost" && _host != "127.0.0.1" );
return sameStart(getHostName().c_str(), _host.c_str());
}
2010-04-21 03:55:34 +02:00
inline string HostAndPort::toString() const {
2010-04-18 19:05:57 +02:00
stringstream ss;
2010-04-18 19:14:00 +02:00
ss << _host;
if( _port != -1 ) ss << ':' << _port;
2010-04-18 19:05:57 +02:00
return ss.str();
}
inline bool HostAndPort::isLocalHost() const {
return _host == "localhost" || _host == "127.0.0.1";
}
}