]> git.proxmox.com Git - ceph.git/blob - ceph/src/crush/CrushTreeDumper.h
import 15.2.0 Octopus source
[ceph.git] / ceph / src / crush / CrushTreeDumper.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4 * Ceph distributed storage system
5 *
6 * Copyright (C) 2015 Mirantis Inc
7 *
8 * Author: Mykola Golub <mgolub@mirantis.com>
9 *
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
14 *
15 */
16
17 #ifndef CRUSH_TREE_DUMPER_H
18 #define CRUSH_TREE_DUMPER_H
19
20 #include "CrushWrapper.h"
21 #include "include/stringify.h"
22
23 /**
24 * CrushTreeDumper:
25 * A helper class and functions to dump a crush tree.
26 *
27 * Example:
28 *
29 * class SimpleDumper : public CrushTreeDumper::Dumper<ostream> {
30 * public:
31 * SimpleDumper(const CrushWrapper *crush) :
32 * CrushTreeDumper::Dumper<ostream>(crush) {}
33 * protected:
34 * virtual void dump_item(const CrushTreeDumper::Item &qi, ostream *out) {
35 * *out << qi.id;
36 * for (int k = 0; k < qi.depth; k++)
37 * *out << "-";
38 * if (qi.is_bucket())
39 * *out << crush->get_item_name(qi.id)
40 * else
41 * *out << "osd." << qi.id;
42 * *out << "\n";
43 * }
44 * };
45 *
46 * SimpleDumper(crush).dump(out);
47 *
48 */
49
50 namespace CrushTreeDumper {
51
52 struct Item {
53 int id;
54 int parent;
55 int depth;
56 float weight;
57 std::list<int> children;
58
59 Item() : id(0), parent(0), depth(0), weight(0) {}
60 Item(int i, int p, int d, float w) : id(i), parent(p), depth(d), weight(w) {}
61
62 bool is_bucket() const { return id < 0; }
63 };
64
65 template <typename F>
66 class Dumper : public std::list<Item> {
67 public:
68 explicit Dumper(const CrushWrapper *crush_,
69 const name_map_t& weight_set_names_)
70 : crush(crush_), weight_set_names(weight_set_names_) {
71 crush->find_nonshadow_roots(&roots);
72 root = roots.begin();
73 }
74 explicit Dumper(const CrushWrapper *crush_,
75 const name_map_t& weight_set_names_,
76 bool show_shadow)
77 : crush(crush_), weight_set_names(weight_set_names_) {
78 if (show_shadow) {
79 crush->find_roots(&roots);
80 } else {
81 crush->find_nonshadow_roots(&roots);
82 }
83 root = roots.begin();
84 }
85
86 virtual ~Dumper() {}
87
88 virtual void reset() {
89 root = roots.begin();
90 touched.clear();
91 clear();
92 }
93
94 virtual bool should_dump_leaf(int i) const {
95 return true;
96 }
97 virtual bool should_dump_empty_bucket() const {
98 return true;
99 }
100
101 bool should_dump(int id) {
102 if (id >= 0)
103 return should_dump_leaf(id);
104 if (should_dump_empty_bucket())
105 return true;
106 int s = crush->get_bucket_size(id);
107 for (int k = s - 1; k >= 0; k--) {
108 int c = crush->get_bucket_item(id, k);
109 if (should_dump(c))
110 return true;
111 }
112 return false;
113 }
114
115 bool next(Item &qi) {
116 if (empty()) {
117 while (root != roots.end() && !should_dump(*root))
118 ++root;
119 if (root == roots.end())
120 return false;
121 push_back(Item(*root, 0, 0, crush->get_bucket_weightf(*root)));
122 ++root;
123 }
124
125 qi = front();
126 pop_front();
127 touched.insert(qi.id);
128
129 if (qi.is_bucket()) {
130 // queue bucket contents, sorted by (class, name)
131 int s = crush->get_bucket_size(qi.id);
132 std::map<std::string, std::pair<int,float>> sorted;
133 for (int k = s - 1; k >= 0; k--) {
134 int id = crush->get_bucket_item(qi.id, k);
135 if (should_dump(id)) {
136 std::string sort_by;
137 if (id >= 0) {
138 const char *c = crush->get_item_class(id);
139 sort_by = c ? c : "";
140 sort_by += "_";
141 char nn[80];
142 snprintf(nn, sizeof(nn), "osd.%08d", id);
143 sort_by += nn;
144 } else {
145 sort_by = "_";
146 sort_by += crush->get_item_name(id);
147 }
148 sorted[sort_by] = std::make_pair(
149 id, crush->get_bucket_item_weightf(qi.id, k));
150 }
151 }
152 for (auto p = sorted.rbegin(); p != sorted.rend(); ++p) {
153 qi.children.push_back(p->second.first);
154 push_front(Item(p->second.first, qi.id, qi.depth + 1,
155 p->second.second));
156 }
157 }
158 return true;
159 }
160
161 void dump(F *f) {
162 reset();
163 Item qi;
164 while (next(qi))
165 dump_item(qi, f);
166 }
167
168 bool is_touched(int id) const { return touched.count(id) > 0; }
169
170 void set_root(const std::string& bucket) {
171 roots.clear();
172 if (crush->name_exists(bucket)) {
173 int i = crush->get_item_id(bucket);
174 roots.insert(i);
175 }
176 }
177
178 protected:
179 virtual void dump_item(const Item &qi, F *f) = 0;
180
181 protected:
182 const CrushWrapper *crush;
183 const name_map_t &weight_set_names;
184
185 private:
186 std::set<int> touched;
187 std::set<int> roots;
188 std::set<int>::iterator root;
189 };
190
191 inline void dump_item_fields(const CrushWrapper *crush,
192 const name_map_t& weight_set_names,
193 const Item &qi, ceph::Formatter *f) {
194 f->dump_int("id", qi.id);
195 const char *c = crush->get_item_class(qi.id);
196 if (c)
197 f->dump_string("device_class", c);
198 if (qi.is_bucket()) {
199 int type = crush->get_bucket_type(qi.id);
200 f->dump_string("name", crush->get_item_name(qi.id));
201 f->dump_string("type", crush->get_type_name(type));
202 f->dump_int("type_id", type);
203 } else {
204 f->dump_stream("name") << "osd." << qi.id;
205 f->dump_string("type", crush->get_type_name(0));
206 f->dump_int("type_id", 0);
207 f->dump_float("crush_weight", qi.weight);
208 f->dump_unsigned("depth", qi.depth);
209 }
210 if (qi.parent < 0) {
211 f->open_object_section("pool_weights");
212 for (auto& p : crush->choose_args) {
213 const crush_choose_arg_map& cmap = p.second;
214 int bidx = -1 - qi.parent;
215 const crush_bucket *b = crush->get_bucket(qi.parent);
216 if (b &&
217 bidx < (int)cmap.size &&
218 cmap.args[bidx].weight_set &&
219 cmap.args[bidx].weight_set_positions >= 1) {
220 int bpos;
221 for (bpos = 0;
222 bpos < (int)cmap.args[bidx].weight_set[0].size &&
223 b->items[bpos] != qi.id;
224 ++bpos) ;
225 std::string name;
226 if (p.first == CrushWrapper::DEFAULT_CHOOSE_ARGS) {
227 name = "(compat)";
228 } else {
229 auto q = weight_set_names.find(p.first);
230 name = q != weight_set_names.end() ? q->second :
231 stringify(p.first);
232 }
233 f->open_array_section(name.c_str());
234 for (unsigned opos = 0;
235 opos < cmap.args[bidx].weight_set_positions;
236 ++opos) {
237 float w = (float)cmap.args[bidx].weight_set[opos].weights[bpos] /
238 (float)0x10000;
239 f->dump_float("weight", w);
240 }
241 f->close_section();
242 }
243 }
244 f->close_section();
245 }
246 }
247
248 inline void dump_bucket_children(const CrushWrapper *crush,
249 const Item &qi, ceph::Formatter *f) {
250 if (!qi.is_bucket())
251 return;
252
253 f->open_array_section("children");
254 for (std::list<int>::const_iterator i = qi.children.begin();
255 i != qi.children.end();
256 ++i) {
257 f->dump_int("child", *i);
258 }
259 f->close_section();
260 }
261
262 class FormattingDumper : public Dumper<ceph::Formatter> {
263 public:
264 explicit FormattingDumper(const CrushWrapper *crush,
265 const name_map_t& weight_set_names)
266 : Dumper<ceph::Formatter>(crush, weight_set_names) {}
267 explicit FormattingDumper(const CrushWrapper *crush,
268 const name_map_t& weight_set_names,
269 bool show_shadow)
270 : Dumper<ceph::Formatter>(crush, weight_set_names, show_shadow) {}
271
272 protected:
273 void dump_item(const Item &qi, ceph::Formatter *f) override {
274 f->open_object_section("item");
275 dump_item_fields(qi, f);
276 dump_bucket_children(qi, f);
277 f->close_section();
278 }
279
280 virtual void dump_item_fields(const Item &qi, ceph::Formatter *f) {
281 CrushTreeDumper::dump_item_fields(crush, weight_set_names, qi, f);
282 }
283
284 virtual void dump_bucket_children(const Item &qi, ceph::Formatter *f) {
285 CrushTreeDumper::dump_bucket_children(crush, qi, f);
286 }
287 };
288
289 }
290
291 #endif