mirror of
https://github.com/ceph/ceph
synced 2025-01-08 20:21:33 +00:00
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
|
||
|
/*
|
||
|
* 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.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __CLIENTMONITOR_H
|
||
|
#define __CLIENTMONITOR_H
|
||
|
|
||
|
#include <map>
|
||
|
#include <set>
|
||
|
using namespace std;
|
||
|
|
||
|
#include "include/types.h"
|
||
|
#include "msg/Messenger.h"
|
||
|
|
||
|
#include "mds/MDSMap.h"
|
||
|
|
||
|
class Monitor;
|
||
|
|
||
|
class ClientMonitor : public Dispatcher {
|
||
|
Monitor *mon;
|
||
|
Messenger *messenger;
|
||
|
Mutex &lock;
|
||
|
|
||
|
private:
|
||
|
int num_clients;
|
||
|
map<entity_name_t,entity_addr_t> client_map;
|
||
|
|
||
|
void bcast_latest_mds();
|
||
|
|
||
|
//void accept_pending(); // accept pending, new map.
|
||
|
//void send_incremental(epoch_t since, msg_addr_t dest);
|
||
|
|
||
|
void handle_client_boot(class MClientBoot *m);
|
||
|
|
||
|
public:
|
||
|
ClientMonitor(Monitor *mn, Messenger *m, Mutex& l) : mon(mn), messenger(m), lock(l),
|
||
|
num_clients(0) { }
|
||
|
|
||
|
void dispatch(Message *m);
|
||
|
void tick(); // check state, take actions
|
||
|
};
|
||
|
|
||
|
#endif
|