blob: 9090b7200fb6d9d1396b87f6068f3d35cd33611d (
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
|
#ifndef ROLE_SELECTOR_H_
#define ROLE_SELECTOR_H_
#include <string>
#include <vector>
#include "mds/mdstypes.h"
#include "mds/FSMap.h"
/**
* When you want to let the user act on a single rank in a namespace,
* or all of them.
*/
class MDSRoleSelector
{
public:
const std::vector<mds_role_t> &get_roles() const {return roles;}
int parse(const FSMap &fsmap, std::string const &str,
bool allow_unqualified_rank=true);
MDSRoleSelector()
: fscid(FS_CLUSTER_ID_NONE)
{}
fs_cluster_id_t get_ns() const
{
return fscid;
}
protected:
int parse_rank(
const FSMap &fsmap,
std::string const &str);
std::vector<mds_role_t> roles;
fs_cluster_id_t fscid;
};
#endif // ROLE_SELECTOR_H_
|