Logo ROOT  
Reference Guide
TSchemaRuleSet.h
Go to the documentation of this file.
1// @(#)root/core:$Id$
2// author: Lukasz Janyst <ljanyst@cern.ch>
3
4#ifndef ROOT_TSchemaRuleSet
5#define ROOT_TSchemaRuleSet
6
7class TClass;
8
9#include "TObject.h"
10#include "TObjArray.h"
11#include "Rtypes.h"
12#include "TString.h"
13#include "TClassRef.h"
14
15namespace ROOT {
16
17class TSchemaRule;
18
19namespace Detail {
20 class TSchemaRuleSet: public TObject
21 {
22 public:
23
24 class TMatches: public std::vector<const TSchemaRule*>
25 {
26 public:
27 operator bool() { return !empty(); }
28 const TSchemaRule* GetRuleWithSource( const TString& name ) const;
29 const TSchemaRule* GetRuleWithTarget( const TString& name ) const;
30 Bool_t HasRuleWithSource( const TString& name, Bool_t needingAlloc ) const;
31 Bool_t HasRuleWithTarget( const TString& name, Bool_t willset ) const;
32 };
33
38 };
39
41 virtual ~TSchemaRuleSet();
42
43 Bool_t AddRule( TSchemaRule* rule, EConsistencyCheck checkConsistency = kCheckAll, TString *errmsg = 0 );
44 Bool_t AddRules( TSchemaRuleSet* rules, EConsistencyCheck checkConsistency = kCheckAll, TString *errmsg = 0);
45 Bool_t HasRuleWithSourceClass( const TString &source) const;
46 const TMatches FindRules( const TString &source ) const;
47 const TMatches FindRules( const TString &source, Int_t version ) const;
48 const TMatches FindRules( const TString &source, UInt_t checksum ) const;
49 const TMatches FindRules( const TString &source, Int_t version, UInt_t checksum ) const;
52 TString GetClassName() const;
53 Int_t GetClassVersion() const;
54 const TObjArray* GetRules() const;
55 const TObjArray* GetPersistentRules() const;
56 void RemoveRule( TSchemaRule* rule );
57 void RemoveRules( TObjArray* rules );
58 void SetClass( TClass* cls );
59
60 void ls(Option_t *option="") const;
61 void AsString(TString &out) const;
62
64
65 private:
66 TObjArray* fPersistentRules; // Array of the rules that will be embeded in the file
67 TObjArray* fRemainingRules; //! Array of non-persisten rules - just for cleanup purposes - owns the elements
68 TObjArray* fAllRules; //! Array of all rules
69 TClassRef fClass; //! Target class pointer (for consistency checking)
70 TString fClassName; // Target class name
71 Int_t fVersion; // Target class version
72 UInt_t fCheckSum; // Target class checksum
73 };
74
75} // End of Namespace Detail
76} // End of Namespace ROOT
77
78#endif // ROOT_TSchemaRuleSet
const char Option_t
Definition: RtypesCore.h:64
#define ClassDef(name, id)
Definition: Rtypes.h:322
char name[80]
Definition: TGX11.cxx:109
const TSchemaRule * GetRuleWithSource(const TString &name) const
Return the rule that has 'name' as a source.
Bool_t HasRuleWithSource(const TString &name, Bool_t needingAlloc) const
Return true if the set of rules has at least one rule that has the data member named 'name' as a sour...
Bool_t HasRuleWithTarget(const TString &name, Bool_t willset) const
Return true if the set of rules has at least one rule that has the data member named 'name' as a targ...
const TSchemaRule * GetRuleWithTarget(const TString &name) const
Return the rule that has 'name' as a target.
Bool_t AddRules(TSchemaRuleSet *rules, EConsistencyCheck checkConsistency=kCheckAll, TString *errmsg=0)
TClassRef fClass
Array of all rules.
TString fClassName
Target class pointer (for consistency checking)
void RemoveRule(TSchemaRule *rule)
Remove given rule from the set - the rule is not being deleted!
const TMatches FindRules(const TString &source) const
Return all the rules that are about the given 'source' class.
const TObjArray * GetPersistentRules() const
void AsString(TString &out) const
Fill the string 'out' with the string representation of the rule.
void ls(Option_t *option="") const
The ls function lists the contents of a class on stdout.
Bool_t AddRule(TSchemaRule *rule, EConsistencyCheck checkConsistency=kCheckAll, TString *errmsg=0)
The consistency check always fails if the TClass object was not set! if checkConsistency is: kNoCheck...
TObjArray * fAllRules
Array of non-persisten rules - just for cleanup purposes - owns the elements.
void SetClass(TClass *cls)
Set the TClass associated with this rule set.
void RemoveRules(TObjArray *rules)
remove given array of rules from the set - the rules are not being deleted!
const TObjArray * GetRules() const
Bool_t HasRuleWithSourceClass(const TString &source) const
Return True if we have any rule whose source class is 'source'.
virtual ~TSchemaRuleSet()
Destructor.
TSchemaRuleSet()
Default constructor.
TClassRef is used to implement a permanent reference to a TClass object.
Definition: TClassRef.h:28
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition: TClass.h:80
An array of TObjects.
Definition: TObjArray.h:37
Mother of all ROOT objects.
Definition: TObject.h:37
Basic string class.
Definition: TString.h:131
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Definition: StringConv.hxx:21