blob: 1ba4b3d28f4ee8a58b311b8db9b83c39dac0f6e3 (
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
|
// -*- 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) 2016 Red Hat
*
* 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 PG_EFFECTS_H_
#define PG_EFFECTS_H_
#include "include/cephfs/libcephfs.h"
#include "osd/osd_types.h"
#include <set>
#include "osdc/Objecter.h"
/**
* This utility scans the files (via an online MDS) and works out
* which ones rely on named PGs. For use when someone has
* some bad/damaged PGs and wants to see which files might be
* affected.
*/
class PgFiles
{
private:
Objecter *objecter;
struct ceph_mount_info *cmount = nullptr;
std::set<pg_t> pgs;
std::set<uint64_t> pools;
void hit_file(std::string const &path, const struct ceph_statx &stx);
void hit_dir(std::string const &path);
public:
PgFiles(Objecter *o, const std::set<pg_t> &pgs_);
~PgFiles();
int init();
int scan_path(std::string const &path);
};
#endif
|