repo
stringlengths
1
152
file
stringlengths
15
205
code
stringlengths
0
41.6M
file_length
int64
0
41.6M
avg_line_length
float64
0
1.81M
max_line_length
int64
0
12.7M
extension_type
stringclasses
90 values
null
ceph-main/src/tools/monmaptool.cc
// -*- 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 ...
14,245
28.073469
94
cc
null
ceph-main/src/tools/neorados.cc
// -*- 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) 2019 Red Hat <contact@redhat.com> * Author: Adam C. Emerson <aemerson@redhat.com> * * This is free software; you can redistribute it and/or * modify it ...
9,714
23.910256
107
cc
null
ceph-main/src/tools/osdmaptool.cc
// -*- 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 ...
33,958
34.746316
168
cc
null
ceph-main/src/tools/psim.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "osd/OSDMap.h" #include "include/buffer.h" using namespace std; int main(int argc, char **argv) { /* * you need to create a suitable osdmap first. e.g., for 40 osds, * $ ./osdmaptool --createsimple 40...
3,210
25.758333
81
cc
null
ceph-main/src/tools/radosacl.cc
// -*- 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 ...
3,802
19.228723
92
cc
null
ceph-main/src/tools/rebuild_mondb.cc
#include "auth/cephx/CephxKeyServer.h" #include "common/errno.h" #include "mon/AuthMonitor.h" #include "mon/MonitorDBStore.h" #include "os/ObjectStore.h" #include "osd/OSD.h" using namespace std; static int update_auth(const string& keyring_path, const OSDSuperblock& sb, ...
10,243
27.937853
80
cc
null
ceph-main/src/tools/rebuild_mondb.h
#pragma once #include <string> class ObjectStore; class OSDSuperblock; int update_mon_db(ObjectStore& fs, OSDSuperblock& sb, const std::string& keyring_path, const std::string& store_path);
228
21.9
53
h
null
ceph-main/src/tools/scratchtoolpp.cc
// -*- 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 ...
8,612
28.097973
108
cc
null
ceph-main/src/tools/setup-virtualenv.sh
#!/usr/bin/env bash # # Copyright (C) 2016 <contact@redhat.com> # # Author: Loic Dachary <loic@dachary.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Library Public License as published by # the Free Software Foundation; either version 2, or (at your option...
2,994
27.798077
97
sh
null
ceph-main/src/tools/ceph-dencoder/ceph_dencoder.cc
// -*- 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) 2015 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....
8,299
28.963899
106
cc
null
ceph-main/src/tools/ceph-dencoder/ceph_time.h
#ifndef TEST_CEPH_TIME_H #define TEST_CEPH_TIME_H #include <list> #include "include/encoding.h" #include "common/ceph_time.h" #include "common/Formatter.h" // wrapper for ceph::real_time that implements the dencoder interface template <typename Clock> class time_point_wrapper { using time_point = typename Clock::t...
1,918
26.811594
78
h
null
ceph-main/src/tools/ceph-dencoder/common_types.cc
#include "acconfig.h" #include <cstdint> using namespace std; #include "include/ceph_features.h" #define TYPE(t) #define TYPE_STRAYDATA(t) #define TYPE_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL(t) #define TYPE_FEATUREFUL_STRAYDATA(t) #define TYPE_FEATUREFUL_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL_NOCOPY(t) #defi...
818
21.135135
58
cc
null
ceph-main/src/tools/ceph-dencoder/common_types.h
#include "ceph_time.h" TYPE(real_time_wrapper) TYPE(coarse_real_time_wrapper) TYPE(timespan_wrapper) #include "include/utime.h" TYPE(utime_t) #include "include/uuid.h" TYPE(uuid_d) #include "sstring.h" TYPE(sstring_wrapper) #include "str.h" TYPE(string_wrapper) #include "include/CompatSet.h" TYPE(CompatSet) #incl...
8,889
18.538462
48
h
null
ceph-main/src/tools/ceph-dencoder/denc_plugin.h
#include <dlfcn.h> #include <filesystem> #include <vector> #include "denc_registry.h" namespace fs = std::filesystem; class DencoderPlugin { using dencoders_t = std::vector<std::pair<std::string, Dencoder*>>; public: DencoderPlugin(const fs::path& path) { mod = dlopen(path.c_str(), RTLD_NOW); if (mod == ...
2,566
31.493671
104
h
null
ceph-main/src/tools/ceph-dencoder/denc_registry.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #pragma once #include <iostream> #include <string> #include <string_view> #include "include/buffer_fwd.h" #include "msg/Message.h" namespace ceph { class Formatter; } struct Dencoder { virtual ~Dencoder() {} vir...
6,138
24.367769
91
h
null
ceph-main/src/tools/ceph-dencoder/mds_types.cc
#include "acconfig.h" #include <cstdint> using namespace std; #include "include/ceph_features.h" #define TYPE(t) #define TYPE_STRAYDATA(t) #define TYPE_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL(t) #define TYPE_FEATUREFUL_STRAYDATA(t) #define TYPE_FEATUREFUL_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL_NOCOPY(t) #defi...
812
20.972973
58
cc
null
ceph-main/src/tools/ceph-dencoder/mds_types.h
#ifdef WITH_CEPHFS #include "mds/JournalPointer.h" TYPE(JournalPointer) #include "osdc/Journaler.h" TYPE(Journaler::Header) #include "mds/snap.h" TYPE(SnapInfo) TYPE(snaplink_t) TYPE(sr_t) #include "mds/mdstypes.h" #include "include/cephfs/types.h" TYPE(frag_info_t) TYPE(nest_info_t) TYPE(quota_info_t) TYPE(client_w...
2,515
21.265487
44
h
null
ceph-main/src/tools/ceph-dencoder/osd_types.cc
#include "acconfig.h" #include <cstdint> using namespace std; #include "include/ceph_features.h" #define TYPE(t) #define TYPE_STRAYDATA(t) #define TYPE_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL(t) #define TYPE_FEATUREFUL_STRAYDATA(t) #define TYPE_FEATUREFUL_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL_NOCOPY(t) #defi...
989
23.75
77
cc
null
ceph-main/src/tools/ceph-dencoder/osd_types.h
#include "osd/OSDMap.h" TYPE(osd_info_t) TYPE_FEATUREFUL(osd_xinfo_t) TYPE_FEATUREFUL_NOCOPY(OSDMap) TYPE_FEATUREFUL_STRAYDATA(OSDMap::Incremental) #include "osd/osd_types.h" TYPE(osd_reqid_t) TYPE(object_locator_t) TYPE(request_redirect_t) TYPE(pg_t) TYPE(coll_t) TYPE_FEATUREFUL(objectstore_perf_stat_t) TYPE_FEATUREF...
3,786
24.07947
78
h
null
ceph-main/src/tools/ceph-dencoder/rbd_types.cc
#include "acconfig.h" #include <cstdint> using namespace std; #include "include/ceph_features.h" #define TYPE(t) #define TYPE_STRAYDATA(t) #define TYPE_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL(t) #define TYPE_FEATUREFUL_STRAYDATA(t) #define TYPE_FEATUREFUL_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL_NOCOPY(t) #defi...
812
20.972973
58
cc
null
ceph-main/src/tools/ceph-dencoder/rbd_types.h
#ifdef WITH_RBD #include "librbd/journal/Types.h" TYPE(librbd::journal::EventEntry) TYPE(librbd::journal::ClientData) TYPE(librbd::journal::TagData) #include "librbd/mirroring_watcher/Types.h" TYPE(librbd::mirroring_watcher::NotifyMessage) #include "librbd/trash_watcher/Types.h" TYPE(librbd::trash_watcher::NotifyMessag...
1,601
29.226415
54
h
null
ceph-main/src/tools/ceph-dencoder/rgw_types.cc
#include "acconfig.h" #include <cstdint> using namespace std; #include "include/ceph_features.h" #define TYPE(t) #define TYPE_STRAYDATA(t) #define TYPE_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL(t) #define TYPE_FEATUREFUL_STRAYDATA(t) #define TYPE_FEATUREFUL_NONDETERMINISTIC(t) #define TYPE_FEATUREFUL_NOCOPY(t) #defi...
812
20.972973
58
cc
null
ceph-main/src/tools/ceph-dencoder/rgw_types.h
#ifdef WITH_RADOSGW #include "rgw_rados.h" TYPE(RGWOLHInfo) TYPE(RGWObjManifestPart) TYPE(RGWObjManifest) TYPE(objexp_hint_entry) #include "rgw_zone.h" TYPE(RGWZoneParams) TYPE(RGWZone) TYPE(RGWZoneGroup) TYPE(RGWRealm) TYPE(RGWPeriod) TYPE(RGWPeriodLatestEpochInfo) #include "rgw_acl.h" TYPE(ACLPermission) TYPE(ACLG...
3,408
21.576159
42
h
null
ceph-main/src/tools/ceph-dencoder/sstring.h
#ifndef TEST_SSTRING_H #define TEST_SSTRING_H #include "common/sstring.hh" // wrapper for sstring that implements the dencoder interface class sstring_wrapper { using sstring16 = basic_sstring<char, uint32_t, 16>; sstring16 s1; using sstring24 = basic_sstring<unsigned char, uint16_t, 24>; sstring24 s2; publi...
1,240
29.268293
76
h
null
ceph-main/src/tools/ceph-dencoder/str.h
#ifndef TEST_STRING_H #define TEST_STRING_H #include "common/Formatter.h" // wrapper for std::string that implements the dencoder interface class string_wrapper { std::string s; public: string_wrapper() = default; string_wrapper(string s1) : s(s1) {} void encode(ceph::buffer::list& bl) const { ...
821
20.076923
71
h
null
ceph-main/src/tools/cephfs/DataScan.cc
// -*- 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) 2015 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....
73,267
29.464865
133
cc
null
ceph-main/src/tools/cephfs/DataScan.h
// -*- 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) 2015 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....
8,566
23.831884
86
h
null
ceph-main/src/tools/cephfs/Dumper.cc
// -*- 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) 2010 Greg Farnum <gregf@hq.newdream.net> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General...
13,328
29.711982
133
cc
null
ceph-main/src/tools/cephfs/Dumper.h
// -*- 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) 2010 Greg Farnum <gregf@hq.newdream.net> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General ...
1,125
23.478261
79
h
null
ceph-main/src/tools/cephfs/EventOutput.cc
// -*- 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) 2014 john spray <john.spray@inktank.com> * * this is free software; you can redistribute it and/or * modify it under the terms of the gnu lesser general...
4,601
28.883117
105
cc
null
ceph-main/src/tools/cephfs/EventOutput.h
// -*- 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) 2014 john spray <john.spray@inktank.com> * * this is free software; you can redistribute it and/or * modify it under the terms of the gnu lesser general...
920
20.418605
71
h
null
ceph-main/src/tools/cephfs/JournalFilter.cc
// -*- 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) 2014 john spray <john.spray@inktank.com> * * this is free software; you can redistribute it and/or * modify it under the terms of the gnu lesser general...
9,467
28.867508
100
cc
null
ceph-main/src/tools/cephfs/JournalFilter.h
// -*- 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) 2014 john spray <john.spray@inktank.com> * * this is free software; you can redistribute it and/or * modify it under the terms of the gnu lesser general...
1,719
22.243243
76
h
null
ceph-main/src/tools/cephfs/JournalScanner.cc
// -*- 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) 2014 john spray <john.spray@inktank.com> * * this is free software; you can redistribute it and/or * modify it under the terms of the gnu lesser general...
13,240
29.161731
120
cc
null
ceph-main/src/tools/cephfs/JournalScanner.h
// -*- 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) 2014 john spray <john.spray@inktank.com> * * this is free software; you can redistribute it and/or * modify it under the terms of the gnu lesser general...
3,519
25.268657
102
h
null
ceph-main/src/tools/cephfs/JournalTool.cc
// -*- 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) 2014 john spray <john.spray@inktank.com> * * this is free software; you can redistribute it and/or * modify it under the terms of the gnu lesser general...
39,303
30.02131
122
cc
null
ceph-main/src/tools/cephfs/JournalTool.h
// -*- 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) 2014 John Spray <john.spray@inktank.com> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General...
2,745
25.921569
90
h
null
ceph-main/src/tools/cephfs/MDSUtility.cc
// -*- 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) 2014 John Spray <john.spray@inktank.com> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General ...
3,492
21.391026
94
cc
null
ceph-main/src/tools/cephfs/MDSUtility.h
// -*- 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) 2014 John Spray <john.spray@inktank.com> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General ...
1,602
25.278689
70
h
null
ceph-main/src/tools/cephfs/MetaTool.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <string.h> #include <map> #include <sstream> #include <fstream> #include "include/types.h" #include "common/Formatter.h" #include "common/ceph_argparse.h" #include "common/errno.h" #include "osdc/Journaler.h" #i...
28,460
27.432567
123
cc
null
ceph-main/src/tools/cephfs/MetaTool.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef METATOOL_H__ #define METATOOL_H__ #include "MDSUtility.h" #include "RoleSelector.h" #include <vector> #include <stack> using std::stack; #include "mds/mdstypes.h" #include "mds/LogEvent.h" #include "mds/events/EM...
6,916
24.336996
98
h
null
ceph-main/src/tools/cephfs/PgFiles.cc
// -*- 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....
4,937
24.323077
78
cc
null
ceph-main/src/tools/cephfs/PgFiles.h
// -*- 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,161
21.346154
71
h
null
ceph-main/src/tools/cephfs/Resetter.cc
// -*- 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) 2010 Greg Farnum <gregf@hq.newdream.net> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General...
5,680
24.475336
85
cc
null
ceph-main/src/tools/cephfs/Resetter.h
// -*- 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) 2010 Greg Farnum <gregf@hq.newdream.net> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General ...
1,161
21.784314
78
h
null
ceph-main/src/tools/cephfs/RoleSelector.cc
#include "RoleSelector.h" int MDSRoleSelector::parse_rank( const FSMap &fsmap, std::string const &str) { if (str == "all" || str == "*") { std::set<mds_rank_t> in; const MDSMap &mds_map = fsmap.get_filesystem(fscid)->mds_map; mds_map.get_mds_set(in); for (auto rank : in) { roles.push_...
1,582
25.383333
70
cc
null
ceph-main/src/tools/cephfs/RoleSelector.h
#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() cons...
761
19.594595
69
h
null
ceph-main/src/tools/cephfs/TableTool.cc
// -*- 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) 2015 John Spray <john.spray@redhat.com> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General P...
10,736
24.564286
98
cc
null
ceph-main/src/tools/cephfs/TableTool.h
// -*- 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) 2015 John Spray <john.spray@redhat.com> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General P...
931
21.731707
86
h
null
ceph-main/src/tools/cephfs/cephfs-data-scan.cc
#include "include/types.h" #include "common/config.h" #include "common/ceph_argparse.h" #include "common/errno.h" #include "global/global_init.h" #include "DataScan.h" using namespace std; int main(int argc, const char **argv) { auto args = argv_to_vec(argc, argv); if (args.empty()) { cerr << argv[0] << ": ...
1,012
20.553191
80
cc
null
ceph-main/src/tools/cephfs/cephfs-journal-tool.cc
// -*- 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) 2014 John Spray <john.spray@inktank.com> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General...
1,391
23
80
cc
null
ceph-main/src/tools/cephfs/cephfs-meta-injection.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <include/types.h> #include "common/config.h" #include "common/ceph_argparse.h" #include "common/errno.h" #include "global/global_init.h" #include "MetaTool.h" #include <iostream> #include <string> #include <vect...
3,394
34
129
cc
null
ceph-main/src/tools/cephfs/cephfs-table-tool.cc
#include "include/types.h" #include "common/config.h" #include "common/ceph_argparse.h" #include "common/errno.h" #include "global/global_init.h" #include "TableTool.h" using namespace std; int main(int argc, const char **argv) { auto args = argv_to_vec(argc, argv); if (args.empty()) { cerr << argv[0] << ":...
994
20.170213
80
cc
null
ceph-main/src/tools/cephfs/type_helper.hpp
#ifndef TYPE_HELPER_HPP__ #define TYPE_HELPER_HPP__ template<typename T1, typename T2> T1 conv_t(T2 s){ T1 target; std::stringstream conv; conv << s; conv >> target; return target; } void string_split(std::string str, std::vector<std::string>& out, std::string split = ":") { std::cout << str <...
745
24.724138
92
hpp
null
ceph-main/src/tools/cephfs_mirror/ClusterWatcher.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <mutex> #include <vector> #include "common/ceph_context.h" #include "common/debug.h" #include "common/errno.h" #include "mon/MonClient.h" #include "ClusterWatcher.h" #include "ServiceDaemon.h" #define dout_con...
5,262
27.759563
96
cc
null
ceph-main/src/tools/cephfs_mirror/ClusterWatcher.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_CLUSTER_WATCHER_H #define CEPHFS_MIRROR_CLUSTER_WATCHER_H #include <map> #include "common/ceph_mutex.h" #include "common/async/context_pool.h" #include "messages/MFSMap.h" #include "msg/Dispatcher....
2,000
24.653846
90
h
null
ceph-main/src/tools/cephfs_mirror/FSMirror.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/admin_socket.h" #include "common/ceph_argparse.h" #include "common/ceph_context.h" #include "common/common_init.h" #include "common/debug.h" #include "common/errno.h" #include "common/WorkQueue.h" #includ...
12,467
27.017978
100
cc
null
ceph-main/src/tools/cephfs_mirror/FSMirror.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_FS_MIRROR_H #define CEPHFS_MIRROR_FS_MIRROR_H #include "common/Formatter.h" #include "common/Thread.h" #include "mds/FSMap.h" #include "Types.h" #include "InstanceWatcher.h" #include "MirrorWatcher....
3,867
23.327044
76
h
null
ceph-main/src/tools/cephfs_mirror/InstanceWatcher.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_context.h" #include "common/ceph_json.h" #include "common/debug.h" #include "common/errno.h" #include "common/WorkQueue.h" #include "cls/cephfs/cls_cephfs_client.h" #include "include/stringify.h" #in...
6,748
25.570866
88
cc
null
ceph-main/src/tools/cephfs_mirror/InstanceWatcher.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_INSTANCE_WATCHER_H #define CEPHFS_MIRROR_INSTANCE_WATCHER_H #include <string_view> #include "common/ceph_mutex.h" #include "include/Context.h" #include "include/rados/librados.hpp" #include "Watche...
2,071
23.093023
85
h
null
ceph-main/src/tools/cephfs_mirror/Mirror.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_argparse.h" #include "common/ceph_context.h" #include "common/common_init.h" #include "common/Cond.h" #include "common/debug.h" #include "common/errno.h" #include "common/Timer.h" #include "common/Wo...
18,187
29.162521
134
cc
null
ceph-main/src/tools/cephfs_mirror/Mirror.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_H #define CEPHFS_MIRROR_H #include <map> #include <set> #include <vector> #include "common/ceph_mutex.h" #include "common/WorkQueue.h" #include "mds/FSMap.h" #include "ClusterWatcher.h" #include "F...
3,834
26.198582
88
h
null
ceph-main/src/tools/cephfs_mirror/MirrorWatcher.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_context.h" #include "common/ceph_json.h" #include "common/debug.h" #include "common/errno.h" #include "common/WorkQueue.h" #include "include/stringify.h" #include "msg/Messenger.h" #include "aio_util...
4,185
27.09396
81
cc
null
ceph-main/src/tools/cephfs_mirror/MirrorWatcher.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_MIRROR_WATCHER_H #define CEPHFS_MIRROR_MIRROR_WATCHER_H #include <string_view> #include "common/ceph_mutex.h" #include "include/Context.h" #include "include/rados/librados.hpp" #include "Watcher.h"...
1,937
23.225
75
h
null
ceph-main/src/tools/cephfs_mirror/PeerReplayer.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <stack> #include <fcntl.h> #include <algorithm> #include <sys/time.h> #include <sys/file.h> #include <boost/scope_exit.hpp> #include "common/admin_socket.h" #include "common/ceph_context.h" #include "common/debu...
50,497
30.920354
107
cc
null
ceph-main/src/tools/cephfs_mirror/PeerReplayer.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_PEER_REPLAYER_H #define CEPHFS_MIRROR_PEER_REPLAYER_H #include "common/Formatter.h" #include "common/Thread.h" #include "mds/FSMap.h" #include "ServiceDaemon.h" #include "Types.h" namespace cephfs ...
11,372
34.429907
105
h
null
ceph-main/src/tools/cephfs_mirror/ServiceDaemon.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/debug.h" #include "common/errno.h" #include "common/Timer.h" #include "include/stringify.h" #include "ServiceDaemon.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_cephfs_mirror #u...
6,223
26.539823
94
cc
null
ceph-main/src/tools/cephfs_mirror/ServiceDaemon.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_SERVICE_DAEMON_H #define CEPHFS_MIRROR_SERVICE_DAEMON_H #include "common/ceph_mutex.h" #include "common/Timer.h" #include "mds/FSMap.h" #include "Types.h" namespace cephfs { namespace mirror { cla...
1,713
26.206349
80
h
null
ceph-main/src/tools/cephfs_mirror/Types.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "Types.h" namespace cephfs { namespace mirror { std::ostream& operator<<(std::ostream& out, const Filesystem &filesystem) { out << "{fscid=" << filesystem.fscid << ", fs_name=" << filesystem.fs_name << "}"; ...
555
24.272727
84
cc
null
ceph-main/src/tools/cephfs_mirror/Types.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_TYPES_H #define CEPHFS_MIRROR_TYPES_H #include <set> #include <iostream> #include <string_view> #include "include/rados/librados.hpp" #include "include/cephfs/libcephfs.h" #include "mds/mdstypes.h"...
2,221
24.25
83
h
null
ceph-main/src/tools/cephfs_mirror/Utils.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_argparse.h" #include "common/ceph_context.h" #include "common/common_init.h" #include "common/debug.h" #include "common/errno.h" #include "Utils.h" #define dout_context g_ceph_context #define dout_...
4,870
28.167665
90
cc
null
ceph-main/src/tools/cephfs_mirror/Utils.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_UTILS_H #define CEPHFS_MIRROR_UTILS_H #include "Types.h" namespace cephfs { namespace mirror { int connect(std::string_view client_name, std::string_view cluster_name, RadosRef *cluste...
621
26.043478
91
h
null
ceph-main/src/tools/cephfs_mirror/Watcher.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_context.h" #include "common/debug.h" #include "common/errno.h" #include "common/WorkQueue.h" #include "include/stringify.h" #include "aio_utils.h" #include "watcher/RewatchRequest.h" #include "Watche...
8,024
27.059441
100
cc
null
ceph-main/src/tools/cephfs_mirror/Watcher.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_WATCHER_H #define CEPHFS_MIRROR_WATCHER_H #include <string_view> #include "common/ceph_mutex.h" #include "include/Context.h" #include "include/rados/librados.hpp" class ContextWQ; namespace cephf...
2,590
24.15534
79
h
null
ceph-main/src/tools/cephfs_mirror/aio_utils.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_AIO_UTILS_H #define CEPHFS_MIRROR_AIO_UTILS_H #include "include/rados/librados.hpp" namespace cephfs { namespace mirror { template <typename T, void(T::*MF)(int)> void rados_callback(rados_complet...
1,137
20.074074
70
h
null
ceph-main/src/tools/cephfs_mirror/main.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_argparse.h" #include "common/config.h" #include "common/debug.h" #include "common/errno.h" #include "common/async/context_pool.h" #include "common/Preforker.h" #include "global/global_init.h" #includ...
3,429
26.44
101
cc
null
ceph-main/src/tools/cephfs_mirror/watcher/RewatchRequest.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_mutex.h" #include "common/debug.h" #include "common/errno.h" #include "include/Context.h" #include "tools/cephfs_mirror/aio_utils.h" #include "RewatchRequest.h" #define dout_context g_ceph_context #...
2,617
24.417476
83
cc
null
ceph-main/src/tools/cephfs_mirror/watcher/RewatchRequest.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPHFS_MIRROR_WATCHER_REWATCH_REQUEST_H #define CEPHFS_MIRROR_WATCHER_REWATCH_REQUEST_H #include "common/ceph_mutex.h" #include "include/int_types.h" #include "include/rados/librados.hpp" struct Context; namesp...
1,581
24.934426
80
h
null
ceph-main/src/tools/erasure-code/ceph-erasure-code-tool.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/buffer.h" #include "include/stringify.h" #include "common/ceph_argparse.h" #include "common/config_proxy.h" #include "common/errno.h" #include "erasure-code/ErasureCode.h" #include "erasure-code/ErasureC...
9,905
29.574074
110
cc
null
ceph-main/src/tools/immutable_object_cache/CacheClient.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <boost/bind/bind.hpp> #include "CacheClient.h" #include "common/Cond.h" #include "common/version.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_immutable_obj_cache #undef dout_prefix #def...
13,486
29.933486
90
cc
null
ceph-main/src/tools/immutable_object_cache/CacheClient.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_CACHE_CLIENT_H #define CEPH_CACHE_CACHE_CLIENT_H #include <atomic> #include <boost/asio.hpp> #include <boost/asio/error.hpp> #include <boost/algorithm/string.hpp> #include "include/ceph_assert.h" #inc...
2,677
30.505882
80
h
null
ceph-main/src/tools/immutable_object_cache/CacheController.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "CacheController.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_immutable_obj_cache #undef dout_prefix #define dout_prefix *_dout << "ceph::cache::CacheController: " << this << " " \ ...
3,854
26.535714
79
cc
null
ceph-main/src/tools/immutable_object_cache/CacheController.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_CACHE_CONTROLLER_H #define CEPH_CACHE_CACHE_CONTROLLER_H #include "common/ceph_context.h" #include "common/WorkQueue.h" #include "CacheServer.h" #include "ObjectCacheStore.h" namespace ceph { namespac...
894
20.829268
74
h
null
ceph-main/src/tools/immutable_object_cache/CacheServer.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <boost/bind/bind.hpp> #include "common/debug.h" #include "common/ceph_context.h" #include "CacheServer.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_immutable_obj_cache #undef dout_prefi...
2,593
23.242991
76
cc
null
ceph-main/src/tools/immutable_object_cache/CacheServer.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_CACHE_SERVER_H #define CEPH_CACHE_CACHE_SERVER_H #include <boost/asio.hpp> #include <boost/asio/error.hpp> #include "Types.h" #include "SocketCommon.h" #include "CacheSession.h" using boost::asio::l...
969
20.086957
80
h
null
ceph-main/src/tools/immutable_object_cache/CacheSession.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <boost/bind/bind.hpp> #include "common/debug.h" #include "common/ceph_context.h" #include "CacheSession.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_immutable_obj_cache #undef dout_pref...
3,992
27.319149
78
cc
null
ceph-main/src/tools/immutable_object_cache/CacheSession.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_SESSION_H #define CEPH_CACHE_SESSION_H #include <boost/asio.hpp> #include <boost/asio/error.hpp> #include "Types.h" #include "SocketCommon.h" using boost::asio::local::stream_protocol; using boost::a...
1,578
26.701754
72
h
null
ceph-main/src/tools/immutable_object_cache/ObjectCacheStore.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "ObjectCacheStore.h" #include "Utils.h" #include <filesystem> #define dout_context g_ceph_context #define dout_subsys ceph_subsys_immutable_obj_cache #undef dout_prefix #define dout_prefix *_dout << "ceph::cache...
14,441
30.25974
80
cc
null
ceph-main/src/tools/immutable_object_cache/ObjectCacheStore.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_OBJECT_CACHE_STORE_H #define CEPH_CACHE_OBJECT_CACHE_STORE_H #include "common/ceph_context.h" #include "common/ceph_mutex.h" #include "common/Timer.h" #include "common/Throttle.h" #include "common/Cond...
2,857
32.232558
76
h
null
ceph-main/src/tools/immutable_object_cache/Policy.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_POLICY_H #define CEPH_CACHE_POLICY_H #include <list> #include <string> namespace ceph { namespace immutable_obj_cache { typedef enum { OBJ_CACHE_NONE = 0, OBJ_CACHE_PROMOTED, OBJ_CACHE_SKIP, ...
818
22.4
70
h
null
ceph-main/src/tools/immutable_object_cache/SimplePolicy.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/debug.h" #include "SimplePolicy.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_immutable_obj_cache #undef dout_prefix #define dout_prefix *_dout << "ceph::cache::SimplePolicy: " <...
5,870
26.0553
80
cc
null
ceph-main/src/tools/immutable_object_cache/SimplePolicy.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_SIMPLE_POLICY_H #define CEPH_CACHE_SIMPLE_POLICY_H #include "common/ceph_context.h" #include "common/ceph_mutex.h" #include "include/lru.h" #include "Policy.h" #include <unordered_map> #include <strin...
1,735
24.15942
75
h
null
ceph-main/src/tools/immutable_object_cache/SocketCommon.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_SOCKET_COMMON_H #define CEPH_CACHE_SOCKET_COMMON_H namespace ceph { namespace immutable_obj_cache { static const int RBDSC_REGISTER = 0X11; static const int RBDSC_READ = 0X12; stat...
968
29.28125
75
h
null
ceph-main/src/tools/immutable_object_cache/Types.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "Types.h" #include "SocketCommon.h" #define dout_subsys ceph_subsys_immutable_obj_cache #undef dout_prefix #define dout_prefix *_dout << "ceph::cache::Types: " << __func__ << ": " namespace ceph { namespace imm...
5,478
28.616216
76
cc
null
ceph-main/src/tools/immutable_object_cache/Types.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_TYPES_H #define CEPH_CACHE_TYPES_H #include "include/encoding.h" #include "include/Context.h" #include "SocketCommon.h" namespace ceph { namespace immutable_obj_cache { namespace { struct HeaderHelpe...
4,398
31.109489
77
h
null
ceph-main/src/tools/immutable_object_cache/Utils.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CACHE_UTILS_H #define CEPH_CACHE_UTILS_H #include "include/rados/librados.hpp" #include "include/Context.h" namespace ceph { namespace immutable_obj_cache { namespace detail { template <typename T, void(T:...
802
24.09375
70
h
null
ceph-main/src/tools/immutable_object_cache/main.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_argparse.h" #include "common/config.h" #include "common/debug.h" #include "common/errno.h" #include "global/global_init.h" #include "global/signal_handler.h" #include "CacheController.h" #include <v...
2,413
27.738095
78
cc
null
ceph-main/src/tools/rados/PoolDump.cc
// -*- 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) 2015 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....
4,559
25.206897
108
cc
null
ceph-main/src/tools/rados/PoolDump.h
// -*- 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) 2015 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....
695
22.2
70
h
null
ceph-main/src/tools/rados/RadosImport.cc
// -*- 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) 2015 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....
11,332
26.982716
93
cc