blob: 9dd278eeec6ff743002ee6f478df658daa417864 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
// -*- 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/stat.h>
#include <iostream>
#include <string>
using namespace std;
#include "config.h"
#include "mon/MonMap.h"
#include "mon/MonClient.h"
#include "msg/SimpleMessenger.h"
#include "messages/MPing.h"
#include "common/Timer.h"
#include "common/common_init.h"
#ifndef DARWIN
#include <envz.h>
#endif // DARWIN
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
MonMap monmap;
Messenger *messenger = 0;
Mutex lock("mylock");
Cond cond;
__u64 received = 0;
class Admin : public Dispatcher {
bool dispatch_impl(Message *m) {
//cerr << "got ping from " << m->get_source() << std::endl;
dout(0) << "got ping from " << m->get_source() << dendl;
lock.Lock();
++received;
cond.Signal();
lock.Unlock();
delete m;
return true;
}
void ms_handle_failure(Message *m, const entity_inst_t& inst) {
}
} dispatcher;
int main(int argc, const char **argv, const char *envp[]) {
vector<const char*> args;
argv_to_vec(argc, argv, args);
env_to_vec(args);
common_init(args, NULL);
vec_to_argv(args, argc, argv);
int whoami = atoi(args[0]);
dout(0) << "i am mon" << whoami << dendl;
// get monmap
MonClient mc;
if (mc.get_monmap(&monmap) < 0)
return -1;
// start up network
g_my_addr = monmap.get_inst(whoami).addr;
int err = rank.bind();
if (err < 0)
return 1;
_dout_create_courtesy_output_symlink("mon", whoami);
// start monitor
messenger = rank.register_entity(entity_name_t::MON(whoami));
messenger->set_default_send_priority(CEPH_MSG_PRIO_HIGH);
messenger->set_dispatcher(&dispatcher);
rank.start();
int isend = 0;
if (whoami == 0)
isend = 100;
lock.Lock();
__u64 sent = 0;
while (1) {
while (received + isend <= sent) {
//cerr << "wait r " << received << " s " << sent << " is " << isend << std::endl;
dout(0) << "wait r " << received << " s " << sent << " is " << isend << dendl;
cond.Wait(lock);
}
int t = rand() % monmap.size();
if (t == whoami)
continue;
if (rand() % 10 == 0) {
//cerr << "mark_down " << t << std::endl;
dout(0) << "mark_down " << t << dendl;
messenger->mark_down(monmap.get_inst(t).addr);
}
//cerr << "pinging " << t << std::endl;
dout(0) << "pinging " << t << dendl;
messenger->send_message(new MPing, monmap.get_inst(t));
cerr << isend << "\t" << ++sent << "\t" << received << "\r";
}
lock.Unlock();
// wait for messenger to finish
rank.wait();
return 0;
}
|