20using namespace std::string_literals;
46 while (iter->Next()) cnt++;
56 std::string lkind = kind;
57 std::transform(lkind.begin(), lkind.end(), lkind.begin(), ::tolower);
59 if (lkind ==
"text")
return kText;
60 if ((lkind ==
"image") || (lkind ==
"image64"))
return kImage;
61 if (lkind ==
"png")
return kPng;
62 if ((lkind ==
"jpg") || (lkind ==
"jpeg"))
return kJpeg;
63 if (lkind ==
"json")
return kJson;
64 if (lkind ==
"filename")
return kFileName;
75 for (
auto &itemname : path) {
79 auto iter = curr->GetChildsIter();
80 if (!iter || !iter->Find(itemname))
83 curr = iter->GetElement();
109 auto item = std::make_unique<RItem>(
GetName());
124 std::string
slash =
"/";
126 std::string::size_type previous = 0;
127 if (strpath[0] ==
slash[0]) previous++;
129 auto current = strpath.find(
slash, previous);
130 while (current != std::string::npos) {
131 if (current > previous)
132 arr.emplace_back(strpath.substr(previous, current - previous));
133 previous = current + 1;
134 current = strpath.find(
slash, previous);
137 if (previous < strpath.length())
138 arr.emplace_back(strpath.substr(previous));
149 int sz = path1.size();
150 if (sz > (
int) path2.size()) sz = path2.size();
152 for (
int n = 0;
n < sz; ++
n)
153 if (path1[
n] != path2[
n])
165 for (
auto &elem : path) {
167 std::string subname = elem;
182 auto p1 =
name.rfind(
"###"), p2 =
name.rfind(
"$$$");
183 if ((p1 == std::string::npos) || (p2 == std::string::npos) || (p1 >= p2) || (p2 !=
name.length()-3))
return -1;
185 int indx = std::stoi(
name.substr(p1+3,p2-p1-3));
bool gRElementLastKeyCycle
virtual std::string GetName() const =0
Name of browsable, must be provided in derived classes.
static bool IsLastKeyCycle()
Is only last cycle from the list of keys is shown.
static EContentKind GetContentKind(const std::string &kind)
Find item with specified name Default implementation, should work for all.
static void SetLastKeyCycle(bool on=true)
Set flag to show only last cycle from the list of keys.
virtual std::string GetContent(const std::string &="text")
Returns element content, depends from kind.
@ kFileName
"filename" - file name if applicable
@ kJpeg
"jpg" or "jpeg" - plain jpg binary code, returned inside std::string
@ kPng
"png" - plain png binary code, returned inside std::string
@ kJson
"json" representation of object, can be used in code editor
@ kText
"text" - plain text for code editor
@ kImage
"image64" - base64 for supported image formats (png/gif/gpeg)
virtual std::unique_ptr< RHolder > GetObject()
Access object.
virtual std::unique_ptr< RLevelIter > GetChildsIter()
Create iterator for childs elements if any.
virtual int GetNumChilds()
Returns number of childs By default creates iterator and iterates over all items.
static int ExtractItemIndex(std::string &name)
Extract index from name Index coded by client with ###<indx>$$$ suffix Such coding used by browser to...
virtual std::string GetTitle() const
Title of browsable (optional).
static int ComparePaths(const RElementPath_t &path1, const RElementPath_t &path2)
Compare two paths, Returns number of elements matches in both paths.
static std::string GetPathAsString(const RElementPath_t &path)
Converts element path back to string.
static std::shared_ptr< RElement > GetSubElement(std::shared_ptr< RElement > &elem, const RElementPath_t &path)
Returns sub element.
virtual std::unique_ptr< RItem > CreateItem() const
Returns item with element description.
static RElementPath_t ParsePath(const std::string &str)
Parse string path to produce RElementPath_t One should avoid to use string pathes as much as possible...
A log configuration for a channel, e.g.
static TString ConvertToJSON(const TObject *obj, Int_t compact=0, const char *member_name=nullptr)
Converts object, inherited from TObject class, to JSON string Lower digit of compact parameter define...
const char * Data() const
std::vector< std::string > RElementPath_t
ROOT::RLogChannel & BrowsableLog()
Log channel for Browsable diagnostics.