blob: d731f68ef65db8fb5061084f1f2790131ca0244d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/**
* Copyright (C) 2008 10gen Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
/* ReplSet is a pair of db servers replicating to one another and cooperating.
Only one member of the pair is active at a time; so this is a smart master/slave
configuration basically.
You may read from the slave at anytime though (if you don't mind the slight lag).
todo: Could be extended to be more than a pair, thus the name 'Set' -- for example,
a set of 3...
*/
class ReplSet {
public:
int remotePort;
string remoteHost;
string remote; // host:port if port specified.
ReplSet(const char *remoteEnd);
};
ReplSet::ReplSet(const char *remoteEnd) {
remote = remoteEnd;
remotePort = DBPort;
remoteHost = remoteEnd;
const char *p = strchr(remoteEnd, ':');
if( p ) {
remoteHost = string(remoteEnd, p-remoteEnd);
remotePort = atoi(p+1);
uassert("bad port #", remotePort > 0 && remotePort < 0x10000 );
if( remotePort == DBPort )
remote = remoteHost; // don't include ":27017" as it is default; in case ran in diff ways over time to normalizke the hostname format in sources collection
}
}
|