143class TArrayIndexProducer {
147 const char *fSepar{
nullptr};
159 Bool_t usearraylen = (arraylen > (isloop ? 0 : 1));
161 if (usearrayindx && (arraylen > 0)) {
166 ::Error(
"TArrayIndexProducer",
"Problem with JSON coding of element %s type %d", elem->
GetName(),
174 for (
int dim = 0; dim < elem->
GetArrayDim(); dim++)
176 fIsArray = fTotalLen > 1;
177 }
else if (usearraylen) {
178 fTotalLen = arraylen;
180 fMaxIndex[0] = arraylen;
190 TArrayIndexProducer(
TDataMember *member,
Int_t extradim,
const char *separ) : fSepar(separ)
201 for (
int dim = 0; dim < member->
GetArrayDim(); dim++) {
207 fMaxIndex[ndim - 1] = extradim;
208 fTotalLen *= extradim;
211 fIsArray = fTotalLen > 1;
215 Int_t NumDimensions()
const {
return fIndicies.
GetSize(); }
218 TArrayI &GetIndices() {
return fIndicies; };
221 Int_t TotalLength()
const {
return fTotalLen; }
223 Int_t ReduceDimension()
230 Int_t len = fMaxIndex[ndim];
233 fTotalLen = fTotalLen / len;
234 fIsArray = fTotalLen > 1;
238 Bool_t IsArray()
const {
return fIsArray; }
243 return !IsArray() || (fCnt >= fTotalLen);
246 const char *GetBegin()
266 const char *NextSeparator()
268 if (++fCnt >= fTotalLen)
277 if (fIndicies[
cnt] >= fMaxIndex[
cnt]) {
279 fIndicies[
cnt--] = 0;
284 fRes.
Append(fIndicies[
cnt] == 0 ?
"[" : fSepar);
295 for (
int k = 1; k < fIndicies.GetSize(); ++k)
296 subnode = &((*subnode)[fIndicies[k]]);
307class TJSONStackObj :
public TObject {
312 nlohmann::json::iterator fIter;
313 const char *fTypeTag{
nullptr};
318 return &(prnt->at(fIndx++));
330 if (fTypeTag && (fIter.key().compare(fTypeTag) == 0))
352 std::vector<std::string> fValues;
354 int *fMemberPtr{
nullptr};
356 std::unique_ptr<TArrayIndexProducer> fIndx;
358 std::unique_ptr<StlRead> fStlRead;
361 TJSONStackObj() =
default;
369 Bool_t IsStreamerInfo()
const {
return fIsStreamerInfo; }
371 Bool_t IsStreamerElement()
const {
return !fIsStreamerInfo && fElem; }
375 fValues.emplace_back(
v.Data());
379 void PushIntValue(
Int_t v) { fValues.emplace_back(std::to_string(
v)); }
383 const char *NextMemberSeparator()
385 return (!fMemberPtr || ((*fMemberPtr)++ > 0)) ?
"," :
"";
388 Bool_t IsJsonString() {
return fNode && fNode->is_string(); }
398 if (map_convert_type) {
399 if (!
json->is_object())
return -1;
402 for (
auto it =
json->begin(); it !=
json->end(); ++it) {
403 if ((strlen(map_convert_type)==0) || (it.key().compare(map_convert_type) != 0)) sz++;
409 if (
json->is_array())
413 if (
json->is_object() && (
json->count(
"$arr") == 1))
414 return json->at(
"len").get<
int>();
421 auto res = std::stoi(fValues.back());
426 std::unique_ptr<TArrayIndexProducer> MakeReadIndexes()
432 auto indx = std::make_unique<TArrayIndexProducer>(fElem, -1,
"");
435 if (!indx->IsArray() || (indx->NumDimensions() < 2))
441 Bool_t IsStl()
const {
return fStlRead.get() !=
nullptr; }
445 fStlRead = std::make_unique<StlRead>();
446 fStlRead->fMap = map_convert;
447 if (map_convert == 2) {
448 if (!fNode->is_object()) {
449 ::Error(
"TJSONStackObj::AssignStl",
"when reading %s expecting JSON object", cl->
GetName());
452 fStlRead->fIter = fNode->begin();
453 fStlRead->fTypeTag = typename_tag && (strlen(typename_tag) > 0) ? typename_tag :
nullptr;
455 if (!fNode->is_array() && !(fNode->is_object() && (fNode->count(
"$arr") == 1))) {
456 ::Error(
"TJSONStackObj::AssignStl",
"when reading %s expecting JSON array", cl->
GetName());
465 return fStlRead ? fStlRead->GetStlNode(fNode) : fNode;
470 fStlRead.reset(
nullptr);
478 :
TBufferText(mode), fOutBuffer(), fOutput(nullptr),
fValue(), fStack(), fSemicolon(
" : "), fArraySepar(
", "),
479 fNumericLocale(), fTypeNameTag(
"_typename")
488 char *loc = setlocale(LC_NUMERIC,
nullptr);
489 if (loc && (strcmp(loc,
"C") != 0)) {
491 setlocale(LC_NUMERIC,
"C");
525 TClass *clActual =
nullptr;
526 void *ptr = (
void *)obj;
642 const void *actualStart = obj;
643 if (clActual && (clActual != cl)) {
648 clActual =
const_cast<TClass *
>(cl);
651 if (member_name && actualStart) {
656 while ((rdata =
dynamic_cast<TRealData *
>(iter())) !=
nullptr) {
658 if (member && strcmp(member->
GetName(), member_name) == 0)
670 arraylen = *((
int *)((
char *)actualStart + idata->
GetThisOffset()));
676 ptr = *((
char **)ptr);
713 Error(
"StoreObject",
"Can not store object into TBuffer for reading");
754 if (!obj || !filename || (*filename == 0))
757 Int_t compact = strstr(filename,
".json.gz") ? 3 : 0;
758 if (option && (*option >=
'0') && (*option <=
'3'))
763 std::ofstream ofs(filename);
765 if (strstr(filename,
".json.gz")) {
766 const char *objbuf =
json.Data();
769 unsigned long objcrc = R__crc32(0, NULL, 0);
770 objcrc = R__crc32(objcrc, (
const unsigned char *)objbuf, objlen);
773 Int_t buflen = 10 + objlen + 8;
777 char *buffer = (
char *)
malloc(buflen);
781 char *bufcur = buffer;
797 memcpy(
dummy, bufcur - 6, 6);
800 unsigned long ziplen = R__memcompress(bufcur - 6, objlen + 6, (
char *)objbuf, objlen);
802 memcpy(bufcur - 6,
dummy, 6);
804 bufcur += (ziplen - 6);
806 *bufcur++ = objcrc & 0xff;
807 *bufcur++ = (objcrc >> 8) & 0xff;
808 *bufcur++ = (objcrc >> 16) & 0xff;
809 *bufcur++ = (objcrc >> 24) & 0xff;
811 *bufcur++ = objlen & 0xff;
812 *bufcur++ = (objlen >> 8) & 0xff;
813 *bufcur++ = (objlen >> 16) & 0xff;
814 *bufcur++ = (objlen >> 24) & 0xff;
816 ofs.write(buffer, bufcur - buffer);
825 return json.Length();
834 if (!obj || !cl || !filename || (*filename == 0))
837 Int_t compact = strstr(filename,
".json.gz") ? 3 : 0;
838 if (option && (*option >=
'0') && (*option <=
'3'))
843 std::ofstream ofs(filename);
845 if (strstr(filename,
".json.gz")) {
846 const char *objbuf =
json.Data();
849 unsigned long objcrc = R__crc32(0, NULL, 0);
850 objcrc = R__crc32(objcrc, (
const unsigned char *)objbuf, objlen);
853 Int_t buflen = 10 + objlen + 8;
857 char *buffer = (
char *)
malloc(buflen);
861 char *bufcur = buffer;
877 memcpy(
dummy, bufcur - 6, 6);
880 unsigned long ziplen = R__memcompress(bufcur - 6, objlen + 6, (
char *)objbuf, objlen);
882 memcpy(bufcur - 6,
dummy, 6);
884 bufcur += (ziplen - 6);
886 *bufcur++ = objcrc & 0xff;
887 *bufcur++ = (objcrc >> 8) & 0xff;
888 *bufcur++ = (objcrc >> 16) & 0xff;
889 *bufcur++ = (objcrc >> 24) & 0xff;
891 *bufcur++ = objlen & 0xff;
892 *bufcur++ = (objlen >> 8) & 0xff;
893 *bufcur++ = (objlen >> 16) & 0xff;
894 *bufcur++ = (objlen >> 24) & 0xff;
896 ofs.write(buffer, bufcur - buffer);
905 return json.Length();
927 return (
TObject *)(((
char *)obj) + delta);
954 if (docu.is_null() || (!docu.is_object() && !docu.is_array()))
957 TClass *objClass =
nullptr;
987 if (!res || !resClass)
990 if (resClass == expectedClass)
995 ::Error(
"TBufferJSON::ConvertFromJSONChecked",
"expected class %s is not base for read class %s",
1001 return (
char *)res - offset;
1024 return (tid ==
kCharStar) ?
"\"\"" :
"null";
1035 if (indx.IsArray() && (tid ==
kChar_t))
1036 shift = indx.ReduceDimension();
1038 char *ppp = (
char *)ptr;
1081 }
while (!indx.IsDone());
1092 memberClass->
Streamer((
void *)ptr, *
this);
1101 if (arr && (arr->
GetSize() > 0)) {
1102 arr->Streamer(*
this);
1104 if (
Stack()->fValues.size() > 1) {
1105 Warning(
"TBufferJSON",
"When streaming TArray, more than 1 object in the stack, use second item");
1110 }
else if (memberClass && !strcmp(memberClass->
GetName(),
"string")) {
1112 memberClass->
Streamer((
void *)ptr, *
this);
1119 if (!memberClass || (member->
GetArrayDim() > 0) || (arraylen > 0))
1120 return "<not supported>";
1130 auto next =
new TJSONStackObj();
1131 next->fLevel = inclevel;
1134 }
else if (
fStack.size() > 0) {
1135 auto prev =
Stack();
1136 next->fLevel += prev->fLevel;
1137 next->fMemberPtr = prev->fMemberPtr;
1139 fStack.emplace_back(next);
1151 return fStack.size() > 0 ?
fStack.back().get() :
nullptr;
1166 if (strlen(line1) > 0) {
1168 if (
Stack()->fLevel > 0)
1184 stack->fMemberPtr = &stack->fMemberCnt;
1203 stack->fMemberCnt = 0;
1215 const char *elem_name =
nullptr;
1218 switch (special_kind) {
1247 if (
json->count(elem_name) != 1) {
1248 Error(
"JsonStartElement",
"Missing JSON structure for element %s", elem_name);
1250 Stack()->fNode = &((*json)[elem_name]);
1253 Stack()->PushIntValue(len > 0 ? len : 0);
1255 Error(
"JsonStartElement",
"Missing array when reading TArray class for element %s", elem->
GetName());
1257 if ((
gDebug > 1) && base_class)
1258 Info(
"JsonStartElement",
"Reading baseclass %s from element %s", base_class->
GetName(), elem_name);
1307 if (isstd && !strcmp(cl->
GetName(),
"string"))
1324 Info(
"JsonWriteObject",
"Object %p class %s check_map %s", obj, cl ? cl->
GetName() :
"null",
1325 check_map ?
"true" :
"false");
1329 TString fObjectOutput, *fPrevOutput{
nullptr};
1331 TJSONStackObj *stack =
Stack();
1333 if (stack && stack->fAccObjects && ((
fValue.
Length() > 0) || (stack->fValues.size() > 0))) {
1337 stack->PushValue(
fValue);
1342 }
else if ((special_kind <= 0) || (special_kind >
json_TArray)) {
1348 if ((
fMapAsObject && (
fStack.size()==1)) || (stack && stack->fElem && strstr(stack->fElem->GetTitle(),
"JSON_object")))
1359 if (special_kind <= 0) {
1377 }
else if (map_convert == 2) {
1383 fValue.
Form(
"{\"$ref\":%u}", (
unsigned)(refid - 1));
1394 bool base64 = ((special_kind ==
TClassEdit::kVector) && stack && stack->fElem && strstr(stack->fElem->GetTitle(),
"JSON_base64"));
1400 stack->fBase64 = base64;
1404 Info(
"JsonWriteObject",
"Starting object %p write for class: %s", obj, cl->
GetName());
1411 (
const_cast<TClass *
>(cl))->Streamer((
void *)obj, *
this);
1414 Info(
"JsonWriteObject",
"Done object %p write for class: %s", obj, cl->
GetName());
1417 if (stack->fValues.size() != 1)
1418 Error(
"JsonWriteObject",
"Problem when writing array");
1419 stack->fValues.clear();
1421 if (stack->fValues.size() > 2)
1422 Error(
"JsonWriteObject",
"Problem when writing TString or std::string");
1423 stack->fValues.clear();
1426 }
else if ((special_kind > 0) && (special_kind <
ROOT::kSTLend)) {
1429 if (map_convert == 2) {
1433 stack->PushValue(
fValue);
1435 const char *separ = (
fCompact < 2) ?
", " :
",";
1436 const char *semi = (
fCompact < 2) ?
": " :
":";
1450 for (
Int_t k = 1; k < (int)stack->fValues.size() - 1; k += 2) {
1459 stack->fValues.clear();
1460 }
else if (stack->fValues.empty()) {
1463 Error(
"JsonWriteObject",
"With empty stack fValue!=0");
1467 auto size = std::stoi(stack->fValues[0]);
1469 bool trivial_format =
false;
1471 if ((stack->fValues.size() == 1) && ((size > 1) || ((
fValue.
Length() > 1) && (
fValue[0]==
'[')))) {
1474 TClass *value_class = proxy ? proxy->GetValueClass() :
nullptr;
1476 trivial_format =
false;
1478 trivial_format =
true;
1481 if (trivial_format) {
1483 stack->fValues.clear();
1485 Error(
"JsonWriteObject",
"Empty value when it should contain something");
1490 const char *separ =
"[";
1493 stack->PushValue(
fValue);
1495 if ((size * 2 == (
int) stack->fValues.size() - 1) && (map_convert > 0)) {
1499 if (pairtype.
Index(
"unordered_map<") == 0)
1500 pairtype.
Replace(0, 14,
"pair<");
1501 else if (pairtype.
Index(
"unordered_multimap<") == 0)
1502 pairtype.
Replace(0, 19,
"pair<");
1503 else if (pairtype.
Index(
"multimap<") == 0)
1504 pairtype.
Replace(0, 9,
"pair<");
1505 else if (pairtype.
Index(
"map<") == 0)
1506 pairtype.
Replace(0, 4,
"pair<");
1513 for (
Int_t k = 1; k < (int) stack->fValues.size() - 1; k += 2) {
1533 for (
Int_t k = 1; k < (int) stack->fValues.size(); k++) {
1541 stack->fValues.clear();
1549 if ((special_kind == 0) && (!stack->fValues.empty() || (
fValue.
Length() > 0))) {
1551 Info(
"JsonWriteObject",
"Create blob value for class %s", cl->
GetName());
1556 const char *separ =
"[";
1558 for (
auto &elem: stack->fValues) {
1572 stack->fValues.clear();
1577 if ((special_kind <= 0))
1585 if ((special_kind <= 0) || (special_kind >
json_TArray))
1587 else if (fObjectOutput.
Length() != 0)
1588 Error(
"JsonWriteObject",
"Non-empty object output for special class %s", cl->
GetName());
1609 TMap *map =
nullptr;
1611 map =
dynamic_cast<TMap *
>(col);
1622 while ((obj = iter()) !=
nullptr) {
1674 TList *lst =
nullptr;
1675 TMap *map =
nullptr;
1678 lst =
dynamic_cast<TList *
>(col);
1680 map =
dynamic_cast<TMap *
>(col);
1686 std::string
name =
json->at(
"name");
1690 int size = arr.size();
1692 for (
int n = 0;
n < size; ++
n) {
1696 subelem = &subelem->at(
"first");
1700 TClass *readClass =
nullptr, *objClass =
nullptr;
1701 void *subobj =
nullptr;
1709 Error(
"JsonReadCollection",
1710 "Cannot detect class name for TClonesArray - typename tag not configured");
1713 }
else if (size > clones->
GetSize()) {
1714 Error(
"JsonReadCollection",
"TClonesArray size %d smaller than required %d", clones->
GetSize(), size);
1729 if (!subobj || !readClass) {
1732 Error(
"JsonReadCollection",
"Try to add object %s not derived from TObject", readClass->
GetName());
1741 readClass =
nullptr;
1746 if (!subobj2 || !readClass) {
1749 Error(
"JsonReadCollection",
"Try to add object %s not derived from TObject", readClass->
GetName());
1753 map->
Add(tobj,
static_cast<TObject *
>(subobj2));
1755 std::string opt =
json->at(
"opt").at(
n).get<std::string>();
1756 lst->
Add(tobj, opt.c_str());
1770 *readClass =
nullptr;
1772 TJSONStackObj *stack =
Stack();
1774 Bool_t process_stl = stack->IsStl();
1778 if (
json->is_null())
1784 if (
json->is_object() && (
json->size() == 1) && (
json->find(
"$ref") !=
json->end())) {
1785 unsigned refid =
json->at(
"$ref").get<
unsigned>();
1787 void *ref_obj =
nullptr;
1788 TClass *ref_cl =
nullptr;
1792 if (!ref_obj || !ref_cl) {
1793 Error(
"JsonReadObject",
"Fail to find object for reference %u", refid);
1798 *readClass = ref_cl;
1801 Info(
"JsonReadObject",
"Extract object reference %u %p cl:%s expects:%s", refid, ref_obj, ref_cl->
GetName(),
1802 (objClass ? objClass->
GetName() :
"---"));
1810 obj = objClass->
New();
1813 Info(
"JsonReadObject",
"Read string from %s",
json->dump().c_str());
1816 *((std::string *)obj) =
json->get<std::string>();
1818 *((
TString *)obj) =
json->get<std::string>().c_str();
1821 *readClass =
const_cast<TClass *
>(objClass);
1826 Bool_t isBase = (stack->fElem && objClass) ? stack->fElem->IsBase() :
kFALSE;
1828 if (isBase && (!obj || !objClass)) {
1829 Error(
"JsonReadObject",
"No object when reading base class");
1833 Int_t map_convert = 0;
1836 map_convert =
json->is_object() ? 2 : 1;
1844 TClass *jsonClass =
nullptr;
1845 Int_t jsonClassVersion = 0;
1849 jsonClass =
const_cast<TClass *
>(objClass);
1852 obj = jsonClass->
New();
1856 stack->PushIntValue(len > 0 ? len : 0);
1859 Error(
"JsonReadObject",
"Not array when expecting such %s",
json->dump().c_str());
1862 Info(
"JsonReadObject",
"Reading special kind %d %s ptr %p", special_kind, objClass->
GetName(), obj);
1864 }
else if (isBase) {
1867 jsonClass =
const_cast<TClass *
>(objClass);
1870 Info(
"JsonReadObject",
"Reading baseclass %s ptr %p", objClass->
GetName(), obj);
1877 Error(
"JsonReadObject",
"Cannot find class %s", clname.c_str());
1880 jsonClass =
const_cast<TClass *
>(objClass);
1892 if (objClass && (jsonClass != objClass)) {
1893 Error(
"JsonReadObject",
"Class mismatch between provided %s and in JSON %s", objClass->
GetName(),
1898 obj = jsonClass->
New();
1901 Info(
"JsonReadObject",
"Reading object of class %s refid %u ptr %p", jsonClass->
GetName(),
fJsonrCnt, obj);
1932 stack->fClVersion = jsonClassVersion ? jsonClassVersion : jsonClass->
GetClassVersion();
1935 Info(
"JsonReadObject",
"Calling streamer of class %s", jsonClass->
GetName());
1937 if (isBase && (special_kind == 0))
1938 Error(
"JsonReadObject",
"Should not be used for reading of base class %s", jsonClass->
GetName());
1941 jsonClass->
Streamer((
void *)obj, *
this);
1943 stack->fClVersion = 0;
1953 Info(
"JsonReadObject",
"Reading object of class %s done", jsonClass->
GetName());
1956 *readClass = jsonClass;
1969 UInt_t uid =
json->at(
"fUniqueID").get<
unsigned>();
1970 UInt_t bits =
json->at(
"fBits").get<
unsigned>();
1975 static auto tobj_fbits_offset =
TObject::Class()->GetDataMemberOffset(
"fBits");
1978 if (tobj_fbits_offset > 0) {
1979 UInt_t *fbits = (
UInt_t *) ((
char* ) tobj + tobj_fbits_offset);
2010 Info(
"WorkWithClass",
"Class: %s", cl->
GetName());
2012 TJSONStackObj *stack =
Stack();
2016 }
else if (stack && stack->IsStreamerElement() && !stack->fIsObjStarted &&
2020 stack->fIsObjStarted =
kTRUE;
2029 stack->fInfo = sinfo;
2030 stack->fIsStreamerInfo =
kTRUE;
2042 TJSONStackObj *stack =
Stack();
2044 if (stack->IsStreamerElement()) {
2048 Info(
"DecrementLevel",
" Perform post-processing elem: %s", stack->fElem->GetName());
2057 Error(
"DecrementLevel",
" Mismatch of streamer info");
2062 Info(
"DecrementLevel",
"Class: %s done", (info ? info->
GetClass()->
GetName() :
"custom"));
2070 return Stack()->fInfo;
2081 Info(
"SetStreamerElementNumber",
"Element name %s", elem->
GetName());
2093 TJSONStackObj *stack =
Stack();
2095 Error(
"WorkWithElement",
"stack is empty");
2100 Info(
"WorkWithElement",
" Start element %s type %d typename %s", elem ? elem->
GetName() :
"---",
2103 if (stack->IsStreamerElement()) {
2108 Info(
"WorkWithElement",
" Perform post-processing elem: %s", stack->fElem->GetName());
2118 Error(
"WorkWithElement",
"Lost of stack");
2123 if (!stack->IsStreamerInfo()) {
2124 Error(
"WorkWithElement",
"Problem in Inc/Dec level");
2131 Error(
"WorkWithElement",
"streamer info returns elem = nullptr");
2138 stack->fElem = elem;
2139 stack->fIsElemOwner = (number < 0);
2148 stack->fIndx = std::make_unique<TArrayIndexProducer>(elem, -1,
fArraySepar.
Data());
2156 stack->PushIntValue(stack->IsJsonString() || (stack->IsJsonArray() > 0) ? 1 : 0);
2226 if (!
name || (strlen(
name) == 0)) {
2227 Error(
"ClassMember",
"Invalid member name");
2235 if (strcmp(typeName,
"raw:data") == 0)
2245 if (strcmp(
name, typeName) == 0) {
2253 if (tname[tname.
Length() - 1] ==
'*') {
2259 Error(
"ClassMember",
"Invalid class specifier %s", typeName);
2283 }
else if ((typ_id > 0) && (typ_id < 20)) {
2299 Error(
"ClassMember",
"Invalid combination name = %s type = %s",
name, typeName);
2319 if (stack->fIsPostProcessed)
2324 if (!elem && !obj_cl)
2327 stack->fIsPostProcessed =
kTRUE;
2330 if (stack->fIsObjStarted) {
2351 isTArray = (strncmp(
"TArray", typname, 6) == 0);
2354 if (isTString || isSTLstring) {
2358 Info(
"PerformPostProcessing",
"reformat string value = '%s'",
fValue.
Data());
2360 stack->fValues.clear();
2361 }
else if (isOffsetPArray) {
2364 if (stack->fValues.empty() && (
fValue ==
"0")) {
2366 }
else if ((stack->fValues.size() == 1) && (stack->fValues[0] ==
"1")) {
2367 stack->fValues.clear();
2369 Error(
"PerformPostProcessing",
"Wrong values for kOffsetP element %s", (elem ? elem->
GetName() :
"---"));
2370 stack->fValues.clear();
2373 }
else if (isTObject || isTRef) {
2382 if (cnt < 2 || cnt > 3) {
2384 Error(
"PerformPostProcessing",
"When storing TObject/TRef, strange number of items %d",
cnt);
2385 AppendOutput(stack->NextMemberSeparator(),
"\"dummy\"");
2388 AppendOutput(stack->NextMemberSeparator(),
"\"fUniqueID\"");
2391 AppendOutput(stack->NextMemberSeparator(),
"\"fBits\"");
2393 auto tbits = std::atol((stack->fValues.size() > 1) ? stack->fValues[1].c_str() :
fValue.
Data());
2396 AppendOutput(stack->NextMemberSeparator(),
"\"fPID\"");
2401 stack->fValues.clear();
2406 }
else if (isTArray) {
2408 stack->fValues.clear();
2416 if (!stack->fValues.empty()) {
2419 for (
auto &blob: stack->fValues) {
2432 if (!stack->fValues.empty())
2461 if (!cl &&
Stack()->fClVersion) {
2462 res =
Stack()->fClVersion;
2463 Stack()->fClVersion = 0;
2467 Info(
"ReadVersion",
"Result: %d Class: %s", res, (cl ? cl->
GetName() :
"---"));
2486 Info(
"ReadObjectAny",
"From current JSON node");
2502 Info(
"WriteObjectClass",
"Class %s", (actualClass ? actualClass->
GetName() :
" null"));
2623template <
typename T>
2626 Info(
"ReadArray",
"Not implemented");
2627 return value ? 1 : 0;
2737template <
typename T>
2740 if (!arr || (arrsize <= 0))
2744 Info(
"ReadFastArray",
"Reading array sz %d from JSON %s", arrsize,
json->dump().substr(0, 30).c_str());
2745 auto indexes =
Stack()->MakeReadIndexes();
2747 TArrayI &indx = indexes->GetIndices();
2749 if (indexes->TotalLength() != arrsize)
2750 Error(
"ReadFastArray",
"Mismatch %d-dim array sizes %d %d", lastdim + 1, arrsize, (
int)indexes->TotalLength());
2751 for (
int cnt = 0;
cnt < arrsize; ++
cnt) {
2753 for (
int k = 1; k < lastdim; ++k)
2754 elem = &((*elem)[indx[k]]);
2755 arr[
cnt] = asstring ? elem->get<std::string>()[indx[lastdim]] : (*elem)[indx[lastdim]].get<
T>();
2756 indexes->NextSeparator();
2758 }
else if (asstring) {
2759 std::string str =
json->get<std::string>();
2761 arr[
cnt] = (
cnt < (
int)str.length()) ? str[
cnt] : 0;
2762 }
else if (
json->is_object() && (
json->count(
"$arr") == 1)) {
2763 if (
json->at(
"len").get<
int>() != arrsize)
2764 Error(
"ReadFastArray",
"Mismatch compressed array size %d %d", arrsize,
json->at(
"len").get<
int>());
2769 if (
json->count(
"b") == 1) {
2770 auto base64 =
json->at(
"b").get<std::string>();
2772 int offset = (
json->count(
"o") == 1) ?
json->at(
"o").get<
int>() : 0;
2777 if (arrsize * (
long)
sizeof(
T) < (offset +
decode.Length())) {
2778 Error(
"ReadFastArray",
"Base64 data %ld larger than target array size %ld", (
long)
decode.Length() + offset, (
long) (arrsize*
sizeof(
T)));
2779 }
else if ((
sizeof(
T) > 1) && (
decode.Length() %
sizeof(
T) != 0)) {
2780 Error(
"ReadFastArray",
"Base64 data size %ld not matches with element size %ld", (
long)
decode.Length(), (
long)
sizeof(
T));
2782 memcpy((
char *) arr + offset,
decode.Data(),
decode.Length());
2788 std::string
idname =
"", pname, vname, nname;
2789 while (p < arrsize) {
2790 pname = std::string(
"p") +
idname;
2791 if (
json->count(pname) == 1)
2792 p =
json->at(pname).get<
int>();
2793 vname = std::string(
"v") +
idname;
2794 if (
json->count(vname) != 1)
2798 for (
unsigned sub = 0; sub <
v.size(); ++sub)
2799 arr[p++] =
v[sub].get<T>();
2801 nname = std::string(
"n") +
idname;
2802 unsigned ncopy = (
json->count(nname) == 1) ?
json->at(nname).get<
unsigned>() : 1;
2803 for (
unsigned sub = 0; sub < ncopy; ++sub)
2804 arr[p++] =
v.get<
T>();
2806 idname = std::to_string(++
id);
2809 if ((
int)
json->size() != arrsize)
2810 Error(
"ReadFastArray",
"Mismatch array sizes %d %d", arrsize, (
int)
json->size());
2938 Info(
"ReadFastArray",
"void* n:%d cl:%s",
n, cl->
GetName());
2947 int objectSize = cl->
Size();
2948 char *obj = (
char *)start;
2950 TJSONStackObj *stack =
Stack();
2953 subnode = stack->fIndx->ExtractNode(topnode);
2955 TArrayIndexProducer indexes(stack->fElem,
n,
"");
2958 Info(
"ReadFastArray",
"Indexes ndim:%d totallen:%d", indexes.NumDimensions(), indexes.TotalLength());
2960 for (
Int_t j = 0; j <
n; j++, obj += objectSize) {
2962 stack->fNode = indexes.ExtractNode(subnode);
2968 stack->fNode = topnode;
2978 Info(
"ReadFastArray",
"void** n:%d cl:%s prealloc:%s",
n, cl->
GetName(), (isPreAlloc ?
"true" :
"false"));
2993 TJSONStackObj *stack =
Stack();
2996 subnode = stack->fIndx->ExtractNode(topnode);
2998 TArrayIndexProducer indexes(stack->fElem,
n,
"");
3000 for (
Int_t j = 0; j <
n; j++) {
3002 stack->fNode = indexes.ExtractNode(subnode);
3005 void *old = start[j];
3011 start[j] = (
const_cast<TClass *
>(cl))->New();
3016 stack->fNode = topnode;
3019template <
typename T>
3024 if (!is_base64 && ((
fArrayCompact == 0) || (arrsize < 6))) {
3026 for (
Int_t indx = 0; indx < arrsize; indx++) {
3032 }
else if (is_base64 && !arrsize) {
3037 Int_t aindx(0), bindx(arrsize);
3038 while ((aindx < arrsize) && (vname[aindx] == 0))
3040 while ((aindx < bindx) && (vname[bindx - 1] == 0))
3045 if ((aindx *
sizeof(
T) < 5) && (aindx < bindx))
3048 if ((aindx > 0) && (aindx < bindx))
3058 }
else if (aindx < bindx) {
3060 Int_t p(aindx), suffixcnt(-1), lastp(0);
3062 if (vname[p] == 0) {
3066 Int_t p0(p++), pp(0), nsame(1);
3072 for (; p <= bindx; ++p) {
3073 if ((p < bindx) && (vname[p] == vname[p - 1])) {
3077 if (vname[p - 1] == 0) {
3082 }
else if (nsame > 5) {
3095 if (++suffixcnt > 0)
3096 suffix.
Form(
"%d", suffixcnt);
3101 if ((nsame > 1) || (pp - p0 == 1)) {
3107 for (
Int_t indx = p0; indx < pp; indx++) {
3242template <
typename T>
3267 (*this.*method)((arr + shift), len, typname);
3273 (*this.*method)(arr, arrsize, typname);
3395 Info(
"WriteFastArray",
"void *start cl:%s n:%d", cl ? cl->
GetName() :
"---",
n);
3409 char *obj = (
char *)start;
3412 int size = cl->
Size();
3416 if (indexes.IsArray()) {
3421 for (
Int_t j = 0; j <
n; j++, obj += size) {
3434 if (indexes.IsArray())
3449 Info(
"WriteFastArray",
"void **startp cl:%s n:%d", cl->
GetName(),
n);
3464 if (indexes.IsArray()) {
3469 for (
Int_t j = 0; j <
n; j++) {
3478 start[j] = (
const_cast<TClass *
>(cl))->New();
3489 if (indexes.IsArray())
3504 Info(
"StreamObject",
"Class: %s", (cl ? cl->
GetName() :
"none"));
3515template <
typename T>
3518 value =
Stack()->GetStlNode()->get<
T>();
3534 if (!
Stack()->fValues.empty())
3569 if (!
Stack()->fValues.empty())
3570 val =
Stack()->PopIntValue();
3621 if (
json->is_null())
3622 val = std::numeric_limits<Float_t>::quiet_NaN();
3633 if (
json->is_null())
3634 val = std::numeric_limits<Double_t>::quiet_NaN();
3644 Error(
"ReadCharP",
"Not implemented");
3678 std::size_t nch = str.length();
3680 s =
new char[nch + 1];
3681 memcpy(
s, str.c_str(), nch);
3852 snprintf(buf,
sizeof(buf),
"%d", value);
3862 snprintf(buf,
sizeof(buf),
"%hd", value);
3872 snprintf(buf,
sizeof(buf),
"%d", value);
3882 snprintf(buf,
sizeof(buf),
"%ld", value);
3899 if (std::isinf(value)) {
3915 if (std::isinf(value)) {
3940 snprintf(buf,
sizeof(buf),
"%u", value);
3950 snprintf(buf,
sizeof(buf),
"%hu", value);
3960 snprintf(buf,
sizeof(buf),
"%u", value);
3970 snprintf(buf,
sizeof(buf),
"%lu", value);
3996 len = strlen(value);
4012 if ((
c > 31) && (
c < 127))
static RooMathCoreReg dummy
unsigned long long ULong64_t
void Error(const char *location, const char *msgfmt,...)
char * Form(const char *fmt,...)
Array of integers (32 bits per element).
void Set(Int_t n)
Set size of this array to n ints.
Abstract array base class.
static TString Decode(const char *data)
Decode a base64 string date into a generic TString.
static TString Encode(const char *data)
Transform data into a null terminated base64 string.
void InitMap() override
Create the fMap container and initialize them with the null object.
void MapObject(const TObject *obj, UInt_t offset=1) override
Add object to the fMap container.
Long64_t GetObjectTag(const void *obj)
Returns tag for specified object from objects map (if exists) Returns 0 if object not included into o...
void GetMappedObject(UInt_t tag, void *&ptr, TClass *&ClassPtr) const override
Retrieve the object stored in the buffer's object map at 'tag' Set ptr and ClassPtr respectively to t...
Int_t WriteObjectAny(const void *obj, const TClass *ptrClass, Bool_t cacheReuse=kTRUE) override
Write object to I/O buffer.
Class for serializing object to and from JavaScript Object Notation (JSON) format.
R__ALWAYS_INLINE void JsonWriteArrayCompress(const T *vname, Int_t arrsize, const char *typname)
void ReadULong(ULong_t &l) final
Reads ULong_t value from buffer.
void JsonWriteBasic(Char_t value)
converts Char_t to string and add to json value buffer
void WriteShort(Short_t s) final
Writes Short_t value to buffer.
void JsonWriteCollection(TCollection *obj, const TClass *objClass)
store content of ROOT collection
TString fSemicolon
! depending from compression level, " : " or ":"
Int_t fCompact
! 0 - no any compression, 1 - no spaces in the begin, 2 - no new lines, 3 - no spaces at all
void ReadULong64(ULong64_t &l) final
Reads ULong64_t value from buffer.
void WriteStdString(const std::string *s) final
Writes a std::string.
void * ReadObjectAny(const TClass *clCast) final
Read object from buffer. Only used from TBuffer.
static TObject * ConvertFromJSON(const char *str)
Read TObject-based class from JSON, produced by ConvertToJSON() method.
void ClassBegin(const TClass *, Version_t=-1) final
Should be called in the beginning of custom class streamer.
void IncrementLevel(TVirtualStreamerInfo *) final
Function is called from TStreamerInfo WriteBuffer and ReadBuffer functions and indent new level in js...
void WriteLong(Long_t l) final
Writes Long_t value to buffer.
TString fValue
! buffer for current value
void WriteUInt(UInt_t i) final
Writes UInt_t value to buffer.
void ReadFloat(Float_t &f) final
Reads Float_t value from buffer.
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...
void WriteCharStar(char *s) final
Writes a char*.
void PerformPostProcessing(TJSONStackObj *stack, const TClass *obj_cl=nullptr)
Function is converts TObject and TString structures to more compact representation.
void ReadShort(Short_t &s) final
Reads Short_t value from buffer.
TString StoreObject(const void *obj, const TClass *cl)
Store provided object as JSON structure Allows to configure different TBufferJSON properties before c...
std::deque< std::unique_ptr< TJSONStackObj > > fStack
! hierarchy of currently streamed element
void ReadChar(Char_t &c) final
Reads Char_t value from buffer.
static Int_t ExportToFile(const char *filename, const TObject *obj, const char *option=nullptr)
Convert object into JSON and store in text file Returns size of the produce file Used in TObject::Sav...
R__ALWAYS_INLINE Int_t JsonReadArray(T *value)
Read static array from JSON - not used.
TString fNumericLocale
! stored value of setlocale(LC_NUMERIC), which should be recovered at the end
void SetTypeversionTag(const char *tag=nullptr)
Configures _typeversion tag in JSON One can specify name of the JSON tag like "_typeversion" or "$tv"...
TString fTypeVersionTag
! JSON member used to store class version, default empty
void ReadCharStar(char *&s) final
Reads a char* string.
UInt_t WriteVersion(const TClass *cl, Bool_t useBcnt=kFALSE) final
Ignored in TBufferJSON.
void ReadUShort(UShort_t &s) final
Reads UShort_t value from buffer.
TJSONStackObj * PushStack(Int_t inclevel=0, void *readnode=nullptr)
add new level to the structures stack
TBufferJSON(TBuffer::EMode mode=TBuffer::kWrite)
Creates buffer object to serialize data into json.
void JsonDisablePostprocessing()
disable post-processing of the code
void WorkWithElement(TStreamerElement *elem, Int_t)
This is call-back from streamer which indicates that class member will be streamed Name of element us...
void ReadCharP(Char_t *c) final
Reads array of characters from buffer.
void ReadUChar(UChar_t &c) final
Reads UChar_t value from buffer.
void WriteUShort(UShort_t s) final
Writes UShort_t value to buffer.
unsigned fJsonrCnt
! counter for all objects, used for referencing
Int_t fArrayCompact
! 0 - no array compression, 1 - exclude leading/trailing zeros, 2 - check value repetition
void ReadFastArray(Bool_t *b, Int_t n) final
read array of Bool_t from buffer
void JsonReadCollection(TCollection *obj, const TClass *objClass)
read content of ROOT collection
virtual ~TBufferJSON()
destroy buffer
void JsonPushValue()
If value exists, push in the current stack for post-processing.
void WriteULong(ULong_t l) final
Writes ULong_t value to buffer.
void SetTypenameTag(const char *tag="_typename")
Configures _typename tag in JSON structures By default "_typename" field in JSON structures used to s...
void WriteFastArray(const Bool_t *b, Int_t n) final
Write array of Bool_t to buffer.
TVirtualStreamerInfo * GetInfo() final
Return current streamer info element.
void JsonStartElement(const TStreamerElement *elem, const TClass *base_class)
Start new class member in JSON structures.
void DecrementLevel(TVirtualStreamerInfo *) final
Function is called from TStreamerInfo WriteBuffer and ReadBuffer functions and decrease level in json...
void WriteFloat(Float_t f) final
Writes Float_t value to buffer.
Bool_t IsSkipClassInfo(const TClass *cl) const
Returns true if class info will be skipped from JSON.
void ReadLong(Long_t &l) final
Reads Long_t value from buffer.
void WriteClass(const TClass *cl) final
suppressed function of TBuffer
TClass * ReadClass(const TClass *cl=nullptr, UInt_t *objTag=nullptr) final
suppressed function of TBuffer
void ClassMember(const char *name, const char *typeName=nullptr, Int_t arrsize1=-1, Int_t arrsize2=-1) final
Method indicates name and typename of class member, which should be now streamed in custom streamer F...
TString * fOutput
! current output buffer for json code
TString fTypeNameTag
! JSON member used for storing class name, when empty - no class name will be stored
static void * ConvertFromJSONAny(const char *str, TClass **cl=nullptr)
Read object from JSON In class pointer (if specified) read class is returned One must specify expecte...
R__ALWAYS_INLINE void JsonWriteFastArray(const T *arr, Int_t arrsize, const char *typname, void(TBufferJSON::*method)(const T *, Int_t, const char *))
Template method to write array of arbitrary dimensions Different methods can be used for store last a...
void ReadUInt(UInt_t &i) final
Reads UInt_t value from buffer.
void ReadLong64(Long64_t &l) final
Reads Long64_t value from buffer.
Version_t ReadVersion(UInt_t *start=nullptr, UInt_t *bcnt=nullptr, const TClass *cl=nullptr) final
read version value from buffer
static void * ConvertFromJSONChecked(const char *str, const TClass *expectedClass)
Read objects from JSON, one can reuse existing object.
Int_t ReadStaticArray(Bool_t *b) final
Read array of Bool_t from buffer.
void WriteBool(Bool_t b) final
Writes Bool_t value to buffer.
void SetStreamerElementNumber(TStreamerElement *elem, Int_t comp_type) final
Function is called from TStreamerInfo WriteBuffer and ReadBuffer functions and add/verify next elemen...
void WriteDouble(Double_t d) final
Writes Double_t value to buffer.
TString JsonWriteMember(const void *ptr, TDataMember *member, TClass *memberClass, Int_t arraylen)
Convert single data member to JSON structures Returns string with converted member.
void ReadInt(Int_t &i) final
Reads Int_t value from buffer.
std::vector< const TClass * > fSkipClasses
! list of classes, which class info is not stored
void WriteCharP(const Char_t *c) final
Writes array of characters to buffer.
TString fArraySepar
! depending from compression level, ", " or ","
R__ALWAYS_INLINE void JsonReadFastArray(T *arr, Int_t arrsize, bool asstring=false)
Template method to read array from the JSON.
void SetSkipClassInfo(const TClass *cl)
Specify class which typename will not be stored in JSON Several classes can be configured To exclude ...
Int_t ReadArray(Bool_t *&b) final
Read array of Bool_t from buffer.
void AppendOutput(const char *line0, const char *line1=nullptr)
Append two string to the output JSON, normally separate by line break.
TString fOutBuffer
! main output buffer for json code
TJSONStackObj * PopStack()
remove one level from stack
void WriteInt(Int_t i) final
Writes Int_t value to buffer.
void WriteArray(const Bool_t *b, Int_t n) final
Write array of Bool_t to buffer.
void ReadBaseClass(void *start, TStreamerBase *elem) final
Read data of base class.
void ReadFastArrayString(Char_t *c, Int_t n) final
read array of Char_t from buffer
TJSONStackObj * JsonStartObjectWrite(const TClass *obj_class, TStreamerInfo *info=nullptr)
Start object element with typeinfo.
void ReadStdString(std::string *s) final
Reads a std::string.
void ReadDouble(Double_t &d) final
Reads Double_t value from buffer.
void WriteFastArrayString(const Char_t *c, Int_t n) final
Write array of Char_t to buffer.
void ClassEnd(const TClass *) final
Should be called at the end of custom streamer See TBufferJSON::ClassBegin for more details.
Int_t JsonSpecialClass(const TClass *cl) const
return non-zero value when class has special handling in JSON it is TCollection (-130),...
void SkipObjectAny() final
Skip any kind of object from buffer.
void SetCompact(int level)
Set level of space/newline/array compression Lower digit of compact parameter define formatting rules...
@ kBase64
all binary arrays will be compressed with base64 coding, supported by JSROOT
@ kNoSpaces
no new lines plus remove all spaces around "," and ":" symbols
@ kMapAsObject
store std::map, std::unodered_map as JSON object
@ kSameSuppression
zero suppression plus compress many similar values together
Bool_t fMapAsObject
! when true, std::map will be converted into JSON object
void WriteUChar(UChar_t c) final
Writes UChar_t value to buffer.
void WriteTString(const TString &s) final
Writes a TString.
void JsonWriteConstChar(const char *value, Int_t len=-1, const char *=nullptr)
writes string value, processing all kind of special characters
void * RestoreObject(const char *str, TClass **cl)
Read object from JSON In class pointer (if specified) read class is returned One must specify expecte...
void WriteObjectClass(const void *actualObjStart, const TClass *actualClass, Bool_t cacheReuse) final
Write object to buffer. Only used from TBuffer.
void StreamObject(void *obj, const TClass *cl, const TClass *onFileClass=nullptr) final
stream object to/from buffer
void WriteLong64(Long64_t l) final
Writes Long64_t value to buffer.
void JsonReadTObjectMembers(TObject *obj, void *node=nullptr)
Read TObject data members from JSON.
void WriteULong64(ULong64_t l) final
Writes ULong64_t value to buffer.
void ReadBool(Bool_t &b) final
Reads Bool_t value from buffer.
void WriteChar(Char_t c) final
Writes Char_t value to buffer.
void JsonWriteObject(const void *obj, const TClass *objClass, Bool_t check_map=kTRUE)
Write object to buffer If object was written before, only pointer will be stored If check_map==kFALSE...
void * JsonReadObject(void *obj, const TClass *objClass=nullptr, TClass **readClass=nullptr)
Read object from current JSON node.
void WorkWithClass(TStreamerInfo *info, const TClass *cl=nullptr)
Prepares buffer to stream data of specified class.
R__ALWAYS_INLINE void JsonReadBasic(T &value)
Template function to read basic value from JSON.
void ReadTString(TString &s) final
Reads a TString.
Base class for text-based streamers like TBufferJSON or TBufferXML Special actions list will use meth...
static const char * ConvertFloat(Float_t v, char *buf, unsigned len, Bool_t not_optimize=kFALSE)
convert float to string with configured format
static const char * ConvertDouble(Double_t v, char *buf, unsigned len, Bool_t not_optimize=kFALSE)
convert float to string with configured format
virtual void ReadBaseClass(void *start, TStreamerBase *elem)
Read data of base class.
TClass instances represent classes, structs and namespaces in the ROOT type system.
ROOT::ESTLType GetCollectionType() const
Return the 'type' of the STL the TClass is representing.
void * New(ENewType defConstructor=kClassNew, Bool_t quiet=kFALSE) const
Return a pointer to a newly allocated object of this class.
void Destructor(void *obj, Bool_t dtorOnly=kFALSE)
Explicitly call destructor for object.
TList * GetListOfRealData() const
Int_t Size() const
Return size of object of this class.
Bool_t IsTObject() const
Return kTRUE is the class inherits from TObject.
Int_t GetBaseClassOffset(const TClass *toBase, void *address=0, bool isDerivedObject=true)
TVirtualCollectionProxy * GetCollectionProxy() const
Return the proxy describing the collection (if any).
void Streamer(void *obj, TBuffer &b, const TClass *onfile_class=0) const
Version_t GetClassVersion() const
TClass * GetActualClass(const void *object) const
Return a pointer the the real class of the object.
TRealData * GetRealData(const char *name) const
Return pointer to TRealData element with name "name".
static TClass * GetClass(const char *name, Bool_t load=kTRUE, Bool_t silent=kFALSE)
Static method returning pointer to TClass of the specified class name.
An array of clone (identical) objects.
TClass * GetClass() const
void SetClass(const char *classname, Int_t size=1000)
see TClonesArray::SetClass(const TClass*)
TObject * ConstructedAt(Int_t idx)
Get an object at index 'idx' that is guaranteed to have been constructed.
Collection abstract base class.
virtual const char * GetName() const
Return name of this collection.
void SetName(const char *name)
virtual void Add(TObject *obj)=0
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
All ROOT classes may have RTTI (run time type identification) support added.
Int_t GetMaxIndex(Int_t dim) const
Return maximum index for array dimension "dim".
const char * GetTrueTypeName() const
Get full type description of data member, e,g.: "class TDirectory*".
Int_t GetArrayDim() const
Return number of array dimensions.
Int_t GetUnitSize() const
Get the sizeof the underlying type of the data member (i.e.
Bool_t IsBasic() const
Return true if data member is a basic type, e.g. char, int, long...
Int_t IsSTLContainer()
The return type is defined in TDictionary (kVector, kList, etc.)
Bool_t IsaPointer() const
Return true if data member is a pointer.
TDataType * GetDataType() const
const char * GetTypeName() const
Get type of data member, e,g.: "class TDirectory*" -> "TDirectory".
const char * GetArrayIndex() const
If the data member is pointer and has a valid array size in its comments GetArrayIndex returns a stri...
Basic data type descriptor (datatype information is obtained from CINT).
Option_t * GetOption() const
virtual void Add(TObject *obj)
TMap implements an associative array of (key,value) pairs using a THashTable for efficient retrieval ...
void Add(TObject *obj)
This function may not be used (but we need to provide it since it is a pure virtual in TCollection).
TObject * GetValue(const char *keyname) const
Returns a pointer to the value associated with keyname as name of the key.
virtual const char * GetName() const
Returns name of object.
Int_t IndexOf(const TObject *obj) const
Mother of all ROOT objects.
@ kIsOnHeap
object is on heap
@ kNotDeleted
object has not been deleted
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
virtual void SetUniqueID(UInt_t uid)
Set the unique object id.
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
The TRealData class manages the effective list of all data members for a given class.
TDataMember * GetDataMember() const
Long_t GetThisOffset() const
virtual TClass * GetClassPointer() const
Returns a pointer to the TClass of this element.
virtual TClass * GetClassPointer() const
Returns a pointer to the TClass of this element.
virtual void SetArrayDim(Int_t dim)
Set number of array dimensions.
Int_t GetArrayDim() const
Int_t GetArrayLength() const
Int_t GetMaxIndex(Int_t i) const
const char * GetTypeName() const
virtual Bool_t IsBase() const
Return kTRUE if the element represent a base class.
virtual void SetMaxIndex(Int_t dim, Int_t max)
set maximum index for array with dimension dim
Describe Streamer information for one class version.
TObjArray * GetElements() const
TClass * GetClass() const
Int_t GetClassVersion() const
Int_t Atoi() const
Return integer value of string.
void Clear()
Clear string without changing its capacity.
TString & Replace(Ssiz_t pos, Ssiz_t n, const char *s)
const char * Data() const
void Resize(Ssiz_t n)
Resize the string. Truncate or add blanks as necessary.
TString & Append(const char *cs)
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
Abstract Interface class describing Streamer information for one class.
static Bool_t CanDelete()
static function returning true if ReadBuffer can delete object
virtual TClass * GetClass() const =0
bool IsStdClass(const char *type)
return true if the class belongs to the std namespace
static constexpr double s
basic_json< std::map, std::vector, std::string, bool, std::int64_t, std::uint64_t, double, std::allocator, adl_serializer > json
#define decode(ptr, otri)