Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
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 
7 class TClass;
8 
9 #include "TObject.h"
10 #include "TObjArray.h"
11 #include "Rtypes.h"
12 #include "TString.h"
13 #include "TClassRef.h"
14 
15 namespace ROOT {
16 
17 class TSchemaRule;
18 
19 namespace 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 
34  enum EConsistencyCheck {
35  kNoCheck = 0,
36  kCheckAll = 1,
37  kCheckConflict = 2
38  };
39 
40  TSchemaRuleSet();
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;
50  TClass* GetClass();
51  UInt_t GetClassCheckSum() 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 
63  ClassDef( TSchemaRuleSet, 1 )
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