214 if (strcmp(
name,
"unsigned char") != 0 &&
215 strncmp(
name,
"unsigned short",
sizeof (
"unsigned short")) != 0 &&
216 strcmp(
name,
"unsigned int") != 0 &&
217 strncmp(
name,
"unsigned long",
sizeof (
"unsigned long")) != 0)
258 const char *
ptr1 = 0;
268 if ((opt_ptr=strstr(cmt,
"*OPTION={"))) {
276 Fatal(
"TDataMember",
"Internal error, found \"*OPTION={\" but not \"{}\" in %s.",
GetTitle());
281 Fatal(
"TDataMember",
"Internal error, found \"*OPTION={\" but not \"{}\" in %s.",
GetTitle());
286 strlcpy(opt,
ptr1,2048);
301 strlcpy(tok,
ptr1,nch);
302 tokens[token_cnt]=tok;
308 for (i=0;i<token_cnt;i++) {
309 if (strstr(tokens[i],
"GetMethod")) {
312 Fatal(
"TDataMember",
"Internal error, found \"GetMethod\" but not \"\\\"\" in %s.",
GetTitle());
317 Fatal(
"TDataMember",
"Internal error, found \"GetMethod\" but not \"\\\"\" in %s.",
GetTitle());
328 if (strstr(tokens[i],
"SetMethod")) {
331 Fatal(
"TDataMember",
"Internal error, found \"SetMethod\" but not \"\\\"\" in %s.",
GetTitle());
336 Fatal(
"TDataMember",
"Internal error, found \"SetMethod\" but not \"\\\"\" in %s.",
GetTitle());
348 std::unique_ptr<TList> optionlist{
new TList()};
350 for (i=0;i<token_cnt;i++) {
351 if (strstr(tokens[i],
"Items")) {
354 Fatal(
"TDataMember",
"Internal error, found \"Items\" but not \"()\" in %s.",
GetTitle());
359 Fatal(
"TDataMember",
"Internal error, found \"Items\" but not \"()\" in %s.",
GetTitle());
364 strlcpy(opts,
ptr1,2048);
387 TIter next(optionlist.get());
405 bool isnumber = (strtolResult !=
ptr1);
420 Fatal(
"TDataMember",
"Internal error, couldn't recognize enum/global value %s.",
ptr1);
428 optionlist->Remove(it);
436 for (i=0;i<token_cnt;i++)
if(tokens[i])
delete [] tokens[i];
442 TIter iEnumConst(enumDict->GetConstants());
446 enumConst->GetName(),enumConst->GetName());
469 fInfo(
gCling->DataMemberInfo_FactoryCopy(dm.fInfo)),
471 fDataType(dm.fDataType),
473 fSTLCont(dm.fSTLCont),
474 fProperty(dm.fProperty),
475 fArrayDim(dm.fArrayDim),
476 fArrayMaxIndex( dm.fArrayDim ? new
Int_t[dm.fArrayDim] : 0),
477 fArrayIndex(dm.fArrayIndex),
478 fTypeName(dm.fTypeName),
479 fFullTypeName(dm.fFullTypeName),
480 fTrueTypeName(dm.fTrueTypeName),
483 fOptions(dm.fOptions ? (
TList*)dm.fOptions->Clone() : 0)
593 if (dim < 0 || dim >=
fArrayDim)
return -1;
649 char *rdmc = (
char*)rdm->
GetName();
652 if (this->
IsaPointer() && rdmc[0] ==
'*') rdmc++;
655 if (strcmp(rdmc,
GetName()) == 0) {
700 if ( cl)
return cl->
Size();
757 DataMemberInfo_t *info
829 const char *dataname =
GetName();
832 gettername.
Form(
"Get%s", dataname+1);
835 gettername.
Form(
"Is%s", dataname+1);
838 gettername.
Form(
"Has%s", dataname+1);
875 const char *dataname =
GetName();
878 settername.
Form(
"Set%s", dataname+1);
879 if (strstr(settername,
"Is")) settername.
Form(
"Set%s", dataname+3);
932void TDataMember::Streamer(
TBuffer&
b) {
934 b.ReadClassBuffer(
Class(),
this);
950 b.WriteClassBuffer(
Class(),
this);
958 Long_t tglmask,
const char *
name,
const char *label)
char * R__STRTOK_R(char *str, const char *delim, char **saveptr)
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.
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
TList * GetOptions() const
Returns list of options - list of TOptionListItems.
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 void SetTitle(const char *title="")
Set the title of the TNamed.
virtual void SetName(const char *name)
Set the name of the TNamed.
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.
TCppMethod_t GetMethod(TCppScope_t scope, TCppIndex_t imeth)
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.