blob: 9ac9b56f14334a6aff1b9723c8832a46a424b6a3 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <iostream>
#include <string>
using namespace std;
#include "config.h"
#include "mon/MonMap.h"
int main(int argc, const char **argv)
{
vector<const char*> args;
argv_to_vec(argc, argv, args);
MonMap monmap;
const char *outfn = ".ceph_monmap";
for (unsigned i=0; i<args.size(); i++) {
if (strcmp(args[i], "--out") == 0)
outfn = args[++i];
else {
// parse ip:port
entity_inst_t inst;
if (!parse_ip_port(args[i], inst.addr)) {
cerr << "mkmonmap: invalid ip:port '" << args[i] << "'" << std::endl;
return -1;
}
inst.name = entity_name_t::MON(monmap.size());
cout << "mkmonmap: adding " << inst << std::endl;
monmap.add_mon(inst);
}
}
if (monmap.size() == 0) {
cerr << "usage: mkmonmap ip:port [...]" << std::endl;
return -1;
}
// write it out
cout << "mkmonmap: writing monmap epoch " << monmap.epoch << " to " << outfn << " (" << monmap.size() << " monitors)" << std::endl;
int r = monmap.write(outfn);
assert(r >= 0);
return 0;
}
|