ROOT
6.06/09
Reference Guide
|
Classes | |
class | TInterpreterLookupHelper |
struct | TSplitType |
Enumerations | |
enum | EModType { kNone = 0, kDropTrailStar = 1<<0, kDropDefaultAlloc = 1<<1, kDropAlloc = 1<<2, kInnerClass = 1<<3, kInnedMostClass = 1<<4, kDropStlDefault = 1<<5, kDropComparator = 1<<6, kDropAllDefault = 1<<7, kLong64 = 1<<8, kDropStd = 1<<9, kKeepOuterConst = 1<<10, kResolveTypedef = 1<<11, kDropPredicate = 1<<12, kDropHash = 1<<13 } |
enum | ESTLType { kNotSTL = ROOT::kNotSTL, kVector = ROOT::kSTLvector, kList = ROOT::kSTLlist, kForwardist = ROOT::kSTLforwardlist, kDeque = ROOT::kSTLdeque, kMap = ROOT::kSTLmap, kMultiMap = ROOT::kSTLmultimap, kSet = ROOT::kSTLset, kMultiSet = ROOT::kSTLmultiset, kUnorderedSet = ROOT::kSTLunorderedset, kUnorderedMultiSet = ROOT::kSTLunorderedmultiset, kUnorderedMap = ROOT::kSTLunorderedmap, kUnorderedMultiMap = ROOT::kSTLunorderedmultimap, kBitSet = ROOT::kSTLbitset, kEnd = ROOT::kSTLend } |
enum | EComplexType : short { EComplexType::kNone, EComplexType::kDouble, EComplexType::kFloat, EComplexType::kInt, EComplexType::kLong } |
Functions | |
EComplexType | GetComplexType (const char *) |
void | Init (TClassEdit::TInterpreterLookupHelper *helper) |
std::string | CleanType (const char *typeDesc, int mode=0, const char **tail=0) |
Cleanup type description, redundant blanks removed and redundant tail ignored return *tail = pointer to last used character if (mode==0) keep keywords if (mode==1) remove keywords outside the template params if (mode>=2) remove the keywords everywhere. More... | |
bool | IsDefAlloc (const char *alloc, const char *classname) |
return whether or not 'allocname' is the STL default allocator for type 'classname' More... | |
bool | IsDefAlloc (const char *alloc, const char *keyclassname, const char *valueclassname) |
return whether or not 'allocname' is the STL default allocator for a key of type 'keyclassname' and a value of type 'valueclassname' More... | |
bool | IsDefComp (const char *comp, const char *classname) |
return whether or not 'compare' is the STL default comparator for type 'classname' More... | |
bool | IsDefPred (const char *predname, const char *classname) |
return whether or not 'predname' is the STL default predicate for type 'classname' More... | |
bool | IsDefHash (const char *hashname, const char *classname) |
return whether or not 'hashname' is the STL default hash for type 'classname' More... | |
bool | IsInterpreterDetail (const char *type) |
Return true if the type is one the interpreter details which are only forward declared (ClassInfo_t etc..) More... | |
bool | IsSTLBitset (const char *type) |
Return true is the name is std::bitset<number> or bitset<number> More... | |
ROOT::ESTLType | UnderlyingIsSTLCont (std::string_view type) |
Return the type of STL collection, if any, that is the underlying type of the given type. More... | |
ROOT::ESTLType | IsSTLCont (std::string_view type) |
type : type name: vector<list<classA,allocator>,allocator> result: 0 : not stl container code of container 1=vector,2=list,3=deque,4=map 5=multimap,6=set,7=multiset More... | |
int | IsSTLCont (const char *type, int testAlloc) |
type : type name: vector<list<classA,allocator>,allocator> testAlloc: if true, we test allocator, if it is not default result is negative result: 0 : not stl container abs(result): code of container 1=vector,2=list,3=deque,4=map 5=multimap,6=set,7=multiset positive val: we have a vector or list with default allocator to any depth like vector<list<vector<int>>> negative val: STL container other than vector or list, or non default allocator For example: vector<deque<int>> has answer -1 More... | |
bool | IsStdClass (const char *type) |
return true if the class belongs to the std namespace More... | |
bool | IsVectorBool (const char *name) |
void | GetNormalizedName (std::string &norm_name, std::string_view name) |
Return the normalized name. More... | |
std::string | GetLong64_Name (const char *original) |
Replace 'long long' and 'unsigned long long' by 'Long64_t' and 'ULong64_t'. More... | |
std::string | GetLong64_Name (const std::string &original) |
Replace 'long long' and 'unsigned long long' by 'Long64_t' and 'ULong64_t'. More... | |
int | GetSplit (const char *type, std::vector< std::string > &output, int &nestedLoc, EModType mode=TClassEdit::kNone) |
Stores in output (after emptying it) the splited type. More... | |
ROOT::ESTLType | STLKind (std::string_view type) |
Converts STL container name to number. More... | |
int | STLArgs (int kind) |
Return number of arguments for STL container before allocator. More... | |
std::string | ResolveTypedef (const char *tname, bool resolveAll=false) |
std::string | ShortType (const char *typeDesc, int mode) |
Return the absolute type of typeDesc. More... | |
std::string | InsertStd (const char *tname) |
const char * | GetUnqualifiedName (const char *name) |
Return the start of the unqualified name include in 'original'. More... | |
char * | DemangleName (const char *mangled_name, int &errorCode) |
char * | DemangleTypeIdName (const std::type_info &ti, int &errorCode) |
Demangle in a portable way the type id name. More... | |
|
strong |
Enumerator | |
---|---|
kNone | |
kDouble | |
kFloat | |
kInt | |
kLong |
Definition at line 111 of file TClassEdit.h.
enum TClassEdit::EModType |
Definition at line 75 of file TClassEdit.h.
enum TClassEdit::ESTLType |
Enumerator | |
---|---|
kNotSTL | |
kVector | |
kList | |
kForwardist | |
kDeque | |
kMap | |
kMultiMap | |
kSet | |
kMultiSet | |
kUnorderedSet | |
kUnorderedMultiSet | |
kUnorderedMap | |
kUnorderedMultiMap | |
kBitSet | |
kEnd |
Definition at line 93 of file TClassEdit.h.
string TClassEdit::CleanType | ( | const char * | typeDesc, |
int | mode = 0 , |
||
const char ** | tail = 0 |
||
) |
Cleanup type description, redundant blanks removed and redundant tail ignored return *tail = pointer to last used character if (mode==0) keep keywords if (mode==1) remove keywords outside the template params if (mode>=2) remove the keywords everywhere.
if (tail!=0) cut before the trailing *
The keywords currently are: "const" , "volatile" removed
CleanType(" A<B, C< D, E> > *,F,G>") returns "A<B,C<D,E> >*"
Definition at line 1121 of file TClassEdit.cxx.
Referenced by PyROOT::CreateConverter(), PyROOT::CreateExecutor(), GetSplit(), Cppyy::IsBuiltin(), and Cppyy::ResolveName().
|
inline |
Definition at line 178 of file TClassEdit.h.
Referenced by DemangleTypeIdName(), TCling::GetDeclId(), TEnum::GetEnum(), and TCling::LazyFunctionCreatorAutoload().
char * TClassEdit::DemangleTypeIdName | ( | const std::type_info & | ti, |
int & | errorCode | ||
) |
Demangle in a portable way the type id name.
IMPORTANT: The caller is responsible for freeing the returned const char*
Definition at line 1861 of file TClassEdit.cxx.
Referenced by TCling::AutoLoad(), PyROOT::TMethodHolder::CallFast(), and TCling::GetClass().
TClassEdit::EComplexType TClassEdit::GetComplexType | ( | const char * | clName | ) |
Definition at line 96 of file TClassEdit.cxx.
Referenced by TCling::InspectMembers(), and TListOfDataMembers::Load().
string TClassEdit::GetLong64_Name | ( | const char * | original | ) |
Replace 'long long' and 'unsigned long long' by 'Long64_t' and 'ULong64_t'.
Definition at line 816 of file TClassEdit.cxx.
Referenced by TCling::AutoLoad(), TStreamerInfo::GetCheckSum(), TMakeProject::GetHeaderName(), GetSplit(), TDataMember::Init(), TDataMember::Property(), ROOT::TMetaUtils::WriteAuxFunctions(), and ROOT::TMetaUtils::WriteClassInit().
string TClassEdit::GetLong64_Name | ( | const std::string & | original | ) |
Replace 'long long' and 'unsigned long long' by 'Long64_t' and 'ULong64_t'.
Definition at line 827 of file TClassEdit.cxx.
void TClassEdit::GetNormalizedName | ( | std::string & | norm_name, |
std::string_view | name | ||
) |
Return the normalized name.
See TMetaUtils::GetNormalizedName.
Return the type name normalized for ROOT, keeping only the ROOT opaque typedef (Double32_t, etc.) and removing the STL collections default parameter if any.
Compare to TMetaUtils::GetNormalizedName, this routines does not and can not add default template parameters.
Definition at line 787 of file TClassEdit.cxx.
Referenced by TClassTable::FindElement(), TROOT::FindSTLClass(), TClass::GetClass(), IsDefAlloc(), IsDefElement(), BaseSelectionRule::Match(), and RScanner::TreatRecordDeclOrTypedefNameDecl().
int TClassEdit::GetSplit | ( | const char * | type, |
std::vector< std::string > & | output, | ||
int & | nestedLoc, | ||
EModType | mode = TClassEdit::kNone |
||
) |
Stores in output (after emptying it) the splited type.
Stores the location of the tail (nested names) in nestedLoc (0 indicates no tail). Return the number of elements stored.
First in list is the template name or is empty "vector<list<int>,alloc>**" to "vector" "list<int>" "alloc" "**" or "TNamed*" to "" "TNamed" "*"
Definition at line 937 of file TClassEdit.cxx.
Referenced by TCling::AutoParseImplRecurse(), TStructViewer::CountMembers(), TMakeProject::GenerateIncludeForTemplate(), TMakeProject::GeneratePostDeclaration(), TEmulatedCollectionProxy::InitializeEx(), TGenCollectionProxy::InitializeEx(), TFile::MakeProject(), TXMLPlayer::ProduceSTLstreamer(), R__WriteDestructorBody(), TGenCollectionStreamer::ReadPairFromMap(), TClassEdit::TSplitType::TSplitType(), and TMakeProject::UpdateAssociativeToVector().
const char * TClassEdit::GetUnqualifiedName | ( | const char * | name | ) |
Return the start of the unqualified name include in 'original'.
Definition at line 850 of file TClassEdit.cxx.
Referenced by TEnum::GetEnum(), and TClingLookupHelper__ExistingTypeCheck().
void TClassEdit::Init | ( | TClassEdit::TInterpreterLookupHelper * | helper | ) |
Definition at line 118 of file TClassEdit.cxx.
Referenced by ClassImp(), TMVA::MethodBase::SetupMethod(), ROOT::Minuit2::MPIProcess::StartMPI(), TCling::TCling(), TGeoManager::TGeoManager(), TGLite::TGLite(), TGTableCell::TGTableCell(), TPie::TPie(), TClingCallbacks::tryFindROOTSpecialInternal(), and TVirtualDragManager::TVirtualDragManager().
string TClassEdit::InsertStd | ( | const char * | tname | ) |
Definition at line 1679 of file TClassEdit.cxx.
Referenced by TCling::CheckClassInfo(), TClingTypeInfo::Init(), TClingTypedefInfo::Init(), TClingClassInfo::Init(), BaseSelectionRule::Match(), and TClingClassInfo::TClingClassInfo().
bool TClassEdit::IsDefAlloc | ( | const char * | alloc, |
const char * | classname | ||
) |
return whether or not 'allocname' is the STL default allocator for type 'classname'
Definition at line 556 of file TClassEdit.cxx.
Referenced by IsDefAlloc(), TClassEdit::TSplitType::IsSTLCont(), and TClassEdit::TSplitType::ShortType().
bool TClassEdit::IsDefAlloc | ( | const char * | alloc, |
const char * | keyclassname, | ||
const char * | valueclassname | ||
) |
return whether or not 'allocname' is the STL default allocator for a key of type 'keyclassname' and a value of type 'valueclassname'
Definition at line 605 of file TClassEdit.cxx.
bool TClassEdit::IsDefComp | ( | const char * | comp, |
const char * | classname | ||
) |
return whether or not 'compare' is the STL default comparator for type 'classname'
Definition at line 754 of file TClassEdit.cxx.
Referenced by TClassEdit::TSplitType::ShortType().
bool TClassEdit::IsDefHash | ( | const char * | hashname, |
const char * | classname | ||
) |
return whether or not 'hashname' is the STL default hash for type 'classname'
Definition at line 772 of file TClassEdit.cxx.
Referenced by TClassEdit::TSplitType::ShortType().
bool TClassEdit::IsDefPred | ( | const char * | predname, |
const char * | classname | ||
) |
return whether or not 'predname' is the STL default predicate for type 'classname'
Definition at line 763 of file TClassEdit.cxx.
Referenced by TClassEdit::TSplitType::ShortType().
bool TClassEdit::IsInterpreterDetail | ( | const char * | type | ) |
Return true if the type is one the interpreter details which are only forward declared (ClassInfo_t etc..)
Definition at line 1211 of file TClassEdit.cxx.
Referenced by TClass::Init().
bool TClassEdit::IsStdClass | ( | const char * | type | ) |
return true if the class belongs to the std namespace
Definition at line 1307 of file TClassEdit.cxx.
Referenced by TClassTable::Add(), ROOT::Internal::TTreeProxyGenerator::AddMissingClassAsEnum(), TStreamerInfo::BuildOld(), TClass::BuildRealData(), TMakeProject::GenerateIncludeForTemplate(), TMakeProject::GenerateMissingStreamerInfo(), ROOT::TMetaUtils::IsStdClass(), ROOT::TMetaUtils::IsStdDropDefaultClass(), TBufferJSON::JsonSpecialClass(), THtml::MakeClass(), ROOT::TMetaUtils::WriteAuxFunctions(), and ROOT::TMetaUtils::WriteClassInit().
bool TClassEdit::IsSTLBitset | ( | const char * | type | ) |
Return true is the name is std::bitset<number> or bitset<number>
Definition at line 1229 of file TClassEdit.cxx.
Referenced by TStreamerInfo::BuildOld(), TClass::BuildRealData(), and ROOT::TMetaUtils::WriteClassInit().
ROOT::ESTLType TClassEdit::IsSTLCont | ( | std::string_view | type | ) |
type : type name: vector<list<classA,allocator>,allocator> result: 0 : not stl container code of container 1=vector,2=list,3=deque,4=map 5=multimap,6=set,7=multiset
Definition at line 1267 of file TClassEdit.cxx.
Referenced by TStreamerInfo::BuildCheck(), TClass::BuildRealData(), TClass::CanSplit(), TStreamerInfo::CompareContent(), TStreamerInfo::GenerateHeaderFile(), TMakeProject::GenerateIncludeForTemplate(), TMakeProject::GeneratePostDeclaration(), TCling::GenerateTClass(), TMemberInspector::GenericShowMembers(), TStreamerInfo::GetCheckSum(), TClass::GetCheckSum(), TClass::GetClass(), TClass::GetCollectionProxy(), TClass::Init(), TClassEdit::TSplitType::IsSTLCont(), ROOT::TMetaUtils::IsSTLContainer(), TFile::MakeProject(), BaseSelectionRule::Match(), TClass::PostLoadCheck(), TXMLPlayer::ProduceSTLstreamer(), R__CreateEmulatedElement(), TCling::ReadRootmapFile(), UnderlyingIsSTLCont(), ROOT::TMetaUtils::WriteClassCode(), and ROOT::TMetaUtils::WriteClassInit().
int TClassEdit::IsSTLCont | ( | const char * | type, |
int | testAlloc | ||
) |
type : type name: vector<list<classA,allocator>,allocator> testAlloc: if true, we test allocator, if it is not default result is negative result: 0 : not stl container abs(result): code of container 1=vector,2=list,3=deque,4=map 5=multimap,6=set,7=multiset positive val: we have a vector or list with default allocator to any depth like vector<list<vector<int>>> negative val: STL container other than vector or list, or non default allocator For example: vector<deque<int>> has answer -1
Definition at line 1296 of file TClassEdit.cxx.
bool TClassEdit::IsVectorBool | ( | const char * | name | ) |
Definition at line 1341 of file TClassEdit.cxx.
string TClassEdit::ResolveTypedef | ( | const char * | tname, |
bool | resolveAll = false |
||
) |
Definition at line 1646 of file TClassEdit.cxx.
Referenced by TStructViewer::CountMembers(), TStreamerInfo::GetCheckSum(), TClass::Init(), PyROOT::Utility::MapOperatorName(), Cppyy::ResolveName(), TClassEdit::TSplitType::ShortType(), TStreamerElement::TStreamerElement(), and TClass::~TClass().
string TClassEdit::ShortType | ( | const char * | typeDesc, |
int | mode | ||
) |
Return the absolute type of typeDesc.
E.g.: typeDesc = "class const volatile TNamed**", returns "TNamed**". if (mode&1) remove last "*"s returns "TNamed" if (mode&2) remove default allocators from STL containers if (mode&4) remove all allocators from STL containers if (mode&8) return inner class of stl container. list<innerClass> if (mode&16) return deapest class of stl container. vector<list<deapest>> if (mode&kDropAllDefault) remove default template arguments
Definition at line 1194 of file TClassEdit.cxx.
Referenced by TStreamerInfo::BuildOld(), BuildScopeProxyDict(), ROOT::Internal::TTreeProxyGenerator::CheckForMissingClass(), TStreamerInfo::CompareContent(), PyROOT::CreateConverter(), PyROOT::CreateExecutor(), TMakeProject::GenerateIncludeForTemplate(), TMakeProject::GenerateMissingStreamerInfos(), TStreamerInfo::GetCheckSum(), TClass::GetCheckSum(), TStreamerBase::GetInclude(), TStreamerObject::GetInclude(), TStreamerObjectAny::GetInclude(), TStreamerObjectPointer::GetInclude(), TStreamerObjectAnyPointer::GetInclude(), TClass::Init(), Cppyy::IsComplete(), ROOT::Internal::TBranchProxyClassDescriptor::NameToSymbol(), R__CreateEmulatedElement(), TClassEdit::TSplitType::ShortType(), THtml::ShortType(), TStreamerSTL::TStreamerSTL(), and TGenCollectionProxy::Value::Value().
int TClassEdit::STLArgs | ( | int | kind | ) |
Return number of arguments for STL container before allocator.
Definition at line 511 of file TClassEdit.cxx.
Referenced by TClassEdit::TSplitType::IsSTLCont(), and TClassEdit::TSplitType::ShortType().
ROOT::ESTLType TClassEdit::STLKind | ( | std::string_view | type | ) |
Converts STL container name to number.
vector -> 1, etc.. If len is greater than 0, only look at that many characters in the string.
Definition at line 467 of file TClassEdit.cxx.
Referenced by TMakeProject::GenerateIncludeForTemplate(), TMakeProject::GeneratePostDeclaration(), ROOT::Internal::RStl::GenerateTClassFor(), TEmulatedCollectionProxy::InitializeEx(), TGenCollectionProxy::InitializeEx(), TClassEdit::TSplitType::IsInSTL(), TClassEdit::TSplitType::IsSTLCont(), IsSTLCont(), IsVectorBool(), TFile::MakeProject(), TClassEdit::TSplitType::ShortType(), TMakeProject::UpdateAssociativeToVector(), and ROOT::TMetaUtils::WriteClassInit().
ROOT::ESTLType TClassEdit::UnderlyingIsSTLCont | ( | std::string_view | type | ) |
Return the type of STL collection, if any, that is the underlying type of the given type.
Namely return the value of IsSTLCont after stripping pointer, reference and constness from the type. UnderlyingIsSTLCont("vector<int>*") == IsSTLCont("vector<int>") See TClassEdit::IsSTLCont
type : type name: vector<list<classA,allocator>,allocator>* result: 0 : not stl container code of container 1=vector,2=list,3=deque,4=map 5=multimap,6=set,7=multiset
Definition at line 1248 of file TClassEdit.cxx.
Referenced by TBranchElement::Init(), and TDataMember::IsSTLContainer().