10 #include "KVLockfile.h"
12 #include "Riostream.h"
43 if (locked) Release();
60 have_exec = FindExecutable(fLockfile);
62 Warning(KV__ERROR(init),
"Unix 'lockfile' command not found on system. You should install it.");
79 TString spath(path), backup(exec), backup2(exec), expandexec(exec);
80 gSystem->ExpandPathName(expandexec);
81 if (gSystem->IsAbsoluteFileName(expandexec.Data())) {
84 if (!gSystem->AccessPathName(expandexec)) {
90 if (!expandexec.EndsWith(
".exe")) {
92 if (!gSystem->AccessPathName(expandexec)) {
101 gSystem->ExpandPathName(spath);
102 if (gSystem->FindFile(spath.Data(), exec))
104 if (!backup.EndsWith(
".exe")) {
106 if (gSystem->FindFile(spath.Data(), backup)) {
126 cmd.Form(
"%s -%d -r%d -l%d -s%d %s.lock",
135 cmd.Form(
"%s -%d -r%d -s%d %s.lock",
156 return gSystem->Exec(cmd.Data());
172 cout <<
"<Error in KVLockfile::Lock: file " << fFile.Data() <<
" is already locked. Release it first>" << endl;
175 if (strcmp(filename,
"")) fFile = filename;
183 cout <<
"<Error in KVLockfile::Lock: can't get a lock for file " << fFile.Data() <<
">" << endl;
202 cout <<
"<Error in KVLockfile::Release: file is not locked. Lock it first>" << endl;
207 return (gSystem->Unlink(Form(
"%s.lock", fFile.Data())) != -1);
Interface to (Linux) system lockfile command.
Bool_t FindExecutable(TString &exec, const Char_t *path="$(PATH)")
copied from KVBase to avoid circular dependency
void writecmd()
Writes lockfile command with current values of parameters.
Bool_t Lock(const Char_t *filename="")