Logo ROOT   6.14/05
Reference Guide
TDataSetManager.h
Go to the documentation of this file.
1 // @(#)root/proof:$Id$
2 // Author: Jan Fiete Grosse-Oetringhaus, 08.08.07
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_TDataSetManager
13 #define ROOT_TDataSetManager
14 
15 //////////////////////////////////////////////////////////////////////////
16 // //
17 // TDataSetManager //
18 // //
19 // This class contains functions to handle datasets in PROOF //
20 // It is the layer between TProofServ and the file system that stores //
21 // the datasets. //
22 // //
23 //////////////////////////////////////////////////////////////////////////
24 
25 #include "TObject.h"
26 #include "TString.h"
27 #include "TMap.h"
28 #include "TUri.h"
29 
30 
31 class TFileCollection;
32 class TFileInfo;
33 class TMD5;
34 class TUrl;
36 class TFileStager;
37 
38 class TDataSetManager : public TObject {
39 
40 private:
41  TDataSetManager(const TDataSetManager&); // not implemented
42  TDataSetManager& operator=(const TDataSetManager&); // not implemented
43 
44 protected:
45  TString fGroup; // Group to which the owner of this session belongs
46  TString fUser; // Owner of the session
47  TString fCommonUser; // User that stores the COMMON datasets
48  TString fCommonGroup; // Group that stores the COMMON datasets
49 
50  TUri fBase; // Base URI used to parse dataset names
51 
52  TMap fGroupQuota; // Group quotas (read from config file)
53  TMap fGroupUsed; // <group> --> <used bytes> (TParameter)
54  TMap fUserUsed; // <group> --> <map of users> --> <value>
55 
56  Long64_t fAvgFileSize; // Average file size to be used to estimate the dataset size (in MB)
57 
58  Int_t fNTouchedFiles; // Number of files touched in the last ScanDataSet operation
59  Int_t fNOpenedFiles; // Number of files opened in the last ScanDataSet operation
60  Int_t fNDisappearedFiles; // Number of files disappared in the last ScanDataSet operation
61 
62  TString fGroupConfigFile; // Path to the group config file
63  Long_t fMTimeGroupConfig; // Last modification of the group config file
64 
65  static TString fgCommonDataSetTag; // Name for common datasets, default: COMMON
66 
67  static TList *fgDataSetSrvMaps; // List of TPair(TRegexp, TObjString) for mapping server coordinates
68  // for dataset files (init from DataSet.SrvMap)
69 
70  virtual TMap *GetGroupUsedMap() { return &fGroupUsed; }
71  virtual TMap *GetUserUsedMap() { return &fUserUsed; }
73  Int_t GetNOpenedFiles() const { return fNOpenedFiles; }
75  void GetQuota(const char *group, const char *user, const char *dsName, TFileCollection *dataset);
76  void PrintDataSet(TFileCollection *fc, Int_t popt = 0);
77  void PrintUsedSpace();
78  Bool_t ReadGroupConfig(const char *cf = 0);
79  virtual void UpdateUsedSpace();
80 
81  static Long64_t ToBytes(const char *size = 0);
82 
83 public:
85  kCheckQuota = BIT(15), // quota checking enabled
86  kAllowRegister = BIT(16), // allow registration of a new dataset
87  kAllowVerify = BIT(17), // allow verification of a dataset (requires registration permit)
88  kTrustInfo = BIT(18), // during registration, trust the available information provided by the user
89  kIsSandbox = BIT(19), // dataset dir is in the user sandbox (simplified naming)
90  kUseCache = BIT(20), // force the usage of cache
91  kDoNotUseCache = BIT(21) // disable the cache
92  };
93 
94  enum EDataSetWorkOpts { // General (bits 1-8)
95  kDebug = 0x1, kShowDefault = 0x2, kPrint = 0x4, kExport = 0x8,
96  kQuotaUpdate = 0x10, kSetDefaultTree = 0x20, kForceScan = 0x40,
98  // File-based specific (bits 9-16)
99  kReopen = 0x100, kTouch = 0x200, kMaxFiles = 0x400, kReadShort = 0x800,
100  kFileMustExist = 0x1000,
101  kNoAction = 0x2000, kLocateOnly = 0x4000, kStageOnly = 0x8000,
102  // Auxilliary bits (bits 17-)
103  kNoCacheUpdate = 0x10000, kRefreshLs = 0x20000, kList = 0x40000,
104  kAllFiles = 0x80000, kStagedFiles = 0x100000, kNoStagedCheck = 0x200000
105  };
106 
107  TDataSetManager(const char *group = 0, const char *user = 0, const char *options = 0);
108  virtual ~TDataSetManager();
109 
110  virtual Int_t ClearCache(const char *uri);
111  virtual Long64_t GetAvgFileSize() const { return fAvgFileSize; }
112  virtual TFileCollection *GetDataSet(const char *uri, const char *server = 0);
113  virtual TMap *GetDataSets(const char *uri, UInt_t /*option*/ = TDataSetManager::kExport);
114  virtual TMap *GetSubDataSets(const char *uri, const char *excludeservers);
115 
116  virtual Long64_t GetGroupQuota(const char *group);
117  virtual TMap *GetGroupQuotaMap() { return &fGroupQuota; }
118  virtual Long64_t GetGroupUsed(const char *group);
119  virtual Bool_t ExistsDataSet(const char *uri);
120  virtual void MonitorUsedSpace(TVirtualMonitoringWriter *monitoring);
121  virtual Int_t NotifyUpdate(const char *group = 0, const char *user = 0,
122  const char *dspath = 0, Long_t mtime = 0, const char *checksum = 0);
123  Bool_t ParseUri(const char *uri, TString *dsGroup = 0, TString *dsUser = 0,
124  TString *dsName = 0, TString *dsTree = 0,
125  Bool_t onlyCurrent = kFALSE, Bool_t wildcards = kFALSE);
126  virtual void ParseInitOpts(const char *opts);
127  virtual Bool_t RemoveDataSet(const char *uri);
128  virtual Int_t RegisterDataSet(const char *uri, TFileCollection *dataSet, const char *opt);
129  Int_t ScanDataSet(const char *uri, const char *opt);
130  virtual Int_t ScanDataSet(const char *uri, UInt_t option = kReopen | kDebug);
131  void SetScanCounters(Int_t t = -1, Int_t o = -1, Int_t d = -1);
132  virtual Int_t ShowCache(const char *uri);
133  virtual void ShowQuota(const char *opt);
134 
135  virtual void ShowDataSets(const char *uri = "*", const char *opt = "");
136 
137  static TString CreateUri(const char *dsGroup = 0, const char *dsUser = 0,
138  const char *dsName = 0, const char *dsTree = 0);
139  static Bool_t CheckDataSetSrvMaps(TUrl *furl, TString &fn, TList *srvmaplist = 0);
140  static TList *GetDataSetSrvMaps();
141  static TList *ParseDataSetSrvMaps(const TString &srvmaps);
142  static Int_t ScanDataSet(TFileCollection *dataset, Int_t fopt, Int_t sopt = 0, Int_t ropt = 0,
143  Bool_t dbg = kFALSE,
144  Int_t *touched = 0, Int_t *opened = 0, Int_t *disappeared = 0,
145  TList *flist = 0, Long64_t avgsz = -1, const char *mss = 0,
146  Int_t maxfiles = -1, const char *stageopts = 0);
147  static Bool_t CheckStagedStatus(TFileInfo *fileInfo, Int_t fopt, Int_t maxfiles,
148  Int_t newstagedfiles, TFileStager* stager, Bool_t createStager,
149  Bool_t dbg, Bool_t &changed, Bool_t& touched,
150  Bool_t& disappeared);
151  static void ProcessFile(TFileInfo *fileInfo, Int_t sopt, Bool_t checkstg, Bool_t doall,
152  TFileStager* stager, Bool_t createStager, const char* stageopts,
153  Bool_t dbg, Bool_t &changed, Bool_t& opened);
154 
155  static Int_t ScanFile(TFileInfo *fileinfo, Bool_t notify);
156  static Int_t FillMetaData(TFileInfo *fi, TDirectory *d, const char *rdir = "/");
157 
158  ClassDef(TDataSetManager, 0) // Abstract data set manager class
159 };
160 
161 #endif
static Bool_t CheckDataSetSrvMaps(TUrl *furl, TString &fn, TList *srvmaplist=0)
Check if the dataset server mappings apply to the url defined by &#39;furl&#39;.
virtual Int_t ClearCache(const char *uri)
Clear cached information matching uri.
long long Long64_t
Definition: RtypesCore.h:69
static TList * fgDataSetSrvMaps
virtual void ParseInitOpts(const char *opts)
Parse the opts string and set the init bits accordingly Available options: Cq: set kCheckQuota Ar: se...
TString fGroupConfigFile
TDataSetManager & operator=(const TDataSetManager &)
This class represents a WWW compatible URL.
Definition: TUrl.h:35
Int_t GetNTouchedFiles() const
#define BIT(n)
Definition: Rtypes.h:78
virtual Bool_t RemoveDataSet(const char *uri)
Removes the indicated dataset.
virtual TFileCollection * GetDataSet(const char *uri, const char *server=0)
Utility function used in various methods for user dataset upload.
void SetScanCounters(Int_t t=-1, Int_t o=-1, Int_t d=-1)
Update scan counters.
virtual ~TDataSetManager()
Destructor.
Basic string class.
Definition: TString.h:131
static Long64_t ToBytes(const char *size=0)
Static utility function to gt the number of bytes from a string representation in the form "<digit><s...
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void ShowDataSets(const char *uri="*", const char *opt="")
Prints formatted information about the dataset &#39;uri&#39;.
This class represents a RFC 3986 compatible URI.
Definition: TUri.h:35
static TString CreateUri(const char *dsGroup=0, const char *dsUser=0, const char *dsName=0, const char *dsTree=0)
Creates URI for the dataset manger in the form &#39;[[/dsGroup/]dsUser/]dsName[#dsObjPath]&#39;, The optional dsObjPath can be in the form [subdir/]objname]&#39;.
virtual TMap * GetGroupQuotaMap()
static void ProcessFile(TFileInfo *fileInfo, Int_t sopt, Bool_t checkstg, Bool_t doall, TFileStager *stager, Bool_t createStager, const char *stageopts, Bool_t dbg, Bool_t &changed, Bool_t &opened)
Locate, stage, or fully validate file "fileInfo".
virtual void MonitorUsedSpace(TVirtualMonitoringWriter *monitoring)
Log info to the monitoring server.
static struct mg_connection * fc(struct mg_context *ctx)
Definition: civetweb.c:3352
TDataSetManager(const TDataSetManager &)
#define ClassDef(name, id)
Definition: Rtypes.h:320
Int_t GetNDisapparedFiles() const
This code implements the MD5 message-digest algorithm.
Definition: TMD5.h:44
virtual void ShowQuota(const char *opt)
Display quota information.
virtual Int_t RegisterDataSet(const char *uri, TFileCollection *dataSet, const char *opt)
Register a dataset, perfoming quota checkings, if needed.
Long_t fMTimeGroupConfig
virtual Long64_t GetGroupQuota(const char *group)
returns the quota a group is allowed to have
static TList * GetDataSetSrvMaps()
Static getter for server mapping list.
virtual TMap * GetGroupUsedMap()
static Bool_t CheckStagedStatus(TFileInfo *fileInfo, Int_t fopt, Int_t maxfiles, Int_t newstagedfiles, TFileStager *stager, Bool_t createStager, Bool_t dbg, Bool_t &changed, Bool_t &touched, Bool_t &disappeared)
Check stage status of the file described by "fileInfo".
A doubly linked list.
Definition: TList.h:44
void PrintUsedSpace()
Prints the quota.
virtual void UpdateUsedSpace()
updates the used space maps
Int_t GetNOpenedFiles() const
virtual TMap * GetSubDataSets(const char *uri, const char *excludeservers)
Partition dataset &#39;ds&#39; accordingly to the servers.
static Int_t FillMetaData(TFileInfo *fi, TDirectory *d, const char *rdir="/")
Navigate the directory &#39;d&#39; (and its subdirectories) looking for TTree objects.
Bool_t ReadGroupConfig(const char *cf=0)
Read group config file &#39;cf&#39;.
virtual TMap * GetUserUsedMap()
virtual Bool_t ExistsDataSet(const char *uri)
Checks if the indicated dataset exits.
Bool_t ParseUri(const char *uri, TString *dsGroup=0, TString *dsUser=0, TString *dsName=0, TString *dsTree=0, Bool_t onlyCurrent=kFALSE, Bool_t wildcards=kFALSE)
Parses a (relative) URI that describes a DataSet on the cluster.
virtual Int_t ShowCache(const char *uri)
Show cached information matching uri.
unsigned int UInt_t
Definition: RtypesCore.h:42
Int_t ScanDataSet(const char *uri, const char *opt)
Scans the dataset indicated by &#39;uri&#39; following the &#39;opts&#39; directives.
Long64_t fAvgFileSize
static Int_t ScanFile(TFileInfo *fileinfo, Bool_t notify)
Open the file described by &#39;fileinfo&#39; to extract the relevant meta-information.
const Bool_t kFALSE
Definition: RtypesCore.h:88
void GetQuota(const char *group, const char *user, const char *dsName, TFileCollection *dataset)
Gets quota information from this dataset.
long Long_t
Definition: RtypesCore.h:50
#define d(i)
Definition: RSha256.hxx:102
static TString fgCommonDataSetTag
Describe directory structure in memory.
Definition: TDirectory.h:34
TMap implements an associative array of (key,value) pairs using a THashTable for efficient retrieval ...
Definition: TMap.h:40
virtual Int_t NotifyUpdate(const char *group=0, const char *user=0, const char *dspath=0, Long_t mtime=0, const char *checksum=0)
Save into the <datasetdir>/dataset.list file the name of the last updated or created or modified data...
Mother of all ROOT objects.
Definition: TObject.h:37
Class that contains a list of TFileInfo&#39;s and accumulated meta data information about its entries...
void PrintDataSet(TFileCollection *fc, Int_t popt=0)
Formatted printout of the content of TFileCollection &#39;fc&#39;.
virtual Long64_t GetAvgFileSize() const
static TList * ParseDataSetSrvMaps(const TString &srvmaps)
Create a server mapping list from the content of &#39;srvmaps&#39; Return the list (owned by the caller) or 0...
Class describing a generic file including meta information.
Definition: TFileInfo.h:38
virtual Long64_t GetGroupUsed(const char *group)
Returns the used space of that group.
virtual TMap * GetDataSets(const char *uri, UInt_t=TDataSetManager::kExport)
Returns all datasets for the <group> and <user> specified by <uri>.