205 if (t && t[0] !=
'!')
211 if (strcmp(
name,
"unsigned char") != 0 &&
212 strncmp(
name,
"unsigned short",
sizeof (
"unsigned short")) != 0 &&
213 strcmp(
name,
"unsigned int") != 0 &&
214 strncmp(
name,
"unsigned long",
sizeof (
"unsigned long")) != 0)
240 if (strstr(
GetTitle(),
"*OPTION={")) {
248 TIter iEnumConst(enumDict->GetConstants());
252 enumConst->GetName(),enumConst->GetName());
275 fInfo(
gCling->DataMemberInfo_FactoryCopy(dm.fInfo)),
277 fDataType(dm.fDataType),
279 fSTLCont(dm.fSTLCont),
280 fProperty(dm.fProperty),
281 fArrayDim(dm.fArrayDim),
282 fArrayMaxIndex( dm.fArrayDim ? new
Int_t[dm.fArrayDim] : 0),
283 fArrayIndex(dm.fArrayIndex),
285 fFullTypeName(dm.fFullTypeName),
286 fTrueTypeName(dm.fTrueTypeName),
289 fOptions(dm.fOptions ? (
TList*)dm.fOptions->Clone() : 0)
399 if (dim < 0 || dim >=
fArrayDim)
return -1;
455 char *rdmc = (
char*)rdm->
GetName();
458 if (this->
IsaPointer() && rdmc[0] ==
'*') rdmc++;
461 if (strcmp(rdmc,
GetName()) == 0) {
506 if ( cl)
return cl->
Size();
563 DataMemberInfo_t *info
610 const char *optTitle = strstr(
GetTitle(),
"*OPTION={");
627 const char *
ptr1 = 0;
637 char *opt_ptr = strstr(cmt,
"*OPTION={");
643 ptr1 = R__STRTOK_R(opt_ptr,
"{}", &rest);
645 Fatal(
"TDataMember",
"Internal error, found \"*OPTION={\" but not \"{}\" in %s.",
GetTitle());
648 ptr1 = R__STRTOK_R(
nullptr,
"{}", &rest);
650 Fatal(
"TDataMember",
"Internal error, found \"*OPTION={\" but not \"{}\" in %s.",
GetTitle());
655 strlcpy(opt,
ptr1,2048);
666 ptr1 = R__STRTOK_R((
char *)(cnt++ ?
nullptr : opt),
";", &rest);
670 strlcpy(tok,
ptr1,nch);
671 tokens[token_cnt]=tok;
677 for (i=0;i<token_cnt;i++) {
678 if (strstr(tokens[i],
"GetMethod")) {
679 ptr1 = R__STRTOK_R(tokens[i],
"\"", &rest);
681 Fatal(
"TDataMember",
"Internal error, found \"GetMethod\" but not \"\\\"\" in %s.",
GetTitle());
684 ptr1 = R__STRTOK_R(
nullptr,
"\"", &rest);
686 Fatal(
"TDataMember",
"Internal error, found \"GetMethod\" but not \"\\\"\" in %s.",
GetTitle());
697 if (strstr(tokens[i],
"SetMethod")) {
698 ptr1 = R__STRTOK_R(tokens[i],
"\"", &rest);
700 Fatal(
"TDataMember",
"Internal error, found \"SetMethod\" but not \"\\\"\" in %s.",
GetTitle());
703 ptr1 = R__STRTOK_R(
nullptr,
"\"", &rest);
705 Fatal(
"TDataMember",
"Internal error, found \"SetMethod\" but not \"\\\"\" in %s.",
GetTitle());
717 std::unique_ptr<TList> optionlist{
new TList()};
719 for (i=0;i<token_cnt;i++) {
720 if (strstr(tokens[i],
"Items")) {
721 ptr1 = R__STRTOK_R(tokens[i],
"()", &rest);
723 Fatal(
"TDataMember",
"Internal error, found \"Items\" but not \"()\" in %s.",
GetTitle());
726 ptr1 = R__STRTOK_R(
nullptr,
"()", &rest);
728 Fatal(
"TDataMember",
"Internal error, found \"Items\" but not \"()\" in %s.",
GetTitle());
733 strlcpy(opts,
ptr1,2048);
741 ptr1 = R__STRTOK_R(opt_cnt++ ?
nullptr : opts,
",", &rest);
756 TIter next(optionlist.get());
764 ptr2 = R__STRTOK_R((
char *)
ptr1,
"=\"", &rest);
765 ptr3 = R__STRTOK_R(
nullptr,
"=\"", &rest);
774 bool isnumber = (strtolResult !=
ptr1);
789 Fatal(
"TDataMember",
"Internal error, couldn't recognize enum/global value %s.",
ptr1);
797 optionlist->Remove(it);
805 for (i=0;i<token_cnt;i++)
847 const char *dataname =
GetName();
850 gettername.
Form(
"Get%s", dataname+1);
851 if (
GetClass()->GetMethod(gettername,
""))
853 gettername.
Form(
"Is%s", dataname+1);
854 if (
GetClass()->GetMethod(gettername,
""))
856 gettername.
Form(
"Has%s", dataname+1);
857 if (
GetClass()->GetMethod(gettername,
""))
893 const char *dataname =
GetName();
896 settername.
Form(
"Set%s", dataname+1);
897 if (strstr(settername,
"Is")) settername.
Form(
"Set%s", dataname+3);
898 if (
GetClass()->GetMethod(settername,
"1"))
901 if (
GetClass()->GetMethod(settername,
"true"))
950void TDataMember::Streamer(
TBuffer&
b) {
952 b.ReadClassBuffer(
Class(),
this);
968 b.WriteClassBuffer(
Class(),
this);
976 Long_t tglmask,
const char *
name,
const char *label)
R__EXTERN TVirtualMutex * gInterpreterMutex
R__EXTERN TInterpreter * gCling
char * Form(const char *fmt,...)
#define R__LOCKGUARD(mutex)
Buffer base class used for serializing objects.
TClass instances represent classes, structs and namespaces in the ROOT type system.
void BuildRealData(void *pointer=0, Bool_t isTransient=kFALSE)
Build a full list of persistent data members.
TList * GetListOfDataMembers(Bool_t load=kTRUE)
Return list containing the TDataMembers of a class.
Short_t GetDeclFileLine() const
TList * GetListOfRealData() const
Int_t Size() const
Return size of object of this class.
ClassInfo_t * GetClassInfo() const
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.
virtual TObject * Clone(const char *newname="") const
Make a clone of an collection using the Streamer facility.
All ROOT classes may have RTTI (run time type identification) support added.
virtual ~TDataMember()
TDataMember dtor deletes adopted CINT DataMemberInfo object.
Int_t GetMaxIndex(Int_t dim) const
Return maximum index for array dimension "dim".
TDataMember(const TDataMember &)
copy constructor
TMethodCall * SetterMethod(TClass *cl)
Return a TMethodCall method responsible for setting the value of data member.
virtual bool Update(DataMemberInfo_t *info)
Update the TFunction to reflect the new info.
TDataMember & operator=(const TDataMember &)
assignment operator
const char * GetTrueTypeName() const
Get full type description of data member, e,g.: "class TDirectory*".
Long_t GetOffset() const
Get offset from "this".
TMethodCall * fValueGetter
Int_t GetArrayDim() const
Return number of array dimensions.
Bool_t IsEnum() const
Return true if data member is an enum.
TList * GetOptions()
Returns list of options - list of TOptionListItems.
void Init(bool afterReading)
Routines called by the constructor and Update to reset the member's information.
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.
Bool_t IsValid()
Return true if this data member object is pointing to a currently loaded data member.
TClass * fClass
pointer to CINT data member info
void ExtractOptionsFromComment()
Build TOptionListItems from the member comment *OPTION={
TDataType * GetDataType() const
const char * GetTypeName() const
Get type of data member, e,g.: "class TDirectory*" -> "TDirectory".
DeclId_t GetDeclId() const
TMethodCall * fValueSetter
method that returns a value;
TMethodCall * GetterMethod(TClass *cl=0)
Return a TMethodCall method responsible for getting the value of data member.
TList * fOptions
method which sets value;
const char * GetArrayIndex() const
If the data member is pointer and has a valid array size in its comments GetArrayIndex returns a stri...
TDataType * fDataType
pointer to the class
const char * GetFullTypeName() const
Get full type description of data member, e,g.: "class TDirectory*".
Long_t GetOffsetCint() const
Get offset from "this" using the information in CINT only.
Long_t fOffset
pointer to data basic type descriptor
Long_t Property() const
Get property description word. For meaning of bits see EProperty.
TClass * GetClass() const
Int_t Size() const
Get size of basic typedef'ed type.
This class defines an abstract interface that must be implemented by all classes that contain diction...
Bool_t UpdateInterpreterStateMarker()
the Cling ID of the transaction that last updated the object
TDictionary & operator=(const TDictionary &other)
The TEnumConstant class implements the constants of the enum type.
The TEnum class implements the enum type.
static TEnum * GetEnum(const std::type_info &ti, ESearchAction sa=kALoadAndInterpLookup)
Global variables class (global variables are obtained from CINT).
virtual void * GetAddress() const
Return address of global.
virtual DataMemberInfo_t * DataMemberInfo_FactoryCopy(DataMemberInfo_t *) const
virtual const char * DataMemberInfo_Name(DataMemberInfo_t *) const
virtual const char * DataMemberInfo_TypeName(DataMemberInfo_t *) const
virtual const char * DataMemberInfo_ValidArrayIndex(DataMemberInfo_t *) const
virtual Long_t DataMemberInfo_Offset(DataMemberInfo_t *) const
virtual Bool_t DataMemberInfo_IsValid(DataMemberInfo_t *) const
virtual Long_t DataMemberInfo_TypeProperty(DataMemberInfo_t *) const
virtual Long_t DataMemberInfo_Property(DataMemberInfo_t *) const
virtual int DataMemberInfo_ArrayDim(DataMemberInfo_t *) const
virtual void DataMemberInfo_Delete(DataMemberInfo_t *) const
virtual int DataMemberInfo_MaxIndex(DataMemberInfo_t *, Int_t) const
virtual const char * DataMemberInfo_Title(DataMemberInfo_t *) const
virtual const char * DataMemberInfo_TypeTrueName(DataMemberInfo_t *) const
virtual const char * TypeName(const char *s)=0
A collection of TDataMember objects designed for fast access given a DeclId_t and for keep track of T...
void Update(TDictionary *member)
Move the member or data member to the expect set of list.
virtual void Add(TObject *obj)
virtual TObject * FindObject(const char *name) const
Find an object in this list using its name.
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
Method or function calling interface.
const char * GetMethodName() const
const char * GetParams() const
virtual const char * GetTitle() const
Returns title of object.
virtual const char * GetName() const
Returns name of object.
Mother of all ROOT objects.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
virtual void Fatal(const char *method, const char *msgfmt,...) const
Issue fatal error message.
TDataMember * fDataMember
Long_t fValue
Data member to which this option belongs.
The TRealData class manages the effective list of all data members for a given class.
TDataMember * GetDataMember() const
virtual const char * GetName() const
Returns name of object.
Long_t GetThisOffset() const
void Clear()
Clear string without changing its capacity.
const char * Data() const
TString & Append(const char *cs)
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
std::string GetLong64_Name(const char *original)
Replace 'long long' and 'unsigned long long' by 'Long64_t' and 'ULong64_t'.
ROOT::ESTLType UnderlyingIsSTLCont(std::string_view type)
Return the type of STL collection, if any, that is the underlying type of the given type.