10 #include "KVDataRepository.h"
11 #include "KVDataSetManager.h"
15 #include "KVDataSet.h"
16 #include "Riostream.h"
17 #include "TObjString.h"
19 #include "TOrdCollection.h"
21 #include "TPluginManager.h"
27 #include <TMethodCall.h>
31 #define CHMODE(u,g,o) ((u << 6) + (g << 3) + o)
52 gDataRepository =
this;
53 gDataSetManager = fDSM;
81 gEnv->GetValue(Form(
"%s.DataRepository.RootDir", GetName()),
"");
82 if (fLocalrootdir ==
"") {
83 Error(
"Init",
"Top-level directory for repository %s is not defined. Set %s.DataRepository.RootDir variable in .kvrootrc",
84 GetName(), GetName());
88 gEnv->GetValue(Form(
"%s.DataRepository.AccessProtocol", GetName()),
91 gEnv->GetValue(Form(
"%s.DataRepository.ReadProtocol", GetName()),
96 fCanWrite = (Bool_t)gEnv->GetValue(Form(
"%s.DataRepository.CanWrite", GetName()), (Int_t)(!IsRemote()));
99 gEnv->GetValue(Form(
"%s.DataRepository.XRDServer", GetName()),
"");
101 gEnv->GetValue(Form(
"%s.DataRepository.XRDRootDir", GetName()),
"");
103 fXRDtunnel = (fXRDtunPort = (Int_t)gEnv->GetValue(Form(
"%s.DataRepository.XRDTunnel.port", GetName()), 0));
109 gEnv->GetValue(Form(
"%s.DataRepository.RFIOServer", GetName()),
"");
111 gEnv->GetValue(Form(
"%s.DataRepository.RFIORootDir", GetName()),
116 GetValue(Form(
"%s.DataRepository.FileTransfer.type", GetName()),
118 if (fTransfertype.Contains(
"bbftp")) {
119 fTransferExec = fTransfertype;
120 fTransfertype =
"bbftp";
122 Error(
"Init",
"Executable for bbftp client not found. Check %s.DataRepository.FileTransfer.type",
126 else if (fTransfertype.Contains(
"sftp")) {
127 fTransferExec = fTransfertype;
128 fTransfertype =
"sftp";
133 else if (fTransfertype.Contains(
"root")) {
134 fTransferExec =
"root";
135 fTransfertype =
"xrd";
136 if (!fXRDtunnel) fTransferExec =
"";
140 GetValue(Form(
"%s.DataRepository.FileTransfer.server", GetName()),
142 fTransferuser = gEnv->GetValue(Form(
"%s.DataRepository.FileTransfer.user", GetName()),
"");
143 if (fTransferuser ==
"") {
144 UserGroup_t* user = gSystem->GetUserInfo();
145 fTransferuser = user->fUser;
148 SetFullPath(fAccessroot, fAccessprotocol.Data());
149 SetFullPath(fReadroot, fReadprotocol.Data());
154 fDSM = NewDataSetManager();
157 return fDSM->Init(
this);
169 Info(
"Print",
"configuration of repository is as follows - ");
170 cout <<
"\tname = " << GetName() << endl;
171 cout <<
"\tRootDir = " << fLocalrootdir.Data() << endl;
172 cout <<
"\tAccessProtocol = " << fAccessprotocol.Data() << endl;
173 cout <<
"\tAccessRootDir = " << fAccessroot.Data() << endl;
174 cout <<
"\tReadProtocol = " << fReadprotocol.Data() << endl;
175 cout <<
"\tReadRootDir = " << fReadroot.Data() << endl;
176 cout <<
"\tCanWrite = " << fCanWrite << endl;
177 cout <<
"\tXRDServer = " << fXrootdserver.Data() << endl;
178 cout <<
"\tXRDRootDir = " << fXrootdrootdir.Data() << endl;
180 cout <<
"\tXRDTunnel.host = " << fXRDtunHost.Data() << endl;
181 cout <<
"\tXRDTunnel.port = " << fXRDtunPort << endl;
182 cout <<
"\tXRDTunnel.user = " << fXRDtunUser.Data() << endl;
183 cout <<
"\tXRDTunnel.retry = " << fXRDtunRetry << endl;
185 cout <<
"\tRFIOServer = " << fRfioserver.Data() << endl;
186 cout <<
"\tRFIORootDir = " << fRfiorootdir.Data() << endl;
187 cout <<
"\tTransferType = " << fTransfertype.Data() << endl;
188 cout <<
"\tTransferServer = " << fTransferserver.Data() << endl;
189 cout <<
"\tTransferUser = " << fTransferuser.Data() << endl;
213 KVDataRepository::~KVDataRepository()
222 SafeDelete(fHelpers);
239 TString _dirname, tmp;
240 AssignAndDelete(tmp, gSystem->ConcatFileName(fAccessroot.Data(), dir));
242 AssignAndDelete(_dirname,
243 gSystem->ConcatFileName(tmp.Data(), subdir));
247 gSystem->ExpandPathName(_dirname);
249 return (!gSystem->AccessPathName(_dirname.Data()));
270 TString tmp(protocol);
272 path = fLocalrootdir;
273 else if (tmp ==
"root")
274 path.Form(
"root://%s/%s", fXrootdserver.Data(),
275 fXrootdrootdir.Data());
276 else if (tmp ==
"rfio")
277 path.Form(
"rfio:%s:%s", fRfioserver.Data(), fRfiorootdir.Data());
279 Warning(
"SetFullPath",
280 "Unknown protocol in call to SetFullPath : %s", protocol);
296 const Char_t* datatype,
297 const Char_t* runfile,
309 AssignAndDelete(path,
311 AssignAndDelete(tmp, gSystem->ConcatFileName(path.Data(), dataset->
GetDataTypeSubdir(datatype)));
312 AssignAndDelete(path, gSystem->ConcatFileName(tmp.Data(), runfile));
313 return !gSystem->GetPathInfo(path.Data(), fs);
328 const Char_t* datatype,
329 const Char_t* runfile)
339 AssignAndDelete(path,
341 AssignAndDelete(tmp, gSystem->ConcatFileName(path.Data(), dataset->
GetDataTypeSubdir(datatype)));
342 AssignAndDelete(path, gSystem->ConcatFileName(tmp.Data(), runfile));
343 return !gSystem->AccessPathName(path.Data());
388 TString read_proto = GetReadProtocol(dataset->GetName(), datatype);
389 if (read_proto ==
"none") {
390 Error(
"GetFullPathToOpenFile",
"Datatype \"%s\" can not be read from the repository \"%s\"",
391 datatype, GetName());
396 if (read_proto != fReadprotocol) {
397 SetFullPath(read_root, read_proto.Data());
400 read_root = fReadroot;
403 AssignAndDelete(path,
404 gSystem->ConcatFileName(read_root.Data(),
406 AssignAndDelete(tmp, gSystem->ConcatFileName(path.Data(), dataset->
GetDataTypeSubdir(datatype)));
407 AssignAndDelete(path, gSystem->ConcatFileName(tmp.Data(), runfile));
435 AssignAndDelete(path,
436 gSystem->ConcatFileName(fLocalrootdir.Data(),
438 AssignAndDelete(tmp, gSystem->ConcatFileName(path.Data(), dataset->
GetDataTypeSubdir(datatype)));
439 AssignAndDelete(path, gSystem->ConcatFileName(tmp.Data(), runfile));
459 const Char_t* datatype)
476 (
"%s.DataRepository.ReadProtocol.%s.%s", GetName(),
477 dataset, datatype),
"");
483 (
"%s.DataRepository.ReadProtocol.%s", GetName(), dataset),
490 (
"%s.DataRepository.ReadProtocol.%s", GetName(), datatype),
494 return fReadprotocol;
505 const Char_t* datatype,
506 const Char_t* filename,
507 const Char_t* destination)
512 if (CheckFileStatus(dataset, datatype, filename)) {
514 AssignAndDelete(path,
516 AssignAndDelete(tmp, gSystem->ConcatFileName(path.Data(), dataset->
GetDataTypeSubdir(datatype)));
517 AssignAndDelete(path, gSystem->ConcatFileName(tmp.Data(), filename));
519 CopyFile(path.Data(), destination);
533 const Char_t* datatype,
534 const Char_t* filename)
541 AssignAndDelete(path,
543 AssignAndDelete(tmp, gSystem->ConcatFileName(path.Data(), dataset->
GetDataTypeSubdir(datatype)));
544 AssignAndDelete(path, gSystem->ConcatFileName(tmp.Data(), filename));
547 int status = CopyFile(source, path.Data());
550 Chmod(path.Data(), CHMODE(6, 6, 4));
553 Error(
"CopyFileToRepository",
"Problem copying file %s to repository (%d)",
570 const Char_t* datatype)
580 gSystem->ConcatFileName(fAccessroot.Data(),
582 if (strcmp(datatype,
""))
583 AssignAndDelete(path, gSystem->ConcatFileName(tmp.Data(), dataset->
GetDataTypeSubdir(datatype)));
586 cout <<
"Creating new repository directory: " << path.Data() << endl;
587 gSystem->mkdir(path.Data(), kTRUE);
589 Chmod(path.Data(), CHMODE(7, 7, 5));
608 const Char_t* datatype,
const Char_t* subdir)
622 AssignAndDelete(path,
623 gSystem->ConcatFileName(fAccessroot.Data(),
625 if (strcmp(datatype,
"")) {
626 AssignAndDelete(tmp, gSystem->ConcatFileName(path.Data(), dataset->
GetDataTypeSubdir(datatype)));
628 if (strcmp(subdir,
"")) {
629 AssignAndDelete(tmp, gSystem->ConcatFileName(path.Data(), subdir));
634 void* dirp = gSystem->OpenDirectory(path.Data());
636 Error(
"KVDataRepository::GetDirectoryListing",
"Cannot open %s",
644 TObjString* direntry =
new TObjString(gSystem->GetDirEntry(dirp));
645 while (direntry->GetString() !=
"") {
646 if (direntry->GetString() ==
"." || direntry->GetString() ==
"..") {
651 dirlist->
Add(
new KVBase(direntry->GetString().Data()));
655 direntry =
new TObjString(gSystem->GetDirEntry(dirp));
660 gSystem->FreeDirectory(dirp);
678 const Char_t* datatype,
679 const Char_t* filename)
690 cout <<
"CreateNewFile : " << filename << endl;
700 return new TFile(filename,
"recreate");
705 MakeSubdirectory(dataset, datatype);
707 return new TFile(GetFullPathToOpenFile(dataset, datatype, filename),
747 fCommitFileName = file->GetName();
759 fCommitDataSet = dataset;
760 fCommitDataType = datatype;
763 CreateAllNeededSubdirectories(fCommitDataSet, fCommitDataType);
765 cout << endl <<
"Copying file " << fCommitFileName <<
" to repository"
769 gSystem->ConcatFileName(gSystem->pwd(),
770 fCommitFileName.Data()));
771 CopyFileToRepository(s.Data(), fCommitDataSet,
772 fCommitDataType.Data(), fCommitFileName.Data());
774 gSystem->Unlink(fCommitFileName.Data());
791 const Char_t* datatype,
792 const Char_t* filename, Bool_t confirm)
800 AssignAndDelete(path,
802 AssignAndDelete(tmp, gSystem->ConcatFileName(path.Data(), dataset->
GetDataTypeSubdir(datatype)));
803 AssignAndDelete(path, gSystem->ConcatFileName(tmp.Data(), filename));
805 cout <<
"Deleting file from repository: " << filename << endl;
808 "Are you sure you want to delete this file permanently ? (y/n)"
813 if (!answer.BeginsWith(
"Y")) {
814 cout <<
"File not deleted" << endl;
818 gSystem->Unlink(path.Data());
858 fHelpers =
new TOrdCollection;
862 TUrl url(path, kTRUE);
865 TIter next(fHelpers);
866 while ((helper = (TSystem*) next()))
867 if (HelperIsConsistentWith(helper, path, dirptr))
874 TRegexp re(
"^root.*:");
875 TString pname = path;
876 if (pname.Index(re) != kNPOS) {
878 if ((h = gROOT->GetPluginManager()->FindHandler(
"TSystem", path)) &&
879 h->LoadPlugin() == 0)
880 helper = (TSystem*) h->ExecPlugin(2, path, kFALSE);
882 #ifdef __WITHOUT_TNETSYSTEM_CTOR_BOOL_T
883 helper =
new TNetSystem(path);
885 helper =
new TNetSystem(path, kFALSE);
888 else if (!strcmp(url.GetProtocol(),
"http") &&
889 pname.BeginsWith(
"http")) {
891 if ((h = gROOT->GetPluginManager()->FindHandler(
"TSystem", path)) &&
892 h->LoadPlugin() == 0)
893 helper = (TSystem*) h->ExecPlugin(0);
898 else if ((h = gROOT->GetPluginManager()->FindHandler(
"TSystem", path))) {
899 if (h->LoadPlugin() == -1)
901 helper = (TSystem*) h->ExecPlugin(0);
905 fHelpers->Add(helper);
922 TSystem* helper = FindHelper(file);
923 return (helper ? helper->Chmod(file, mode) : gSystem->Chmod(file, mode));
944 if (!gSystem->AccessPathName(t) && !overwrite)
948 TDirectory* dir_sav = gDirectory;
951 TUrl path2(t, kTRUE);
953 path.SetOptions(
"filetype=raw");
954 TFile* from = TFile::Open(path.GetUrl(),
"READ");
955 if (!from || from->IsZombie()) {
961 path2.SetOptions(
"filetype=raw");
962 TString open_option(
"CREATE");
963 if (overwrite) open_option.Prepend(
"RE");
964 TFile* to = TFile::Open(path2.GetUrl(), open_option.Data());
965 if (!to || to->IsZombie()) {
974 int bufsize = 1024 * 1024;
975 Long64_t filesize = from->GetSize();
976 if (filesize > 0 && filesize < 1024 * 1024) bufsize = 1024;
977 char* buf =
new char[bufsize];
980 Long64_t bytes_read, bytes_wrote, bytes_left, last_bytes_read, last_bytes_wrote;
981 bytes_read = bytes_wrote = bytes_left = last_bytes_read = last_bytes_wrote = 0;
987 while (bufsize && !ret && !from->ReadBuffer(buf, bufsize)) {
989 bytes_read = from->GetBytesRead() - last_bytes_read;
990 last_bytes_read = from->GetBytesRead();
991 ret = (int)to->WriteBuffer(buf, bytes_read);
992 bytes_wrote = to->GetBytesWritten() - last_bytes_wrote;
993 last_bytes_wrote = to->GetBytesWritten();
994 if (bytes_wrote != bytes_read)
997 bytes_left = filesize - last_bytes_read;
998 if (bytes_left < bufsize) bufsize = (int)bytes_left;
1041 Bool_t checkproto = kFALSE;
1043 if (!helper->GetDirPtr()) {
1044 TUrl url(path, kTRUE);
1045 if (!strncmp(url.GetProtocol(), helper->GetName(), strlen(helper->GetName())))
1050 Bool_t checkdir = kFALSE;
1051 if (helper->GetDirPtr() && helper->GetDirPtr() == dirptr)
1054 return (checkproto || checkdir);
1103 fXRDtunHost = gEnv->GetValue(Form(
"%s.DataRepository.XRDTunnel.host", GetName()),
"");
1104 if (fXRDtunHost ==
"") {
1105 Error(
"PrepareXRDTunnel",
"Give host through which to tunnel : %s.DataRepository.XRDTunnel.host",
1107 fXRDtunnel = kFALSE;
1110 fXRDtunUser = gEnv->GetValue(Form(
"%s.DataRepository.XRDTunnel.user", GetName()),
"");
1111 if (fXRDtunUser ==
"") {
1112 UserGroup_t* user = gSystem->GetUserInfo();
1113 fXRDtunUser = user->fUser;
1116 fXRDtunSpec = Form(
"%d:%s", fXRDtunPort, fXrootdserver.Data());
1118 fXRDtunRetry = (Int_t)gEnv->GetValue(Form(
"%s.DataRepository.XRDTunnel.retry", GetName()), 30);
1120 fXrootdserver.Form(
"localhost:%d", fXRDtunPort);
1234 if (fname ==
"")
return nullptr;
1236 return OpenDataSetFile(ds, type, fname, opt);
1311 if (!IsConnected())
return nullptr;
1316 TPluginHandler* ph =
nullptr;
1318 if (IsThisAPlugin(plugin_class, base_class)) {
1321 ph = LoadPlugin(base_class, plugin_class);
1325 base_class = plugin_class;
1329 cl = TClass::GetClass(base_class.Data());
1332 cl = TClass::GetClass(ph->GetClass());
1336 TMethodCall* methcall;
1337 if (strcmp(opt,
"")) {
1339 methcall =
new TMethodCall(cl,
"Open", Form(
"\"%s\", \"%s\"", fname.Data(), opt));
1343 methcall =
new TMethodCall(cl,
"Open", Form(
"\"%s\"", fname.Data()));
1346 if (!methcall->IsValid()) {
1347 if (ph) Error(
"OpenDataSetFile",
"Open method for class %s is not valid", ph->GetClass());
1348 else Error(
"OpenDataSetFile",
"Open method for class %s is not valid", base_class.Data());
1355 methcall->Execute(retval);
1357 return ((TObject*)(retval));
1375 MakeSubdirectory(DataSet);
1378 MakeSubdirectory(DataSet, DataType);
1384 #ifdef __CCIN2P3_RFIO
1386 ClassImp(KVRFIOSystem)
1399 FILE* rfio_fopen(
const char* path,
const char* mode);
1400 int rfio_fclose(FILE* s);
1401 int rfio_fread(
void* buffer,
size_t size,
size_t count, FILE* stream);
1402 int rfio_fwrite(
const void* buffer,
size_t size,
size_t count, FILE* stream);
1403 int rfio_feof(FILE* stream);
1404 int rfio_stat(
const char* path,
struct stat* statbuf);
1405 int rfio_rmdir(
const char* path);
1406 int rfio_unlink(
const char* path);
1407 int rfio_chmod(
const char* path, mode_t mode);
1417 Int_t KVRFIOSystem::Unlink(
const char* path)
1424 if (rfio_stat(url.GetFile(), &finfo) < 0)
1427 if (R_ISDIR(finfo.st_mode))
1428 return rfio_rmdir(url.GetFile());
1430 return rfio_unlink(url.GetFile());
1439 int KVRFIOSystem::Chmod(
const char* file, UInt_t mode)
1444 return rfio_chmod(url.GetFile(), mode);
Handles lists of available runs for different datasets and types of data.
Base class for KaliVeda framework.
static Bool_t FindExecutable(TString &exec, const Char_t *path="$(PATH)")
static TPluginHandler * LoadPlugin(const Char_t *base, const Char_t *uri="0")
Base class for managing repositories of experimental data.
virtual KVDataSetManager * GetDataSetManager() const
Return pointer to data set manager for this repository.
virtual int CopyFileToRepository(const Char_t *source, const KVDataSet *dataset, const Char_t *datatype, const Char_t *filename)
virtual int Chmod(const char *file, UInt_t mode)
virtual TObject * OpenDataSetRunFile(const KVDataSet *ds, const Char_t *type, Int_t run, Option_t *opt="")
virtual void CopyFileFromRepository(const KVDataSet *dataset, const Char_t *datatype, const Char_t *filename, const Char_t *destination)
virtual const Char_t * GetReadProtocol(const Char_t *dataset, const Char_t *datatype)
static KVDataRepository * NewRepository(const Char_t *type)
virtual void Print(Option_t *opt="") const
Print info on repository.
virtual int CopyFile(const char *f, const char *t, Bool_t overwrite=kFALSE)
virtual KVUniqueNameList * GetDirectoryListing(const KVDataSet *dataset, const Char_t *datatype="", const Char_t *subdir="")
virtual Bool_t CheckFileStatus(const KVDataSet *dataset, const Char_t *datatype, const Char_t *runfile)
virtual Bool_t GetFileInfo(const KVDataSet *dataset, const Char_t *datatype, const Char_t *runfile, FileStat_t &fs)
virtual Bool_t CheckSubdirExists(const Char_t *dir, const Char_t *subdir=0)
virtual void PrepareXRDTunnel()
void SetFullPath(TString &path, const Char_t *protocol)
virtual KVAvailableRunsFile * NewAvailableRunsFile(const Char_t *, const KVDataSet *)
void CreateAllNeededSubdirectories(const KVDataSet *DataSet, const Char_t *DataType)
virtual KVDataSetManager * NewDataSetManager()
Create and return pointer to new data set manager.
Bool_t HelperIsConsistentWith(TSystem *helper, const char *path, void *dirptr=0)
TSystem * FindHelper(const char *path, void *dirptr=0)
virtual void CommitFile(TFile *file, const Char_t *datatype, const KVDataSet *dataset)
virtual void DeleteFile(const KVDataSet *dataset, const Char_t *datatype, const Char_t *filename, Bool_t confirm=kTRUE)
virtual TFile * CreateNewFile(const KVDataSet *dataset, const Char_t *datatype, const Char_t *filename)
KVDataRepository()
Default constructor.
virtual const Char_t * GetFullPathToTransferFile(const KVDataSet *dataset, const Char_t *datatype, const Char_t *runfile)
virtual void MakeSubdirectory(const KVDataSet *dataset, const Char_t *datatype="")
virtual const Char_t * GetFullPathToOpenFile(const KVDataSet *dataset, const Char_t *datatype, const Char_t *runfile)
TObject * OpenDataSetFile(const KVDataSet *ds, const Char_t *type, const TString &fname, Option_t *opt="")
Manage all datasets contained in a given data repository.
Manage an experimental dataset corresponding to a given experiment or campaign.
const Char_t * GetDataSetEnv(const Char_t *type, const Char_t *defval="") const
virtual const Char_t * GetDataPathSubdir() const
Returns name of top-level directory in data repository used to store data files for this dataset.
TString GetFullPathToRunfile(const Char_t *type, Int_t run) const
const Char_t * GetDataTypeSubdir(const Char_t *type) const
virtual void SetOwner(Bool_t enable=kTRUE)
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
Optimised list in which named objects can only be placed once.
virtual void Add(TObject *obj)