Logo ROOT   6.08/07
Reference Guide
TClassTable.h
Go to the documentation of this file.
1 // @(#)root/cont:$Id$
2 // Author: Fons Rademakers 11/08/95
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 #ifndef ROOT_TClassTable
13 #define ROOT_TClassTable
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TClassTable //
19 // //
20 // This class registers for all classes their name, id and dictionary //
21 // function in a hash table. //
22 // //
23 //////////////////////////////////////////////////////////////////////////
24 
25 #ifndef ROOT_TObject
26 #include "TObject.h"
27 #endif
28 #ifndef ROOT_TString
29 #include "TString.h"
30 #endif
31 
32 class TProtoClass;
33 
34 namespace ROOT {
35  class TClassAlt;
36  class TClassRec;
37  class TMapTypeToClassRec;
38 }
39 
40 class TClassTable : public TObject {
41 
42 friend void ROOT::ResetClassVersion(TClass*, const char*, Short_t);
43 friend class TROOT;
44 
45 private:
46  typedef ROOT::TMapTypeToClassRec IdMap_t;
47 
48  static ROOT::TClassAlt **fgAlternate;
49  static ROOT::TClassRec **fgTable;
50  static ROOT::TClassRec **fgSortedTable;
51  static IdMap_t *fgIdMap;
52  static UInt_t fgSize;
53  static UInt_t fgTally;
54  static Bool_t fgSorted;
55  static UInt_t fgCursor;
56 
57  TClassTable();
58 
59  static ROOT::TClassRec *FindElementImpl(const char *cname, Bool_t insert);
60  static ROOT::TClassRec *FindElement(const char *cname, Bool_t insert=kFALSE);
61  static void SortTable();
62 
63 public:
64  // bits that can be set in pragmabits
65  enum {
66  kNoStreamer = 0x01, kNoInputOperator = 0x02, kAutoStreamer = 0x04,
67  kHasVersion = 0x08, kHasCustomStreamerMember = 0x10
68  };
69 
70  ~TClassTable();
71 
72  static void Add(const char *cname, Version_t id,
73  const std::type_info &info, DictFuncPtr_t dict,
74  Int_t pragmabits);
75  static void Add(TProtoClass *protoClass);
76  static void AddAlternate(const char *normname, const char *alternate);
77  static char *At(UInt_t index);
78  int Classes();
79  static Bool_t Check(const char *cname, std::string &normname);
80  static Version_t GetID(const char *cname);
81  static Int_t GetPragmaBits(const char *name);
82  static DictFuncPtr_t GetDict(const char *cname);
83  static DictFuncPtr_t GetDict(const std::type_info& info);
84  static DictFuncPtr_t GetDictNorm(const char *cname);
85  static TProtoClass *GetProto(const char *cname);
86  static TProtoClass *GetProtoNorm(const char *cname);
87  static void Init();
88  static char *Next();
89  void Print(Option_t *option="") const;
90  static void PrintTable();
91  static void Remove(const char *cname);
92  static void Terminate();
93 
94  ClassDef(TClassTable,0) //Table of known classes
95 };
96 
98 
99 namespace ROOT {
100  extern void AddClass(const char *cname, Version_t id, DictFuncPtr_t dict,
101  Int_t pragmabits);
102  extern void RemoveClass(const char *cname);
103 }
104 
105 #endif
void AddClass(const char *cname, Version_t id, const std::type_info &info, DictFuncPtr_t dict, Int_t pragmabits)
Global function called by the ctor of a class's init class (see the ClassImp macro).
static ROOT::TClassRec ** fgSortedTable
Definition: TClassTable.h:50
ROOT top level object description.
Definition: TROOT.h:104
This namespace contains pre-defined functions to be used in conjuction with TExecutor::Map and TExecu...
Definition: StringConv.hxx:21
short Version_t
Definition: RtypesCore.h:61
R__EXTERN TClassTable * gClassTable
Definition: TClassTable.h:97
const char Option_t
Definition: RtypesCore.h:62
Persistent version of a TClass.
Definition: TProtoClass.h:37
ROOT::TMapTypeToClassRec IdMap_t
Definition: TClassTable.h:46
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kFALSE
Definition: Rtypes.h:92
This class registers for all classes their name, id and dictionary function in a hash table...
Definition: TClassTable.h:40
#define ClassDef(name, id)
Definition: Rtypes.h:254
void Init(TClassEdit::TInterpreterLookupHelper *helper)
Definition: TClassEdit.cxx:119
void Add(THist< DIMENSIONS, PRECISION_TO, STAT_TO... > &to, THist< DIMENSIONS, PRECISION_FROM, STAT_FROM... > &from)
Add two histograms.
Definition: THist.hxx:327
static ROOT::TClassRec ** fgTable
Definition: TClassTable.h:49
TClass *(* DictFuncPtr_t)()
Definition: Rtypes.h:75
void ResetClassVersion(TClass *, const char *, Short_t)
Global function to update the version number.
void RemoveClass(const char *cname)
Global function called by the dtor of a class&#39;s init class (see the ClassImp macro).
static UInt_t fgTally
Definition: TClassTable.h:53
unsigned int UInt_t
Definition: RtypesCore.h:42
short Short_t
Definition: RtypesCore.h:35
The ROOT global object gROOT contains a list of all defined classes.
Definition: TClass.h:81
static UInt_t fgSize
Definition: TClassTable.h:52
static IdMap_t * fgIdMap
Definition: TClassTable.h:51
virtual TObject * Remove(TObject *)
Remove an object from the in-memory list.
void Print(std::ostream &os, const OptionType &opt)
static UInt_t fgCursor
Definition: TClassTable.h:55
Mother of all ROOT objects.
Definition: TObject.h:37
#define R__EXTERN
Definition: DllImport.h:27
static Bool_t fgSorted
Definition: TClassTable.h:54
char name[80]
Definition: TGX11.cxx:109
static ROOT::TClassAlt ** fgAlternate
Definition: TClassTable.h:48