Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TMemberInspector.cxx
Go to the documentation of this file.
1// @(#)root/base:$Id$
2// Author: Fons Rademakers 15/07/96
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12/** \class TMemberInspector
13\ingroup Base
14
15Abstract base class for accessing the data-members of a class.
16Classes derived from this class can be given as argument to the
17ShowMembers() methods of ROOT classes. This feature facilitates
18the writing of class browsers and inspectors.
19*/
20
21#include "TMemberInspector.h"
22#include "TInterpreter.h"
23#include "TClassEdit.h"
24#include "TClass.h"
25#include "TError.h"
26
28private:
29 std::vector<char> fBuf;
31public:
32 TParentBuf(): fBuf(1024), fLen(0) {}
33 Ssiz_t GetLength() const { return fLen; }
34 void Append(const char*);
35 void Remove(Ssiz_t startingAt);
36 operator const char*() const { return &fBuf[0]; }
37};
38
40{
41 // Add "add" to string
42 if (!add || !add[0]) return;
43 Ssiz_t addlen = strlen(add);
44 fBuf.resize(fLen + addlen + 1);
45 const char* i = add;
46 while (*i) {
47 fBuf[fLen++] = *i;
48 ++i;
49 }
50 fBuf[fLen] = 0;
51}
54{
55 // Remove characters starting at "startingAt"
56 fLen = startingAt;
57 fBuf[startingAt] = 0;
58}
59
61
64{
65 // Construct a member inspector
66
67 fParent = new TParentBuf();
68}
69
71 // Destruct a member inspector
72 delete fParent;
73}
74
75const char* TMemberInspector::GetParent() const
76{
77 // Get the parent string.
78 return *fParent;
79}
80
82{
83 // Get the length of the parent string.
84 return fParent->GetLength();
85}
86
88{
89 // Append "name" to the parent string.
91}
92
94{
95 // Remove trailing characters starting at "startingAt".
96 fParent->Remove(startingAt);
97}
98
99void TMemberInspector::Inspect(TClass *, const char *, const char *, const void *)
100{
101 // Obsolete signature
102 Fatal("Inspect","This version of Inspect is obsolete");
103}
104
105void TMemberInspector::GenericShowMembers(const char *topClassName, const void *obj,
106 Bool_t isTransient) {
107 // Call ShowMember() on obj.
108
109 // This could be faster if we implemented this either as a templated
110 // function or by rootcint-generated code using the typeid (i.e. the
111 // difference is a lookup in a TList instead of in a map).
112
113 // To avoid a spurious error message in case the data member is
114 // transient and does not have a dictionary we check first.
115 if (isTransient) {
116 if (!TClassEdit::IsSTLCont(topClassName)) {
117 ClassInfo_t *b = gInterpreter->ClassInfo_Factory(topClassName);
118 Bool_t isloaded = gInterpreter->ClassInfo_IsLoaded(b);
119 gInterpreter->ClassInfo_Delete(b);
120 if (!isloaded) return;
121 }
122 }
123
124 TClass *top = TClass::GetClass(topClassName);
125 if (top) {
126 top->CallShowMembers(obj, *this, isTransient);
127 } else {
128 // This might be worth an error message
129 }
130}
131
132void TMemberInspector::InspectMember(const TObject& obj, const char* name, Bool_t isTransient)
133{
134 // Routine driving the visiting of the class information/data members.
135
136 InspectMember<TObject>(obj, name, isTransient);
137}
138
139void TMemberInspector::InspectMember(const char* topclassname, const void* pobj,
140 const char* name, Bool_t isTransient)
141{
142 // Routine driving the visiting of the class information/data members.
143
144 Ssiz_t len = fParent->GetLength();
146 GenericShowMembers(topclassname, pobj, isTransient);
147 fParent->Remove(len);
148}
149
150void TMemberInspector::InspectMember(TClass* cl, const void* pobj, const char* name, Bool_t isTransient)
151{
152 // Routine driving the visiting of the class information/data members.
153
154 Ssiz_t len = fParent->GetLength();
156 cl->CallShowMembers(pobj, *this, isTransient);
157 fParent->Remove(len);
158}
#define b(i)
Definition RSha256.hxx:100
#define ClassImp(name)
Definition Rtypes.h:364
void Fatal(const char *location, const char *msgfmt,...)
Use this function in case of a fatal error. It will abort the program.
Definition TError.cxx:245
char name[80]
Definition TGX11.cxx:110
#define gInterpreter
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition TClass.h:80
Bool_t CallShowMembers(const void *obj, TMemberInspector &insp, Bool_t isTransient=kFALSE) const
Call ShowMembers() on the obj of this class type, passing insp and parent.
Definition TClass.cxx:2203
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.
Definition TClass.cxx:2966
void Remove(Ssiz_t startingAt)
Abstract base class for accessing the data-members of a class.
const char * GetParent() const
void GenericShowMembers(const char *topClassName, const void *obj, Bool_t transientMember)
void RemoveFromParent(Ssiz_t startingAt)
virtual void Inspect(TClass *cl, const char *parent, const char *name, const void *addr)
void AddToParent(const char *name)
Ssiz_t GetParentLen() const
TParentBuf * fParent
EObjectPointerState fObjectPointerState
void InspectMember(const T &obj, const char *name, Bool_t isTransient)
Mother of all ROOT objects.
Definition TObject.h:41
ROOT::ESTLType IsSTLCont(std::string_view type)
type : type name: vector<list<classA,allocator>,allocator> result: 0 : not stl container code of cont...