ROOT  6.06/09
Reference Guide
TSystem.cxx
Go to the documentation of this file.
1 // @(#)root/base:$Id: 8944840ba34631ec28efc779647618db43c0eee5 $
2 // Author: Fons Rademakers 15/09/95
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 /** \class TSystem
13 
14 Abstract base class defining a generic interface to the underlying
15 Operating System.
16 This is not an ABC in the strict sense of the (C++) word. For
17 every member function there is an implementation (often not more
18 than a call to AbstractMethod() which prints a warning saying
19 that the method should be overridden in a derived class), which
20 allows a simple partial implementation for new OS'es.
21 */
22 
23 #ifdef WIN32
24 #include <io.h>
25 #endif
26 #include <stdlib.h>
27 #include <errno.h>
28 #include <algorithm>
29 #include <sys/stat.h>
30 
31 #include "Riostream.h"
32 #include "TSystem.h"
33 #include "TApplication.h"
34 #include "TException.h"
35 #include "TROOT.h"
36 #include "TClass.h"
37 #include "TClassTable.h"
38 #include "TEnv.h"
39 #include "TBrowser.h"
40 #include "TString.h"
41 #include "TOrdCollection.h"
42 #include "TInterpreter.h"
43 #include "TRegexp.h"
44 #include "TTimer.h"
45 #include "TObjString.h"
46 #include "TError.h"
47 #include "TPluginManager.h"
48 #include "TUrl.h"
49 #include "TVirtualMutex.h"
50 #include "compiledata.h"
51 #include "RConfigure.h"
52 
53 const char *gRootDir;
54 const char *gProgName;
55 const char *gProgPath;
56 
57 TSystem *gSystem = 0;
58 TFileHandler *gXDisplay = 0; // Display server event handler, set in TGClient
59 
60 static Int_t *gLibraryVersion = 0; // Set in TVersionCheck, used in Load()
61 static Int_t gLibraryVersionIdx = 0; // Set in TVersionCheck, used in Load()
63 
64 
66 
67 ////////////////////////////////////////////////////////////////////////////////
68 /// Create async event processor timer. Delay is in milliseconds.
69 
71 {
72  gROOT->SetInterrupt(kFALSE);
73  TurnOn();
74 }
75 
76 ////////////////////////////////////////////////////////////////////////////////
77 /// Process events if timer did time out. Returns kTRUE if interrupt
78 /// flag is set (by hitting a key in the canvas or selecting the
79 /// Interrupt menu item in canvas or some other action).
80 
82 {
83  if (fTimeout) {
84  if (gSystem->ProcessEvents()) {
85  Remove();
86  return kTRUE;
87  } else {
88  Reset();
89  return kFALSE;
90  }
91  }
92  return kFALSE;
93 }
94 
95 
96 
98 
100 
101 ////////////////////////////////////////////////////////////////////////////////
102 /// Create a new OS interface.
103 
104 TSystem::TSystem(const char *name, const char *title) : TNamed(name, title), fAclicProperties(0)
105 {
106  if (gSystem && name[0] != '-' && strcmp(name, "Generic"))
107  Error("TSystem", "only one instance of TSystem allowed");
108 
109  fOnExitList = 0;
110  fSignalHandler = 0;
111  fFileHandler = 0;
112  fStdExceptionHandler = 0;
113  fTimers = 0;
114  fCompiled = 0;
115  fHelpers = 0;
116  fInsideNotify = kFALSE;
117  fBeepDuration = 0;
118  fBeepFreq = 0;
119  fReadmask = 0;
120  fWritemask = 0;
121  fReadready = 0;
122  fWriteready = 0;
123  fSignals = 0;
124  fDone = kFALSE;
125  fAclicMode = kDefault;
126  fInControl = kFALSE;
127  fLevel = 0;
128  fMaxrfd = -1;
129  fMaxwfd = -1;
130  fNfd = 0;
131  fSigcnt = 0;
132 
133  if (!gLibraryVersion) {
134  gLibraryVersion = new Int_t [gLibraryVersionMax];
135  memset(gLibraryVersion, 0, gLibraryVersionMax*sizeof(Int_t));
136  }
137 }
138 
139 ////////////////////////////////////////////////////////////////////////////////
140 /// Delete the OS interface.
141 
143 {
144  if (fOnExitList) {
145  fOnExitList->Delete();
147  }
148 
149  if (fSignalHandler) {
152  }
153 
154  if (fFileHandler) {
155  fFileHandler->Delete();
157  }
158 
159  if (fStdExceptionHandler) {
162  }
163 
164  if (fTimers) {
165  fTimers->Delete();
167  }
168 
169  if (fCompiled) {
170  fCompiled->Delete();
172  }
173 
174  if (fHelpers) {
175  fHelpers->Delete();
177  }
178 
179  if (gSystem == this)
180  gSystem = 0;
181 }
182 
183 ////////////////////////////////////////////////////////////////////////////////
184 /// Initialize the OS interface.
185 
187 {
188  fNfd = 0;
189  fMaxrfd = -1;
190  fMaxwfd = -1;
191 
192  fSigcnt = 0;
193  fLevel = 0;
194 
198  fTimers = new TOrdCollection;
199 
200  fBuildArch = BUILD_ARCH;
201  fBuildCompiler = COMPILER;
202  fBuildCompilerVersion = COMPILERVERS;
203  fBuildNode = BUILD_NODE;
204  fFlagsDebug = CXXDEBUG;
205  fFlagsOpt = CXXOPT;
206  fIncludePath = INCLUDEPATH;
207  fLinkedLibs = LINKEDLIBS;
208  fSoExt = SOEXT;
209  fObjExt = OBJEXT;
211  fMakeSharedLib = MAKESHAREDLIB;
212  fMakeExe = MAKEEXE;
214 
215  if (gEnv && fBeepDuration == 0 && fBeepFreq == 0) {
216  fBeepDuration = gEnv->GetValue("Root.System.BeepDuration", 100);
217  fBeepFreq = gEnv->GetValue("Root.System.BeepFreq", 440);
218  }
219  if (!fName.CompareTo("Generic")) return kTRUE;
220  return kFALSE;
221 }
222 
223 ////////////////////////////////////////////////////////////////////////////////
224 /// Set the application name (from command line, argv[0]) and copy it in
225 /// gProgName.
226 
227 void TSystem::SetProgname(const char *name)
228 {
229  gProgName = StrDup(name);
230 }
231 
232 ////////////////////////////////////////////////////////////////////////////////
233 /// Set DISPLAY environment variable based on utmp entry. Only for UNIX.
234 
236 {
237 }
238 
239 ////////////////////////////////////////////////////////////////////////////////
240 /// Set the system error string. This string will be used by GetError().
241 /// To be used in case one does not want or can use the system error
242 /// string (e.g. because error is generated by a third party POSIX like
243 /// library that does not use standard errno).
244 
245 void TSystem::SetErrorStr(const char *errstr)
246 {
247  ResetErrno(); // so GetError() uses the fLastErrorString
248  GetLastErrorString() = errstr;
249 }
250 
251 ////////////////////////////////////////////////////////////////////////////////
252 /// Return system error string.
253 
254 const char *TSystem::GetError()
255 {
256  if (GetErrno() == 0 && GetLastErrorString() != "")
257  return GetLastErrorString();
258  return Form("errno: %d", GetErrno());
259 }
260 
261 ////////////////////////////////////////////////////////////////////////////////
262 /// Static function returning system error number.
263 
265 {
266 #ifdef _REENTRANT
267  return errno; // errno can be a macro if _REENTRANT is set
268 #else
269 #ifdef R__SOLARIS_CC50
270  return ::errno;
271 #else
272  return errno;
273 #endif
274 #endif
275 }
276 
277 ////////////////////////////////////////////////////////////////////////////////
278 /// Static function resetting system error number.
279 
281 {
282 #ifdef _REENTRANT
283  errno = 0; // errno can be a macro if _REENTRANT is set
284 #else
285 #ifdef R__SOLARIS_CC50
286  ::errno = 0;
287 #else
288  errno = 0;
289 #endif
290 #endif
291 }
292 
293 ////////////////////////////////////////////////////////////////////////////////
294 /// Objects that should be deleted on exit of the OS interface.
295 
297 {
298  if (fOnExitList == 0)
300  if (fOnExitList->FindObject(obj) == 0)
301  fOnExitList->Add(obj);
302 }
303 
304 ////////////////////////////////////////////////////////////////////////////////
305 /// Return the system's host name.
306 
307 const char *TSystem::HostName()
308 {
309  return "Local host";
310 }
311 
312 ////////////////////////////////////////////////////////////////////////////////
313 /// Hook to tell TSystem that the TApplication object has been created.
314 
316 {
317  // Currently needed only for WinNT interface.
318 }
319 
320 ////////////////////////////////////////////////////////////////////////////////
321 /// Beep for duration milliseconds with a tone of frequency freq.
322 /// Defaults to printing the `\a` character to stdout.
323 /// If freq or duration is <0 respectively, use default value.
324 /// If setDefault is set, only set the frequency and duration as
325 /// new defaults, but don't beep.
326 /// If default freq or duration is <0, never beep (silence)
327 
328 void TSystem::Beep(Int_t freq /*=-1*/, Int_t duration /*=-1*/,
329  Bool_t setDefault /*=kFALSE*/)
330 {
331  if (setDefault) {
332  fBeepFreq = freq;
333  fBeepDuration = duration;
334  return;
335  }
336  if (fBeepDuration < 0 || fBeepFreq < 0) return; // silence
337  if (freq < 0) freq = fBeepFreq;
338  if (duration < 0) duration = fBeepDuration;
339  DoBeep(freq, duration);
340 }
341 
342 //---- EventLoop ---------------------------------------------------------------
343 
344 ////////////////////////////////////////////////////////////////////////////////
345 /// System event loop.
346 
348 {
349  fInControl = kTRUE;
350  fDone = kFALSE;
351 
352 loop_entry:
353  try {
354  RETRY {
355  while (!fDone) {
357  InnerLoop();
359  }
360  } ENDTRY;
361  }
362  catch (std::exception& exc) {
364  TStdExceptionHandler* eh = 0;
365  while ((eh = (TStdExceptionHandler*) next())) {
366  switch (eh->Handle(exc))
367  {
369  break;
371  goto loop_entry;
372  break;
374  Warning("Run", "instructed to abort");
375  goto loop_end;
376  break;
377  }
378  }
379  throw;
380  }
381  catch (const char *str) {
382  printf("%s\n", str);
383  }
384  // handle every exception
385  catch (...) {
386  Warning("Run", "handle uncaugth exception, terminating");
387  }
388 
389 loop_end:
390  fInControl = kFALSE;
391 }
392 
393 ////////////////////////////////////////////////////////////////////////////////
394 /// Exit from event loop.
395 
397 {
398  fDone = kTRUE;
399 }
400 
401 ////////////////////////////////////////////////////////////////////////////////
402 /// Inner event loop.
403 
405 {
406  fLevel++;
408  fLevel--;
409 }
410 
411 ////////////////////////////////////////////////////////////////////////////////
412 /// Process pending events (GUI, timers, sockets). Returns the result of
413 /// TROOT::IsInterrupted(). The interrupt flag (TROOT::SetInterrupt())
414 /// can be set during the handling of the events. This mechanism allows
415 /// macros running in tight calculating loops to be interrupted by some
416 /// GUI event (depending on the interval with which this method is
417 /// called). For example hitting ctrl-c in a canvas will set the
418 /// interrupt flag.
419 
421 {
422  gROOT->SetInterrupt(kFALSE);
423 
424  if (!gROOT->TestBit(TObject::kInvalidObject))
426 
427  return gROOT->IsInterrupted();
428 }
429 
430 ////////////////////////////////////////////////////////////////////////////////
431 /// Dispatch a single event.
432 
434 {
435  AbstractMethod("DispatchOneEvent");
436 }
437 
438 ////////////////////////////////////////////////////////////////////////////////
439 /// Sleep milliSec milli seconds.
440 
442 {
443  AbstractMethod("Sleep");
444 }
445 
446 ////////////////////////////////////////////////////////////////////////////////
447 /// Select on active file descriptors (called by TMonitor).
448 
450 {
451  AbstractMethod("Select");
452  return -1;
453 }
454 ////////////////////////////////////////////////////////////////////////////////
455 /// Select on active file descriptors (called by TMonitor).
456 
458 {
459  AbstractMethod("Select");
460  return -1;
461 }
462 
463 //---- handling of system events -----------------------------------------------
464 ////////////////////////////////////////////////////////////////////////////////
465 /// Get current time in milliseconds since 0:00 Jan 1 1995.
466 
468 {
469  return TTime(0);
470 }
471 
472 ////////////////////////////////////////////////////////////////////////////////
473 /// Add timer to list of system timers.
474 
476 {
477  if (ti && fTimers && (fTimers->FindObject(ti) == 0))
478  fTimers->Add(ti);
479 }
480 
481 ////////////////////////////////////////////////////////////////////////////////
482 /// Remove timer from list of system timers. Returns removed timer or 0
483 /// if timer was not active.
484 
486 {
487  if (fTimers) {
488  TTimer *tr = (TTimer*) fTimers->Remove(ti);
489  return tr;
490  }
491  return 0;
492 }
493 
494 ////////////////////////////////////////////////////////////////////////////////
495 /// Time when next timer of mode (synchronous=kTRUE or
496 /// asynchronous=kFALSE) will time-out (in ms).
497 
499 {
500  if (!fTimers) return -1;
501 
503  TTimer *t, *to = 0;
504  Long64_t tt, tnow = Now();
505  Long_t timeout = -1;
506 
507  while ((t = (TTimer *) it.Next())) {
508  if (t->IsSync() == mode) {
509  tt = (Long64_t)t->GetAbsTime() - tnow;
510  if (tt < 0) tt = 0;
511  if (timeout == -1) {
512  timeout = (Long_t)tt;
513  to = t;
514  }
515  if (tt < timeout) {
516  timeout = (Long_t)tt;
517  to = t;
518  }
519  }
520  }
521 
522  if (to && to->IsAsync() && timeout > 0) {
523  if (to->IsInterruptingSyscalls())
525  else
527  }
528 
529  return timeout;
530 }
531 
532 ////////////////////////////////////////////////////////////////////////////////
533 /// Add a signal handler to list of system signal handlers. Only adds
534 /// the handler if it is not already in the list of signal handlers.
535 
537 {
538  if (h && fSignalHandler && (fSignalHandler->FindObject(h) == 0))
539  fSignalHandler->Add(h);
540 }
541 
542 ////////////////////////////////////////////////////////////////////////////////
543 /// Remove a signal handler from list of signal handlers. Returns
544 /// the handler or 0 if the handler was not in the list of signal handlers.
545 
547 {
548  if (fSignalHandler)
549  return (TSignalHandler *)fSignalHandler->Remove(h);
550 
551  return 0;
552 }
553 
554 ////////////////////////////////////////////////////////////////////////////////
555 /// Add a file handler to the list of system file handlers. Only adds
556 /// the handler if it is not already in the list of file handlers.
557 
559 {
560  if (h && fFileHandler && (fFileHandler->FindObject(h) == 0))
561  fFileHandler->Add(h);
562 }
563 
564 ////////////////////////////////////////////////////////////////////////////////
565 /// Remove a file handler from the list of file handlers. Returns
566 /// the handler or 0 if the handler was not in the list of file handlers.
567 
569 {
570  if (fFileHandler)
571  return (TFileHandler *)fFileHandler->Remove(h);
572 
573  return 0;
574 }
575 
576 ////////////////////////////////////////////////////////////////////////////////
577 /// If reset is true reset the signal handler for the specified signal
578 /// to the default handler, else restore previous behaviour.
579 
580 void TSystem::ResetSignal(ESignals /*sig*/, Bool_t /*reset*/)
581 {
582  AbstractMethod("ResetSignal");
583 }
584 
585 ////////////////////////////////////////////////////////////////////////////////
586 /// Reset signals handlers to previous behaviour.
587 
589 {
590  AbstractMethod("ResetSignals");
591 }
592 
593 ////////////////////////////////////////////////////////////////////////////////
594 /// If ignore is true ignore the specified signal, else restore previous
595 /// behaviour.
596 
597 void TSystem::IgnoreSignal(ESignals /*sig*/, Bool_t /*ignore*/)
598 {
599  AbstractMethod("IgnoreSignal");
600 }
601 
602 ////////////////////////////////////////////////////////////////////////////////
603 /// If ignore is true ignore the interrupt signal, else restore previous
604 /// behaviour. Typically call ignore interrupt before writing to disk.
605 
607 {
608  IgnoreSignal(kSigInterrupt, ignore);
609 }
610 
611 ////////////////////////////////////////////////////////////////////////////////
612 /// Add an exception handler to list of system exception handlers. Only adds
613 /// the handler if it is not already in the list of exception handlers.
614 
616 {
617  if (eh && fStdExceptionHandler && (fStdExceptionHandler->FindObject(eh) == 0))
619 }
620 
621 ////////////////////////////////////////////////////////////////////////////////
622 /// Remove an exception handler from list of exception handlers. Returns
623 /// the handler or 0 if the handler was not in the list of exception handlers.
624 
626 {
629 
630  return 0;
631 }
632 
633 ////////////////////////////////////////////////////////////////////////////////
634 /// Return the bitmap of conditions that trigger a floating point exception.
635 
637 {
638  AbstractMethod("GetFPEMask");
639  return 0;
640 }
641 
642 ////////////////////////////////////////////////////////////////////////////////
643 /// Set which conditions trigger a floating point exception.
644 /// Return the previous set of conditions.
645 
647 {
648  AbstractMethod("SetFPEMask");
649  return 0;
650 }
651 
652 //---- Processes ---------------------------------------------------------------
653 
654 ////////////////////////////////////////////////////////////////////////////////
655 /// Execute a command.
656 
657 int TSystem::Exec(const char*)
658 {
659  AbstractMethod("Exec");
660  return -1;
661 }
662 
663 ////////////////////////////////////////////////////////////////////////////////
664 /// Open a pipe.
665 
666 FILE *TSystem::OpenPipe(const char*, const char*)
667 {
668  AbstractMethod("OpenPipe");
669  return 0;
670 }
671 
672 ////////////////////////////////////////////////////////////////////////////////
673 /// Close the pipe.
674 
676 {
677  AbstractMethod("ClosePipe");
678  return -1;
679 }
680 
681 ////////////////////////////////////////////////////////////////////////////////
682 /// Execute command and return output in TString.
683 
684 TString TSystem::GetFromPipe(const char *command)
685 {
686  TString out;
687 
688  FILE *pipe = OpenPipe(command, "r");
689  if (!pipe) {
690  SysError("GetFromPipe", "cannot run command \"%s\"", command);
691  return out;
692  }
693 
694  TString line;
695  while (line.Gets(pipe)) {
696  if (out != "")
697  out += "\n";
698  out += line;
699  }
700 
701  Int_t r = ClosePipe(pipe);
702  if (r) {
703  Error("GetFromPipe", "command \"%s\" returned %d", command, r);
704  }
705  return out;
706 }
707 
708 ////////////////////////////////////////////////////////////////////////////////
709 /// Get process id.
710 
712 {
713  AbstractMethod("GetPid");
714  return -1;
715 }
716 
717 ////////////////////////////////////////////////////////////////////////////////
718 /// Exit the application.
719 
721 {
722  AbstractMethod("Exit");
723 }
724 
725 ////////////////////////////////////////////////////////////////////////////////
726 /// Abort the application.
727 
728 void TSystem::Abort(int)
729 {
730  AbstractMethod("Abort");
731 }
732 
733 ////////////////////////////////////////////////////////////////////////////////
734 /// Print a stack trace.
735 
737 {
738  AbstractMethod("StackTrace");
739 }
740 
741 
742 //---- Directories -------------------------------------------------------------
743 
744 ////////////////////////////////////////////////////////////////////////////////
745 /// Create helper TSystem to handle file and directory operations that
746 /// might be special for remote file access, like via rfiod or rootd.
747 
748 TSystem *TSystem::FindHelper(const char *path, void *dirptr)
749 {
750  if (!fHelpers)
751  fHelpers = new TOrdCollection;
752 
753  TPluginHandler *h;
754  TSystem *helper = 0;
755  if (path) {
756  if (!GetDirPtr()) {
757  TUrl url(path, kTRUE);
758  if (!strcmp(url.GetProtocol(), "file"))
759  return 0;
760  }
761  }
762 
763  // look for existing helpers
765  while ((helper = (TSystem*) next()))
766  if (helper->ConsistentWith(path, dirptr))
767  return helper;
768 
769  if (!path)
770  return 0;
771 
772  // create new helper
773  TRegexp re("^root.*:"); // also roots, rootk, etc
774  TString pname = path;
775  if (pname.BeginsWith("xroot:") || pname.Index(re) != kNPOS) {
776  // (x)rootd daemon ...
777  if ((h = gROOT->GetPluginManager()->FindHandler("TSystem", path))) {
778  if (h->LoadPlugin() == -1)
779  return 0;
780  helper = (TSystem*) h->ExecPlugin(2, path, kFALSE);
781  }
782  } else if ((h = gROOT->GetPluginManager()->FindHandler("TSystem", path))) {
783  if (h->LoadPlugin() == -1)
784  return 0;
785  helper = (TSystem*) h->ExecPlugin(0);
786  }
787 
788  if (helper)
789  fHelpers->Add(helper);
790 
791  return helper;
792 }
793 
794 ////////////////////////////////////////////////////////////////////////////////
795 /// Check consistency of this helper with the one required
796 /// by 'path' or 'dirptr'
797 
798 Bool_t TSystem::ConsistentWith(const char *path, void *dirptr)
799 {
800  Bool_t checkproto = kFALSE;
801  if (path) {
802  if (!GetDirPtr()) {
803  TUrl url(path, kTRUE);
804  if (!strncmp(url.GetProtocol(), GetName(), strlen(GetName())))
805  checkproto = kTRUE;
806  }
807  }
808 
809  Bool_t checkdir = kFALSE;
810  if (GetDirPtr() && GetDirPtr() == dirptr)
811  checkdir = kTRUE;
812 
813  return (checkproto || checkdir);
814 }
815 
816 ////////////////////////////////////////////////////////////////////////////////
817 /// Make a directory. Returns 0 in case of success and
818 /// -1 if the directory could not be created (either already exists or
819 /// illegal path name).
820 
821 int TSystem::MakeDirectory(const char*)
822 {
823  AbstractMethod("MakeDirectory");
824  return 0;
825 }
826 
827 ////////////////////////////////////////////////////////////////////////////////
828 /// Open a directory. Returns 0 if directory does not exist.
829 
830 void *TSystem::OpenDirectory(const char*)
831 {
832  AbstractMethod("OpenDirectory");
833  return 0;
834 }
835 
836 ////////////////////////////////////////////////////////////////////////////////
837 /// Free a directory.
838 
840 {
841  AbstractMethod("FreeDirectory");
842 }
843 
844 ////////////////////////////////////////////////////////////////////////////////
845 /// Get a directory entry. Returns 0 if no more entries.
846 
847 const char *TSystem::GetDirEntry(void*)
848 {
849  AbstractMethod("GetDirEntry");
850  return 0;
851 }
852 
853 ////////////////////////////////////////////////////////////////////////////////
854 /// Change directory.
855 
857 {
858  AbstractMethod("ChangeDirectory");
859  return kFALSE;
860 }
861 
862 ////////////////////////////////////////////////////////////////////////////////
863 /// Return working directory.
864 
866 {
867  return 0;
868 }
869 
870 //////////////////////////////////////////////////////////////////////////////
871 /// Return working directory.
872 
873 std::string TSystem::GetWorkingDirectory() const
874 {
875  return std::string();
876 }
877 
878 ////////////////////////////////////////////////////////////////////////////////
879 /// Return the user's home directory.
880 
881 const char *TSystem::HomeDirectory(const char*)
882 {
883  return 0;
884 }
885 
886 //////////////////////////////////////////////////////////////////////////////
887 /// Return the user's home directory.
888 
889 std::string TSystem::GetHomeDirectory(const char*) const
890 {
891  return std::string();
892 }
893 
894 ////////////////////////////////////////////////////////////////////////////////
895 /// Make a file system directory. Returns 0 in case of success and
896 /// -1 if the directory could not be created (either already exists or
897 /// illegal path name).
898 /// If 'recursive' is true, makes parent directories as needed.
899 
900 int TSystem::mkdir(const char *name, Bool_t recursive)
901 {
902  if (recursive) {
903  TString safeName = name; // local copy in case 'name' is output from
904  // TSystem::DirName as it uses static buffers
905  TString dirname = DirName(safeName);
906  if (!dirname.Length()) {
907  // well we should not have to make the root of the file system!
908  // (and this avoid infinite recursions!)
909  return -1;
910  }
911  if (AccessPathName(dirname, kFileExists)) {
912  int res = mkdir(dirname, kTRUE);
913  if (res) return res;
914  }
915  if (!AccessPathName(safeName, kFileExists)) {
916  return -1;
917  }
918  }
919 
920  return MakeDirectory(name);
921 }
922 
923 //---- Paths & Files -----------------------------------------------------------
924 
925 ////////////////////////////////////////////////////////////////////////////////
926 /// Base name of a file name. Base name of /user/root is root.
927 
928 const char *TSystem::BaseName(const char *name)
929 {
930  if (name) {
931  if (name[0] == '/' && name[1] == '\0')
932  return name;
933  char *cp;
934  if ((cp = (char*)strrchr(name, '/')))
935  return ++cp;
936  return name;
937  }
938  Error("BaseName", "name = 0");
939  return 0;
940 }
941 
942 ////////////////////////////////////////////////////////////////////////////////
943 /// Return true if dir is an absolute pathname.
944 
946 {
947  if (dir)
948  return dir[0] == '/';
949  return kFALSE;
950 }
951 
952 ////////////////////////////////////////////////////////////////////////////////
953 /// Return true if 'name' is a file that can be found in the ROOT include
954 /// path or the current directory.
955 /// If 'name' contains any ACLiC style information (e.g. trailing +[+][g|O]),
956 /// it will be striped off 'name'.
957 /// If fullpath is != 0, the full path to the file is returned in *fullpath,
958 /// which must be deleted by the caller.
959 
960 Bool_t TSystem::IsFileInIncludePath(const char *name, char **fullpath)
961 {
962  if (!name || !name[0]) return kFALSE;
963 
964  TString aclicMode;
965  TString arguments;
966  TString io;
967  TString realname = SplitAclicMode(name, aclicMode, arguments, io);
968 
969  TString fileLocation = DirName(realname);
970 
971  TString incPath = gSystem->GetIncludePath(); // of the form -Idir1 -Idir2 -Idir3
972  incPath.Append(":").Prepend(" ");
973  incPath.ReplaceAll(" -I",":"); // of form :dir1 :dir2:dir3
974  while ( incPath.Index(" :") != -1 ) {
975  incPath.ReplaceAll(" :",":");
976  }
977  incPath.Prepend(fileLocation+":.:");
978 
979  char *actual = Which(incPath,realname);
980 
981  if (!actual) {
982  return kFALSE;
983  } else {
984  if (fullpath)
985  *fullpath = actual;
986  else
987  delete [] actual;
988  return kTRUE;
989  }
990 }
991 
992 ////////////////////////////////////////////////////////////////////////////////
993 /// Return the directory name in pathname. DirName of /user/root is /user.
994 /// In case no dirname is specified "." is returned.
995 
996 const char *TSystem::DirName(const char *pathname)
997 {
998  if (pathname && strchr(pathname, '/')) {
1000 
1001  static int len = 0;
1002  static char *buf = 0;
1003  int pathlen = strlen(pathname);
1004  if (pathlen > len) {
1005  delete [] buf;
1006  len = pathlen;
1007  buf = new char [len+1];
1008  }
1009  strcpy(buf, pathname);
1010 
1011  char *r = buf+pathlen-1;
1012  // First skip the trailing '/'
1013  while ( r>buf && *(r)=='/') { --r; }
1014  // Then find the next non slash
1015  while ( r>buf && *(r)!='/') { --r; }
1016  // Then skip duplicate slashes
1017  // Note the 'r>buf' is a strict comparison to allows '/topdir' to return '/'
1018  while ( r>buf && *(r)=='/') { --r; }
1019  // If all was cut away, we encountered a rel. path like 'subdir/'
1020  // and ended up at '.'.
1021  if (r==buf && *(r)!='/') {
1022  return ".";
1023  }
1024  // And finally terminate the string to drop off the filename
1025  *(r+1) = '\0';
1026 
1027  return buf;
1028  }
1029  return ".";
1030 }
1031 
1032 ////////////////////////////////////////////////////////////////////////////////
1033 /// Convert from a Unix pathname to a local pathname. E.g. from `/user/root` to
1034 /// `\user\root`.
1035 
1036 const char *TSystem::UnixPathName(const char *name)
1037 {
1038  return name;
1039 }
1040 
1041 ////////////////////////////////////////////////////////////////////////////////
1042 /// Concatenate a directory and a file name. User must delete returned string.
1043 
1044 char *TSystem::ConcatFileName(const char *dir, const char *name)
1045 {
1046  TString nameString(name);
1047  PrependPathName(dir, nameString);
1048  return StrDup(nameString.Data());
1049 }
1050 
1051 ////////////////////////////////////////////////////////////////////////////////
1052 /// Concatenate a directory and a file name.
1053 
1054 const char *TSystem::PrependPathName(const char *, TString&)
1055 {
1056  AbstractMethod("PrependPathName");
1057  return 0;
1058 }
1059 
1060 
1061 //---- Paths & Files -----------------------------------------------------------
1062 
1063 ////////////////////////////////////////////////////////////////////////////////
1064 /// Expand a pathname getting rid of special shell characters like ~.$, etc.
1065 /// For Unix/Win32 compatibility use $(XXX) instead of $XXX when using
1066 /// environment variables in a pathname. If compatibility is not an issue
1067 /// you can use on Unix directly $XXX. This is a protected function called
1068 /// from the OS specific system classes, like TUnixSystem and TWinNTSystem.
1069 /// Returns the expanded filename or 0 in case of error.
1070 
1071 const char *TSystem::ExpandFileName(const char *fname)
1072 {
1073  const int kBufSize = kMAXPATHLEN;
1074  TTHREAD_TLS_ARRAY(char, kBufSize, xname);
1075 
1076  Bool_t res = ExpandFileName(fname, xname, kBufSize);
1077  if (res)
1078  return nullptr;
1079  else
1080  return xname;
1081 }
1082 
1083 //////////////////////////////////////////////////////////////////////////////
1084 /// Expand a pathname getting rid of special shell characters like ~.$, etc.
1085 /// This function is analogous to ExpandFileName(const char *), except that
1086 /// it receives a TString reference of the pathname to be expanded.
1087 /// Returns kTRUE in case of error and kFALSE otherwise.
1088 
1090 {
1091  const int kBufSize = kMAXPATHLEN;
1092  char xname[kBufSize];
1093 
1094  Bool_t res = ExpandFileName(fname.Data(), xname, kBufSize);
1095  if (!res)
1096  fname = xname;
1097 
1098  return res;
1099 }
1100 
1101 ////////////////////////////////////////////////////////////////////////////
1102 /// Private method for pathname expansion.
1103 /// Returns kTRUE in case of error and kFALSE otherwise.
1104 
1105 Bool_t TSystem::ExpandFileName(const char *fname, char *xname, const int kBufSize)
1106 {
1107  int n, ier, iter, lx, ncopy;
1108  char *inp, *out, *x, *t, buff[kBufSize*4];
1109  const char *b, *c, *e;
1110  const char *p;
1111 
1112  iter = 0; xname[0] = 0; inp = buff + kBufSize; out = inp + kBufSize;
1113  inp[-1] = ' '; inp[0] = 0; out[-1] = ' ';
1114  c = fname + strspn(fname, " \t\f\r");
1115  //VP if (isalnum(c[0])) { strcpy(inp, WorkingDirectory()); strcat(inp, "/"); } // add $cwd
1116 
1117  strlcat(inp, c, kBufSize);
1118 
1119 again:
1120  iter++; c = inp; ier = 0;
1121  x = out; x[0] = 0;
1122 
1123  p = 0; e = 0;
1124  if (c[0] == '~' && c[1] == '/') { // ~/ case
1125  std::string hd = GetHomeDirectory();
1126  p = hd.c_str();
1127  e = c + 1;
1128  if (p) { // we have smth to copy
1129  strlcpy(x, p, kBufSize);
1130  x += strlen(p);
1131  c = e;
1132  } else {
1133  ++ier;
1134  ++c;
1135  }
1136  } else if (c[0] == '~' && c[1] != '/') { // ~user case
1137  n = strcspn(c+1, "/ ");
1138  buff[0] = 0;
1139  strncat(buff, c+1, n);
1140  std::string hd = GetHomeDirectory(buff);
1141  e = c+1+n;
1142  if (!hd.empty()) { // we have smth to copy
1143  p = hd.c_str();
1144  strlcpy(x, p, kBufSize);
1145  x += strlen(p);
1146  c = e;
1147  } else {
1148  x++[0] = c[0];
1149  //++ier;
1150  ++c;
1151  }
1152  }
1153 
1154  for ( ; c[0]; c++) {
1155 
1156  p = 0; e = 0;
1157 
1158  if (c[0] == '.' && c[1] == '/' && c[-1] == ' ') { // $cwd
1159  std::string wd = GetWorkingDirectory();
1160  strlcpy(buff, wd.c_str(), kBufSize);
1161  p = buff;
1162  e = c + 1;
1163  }
1164  if (p) { // we have smth to copy */
1165  strlcpy(x, p, kBufSize); x += strlen(p); c = e-1; continue;
1166  }
1167 
1168  if (c[0] != '$') { // not $, simple copy
1169  x++[0] = c[0];
1170  } else { // we have a $
1171  b = c+1;
1172  if (c[1] == '(') b++;
1173  if (c[1] == '{') b++;
1174  if (b[0] == '$')
1175  e = b+1;
1176  else
1177  for (e = b; isalnum(e[0]) || e[0] == '_'; e++) ;
1178  buff[0] = 0; strncat(buff, b, e-b);
1179  p = Getenv(buff);
1180  if (!p) { // too bad, try UPPER case
1181  for (t = buff; (t[0] = toupper(t[0])); t++) ;
1182  p = Getenv(buff);
1183  }
1184  if (!p) { // too bad, try Lower case
1185  for (t = buff; (t[0] = tolower(t[0])); t++) ;
1186  p = Getenv(buff);
1187  }
1188  if (!p && !strcmp(buff, "cwd")) { // it is $cwd
1189  std::string wd = GetWorkingDirectory();
1190  strlcpy(buff, wd.c_str(), kBufSize);
1191  p = buff;
1192  }
1193  if (!p && !strcmp(buff, "$")) { // it is $$ (replace by GetPid())
1194  snprintf(buff,kBufSize*4, "%d", GetPid());
1195  p = buff;
1196  }
1197  if (!p) { // too bad, nothing can help
1198 #ifdef WIN32
1199  // if we're on windows, we can have \\SomeMachine\C$ - don't
1200  // complain about that, if '$' is followed by nothing or a
1201  // path delimiter.
1202  if (c[1] && c[1]!='\\' && c[1]!=';' && c[1]!='/')
1203  ier++;
1204 #else
1205  ier++;
1206 #endif
1207  x++[0] = c[0];
1208  } else { // It is OK, copy result
1209  int lp = strlen(p);
1210  if (lp >= kBufSize) {
1211  // make sure lx will be >= kBufSize (see below)
1212  strlcpy(x, p, kBufSize);
1213  x += kBufSize;
1214  break;
1215  }
1216  strcpy(x,p);
1217  x += lp;
1218  c = (b==c+1) ? e-1 : e;
1219  }
1220  }
1221  }
1222 
1223  x[0] = 0; lx = x - out;
1224  if (ier && iter < 3) { strlcpy(inp, out, kBufSize); goto again; }
1225  ncopy = (lx >= kBufSize) ? kBufSize-1 : lx;
1226  xname[0] = 0; strncat(xname, out, ncopy);
1227 
1228  if (ier || ncopy != lx) {
1229  ::Error("TSystem::ExpandFileName", "input: %s, output: %s", fname, xname);
1230  return kTRUE;
1231  }
1232 
1233  return kFALSE;
1234 }
1235 
1236 
1237 ////////////////////////////////////////////////////////////////////////////////
1238 /// Expand a pathname getting rid of special shell characters like ~.$, etc.
1239 /// For Unix/Win32 compatibility use $(XXX) instead of $XXX when using
1240 /// environment variables in a pathname. If compatibility is not an issue
1241 /// you can use on Unix directly $XXX.
1242 
1244 {
1245  return kFALSE;
1246 }
1247 
1248 ////////////////////////////////////////////////////////////////////////////////
1249 /// Expand a pathname getting rid of special shell characters like ~.$, etc.
1250 /// For Unix/Win32 compatibility use $(XXX) instead of $XXX when using
1251 /// environment variables in a pathname. If compatibility is not an issue
1252 /// you can use on Unix directly $XXX. The user must delete returned string.
1253 
1254 char *TSystem::ExpandPathName(const char *)
1255 {
1256  return 0;
1257 }
1258 
1259 ////////////////////////////////////////////////////////////////////////////////
1260 /// Returns FALSE if one can access a file using the specified access mode.
1261 /// The file name must not contain any special shell characters line ~ or $,
1262 /// in those cases first call ExpandPathName().
1263 /// Attention, bizarre convention of return value!!
1264 
1266 {
1267  return kFALSE;
1268 }
1269 
1270 ////////////////////////////////////////////////////////////////////////////////
1271 /// Returns TRUE if the url in 'path' points to the local file system.
1272 /// This is used to avoid going through the NIC card for local operations.
1273 
1274 Bool_t TSystem::IsPathLocal(const char *path)
1275 {
1276  Bool_t localPath = kTRUE;
1277 
1278  TUrl url(path);
1279  if (strlen(url.GetHost()) > 0) {
1280  // Check locality
1281  localPath = kFALSE;
1282  TInetAddress a(gSystem->GetHostByName(url.GetHost()));
1283  TInetAddress b(gSystem->GetHostByName(gSystem->HostName()));
1284  if (!strcmp(a.GetHostName(), b.GetHostName()) ||
1285  !strcmp(a.GetHostAddress(), b.GetHostAddress())) {
1286  // Host OK
1287  localPath = kTRUE;
1288  // Check the user if specified
1289  if (strlen(url.GetUser()) > 0) {
1290  UserGroup_t *u = gSystem->GetUserInfo();
1291  if (u) {
1292  if (strcmp(u->fUser, url.GetUser()))
1293  // Requested a different user
1294  localPath = kFALSE;
1295  delete u;
1296  }
1297  }
1298  }
1299  }
1300  // Done
1301  return localPath;
1302 }
1303 
1304 ////////////////////////////////////////////////////////////////////////////////
1305 /// Copy a file. If overwrite is true and file already exists the
1306 /// file will be overwritten. Returns 0 when successful, -1 in case
1307 /// of file open failure, -2 in case the file already exists and overwrite
1308 /// was false and -3 in case of error during copy.
1309 
1310 int TSystem::CopyFile(const char *, const char *, Bool_t)
1311 {
1312  AbstractMethod("CopyFile");
1313  return -1;
1314 }
1315 
1316 ////////////////////////////////////////////////////////////////////////////////
1317 /// Rename a file.
1318 
1319 int TSystem::Rename(const char *, const char *)
1320 {
1321  AbstractMethod("Rename");
1322  return -1;
1323 }
1324 
1325 ////////////////////////////////////////////////////////////////////////////////
1326 /// Create a link from file1 to file2.
1327 
1328 int TSystem::Link(const char *, const char *)
1329 {
1330  AbstractMethod("Link");
1331  return -1;
1332 }
1333 
1334 ////////////////////////////////////////////////////////////////////////////////
1335 /// Create a symbolic link from file1 to file2.
1336 
1337 int TSystem::Symlink(const char *, const char *)
1338 {
1339  AbstractMethod("Symlink");
1340  return -1;
1341 }
1342 
1343 ////////////////////////////////////////////////////////////////////////////////
1344 /// Unlink, i.e. remove, a file.
1345 
1346 int TSystem::Unlink(const char *)
1347 {
1348  AbstractMethod("Unlink");
1349  return -1;
1350 }
1351 
1352 ////////////////////////////////////////////////////////////////////////////////
1353 /// Get info about a file: id, size, flags, modification time.
1354 /// - Id is (statbuf.st_dev << 24) + statbuf.st_ino
1355 /// - Size is the file size
1356 /// - Flags is file type: 0 is regular file, bit 0 set executable,
1357 /// bit 1 set directory, bit 2 set special file
1358 /// (socket, fifo, pipe, etc.)
1359 /// Modtime is modification time.
1360 /// The function returns 0 in case of success and 1 if the file could
1361 /// not be stat'ed.
1362 
1363 int TSystem::GetPathInfo(const char *path, Long_t *id, Long_t *size,
1364  Long_t *flags, Long_t *modtime)
1365 {
1366  Long64_t lsize;
1367 
1368  int res = GetPathInfo(path, id, &lsize, flags, modtime);
1369 
1370  if (res == 0 && size) {
1371  if (sizeof(Long_t) == 4 && lsize > kMaxInt) {
1372  Error("GetPathInfo", "file %s > 2 GB, use GetPathInfo() with Long64_t size", path);
1373  *size = kMaxInt;
1374  } else {
1375  *size = (Long_t)lsize;
1376  }
1377  }
1378 
1379  return res;
1380 }
1381 
1382 ////////////////////////////////////////////////////////////////////////////////
1383 /// Get info about a file: id, size, flags, modification time.
1384 /// - Id is (statbuf.st_dev << 24) + statbuf.st_ino
1385 /// - Size is the file size
1386 /// - Flags is file type: 0 is regular file, bit 0 set executable,
1387 /// bit 1 set directory, bit 2 set special file
1388 /// (socket, fifo, pipe, etc.)
1389 /// Modtime is modification time.
1390 /// The function returns 0 in case of success and 1 if the file could
1391 /// not be stat'ed.
1392 
1393 int TSystem::GetPathInfo(const char *path, Long_t *id, Long64_t *size,
1394  Long_t *flags, Long_t *modtime)
1395 {
1396  FileStat_t buf;
1397 
1398  int res = GetPathInfo(path, buf);
1399 
1400  if (res == 0) {
1401  if (id)
1402  *id = (buf.fDev << 24) + buf.fIno;
1403  if (size)
1404  *size = buf.fSize;
1405  if (modtime)
1406  *modtime = buf.fMtime;
1407  if (flags) {
1408  *flags = 0;
1409  if (buf.fMode & (kS_IXUSR|kS_IXGRP|kS_IXOTH))
1410  *flags |= 1;
1411  if (R_ISDIR(buf.fMode))
1412  *flags |= 2;
1413  if (!R_ISREG(buf.fMode) && !R_ISDIR(buf.fMode))
1414  *flags |= 4;
1415  }
1416  }
1417 
1418  return res;
1419 }
1420 
1421 ////////////////////////////////////////////////////////////////////////////////
1422 /// Get info about a file. Info is returned in the form of a FileStat_t
1423 /// structure (see TSystem.h).
1424 /// The function returns 0 in case of success and 1 if the file could
1425 /// not be stat'ed.
1426 
1427 int TSystem::GetPathInfo(const char *, FileStat_t &)
1428 {
1429  AbstractMethod("GetPathInfo(const char*, FileStat_t&)");
1430  return 1;
1431 }
1432 
1433 ////////////////////////////////////////////////////////////////////////////////
1434 /// Get info about a file system: fs type, block size, number of blocks,
1435 /// number of free blocks.
1436 
1437 int TSystem::GetFsInfo(const char *, Long_t *, Long_t *, Long_t *, Long_t *)
1438 {
1439  AbstractMethod("GetFsInfo");
1440  return 1;
1441 }
1442 
1443 ////////////////////////////////////////////////////////////////////////////////
1444 /// Return a user configured or systemwide directory to create
1445 /// temporary files in.
1446 
1447 const char *TSystem::TempDirectory() const
1448 {
1449  AbstractMethod("TempDirectory");
1450  return 0;
1451 }
1452 
1453 ////////////////////////////////////////////////////////////////////////////////
1454 /// Create a secure temporary file by appending a unique
1455 /// 6 letter string to base. The file will be created in
1456 /// a standard (system) directory or in the directory
1457 /// provided in dir. The full filename is returned in base
1458 /// and a filepointer is returned for safely writing to the file
1459 /// (this avoids certain security problems). Returns 0 in case
1460 /// of error.
1461 
1462 FILE *TSystem::TempFileName(TString &, const char *)
1463 {
1464  AbstractMethod("TempFileName");
1465  return 0;
1466 }
1467 
1468 ////////////////////////////////////////////////////////////////////////////////
1469 /// Set the file permission bits. Returns -1 in case or error, 0 otherwise.
1470 
1471 int TSystem::Chmod(const char *, UInt_t)
1472 {
1473  AbstractMethod("Chmod");
1474  return -1;
1475 }
1476 
1477 ////////////////////////////////////////////////////////////////////////////////
1478 /// Set the process file creation mode mask.
1479 
1481 {
1482  AbstractMethod("Umask");
1483  return -1;
1484 }
1485 
1486 ////////////////////////////////////////////////////////////////////////////////
1487 /// Set the a files modification and access times. If actime = 0 it will be
1488 /// set to the modtime. Returns 0 on success and -1 in case of error.
1489 
1490 int TSystem::Utime(const char *, Long_t, Long_t)
1491 {
1492  AbstractMethod("Utime");
1493  return -1;
1494 }
1495 
1496 ////////////////////////////////////////////////////////////////////////////////
1497 /// Find location of file in a search path. Return value points to TString for
1498 /// compatibility with Which(const char *, const char *, EAccessMode).
1499 /// Returns 0 in case file is not found.
1500 
1501 const char *TSystem::FindFile(const char *, TString&, EAccessMode)
1502 {
1503  AbstractMethod("FindFile");
1504  return 0;
1505 }
1506 
1507 ////////////////////////////////////////////////////////////////////////////////
1508 /// Find location of file in a search path. User must delete returned string.
1509 /// Returns 0 in case file is not found.
1510 
1511 char *TSystem::Which(const char *search, const char *wfil, EAccessMode mode)
1512 {
1513  TString wfilString(wfil);
1514  FindFile(search, wfilString, mode);
1515  if (wfilString.IsNull()) return 0;
1516  return StrDup(wfilString.Data());
1517 }
1518 
1519 //---- Users & Groups ----------------------------------------------------------
1520 
1521 ////////////////////////////////////////////////////////////////////////////////
1522 /// Returns the user's id. If user = 0, returns current user's id.
1523 
1524 Int_t TSystem::GetUid(const char * /*user*/)
1525 {
1526  AbstractMethod("GetUid");
1527  return 0;
1528 }
1529 
1530 ////////////////////////////////////////////////////////////////////////////////
1531 /// Returns the effective user id. The effective id corresponds to the
1532 /// set id bit on the file being executed.
1533 
1535 {
1536  AbstractMethod("GetEffectiveUid");
1537  return 0;
1538 }
1539 
1540 ////////////////////////////////////////////////////////////////////////////////
1541 /// Returns the group's id. If group = 0, returns current user's group.
1542 
1543 Int_t TSystem::GetGid(const char * /*group*/)
1544 {
1545  AbstractMethod("GetGid");
1546  return 0;
1547 }
1548 
1549 ////////////////////////////////////////////////////////////////////////////////
1550 /// Returns the effective group id. The effective group id corresponds
1551 /// to the set id bit on the file being executed.
1552 
1554 {
1555  AbstractMethod("GetEffectiveGid");
1556  return 0;
1557 }
1558 
1559 ////////////////////////////////////////////////////////////////////////////////
1560 /// Returns all user info in the UserGroup_t structure. The returned
1561 /// structure must be deleted by the user. In case of error 0 is returned.
1562 
1564 {
1565  AbstractMethod("GetUserInfo");
1566  return 0;
1567 }
1568 
1569 ////////////////////////////////////////////////////////////////////////////////
1570 /// Returns all user info in the UserGroup_t structure. If user = 0, returns
1571 /// current user's id info. The returned structure must be deleted by the
1572 /// user. In case of error 0 is returned.
1573 
1574 UserGroup_t *TSystem::GetUserInfo(const char * /*user*/)
1575 {
1576  AbstractMethod("GetUserInfo");
1577  return 0;
1578 }
1579 
1580 ////////////////////////////////////////////////////////////////////////////////
1581 /// Returns all group info in the UserGroup_t structure. The only active
1582 /// fields in the UserGroup_t structure for this call are:
1583 /// - fGid and fGroup
1584 /// The returned structure must be deleted by the user. In case of
1585 /// error 0 is returned.
1586 
1588 {
1589  AbstractMethod("GetGroupInfo");
1590  return 0;
1591 }
1592 
1593 ////////////////////////////////////////////////////////////////////////////////
1594 /// Returns all group info in the UserGroup_t structure. The only active
1595 /// fields in the UserGroup_t structure for this call are:
1596 /// - fGid and fGroup
1597 /// If group = 0, returns current user's group. The returned structure
1598 /// must be deleted by the user. In case of error 0 is returned.
1599 
1600 UserGroup_t *TSystem::GetGroupInfo(const char * /*group*/)
1601 {
1602  AbstractMethod("GetGroupInfo");
1603  return 0;
1604 }
1605 
1606 //---- environment manipulation ------------------------------------------------
1607 
1608 ////////////////////////////////////////////////////////////////////////////////
1609 /// Set environment variable.
1610 
1611 void TSystem::Setenv(const char*, const char*)
1612 {
1613  AbstractMethod("Setenv");
1614 }
1615 
1616 ////////////////////////////////////////////////////////////////////////////////
1617 /// Unset environment variable.
1618 
1619 void TSystem::Unsetenv(const char *name)
1620 {
1621  Setenv(name, "");
1622 }
1623 
1624 ////////////////////////////////////////////////////////////////////////////////
1625 /// Get environment variable.
1626 
1627 const char *TSystem::Getenv(const char*)
1628 {
1629  AbstractMethod("Getenv");
1630  return 0;
1631 }
1632 
1633 //---- System Logging ----------------------------------------------------------
1634 
1635 ////////////////////////////////////////////////////////////////////////////////
1636 /// Open connection to system log daemon. For the use of the options and
1637 /// facility see the Unix openlog man page.
1638 
1640 {
1641  AbstractMethod("Openlog");
1642 }
1643 
1644 ////////////////////////////////////////////////////////////////////////////////
1645 /// Send mess to syslog daemon. Level is the logging level and mess the
1646 /// message that will be written on the log.
1647 
1648 void TSystem::Syslog(ELogLevel, const char *)
1649 {
1650  AbstractMethod("Syslog");
1651 }
1652 
1653 ////////////////////////////////////////////////////////////////////////////////
1654 /// Close connection to system log daemon.
1655 
1657 {
1658  AbstractMethod("Closelog");
1659 }
1660 
1661 //---- Standard output redirection ---------------------------------------------
1662 
1663 ////////////////////////////////////////////////////////////////////////////////
1664 /// Redirect standard output (stdout, stderr) to the specified file.
1665 /// If the file argument is 0 the output is set again to stderr, stdout.
1666 /// The second argument specifies whether the output should be added to the
1667 /// file ("a", default) or the file be truncated before ("w").
1668 /// The implementations of this function save internally the current state into
1669 /// a static structure.
1670 ///
1671 /// The call can be made reentrant by specifying the opaque structure pointed
1672 /// by 'h', which is filled with the relevant information. The handle 'h'
1673 /// obtained on the first call must then be used in any subsequent call,
1674 /// included ShowOutput, to display the redirected output.
1675 /// Returns 0 on success, -1 in case of error.
1676 
1677 Int_t TSystem::RedirectOutput(const char *, const char *, RedirectHandle_t *)
1678 {
1679  AbstractMethod("RedirectOutput");
1680  return -1;
1681 }
1682 
1683 ////////////////////////////////////////////////////////////////////////////////
1684 /// Display the content associated with the redirection described by the
1685 /// opaque handle 'h'.
1686 
1688 {
1689  // Check input ...
1690  if (!h) {
1691  Error("ShowOutput", "handle not specified");
1692  return;
1693  }
1694 
1695  // ... and file access
1696  if (gSystem->AccessPathName(h->fFile, kReadPermission)) {
1697  Error("ShowOutput", "file '%s' cannot be read", h->fFile.Data());
1698  return;
1699  }
1700 
1701  // Open the file
1702  FILE *f = 0;
1703  if (!(f = fopen(h->fFile.Data(), "r"))) {
1704  Error("ShowOutput", "file '%s' cannot be open", h->fFile.Data());
1705  return;
1706  }
1707 
1708  // Determine the number of bytes to be read from the file.
1709  off_t ltot = lseek(fileno(f), (off_t) 0, SEEK_END);
1710  Int_t begin = (h->fReadOffSet > 0 && h->fReadOffSet < ltot) ? h->fReadOffSet : 0;
1711  lseek(fileno(f), (off_t) begin, SEEK_SET);
1712  Int_t left = ltot - begin;
1713 
1714  // Now readout from file
1715  const Int_t kMAXBUF = 16384;
1716  char buf[kMAXBUF];
1717  Int_t wanted = (left > kMAXBUF-1) ? kMAXBUF-1 : left;
1718  Int_t len;
1719  do {
1720  while ((len = read(fileno(f), buf, wanted)) < 0 &&
1721  TSystem::GetErrno() == EINTR)
1723 
1724  if (len < 0) {
1725  SysError("ShowOutput", "error reading log file");
1726  break;
1727  }
1728 
1729  // Null-terminate
1730  buf[len] = 0;
1731  fprintf(stderr,"%s", buf);
1732 
1733  // Update counters
1734  left -= len;
1735  wanted = (left > kMAXBUF) ? kMAXBUF : left;
1736 
1737  } while (len > 0 && left > 0);
1738 
1739  // Do not display twice the same thing
1740  h->fReadOffSet = ltot;
1741  fclose(f);
1742 }
1743 
1744 //---- Dynamic Loading ---------------------------------------------------------
1745 
1746 ////////////////////////////////////////////////////////////////////////////////
1747 /// Add a new directory to the dynamic path.
1748 
1749 void TSystem::AddDynamicPath(const char *)
1750 {
1751  AbstractMethod("AddDynamicPath");
1752 }
1753 
1754 ////////////////////////////////////////////////////////////////////////////////
1755 /// Return the dynamic path (used to find shared libraries).
1756 
1758 {
1759  AbstractMethod("GetDynamicPath");
1760  return 0;
1761 }
1762 
1763 ////////////////////////////////////////////////////////////////////////////////
1764 /// Set the dynamic path to a new value.
1765 /// If the value of 'path' is zero, the dynamic path is reset to its
1766 /// default value.
1767 
1768 void TSystem::SetDynamicPath(const char *)
1769 {
1770  AbstractMethod("SetDynamicPath");
1771 }
1772 
1773 
1774 ////////////////////////////////////////////////////////////////////////////////
1775 /// Figure out if left and right points to the same
1776 /// object in the file system.
1777 
1778 static bool R__MatchFilename(const char *left, const char *right)
1779 {
1780  if (left == right) return kTRUE;
1781 
1782  if (left==0 || right==0) return kFALSE;
1783 
1784  if ( (strcmp(right,left)==0) ) {
1785  return kTRUE;
1786  }
1787 
1788 #ifdef G__WIN32
1789 
1790  char leftname[_MAX_PATH];
1791  char rightname[_MAX_PATH];
1792  _fullpath( leftname, left, _MAX_PATH );
1793  _fullpath( rightname, right, _MAX_PATH );
1794  return ((stricmp(leftname, rightname)==0));
1795 #else
1796  struct stat rightBuf;
1797  struct stat leftBuf;
1798  return ( ( 0 == stat( left, & leftBuf ) )
1799  && ( 0 == stat( right, & rightBuf ) )
1800  && ( leftBuf.st_dev == rightBuf.st_dev ) // Files on same device
1801  && ( leftBuf.st_ino == rightBuf.st_ino ) // Files on same inode (but this is not unique on AFS so we need the next 2 test
1802  && ( leftBuf.st_size == rightBuf.st_size ) // Files of same size
1803  && ( leftBuf.st_mtime == rightBuf.st_mtime ) // Files modified at the same time
1804  );
1805 #endif
1806 }
1807 
1808 ////////////////////////////////////////////////////////////////////////////////
1809 /// Load a shared library. Returns 0 on successful loading, 1 in
1810 /// case lib was already loaded, -1 in case lib does not exist
1811 /// or in case of error and -2 in case of version mismatch.
1812 /// When entry is specified the loaded lib is
1813 /// searched for this entry point (return -1 when entry does not exist,
1814 /// 0 otherwise). When the system flag is kTRUE, the library is considered
1815 /// a permanent system library that should not be unloaded during the
1816 /// course of the session.
1817 
1818 int TSystem::Load(const char *module, const char *entry, Bool_t system)
1819 {
1820  // don't load libraries that have already been loaded
1821  TString libs( GetLibraries() );
1822  TString moduleBasename( BaseName(module) );
1823  TString l(moduleBasename);
1824 
1825  Ssiz_t idx = l.Last('.');
1826  if (idx != kNPOS) {
1827  l.Remove(idx+1);
1828  }
1829  for (idx = libs.Index(l); idx != kNPOS; idx = libs.Index(l,idx+1)) {
1830  // The libs contains the sub-string 'l', let's make sure it is
1831  // not just part of a larger name.
1832  if (idx == 0 || libs[idx-1] == '/' || libs[idx-1] == '\\') {
1833  Ssiz_t len = libs.Length();
1834  idx += l.Length();
1835  if (!l.EndsWith(".") && libs[idx]=='.')
1836  idx++;
1837  // Skip the soversion.
1838  while (idx < len && isdigit(libs[idx])) {
1839  ++idx;
1840  // No need to test for len here, at worse idx==len and lib[idx]=='\0'
1841  if (libs[idx] == '.') {
1842  ++idx;
1843  }
1844  }
1845  while (idx < len && libs[idx] != '.') {
1846  if (libs[idx] == ' ' || idx+1 == len) {
1847  return 1;
1848  }
1849  ++idx;
1850  }
1851  }
1852  }
1853  if (l[l.Length()-1] == '.') {
1854  l.Remove(l.Length()-1);
1855  }
1856  if (l.BeginsWith("lib")) {
1857  l.Replace(0, 3, "-l");
1858  for(idx = libs.Index(l); idx != kNPOS; idx = libs.Index(l,idx+1)) {
1859  if ((idx == 0 || libs[idx-1] == ' ') &&
1860  (libs[idx+l.Length()] == ' ' || libs[idx+l.Length()] == 0)) {
1861  return 1;
1862  }
1863  }
1864  }
1865 
1866  char *path = DynamicPathName(module);
1867 
1868  int ret = -1;
1869  if (path) {
1870  // load any dependent libraries
1871  TString deplibs = gInterpreter->GetSharedLibDeps(moduleBasename);
1872  if (deplibs.IsNull()) {
1873  TString libmapfilename;
1874  libmapfilename = path;
1875  idx = libmapfilename.Last('.');
1876  if (idx != kNPOS) {
1877  libmapfilename.Remove(idx);
1878  }
1879  libmapfilename += ".rootmap";
1880  if (gSystem->GetPathInfo(libmapfilename, 0, (Long_t*)0, 0, 0) == 0) {
1881  if (gDebug > 0) Info("Load", "loading %s", libmapfilename.Data());
1882  gInterpreter->LoadLibraryMap(libmapfilename);
1883  deplibs = gInterpreter->GetSharedLibDeps(moduleBasename);
1884  }
1885  } else {
1886  TString delim(" ");
1887  TObjArray *tokens = deplibs.Tokenize(delim);
1888  for (Int_t i = tokens->GetEntriesFast()-1; i > 0; i--) {
1889  const char *deplib = ((TObjString*)tokens->At(i))->GetName();
1890  if (strcmp(module,deplib)==0) {
1891  continue;
1892  }
1893  if (gDebug > 0)
1894  Info("Load", "loading dependent library %s for library %s",
1895  deplib, ((TObjString*)tokens->At(0))->GetName());
1896  if ((ret = Load(deplib, "", system)) < 0) {
1897  delete tokens;
1898  delete [] path;
1899  return ret;
1900  }
1901  }
1902  delete tokens;
1903  }
1904  if (!system) {
1905  // Mark the library in $ROOTSYS/lib as system.
1906  const char *dirname = DirName(path);
1907 #ifdef ROOTLIBDIR
1908  TString rootlibdir = ROOTLIBDIR;
1909 #else
1910  TString rootlibdir = "lib";
1911  PrependPathName(gRootDir, rootlibdir);
1912 #endif
1913  system = R__MatchFilename(rootlibdir,dirname);
1914 
1915  if (!system) {
1916 #ifdef ROOTBINDIR
1917  TString rootbindir = ROOTBINDIR;
1918 #else
1919  TString rootbindir = "bin";
1920  PrependPathName(gRootDir, rootbindir);
1921 #endif
1922  system = R__MatchFilename(rootbindir,dirname);
1923  }
1924  }
1925 
1926  gLibraryVersionIdx++;
1927  if (gLibraryVersionIdx == gLibraryVersionMax) {
1928  gLibraryVersionMax *= 2;
1929  gLibraryVersion = TStorage::ReAllocInt(gLibraryVersion, gLibraryVersionMax, gLibraryVersionIdx);
1930  }
1931  ret = gInterpreter->Load(path, system);
1932  if (ret < 0) ret = -1;
1933  if (gDebug > 0)
1934  Info("Load", "loaded library %s, status %d", path, ret);
1935  if (ret == 0 && gLibraryVersion[gLibraryVersionIdx]) {
1936  int v = TROOT::ConvertVersionCode2Int(gLibraryVersion[gLibraryVersionIdx]);
1937  Error("Load", "version mismatch, %s = %d, ROOT = %d",
1938  path, v, gROOT->GetVersionInt());
1939  ret = -2;
1940  gLibraryVersion[gLibraryVersionIdx] = 0;
1941  }
1942  gLibraryVersionIdx--;
1943  delete [] path;
1944  }
1945 
1946  if (!entry || !entry[0] || ret < 0) return ret;
1947 
1948  Func_t f = DynFindSymbol(module, entry);
1949  if (f) return 0;
1950  return -1;
1951 }
1952 
1953 ////////////////////////////////////////////////////////////////////////////////
1954 /// Find a dynamic library called lib using the system search paths.
1955 /// Appends known extensions if needed. Returned string must be deleted
1956 /// by the user!
1957 
1958 char *TSystem::DynamicPathName(const char *lib, Bool_t quiet /*=kFALSE*/)
1959 {
1960  TString sLib(lib);
1961  if (FindDynamicLibrary(sLib, quiet))
1962  return StrDup(sLib);
1963  return 0;
1964 }
1965 
1966 ////////////////////////////////////////////////////////////////////////////////
1967 /// Find a dynamic library using the system search paths. lib will be updated
1968 /// to contain the absolute filename if found. Returns lib if found, or NULL
1969 /// if a library called lib was not found.
1970 /// This function does not open the library.
1971 
1973 {
1974  AbstractMethod("FindDynamicLibrary");
1975  return 0;
1976 }
1977 
1978 ////////////////////////////////////////////////////////////////////////////////
1979 /// Find specific entry point in specified library. Specify "*" for lib
1980 /// to search in all libraries.
1981 
1982 Func_t TSystem::DynFindSymbol(const char * /*lib*/, const char *entry)
1983 {
1984  return (Func_t) gInterpreter->FindSym(entry);
1985 }
1986 
1987 ////////////////////////////////////////////////////////////////////////////////
1988 /// Unload a shared library.
1989 
1990 void TSystem::Unload(const char *module)
1991 {
1992  char *path;
1993  if ((path = DynamicPathName(module))) {
1994  gInterpreter->UnloadFile(path);
1995  delete [] path;
1996  }
1997 }
1998 
1999 ////////////////////////////////////////////////////////////////////////////////
2000 /// List symbols in a shared library.
2001 
2002 void TSystem::ListSymbols(const char *, const char *)
2003 {
2004  AbstractMethod("ListSymbols");
2005 }
2006 
2007 ////////////////////////////////////////////////////////////////////////////////
2008 /// List all loaded shared libraries. Regexp is a wildcard expression,
2009 /// see TRegexp::MakeWildcard.
2010 
2011 void TSystem::ListLibraries(const char *regexp)
2012 {
2013  TString libs = GetLibraries(regexp);
2014  TRegexp separator("[^ \\t\\s]+");
2015  TString s;
2016  Ssiz_t start = 0, index = 0, end = 0;
2017  int i = 0;
2018 
2019  Printf(" ");
2020  Printf("Loaded shared libraries");
2021  Printf("=======================");
2022 
2023  while ((start < libs.Length()) && (index != kNPOS)) {
2024  index = libs.Index(separator, &end, start);
2025  if (index >= 0) {
2026  s = libs(index, end);
2027  if (s.BeginsWith("-")) {
2028  if (s.BeginsWith("-l")) {
2029  Printf("%s", s.Data());
2030  i++;
2031  }
2032  } else {
2033  Printf("%s", s.Data());
2034  i++;
2035  }
2036  }
2037  start += end+1;
2038  }
2039 
2040  Printf("-----------------------");
2041  Printf("%d libraries loaded", i);
2042  Printf("=======================");
2043 }
2044 
2045 ////////////////////////////////////////////////////////////////////////////////
2046 /// Return the thread local storage for the custom last error message
2047 
2049 {
2050  TTHREAD_TLS_DECL( TString, gLastErrorString);
2051  return gLastErrorString;
2052 }
2053 
2054 ////////////////////////////////////////////////////////////////////////////////
2055 /// Return the thread local storage for the custom last error message
2056 
2058 {
2059  return const_cast<TSystem*>(this)->GetLastErrorString();
2060 }
2061 
2062 ////////////////////////////////////////////////////////////////////////////////
2063 /// Get list of shared libraries loaded at the start of the executable.
2064 /// Returns 0 in case list cannot be obtained or in case of error.
2065 
2067 {
2068  return 0;
2069 }
2070 
2071 ////////////////////////////////////////////////////////////////////////////////
2072 /// Return a space separated list of loaded shared libraries.
2073 /// Regexp is a wildcard expression, see TRegexp::MakeWildcard.
2074 /// This list is of a format suitable for a linker, i.e it may contain
2075 /// -Lpathname and/or -lNameOfLib.
2076 /// Option can be any of:
2077 /// - S: shared libraries loaded at the start of the executable, because
2078 /// they were specified on the link line.
2079 /// - D: shared libraries dynamically loaded after the start of the program.
2080 /// For MacOS only:
2081 /// - L: list the .dylib rather than the .so (this is intended for linking)
2082 /// This options is not the default
2083 
2084 const char *TSystem::GetLibraries(const char *regexp, const char *options,
2085  Bool_t isRegexp)
2086 {
2087  fListLibs.Clear();
2088 
2089  TString libs;
2090  TString opt(options);
2091  Bool_t so2dylib = (opt.First('L') != kNPOS);
2092  if (so2dylib)
2093  opt.ReplaceAll("L", "");
2094 
2095  if (opt.IsNull() || opt.First('D') != kNPOS)
2096  libs += gInterpreter->GetSharedLibs();
2097 
2098  // Cint currently register all libraries that
2099  // are loaded and have a dictionary in them, this
2100  // includes all the libraries that are included
2101  // in the list of (hard) linked libraries.
2102 
2103  TString slinked;
2104  const char *linked;
2105  if ((linked = GetLinkedLibraries())) {
2106  if (fLinkedLibs != LINKEDLIBS) {
2107  // This is not the default value, we need to keep the custom part.
2108  TString custom = fLinkedLibs;
2109  custom.ReplaceAll(LINKEDLIBS,linked);
2110  if (custom == fLinkedLibs) {
2111  // no replacement done, let's append linked
2112  slinked.Append(linked);
2113  slinked.Append(" ");
2114  }
2115  slinked.Append(custom);
2116  } else {
2117  slinked.Append(linked);
2118  }
2119  } else {
2120  slinked.Append(fLinkedLibs);
2121  }
2122 
2123  if (opt.IsNull() || opt.First('S') != kNPOS) {
2124  // We are done, the statically linked libraries are already included.
2125  if (libs.Length() == 0) {
2126  libs = slinked;
2127  } else {
2128  // We need to add the missing linked library
2129 
2130  static TString lastLinked;
2131  static TString lastAddMissing;
2132  if ( lastLinked != slinked ) {
2133  // Recalculate only if there was a change.
2134  static TRegexp separator("[^ \\t\\s]+");
2135  lastLinked = slinked;
2136  lastAddMissing.Clear();
2137 
2138  Ssiz_t start, index, end;
2139  start = index = end = 0;
2140 
2141  while ((start < slinked.Length()) && (index != kNPOS)) {
2142  index = slinked.Index(separator,&end,start);
2143  if (index >= 0) {
2144  TString sub = slinked(index,end);
2145  if (sub[0]=='-' && sub[1]=='L') {
2146  lastAddMissing.Prepend(" ");
2147  lastAddMissing.Prepend(sub);
2148  } else {
2149  if (libs.Index(sub) == kNPOS) {
2150  lastAddMissing.Prepend(" ");
2151  lastAddMissing.Prepend(sub);
2152  }
2153  }
2154  }
2155  start += end+1;
2156  }
2157  }
2158  libs.Prepend(lastAddMissing);
2159  }
2160  } else if (libs.Length() != 0) {
2161  // Let remove the statically linked library
2162  // from the list.
2163  static TRegexp separator("[^ \\t\\s]+");
2164  Ssiz_t start, index, end;
2165  start = index = end = 0;
2166 
2167  while ((start < slinked.Length()) && (index != kNPOS)) {
2168  index = slinked.Index(separator,&end,start);
2169  if (index >= 0) {
2170  TString sub = slinked(index,end);
2171  if (sub[0]!='-' && sub[1]!='L') {
2172  libs.ReplaceAll(sub,"");
2173  }
2174  }
2175  start += end+1;
2176  }
2177  libs = libs.Strip(TString::kBoth);
2178  }
2179 
2180  // Select according to regexp
2181  if (regexp && *regexp) {
2182  static TRegexp separator("[^ \\t\\s]+");
2183  TRegexp user_re(regexp, kTRUE);
2184  TString s;
2185  Ssiz_t start, index, end;
2186  start = index = end = 0;
2187 
2188  while ((start < libs.Length()) && (index != kNPOS)) {
2189  index = libs.Index(separator,&end,start);
2190  if (index >= 0) {
2191  s = libs(index,end);
2192  if ((isRegexp && s.Index(user_re) != kNPOS) ||
2193  (!isRegexp && s.Index(regexp) != kNPOS)) {
2194  if (!fListLibs.IsNull())
2195  fListLibs.Append(" ");
2196  fListLibs.Append(s);
2197  }
2198  }
2199  start += end+1;
2200  }
2201  } else
2202  fListLibs = libs;
2203 
2204 #if defined(R__MACOSX) && !defined(MAC_OS_X_VERSION_10_5)
2205  if (so2dylib) {
2206  TString libs2 = fListLibs;
2207  TString maclibs;
2208 
2209  static TRegexp separator("[^ \\t\\s]+");
2210  static TRegexp user_so("\\.so$");
2211 
2212  Ssiz_t start, index, end;
2213  start = index = end = 0;
2214 
2215  while ((start < libs2.Length()) && (index != kNPOS)) {
2216  index = libs2.Index(separator, &end, start);
2217  if (index >= 0) {
2218  // Change .so into .dylib and remove the
2219  // path info if it is not accessible
2220  TString s = libs2(index, end);
2221  if (s.Index(user_so) != kNPOS) {
2222  s.ReplaceAll(".so",".dylib");
2223  if ( GetPathInfo( s, 0, (Long_t*)0, 0, 0 ) != 0 ) {
2224  s.Replace( 0, s.Last('/')+1, 0, 0);
2225  s.Replace( 0, s.Last('\\')+1, 0, 0);
2226  }
2227  }
2228  if (!maclibs.IsNull()) maclibs.Append(" ");
2229  maclibs.Append(s);
2230  }
2231  start += end+1;
2232  }
2233  fListLibs = maclibs;
2234  }
2235 #endif
2236 
2237  return fListLibs;
2238 }
2239 
2240 //---- RPC ---------------------------------------------------------------------
2241 
2242 ////////////////////////////////////////////////////////////////////////////////
2243 /// Get Internet Protocol (IP) address of host.
2244 
2246 {
2247  AbstractMethod("GetHostByName");
2248  return TInetAddress();
2249 }
2250 
2251 ////////////////////////////////////////////////////////////////////////////////
2252 /// Get Internet Protocol (IP) address of remote host and port #.
2253 
2255 {
2256  AbstractMethod("GetPeerName");
2257  return TInetAddress();
2258 }
2259 
2260 ////////////////////////////////////////////////////////////////////////////////
2261 /// Get Internet Protocol (IP) address of host and port #.
2262 
2264 {
2265  AbstractMethod("GetSockName");
2266  return TInetAddress();
2267 }
2268 
2269 ////////////////////////////////////////////////////////////////////////////////
2270 /// Get port # of internet service.
2271 
2272 int TSystem::GetServiceByName(const char *)
2273 {
2274  AbstractMethod("GetServiceByName");
2275  return -1;
2276 }
2277 
2278 ////////////////////////////////////////////////////////////////////////////////
2279 /// Get name of internet service.
2280 
2282 {
2283  AbstractMethod("GetServiceByPort");
2284  return 0;
2285 }
2286 
2287 ////////////////////////////////////////////////////////////////////////////////
2288 /// Open a connection to another host.
2289 
2290 int TSystem::OpenConnection(const char*, int, int, const char*)
2291 {
2292  AbstractMethod("OpenConnection");
2293  return -1;
2294 }
2295 
2296 ////////////////////////////////////////////////////////////////////////////////
2297 /// Announce TCP/IP service.
2298 
2300 {
2301  AbstractMethod("AnnounceTcpService");
2302  return -1;
2303 }
2304 
2305 ////////////////////////////////////////////////////////////////////////////////
2306 /// Announce UDP service.
2307 
2309 {
2310  AbstractMethod("AnnounceUdpService");
2311  return -1;
2312 }
2313 
2314 ////////////////////////////////////////////////////////////////////////////////
2315 /// Announce unix domain service.
2316 
2318 {
2319  AbstractMethod("AnnounceUnixService");
2320  return -1;
2321 }
2322 
2323 ////////////////////////////////////////////////////////////////////////////////
2324 /// Announce unix domain service.
2325 
2326 int TSystem::AnnounceUnixService(const char *, int)
2327 {
2328  AbstractMethod("AnnounceUnixService");
2329  return -1;
2330 }
2331 
2332 ////////////////////////////////////////////////////////////////////////////////
2333 /// Accept a connection.
2334 
2336 {
2337  AbstractMethod("AcceptConnection");
2338  return -1;
2339 }
2340 
2341 ////////////////////////////////////////////////////////////////////////////////
2342 /// Close socket connection.
2343 
2345 {
2346  AbstractMethod("CloseConnection");
2347 }
2348 
2349 ////////////////////////////////////////////////////////////////////////////////
2350 /// Receive exactly length bytes into buffer. Use opt to receive out-of-band
2351 /// data or to have a peek at what is in the buffer (see TSocket).
2352 
2353 int TSystem::RecvRaw(int, void *, int, int)
2354 {
2355  AbstractMethod("RecvRaw");
2356  return -1;
2357 }
2358 
2359 ////////////////////////////////////////////////////////////////////////////////
2360 /// Send exactly length bytes from buffer. Use opt to send out-of-band
2361 /// data (see TSocket).
2362 
2363 int TSystem::SendRaw(int, const void *, int, int)
2364 {
2365  AbstractMethod("SendRaw");
2366  return -1;
2367 }
2368 
2369 ////////////////////////////////////////////////////////////////////////////////
2370 /// Receive a buffer headed by a length indicator.
2371 
2372 int TSystem::RecvBuf(int, void *, int)
2373 {
2374  AbstractMethod("RecvBuf");
2375  return -1;
2376 }
2377 
2378 ////////////////////////////////////////////////////////////////////////////////
2379 /// Send a buffer headed by a length indicator.
2380 
2381 int TSystem::SendBuf(int, const void *, int)
2382 {
2383  AbstractMethod("SendBuf");
2384  return -1;
2385 }
2386 
2387 ////////////////////////////////////////////////////////////////////////////////
2388 /// Set socket option.
2389 
2390 int TSystem::SetSockOpt(int, int, int)
2391 {
2392  AbstractMethod("SetSockOpt");
2393  return -1;
2394 }
2395 
2396 ////////////////////////////////////////////////////////////////////////////////
2397 /// Get socket option.
2398 
2399 int TSystem::GetSockOpt(int, int, int*)
2400 {
2401  AbstractMethod("GetSockOpt");
2402  return -1;
2403 }
2404 
2405 //---- System, CPU and Memory info ---------------------------------------------
2406 
2407 ////////////////////////////////////////////////////////////////////////////////
2408 /// Returns static system info, like OS type, CPU type, number of CPUs
2409 /// RAM size, etc into the SysInfo_t structure. Returns -1 in case of error,
2410 /// 0 otherwise.
2411 
2413 {
2414  AbstractMethod("GetSysInfo");
2415  return -1;
2416 }
2417 
2418 ////////////////////////////////////////////////////////////////////////////////
2419 /// Returns cpu load average and load info into the CpuInfo_t structure.
2420 /// Returns -1 in case of error, 0 otherwise. Use sampleTime to set the
2421 /// interval over which the CPU load will be measured, in ms (default 1000).
2422 
2424 {
2425  AbstractMethod("GetCpuInfo");
2426  return -1;
2427 }
2428 
2429 ////////////////////////////////////////////////////////////////////////////////
2430 /// Returns ram and swap memory usage info into the MemInfo_t structure.
2431 /// Returns -1 in case of error, 0 otherwise.
2432 
2434 {
2435  AbstractMethod("GetMemInfo");
2436  return -1;
2437 }
2438 
2439 ////////////////////////////////////////////////////////////////////////////////
2440 /// Returns cpu and memory used by this process into the ProcInfo_t structure.
2441 /// Returns -1 in case of error, 0 otherwise.
2442 
2444 {
2445  AbstractMethod("GetProcInfo");
2446  return -1;
2447 }
2448 
2449 //---- Script Compiler ---------------------------------------------------------
2450 
2451 void AssignAndDelete(TString& target, char *tobedeleted)
2452 {
2453  // Assign the char* value to the TString and then delete it.
2454 
2455  target = tobedeleted;
2456  delete [] tobedeleted;
2457 }
2458 
2459 #ifdef WIN32
2460 
2461 static TString R__Exec(const char *cmd)
2462 {
2463  // Execute a command and return the stdout in a string.
2464 
2465  FILE * f = gSystem->OpenPipe(cmd,"r");
2466  if (!f) {
2467  return "";
2468  }
2469  TString result;
2470 
2471  char x;
2472  while ((x = fgetc(f))!=EOF ) {
2473  if (x=='\n' || x=='\r') break;
2474  result += x;
2475  }
2476 
2477  fclose(f);
2478  return result;
2479 }
2480 
2481 static void R__FixLink(TString &cmd)
2482 {
2483  // Replace the call to 'link' by a full path name call based on where cl.exe is.
2484  // This prevents us from using inadvertently the link.exe provided by cygwin.
2485 
2486  // check if link is the microsoft one...
2487  TString res = R__Exec("link 2>&1");
2488  if (res.Length()) {
2489  if (res.Contains("Microsoft (R) Incremental Linker"))
2490  return;
2491  }
2492  // else check availability of cygpath...
2493  res = R__Exec("cygpath . 2>&1");
2494  if (res.Length()) {
2495  if (res != ".")
2496  return;
2497  }
2498 
2499  res = R__Exec("which cl.exe 2>&1|grep cl|sed 's,cl\\.exe$,link\\.exe,' 2>&1");
2500  if (res.Length()) {
2501  res = R__Exec(Form("cygpath -w '%s' 2>&1",res.Data()));
2502  if (res.Length()) {
2503  cmd.ReplaceAll(" link ",Form(" \"%s\" ",res.Data()));
2504  }
2505  }
2506 }
2507 #endif
2508 
2509 #ifndef WIN32
2510 static void R__AddPath(TString &target, const TString &path) {
2511  target += path;
2512 }
2513 #else
2514 static void R__AddPath(TString &target, const TString &path) {
2515  if (path.Length() > 2 && path[1]==':') {
2516  target += TString::Format("/cygdrive/%c",path[0]) + path(2,path.Length()-2);
2517  } else {
2518  target += path;
2519  }
2520 }
2521 #endif
2522 
2523 #ifndef WIN32
2524 static void R__WriteDependencyFile(const TString & build_loc, const TString &depfilename, const TString &filename, const TString &library, const TString &libname,
2525  const TString &extension, const char *version_var_prefix, const TString &includes, const TString &defines, const TString &incPath)
2526 #else
2527 static void R__WriteDependencyFile(const TString &build_loc, const TString &depfilename, const TString &filename, const TString &library, const TString &libname,
2528  const TString &extension, const char *version_var_prefix, const TString &includes, const TString &defines, const TString &incPath)
2529 #endif
2530 {
2531  // Generate the dependency via standard output, not searching the
2532  // standard include directories,
2533 
2534 #ifndef WIN32
2535  const char * stderrfile = "/dev/null";
2536 #else
2537  TString stderrfile;
2538  AssignAndDelete( stderrfile, gSystem->ConcatFileName(build_loc,"stderr.tmp") );
2539 #endif
2540  TString bakdepfilename = depfilename + ".bak";
2541 
2542 #ifdef WIN32
2543  TString touch = "echo # > "; touch += "\"" + depfilename + "\"";
2544 #else
2545  TString touch = "echo > "; touch += "\"" + depfilename + "\"";
2546 #endif
2547 #ifdef ROOTBINDIR
2548  TString builddep = ROOTBINDIR;
2549 #else
2550  TString builddep = TString(gRootDir) + "/bin";
2551 #endif
2552  builddep += "/rmkdepend \"-f";
2553  builddep += depfilename;
2554  builddep += "\" -o_" + extension + "." + gSystem->GetSoExt() + " ";
2555  if (build_loc.BeginsWith(gSystem->WorkingDirectory())) {
2556  Int_t len = strlen(gSystem->WorkingDirectory());
2557  if ( build_loc.Length() > (len+1) ) {
2558  builddep += " \"-p";
2559  if (build_loc[len] == '/' || build_loc[len+1] != '\\' ) {
2560  // Since the path is now ran through TSystem::ExpandPathName the single \ is also possible.
2561  R__AddPath(builddep, build_loc.Data() + len + 1 );
2562  } else {
2563  // Case of dir\\name
2564  R__AddPath(builddep, build_loc.Data() + len + 2 );
2565  }
2566  builddep += "/\" ";
2567  }
2568  } else {
2569  builddep += " \"-p";
2570  R__AddPath(builddep, build_loc);
2571  builddep += "/\" ";
2572  }
2573  builddep += " -Y -- ";
2574 #ifndef ROOTINCDIR
2575  TString rootsysInclude = gSystem->Getenv("ROOTSYS");
2576  rootsysInclude += "/include";
2577 #else
2578  TString rootsysInclude = ROOTINCDIR;
2579 #endif
2580  builddep += " \"-I"+rootsysInclude+"\" "; // cflags
2581  builddep += includes;
2582  builddep += defines;
2583  builddep += " -- \"";
2584  builddep += filename;
2585  builddep += "\" ";
2586  TString targetname;
2587  if (library.BeginsWith(gSystem->WorkingDirectory())) {
2588  Int_t len = strlen(gSystem->WorkingDirectory());
2589  if ( library.Length() > (len+1) ) {
2590  if (library[len] == '/' || library[len+1] != '\\' ) {
2591  targetname = library.Data() + len + 1;
2592  } else {
2593  targetname = library.Data() + len + 2;
2594  }
2595  } else {
2596  targetname = library;
2597  }
2598  } else {
2599  targetname = library;
2600  }
2601  builddep += " \"";
2602  builddep += "-t";
2603  R__AddPath(builddep, targetname);
2604  builddep += "\" > ";
2605  builddep += stderrfile;
2606  builddep += " 2>&1 ";
2607 
2608  TString adddictdep = "echo ";
2609  R__AddPath(adddictdep,targetname);
2610  adddictdep += ": ";
2611 #if defined(R__HAS_CLING_DICTVERSION)
2612  {
2613  char *clingdictversion = gSystem->Which(incPath,"clingdictversion.h");
2614  if (clingdictversion) {
2615  R__AddPath(adddictdep,clingdictversion);
2616  adddictdep += " ";
2617  delete [] clingdictversion;
2618  } else {
2619  R__AddPath(adddictdep,rootsysInclude+"/clingdictversion.h ");
2620  }
2621  }
2622 #endif
2623  {
2624  const char *dictHeaders[] = { "RVersion.h", "RConfig.h", "TClass.h",
2625  "TDictAttributeMap.h","TInterpreter.h","TROOT.h","TBuffer.h",
2626  "TMemberInspector.h","TError.h","RtypesImp.h","TIsAProxy.h",
2627  "TFileMergeInfo.h","TCollectionProxyInfo.h"};
2628 
2629  for (unsigned int h=0; h < sizeof(dictHeaders)/sizeof(dictHeaders[0]); ++h)
2630  {
2631  char *rootVersion = gSystem->Which(incPath,dictHeaders[h]);
2632  if (rootVersion) {
2633  R__AddPath(adddictdep,rootVersion);
2634  adddictdep += " ";
2635  delete [] rootVersion;
2636  } else {
2637  R__AddPath(adddictdep,rootsysInclude + "/" + dictHeaders[h]);
2638  }
2639  }
2640  }
2641  adddictdep += " >> \""+depfilename+"\"";
2642 
2643  TString addversiondep( "echo ");
2644  addversiondep += libname + version_var_prefix + " \"" + ROOT_RELEASE + "\" >> \""+depfilename+"\"";
2645 
2646  if (gDebug > 4) {
2647  ::Info("ACLiC", "%s", touch.Data());
2648  ::Info("ACLiC", "%s", builddep.Data());
2649  ::Info("ACLiC", "%s", adddictdep.Data());
2650  }
2651 
2652  Int_t depbuilt = !gSystem->Exec(touch);
2653  if (depbuilt) depbuilt = !gSystem->Exec(builddep);
2654  if (depbuilt) depbuilt = !gSystem->Exec(adddictdep);
2655  if (depbuilt) depbuilt = !gSystem->Exec(addversiondep);
2656 
2657  if (!depbuilt) {
2658  ::Warning("ACLiC","Failed to generate the dependency file for %s",
2659  library.Data());
2660  } else {
2661 #ifdef WIN32
2662  gSystem->Unlink(stderrfile);
2663 #endif
2664  gSystem->Unlink(bakdepfilename);
2665  }
2666 }
2667 
2668 ////////////////////////////////////////////////////////////////////////////////
2669 /// This method compiles and loads a shared library containing
2670 /// the code from the file "filename".
2671 ///
2672 /// The return value is true (1) in case of success and false (0)
2673 /// in case of error.
2674 ///
2675 /// The possible options are:
2676 /// - k : keep the shared library after the session end.
2677 /// - f : force recompilation.
2678 /// - g : compile with debug symbol
2679 /// - O : optimized the code
2680 /// - c : compile only, do not attempt to load the library.
2681 /// - s : silence all informational output
2682 /// - v : output all information output
2683 /// - d : debug ACLiC, keep all the output files.
2684 /// - - : if buildir is set, use a flat structure (see buildir below)
2685 ///
2686 /// If library_specified is specified, CompileMacro generates the file
2687 /// "library_specified".soext where soext is the shared library extension for
2688 /// the current platform.
2689 ///
2690 /// If build_dir is specified, it is used as an alternative 'root' for the
2691 /// generation of the shared library. The library is stored in a sub-directories
2692 /// of 'build_dir' including the full pathname of the script unless a flat
2693 /// directory structure is requested ('-' option). With the '-' option the libraries
2694 /// are created directly in the directory 'build_dir'; in particular this means that
2695 /// 2 scripts with the same name in different source directory will over-write each
2696 /// other's library.
2697 /// See also TSystem::SetBuildDir.
2698 ///
2699 /// If dirmode is not zero and we need to create the target directory, the
2700 /// file mode bit will be change to 'dirmode' using chmod.
2701 ///
2702 /// If library_specified is not specified, CompileMacro generate a default name
2703 /// for library by taking the name of the file "filename" but replacing the
2704 /// dot before the extension by an underscore and by adding the shared
2705 /// library extension for the current platform.
2706 /// For example on most platform, hsimple.cxx will generate hsimple_cxx.so
2707 ///
2708 /// It uses the directive fMakeSharedLibs to create a shared library.
2709 /// If loading the shared library fails, it tries to output a list of missing
2710 /// symbols by creating an executable (on some platforms like OSF, this does
2711 /// not HAVE to be an executable) containing the script. It uses the
2712 /// directive fMakeExe to do so.
2713 /// For both directives, before passing them to TSystem::Exec, it expands the
2714 /// variables $SourceFiles, $SharedLib, $LibName, $IncludePath, $LinkedLibs,
2715 /// $DepLibs, $ExeName and $ObjectFiles. See SetMakeSharedLib() for more
2716 /// information on those variables.
2717 ///
2718 /// This method is used to implement the following feature:
2719 ///
2720 /// Synopsis:
2721 ///
2722 /// The purpose of this addition is to allow the user to use an external
2723 /// compiler to create a shared library from its C++ macro (scripts).
2724 /// Currently in order to execute a script, a user has to type at the root
2725 /// prompt
2726 /// ~~~ {.cpp}
2727 /// .X myfunc.C(arg1,arg2)
2728 /// ~~~
2729 /// We allow them to type:
2730 /// ~~~ {.cpp}
2731 /// .X myfunc.C++(arg1,arg2)
2732 /// ~~~
2733 /// or
2734 /// ~~~ {.cpp}
2735 /// .X myfunc.C+(arg1,arg2)
2736 /// ~~~
2737 /// In which case an external compiler will be called to create a shared
2738 /// library. This shared library will then be loaded and the function
2739 /// myfunc will be called with the two arguments. With '++' the shared library
2740 /// is always recompiled. With '+' the shared library is recompiled only
2741 /// if it does not exist yet or the macro file is newer than the shared
2742 /// library.
2743 ///
2744 /// Of course the + and ++ notation is supported in similar way for .x and .L.
2745 ///
2746 /// Through the function TSystem::SetMakeSharedLib(), the user will be able to
2747 /// indicate, with shell commands, how to build a shared library (a good
2748 /// default will be provided). The most common change, namely where to find
2749 /// header files, will be available through the function
2750 /// TSystem::SetIncludePath().
2751 /// A good default will be provided so that a typical user session should be at
2752 /// most:
2753 /// ~~~ {.cpp}
2754 /// root[1] gSystem->SetIncludePath("-I$ROOTSYS/include
2755 /// -I$HOME/mypackage/include");
2756 /// root[2] .x myfunc.C++(10,20);
2757 /// ~~~
2758 /// The user may sometimes try to compile a script before it has loaded all the
2759 /// needed shared libraries. In this case we want to be helpfull and output a
2760 /// list of the unresolved symbols. So if the loading of the created shared
2761 /// library fails, we will try to build a executable that contains the
2762 /// script. The linker should then output a list of missing symbols.
2763 ///
2764 /// To support this we provide a TSystem::SetMakeExe() function, that sets the
2765 /// directive telling how to create an executable. The loader will need
2766 /// to be informed of all the libraries available. The information about
2767 /// the libraries that has been loaded by .L and TSystem::Load() is accesible
2768 /// to the script compiler. However, the information about
2769 /// the libraries that have been selected at link time by the application
2770 /// builder (like the root libraries for root.exe) are not available and need
2771 /// to be explicitly listed in fLinkedLibs (either by default or by a call to
2772 /// TSystem::SetLinkedLibs()).
2773 ///
2774 /// To simplify customization we could also add to the .rootrc support for the
2775 /// variables
2776 /// ~~~ {.cpp}
2777 /// Unix.*.Root.IncludePath: -I$ROOTSYS/include
2778 /// WinNT.*.Root.IncludePath: -I%ROOTSYS%/include
2779 ///
2780 /// Unix.*.Root.LinkedLibs: -L$ROOTSYS/lib -lBase ....
2781 /// WinNT.*.Root.LinkedLibs: %ROOTSYS%/lib/*.lib msvcrt.lib ....
2782 /// ~~~
2783 /// And also support for MakeSharedLibs() and MakeExe().
2784 ///
2785 /// (the ... have to be replaced by the actual values and are here only to
2786 /// shorten this comment).
2787 
2788 int TSystem::CompileMacro(const char *filename, Option_t *opt,
2789  const char *library_specified,
2790  const char *build_dir,
2791  UInt_t dirmode)
2792 {
2793  static const char *version_var_prefix = "__ROOTBUILDVERSION=";
2794 
2795  // ======= Analyze the options
2796  Bool_t keep = kFALSE;
2797  Bool_t recompile = kFALSE;
2798  EAclicMode mode = fAclicMode;
2799  Bool_t loadLib = kTRUE;
2800  Bool_t withInfo = kTRUE;
2801  Bool_t verbose = kFALSE;
2802  Bool_t internalDebug = kFALSE;
2803  if (opt) {
2804  keep = (strchr(opt,'k')!=0);
2805  recompile = (strchr(opt,'f')!=0);
2806  if (strchr(opt,'O')!=0) {
2807  mode = kOpt;
2808  }
2809  if (strchr(opt,'g')!=0) {
2810  mode = kDebug;
2811  }
2812  if (strchr(opt,'c')!=0) {
2813  loadLib = kFALSE;
2814  }
2815  withInfo = strchr(opt, 's') == 0;
2816  verbose = strchr(opt, 'v') != 0;
2817  internalDebug = strchr(opt, 'd') != 0;
2818  }
2819  if (mode==kDefault) {
2820  TString rootbuild = ROOTBUILD;
2821  if (rootbuild.Index("debug",0,TString::kIgnoreCase)==kNPOS) {
2822  mode=kOpt;
2823  } else {
2824  mode=kDebug;
2825  }
2826  }
2827  UInt_t verboseLevel = verbose ? 7 : gDebug;
2828  Bool_t flatBuildDir = (fAclicProperties & kFlatBuildDir) || (strchr(opt,'-')!=0);
2829 
2830  // if non-zero, build_loc indicates where to build the shared library.
2831  TString build_loc = ExpandFileName(GetBuildDir());
2832  if (build_dir && strlen(build_dir)) build_loc = build_dir;
2833  if (build_loc == ".") {
2834  build_loc = WorkingDirectory();
2835  } else if (build_loc.Length() && (!IsAbsoluteFileName(build_loc)) ) {
2836  AssignAndDelete( build_loc , ConcatFileName( WorkingDirectory(), build_loc ) );
2837  }
2838 
2839  // Get the include directory list in the dir1:dir2:dir3 format
2840  // [Used for generating the .d file and to look for header files for
2841  // the linkdef file]
2842  TString incPath = GetIncludePath(); // of the form -Idir1 -Idir2 -Idir3
2843  incPath.Append(":").Prepend(" ");
2844  if (gEnv) {
2845  TString fromConfig = gEnv->GetValue("ACLiC.IncludePaths","");
2846  incPath.Append(fromConfig);
2847  }
2848  incPath.ReplaceAll(" -I",":"); // of form :dir1 :dir2:dir3
2849  while ( incPath.Index(" :") != -1 ) {
2850  incPath.ReplaceAll(" :",":");
2851  }
2852  incPath.Prepend(":.:");
2853  incPath.Prepend(WorkingDirectory());
2854 
2855  // ======= Get the right file names for the dictionary and the shared library
2856  TString expFileName(filename);
2857  ExpandPathName( expFileName );
2858  TString library = expFileName;
2859  if (! IsAbsoluteFileName(library) )
2860  {
2861  const char *whichlibrary = Which(incPath,library);
2862  if (whichlibrary) {
2863  library = whichlibrary;
2864  delete [] whichlibrary;
2865  } else {
2866  ::Error("ACLiC","The file %s can not be found in the include path: %s",filename,incPath.Data());
2867  return kFALSE;
2868  }
2869  } else {
2870  if (gSystem->AccessPathName(library)) {
2871  ::Error("ACLiC","The file %s can not be found.",filename);
2872  return kFALSE;
2873  }
2874  }
2875  { // Remove multiple '/' characters, rootcint treats them as comments.
2876  Ssiz_t pos = 0;
2877  while ((pos = library.Index("//", 2, pos, TString::kExact)) != kNPOS) {
2878  library.Remove(pos, 1);
2879  }
2880  }
2881  TString filename_fullpath = library;
2882 
2883  TString file_dirname = DirName( filename_fullpath );
2884  // For some probably good reason, DirName on Windows returns the 'name' of
2885  // the directory, omitting the drive letter (even if there was one). In
2886  // consequence the result is not useable as a 'root directory', we need to
2887  // add the drive letter if there was one..
2888  if (library.Length()>1 && isalpha(library[0]) && library[1]==':') {
2889  file_dirname.Prepend(library(0,2));
2890  }
2891  TString file_location( file_dirname ); // Location of the script.
2892  incPath.Prepend( file_location + ":" );
2893 
2894  Ssiz_t dot_pos = library.Last('.');
2895  TString extension = library;
2896  extension.Replace( 0, dot_pos+1, 0 , 0);
2897  TString libname_noext = library;
2898  if (dot_pos>=0) libname_noext.Remove( dot_pos );
2899 
2900  // Extension of shared library is platform dependent!!
2901  library.Replace( dot_pos, library.Length()-dot_pos,
2902  TString("_") + extension + "." + fSoExt );
2903 
2904  TString libname ( BaseName( libname_noext ) );
2905  libname.Append("_").Append(extension);
2906 
2907  if (library_specified && strlen(library_specified) ) {
2908  // Use the specified name instead of the default
2909  libname = BaseName( library_specified );
2910  library = library_specified;
2911  ExpandPathName( library );
2912  if (! IsAbsoluteFileName(library) ) {
2913  AssignAndDelete( library , ConcatFileName( WorkingDirectory(), library ) );
2914  }
2915  library = TString(library) + "." + fSoExt;
2916  }
2917 
2918  TString libname_ext ( libname );
2919  libname_ext += "." + fSoExt;
2920 
2921  TString lib_dirname = DirName( library );
2922  // For some probably good reason, DirName on Windows returns the 'name' of
2923  // the directory, omitting the drive letter (even if there was one). In
2924  // consequence the result is not useable as a 'root directory', we need to
2925  // add the drive letter if there was one..
2926  if (library.Length()>1 && isalpha(library[0]) && library[1]==':') {
2927  lib_dirname.Prepend(library(0,2));
2928  }
2929  // Strip potential, somewhat redundant '/.' from the pathname ...
2930  if ( strncmp( &(lib_dirname[lib_dirname.Length()-2]), "/.", 2) == 0 ) {
2931  lib_dirname.Remove(lib_dirname.Length()-2);
2932  }
2933  if ( strncmp( &(lib_dirname[lib_dirname.Length()-2]), "\\.", 2) == 0 ) {
2934  lib_dirname.Remove(lib_dirname.Length()-2);
2935  }
2936  TString lib_location( lib_dirname );
2937  Bool_t mkdirFailed = kFALSE;
2938 
2939  if (build_loc.Length()==0) {
2940  build_loc = lib_location;
2941  } else {
2942  // Removes an existing disk specification from the names
2943  TRegexp disk_finder ("[A-z]:");
2944  Int_t pos = library.Index( disk_finder );
2945  if (pos==0) library.Remove(pos,3);
2946  pos = lib_location.Index( disk_finder );
2947  if (pos==0) lib_location.Remove(pos,3);
2948 
2949  if (flatBuildDir) {
2950  AssignAndDelete( library, ConcatFileName( build_loc, libname_ext) );
2951  } else {
2952  AssignAndDelete( library, ConcatFileName( build_loc, library) );
2953  }
2954 
2955  Bool_t canWriteBuild_loc = !gSystem->AccessPathName(build_loc,kWritePermission);
2956  TString build_loc_store( build_loc );
2957  if (!flatBuildDir) {
2958  AssignAndDelete( build_loc, ConcatFileName( build_loc, lib_location) );
2959  }
2960 
2961  if (gSystem->AccessPathName(build_loc,kFileExists)) {
2962  mkdirFailed = (0 != mkdir(build_loc, true));
2963  if (mkdirFailed && !canWriteBuild_loc) {
2964  // The mkdir failed __and__ we can not write to the target directory,
2965  // let make sure the error message will be about the target directory
2966  build_loc = build_loc_store;
2967  mkdirFailed = kFALSE;
2968  } else if (!mkdirFailed && dirmode!=0) {
2969  Chmod(build_loc,dirmode);
2970  }
2971  }
2972  }
2973 
2974  // ======= Check if the library need to loaded or compiled
2975  if ( gInterpreter->IsLoaded(expFileName) &&
2976  !gInterpreter->IsLoaded(library) ) {
2977  // the script has already been loaded in interpreted mode
2978  // Let's warn the user and unload it.
2979 
2980  if (withInfo) {
2981  ::Info("ACLiC","script has already been loaded in interpreted mode");
2982  ::Info("ACLiC","unloading %s and compiling it", filename);
2983  }
2984 
2985  if ( gInterpreter->UnloadFile( expFileName ) != 0 ) {
2986  // We can not unload it.
2987  return kFALSE;
2988  }
2989  }
2990 
2991  // Calculate the -I lines
2992  TString includes = GetIncludePath();
2993  includes.Prepend(' ');
2994 
2995  {
2996  // I need to replace the -Isomerelativepath by -I../ (or -I..\ on NT)
2997  TRegexp rel_inc(" -I[^\"/\\$%-][^:-]+");
2998  Int_t len,pos;
2999  pos = rel_inc.Index(includes,&len);
3000  while( len != 0 ) {
3001  TString sub = includes(pos,len);
3002  sub.Remove(0,3); // Remove ' -I'
3004  sub.Prepend(" -I\"");
3005  sub.Append("\"");
3006  includes.Replace(pos,len,sub);
3007  pos = rel_inc.Index(includes,&len);
3008  }
3009  }
3010  {
3011  // I need to replace the -I"somerelativepath" by -I"$cwd/ (or -I"$cwd\ on NT)
3012  TRegexp rel_inc(" -I\"[^/\\$%-][^:-]+");
3013  Int_t len,pos;
3014  pos = rel_inc.Index(includes,&len);
3015  while( len != 0 ) {
3016  TString sub = includes(pos,len);
3017  sub.Remove(0,4); // Remove ' -I"'
3019  sub.Prepend(" -I\"");
3020  includes.Replace(pos,len,sub);
3021  pos = rel_inc.Index(includes,&len);
3022  }
3023  }
3024  //includes += " -I\"" + build_loc;
3025  //includes += "\" -I\"";
3026  //includes += WorkingDirectory();
3027 // if (includes[includes.Length()-1] == '\\') {
3028 // // The current directory is (most likely) the root of a windows drive and
3029 // // has a trailing \ which would espace the quote if left by itself.
3030 // includes += '\\';
3031 // }
3032 // includes += "\"";
3033  if (gEnv) {
3034  TString fromConfig = gEnv->GetValue("ACLiC.IncludePaths","");
3035  includes.Append(" ").Append(fromConfig).Append(" ");
3036  }
3037 
3038  // Extract the -D for the dependency generation.
3039  TString defines = " ";
3040  {
3041  TString cmd = GetMakeSharedLib();
3042  TRegexp rel_def("-D[^\\s\\t\\n\\r]*");
3043  Int_t len,pos;
3044  pos = rel_def.Index(cmd,&len);
3045  while( len != 0 ) {
3046  defines += cmd(pos,len);
3047  defines += " ";
3048  pos = rel_def.Index(cmd,&len,pos+1);
3049  }
3050 
3051  }
3052 
3053  TString emergency_loc;
3054  {
3055  UserGroup_t *ug = gSystem->GetUserInfo(gSystem->GetUid());
3056  if (ug) {
3057  AssignAndDelete( emergency_loc, ConcatFileName( TempDirectory(), ug->fUser ) );
3058  delete ug;
3059  } else {
3060  emergency_loc = TempDirectory();
3061  }
3062  }
3063 
3064  Bool_t canWrite = !gSystem->AccessPathName(build_loc,kWritePermission);
3065 
3066  Bool_t modified = kFALSE;
3067 
3068  // Generate the dependency filename
3069  TString depdir = build_loc;
3070  TString depfilename;
3071  AssignAndDelete( depfilename, ConcatFileName(depdir, BaseName(libname_noext)) );
3072  depfilename += "_" + extension + ".d";
3073 
3074  if ( !recompile ) {
3075 
3076  Long_t lib_time, file_time;
3077 
3078  if ((gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time ) != 0) ||
3079  (gSystem->GetPathInfo( expFileName, 0, (Long_t*)0, 0, &file_time ) == 0 &&
3080  (lib_time < file_time))) {
3081 
3082  // the library does not exist or is older than the script.
3083  recompile = kTRUE;
3084  modified = kTRUE;
3085 
3086  } else {
3087 
3088  if ( gSystem->GetPathInfo( depfilename, 0,(Long_t*) 0, 0, &file_time ) != 0 ) {
3089  if (!canWrite) {
3090  depdir = emergency_loc;
3091  AssignAndDelete( depfilename, ConcatFileName(depdir, BaseName(libname_noext)) );
3092  depfilename += "_" + extension + ".d";
3093  }
3094  R__WriteDependencyFile(build_loc, depfilename, filename_fullpath, library, libname, extension, version_var_prefix, includes, defines, incPath);
3095  }
3096  }
3097 
3098  if (!modified) {
3099 
3100  // We need to check the dependencies
3101  FILE * depfile = fopen(depfilename.Data(),"r");
3102  if (depfile==0) {
3103  // there is no accessible dependency file, let's assume the library has been
3104  // modified
3105  modified = kTRUE;
3106  recompile = kTRUE;
3107 
3108  } else {
3109 
3110  TString version_var = libname + version_var_prefix;
3111 
3112  Int_t sz = 256;
3113  char *line = new char[sz];
3114  line[0] = 0;
3115 
3116  int c;
3117  Int_t current = 0;
3118  Int_t nested = 0;
3119  Bool_t hasversion = false;
3120 
3121  while ((c = fgetc(depfile)) != EOF) {
3122  if (c=='#') {
3123  // skip comment
3124  while ((c = fgetc(depfile)) != EOF) {
3125  if (c=='\n') {
3126  break;
3127  }
3128  }
3129  continue;
3130  }
3131  if (current && line[current-1]=='=' && strncmp(version_var.Data(),line,current)==0) {
3132 
3133  // The next word will be the version number.
3134  hasversion = kTRUE;
3135  line[0] = 0;
3136  current = 0;
3137  } else if (isspace(c) && !nested) {
3138  if (current) {
3139  if (line[current-1]!=':') {
3140  // ignore target
3141  line[current] = 0;
3142 
3143  Long_t filetime;
3144  if (hasversion) {
3145  modified |= strcmp(ROOT_RELEASE,line)!=0;
3146  hasversion = kFALSE;
3147  } else if ( gSystem->GetPathInfo( line, 0, (Long_t*)0, 0, &filetime ) == 0 ) {
3148  modified |= ( lib_time <= filetime );
3149  }
3150  }
3151  }
3152  current = 0;
3153  line[0] = 0;
3154  } else {
3155  if (current==sz-1) {
3156  sz = 2*sz;
3157  char *newline = new char[sz];
3158  strcpy(newline,line);
3159  delete [] line;
3160  line = newline;
3161  }
3162  if (c=='"') nested = !nested;
3163  else {
3164  line[current] = c;
3165  current++;
3166  }
3167  }
3168  }
3169  delete [] line;
3170  fclose(depfile);
3171  recompile = modified;
3172 
3173  }
3174 
3175  }
3176  }
3177 
3178  if ( gInterpreter->IsLoaded(library)
3179  || strlen(GetLibraries(library,"D",kFALSE)) != 0 ) {
3180  // The library has already been built and loaded.
3181 
3182  Bool_t reload = kFALSE;
3183  TNamed *libinfo = (TNamed*)fCompiled->FindObject(library);
3184  if (libinfo) {
3185  Long_t load_time = libinfo->GetUniqueID();
3186  Long_t lib_time;
3187  if ( gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time ) == 0
3188  && (lib_time>load_time)) {
3189  reload = kTRUE;
3190  }
3191  }
3192 
3193  if ( !recompile && reload ) {
3194 
3195  if (withInfo) {
3196  ::Info("ACLiC","%s has been modified and will be reloaded",
3197  libname.Data());
3198  }
3199  if ( gInterpreter->UnloadFile( library.Data() ) != 0 ) {
3200  // The library is being used. We can not unload it.
3201  return kFALSE;
3202  }
3203  if (libinfo) {
3204  fCompiled->Remove(libinfo);
3205  delete libinfo;
3206  libinfo = 0;
3207  }
3208  TNamed *k = new TNamed(library,library);
3209  Long_t lib_time;
3210  gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time );
3211  k->SetUniqueID(lib_time);
3212  if (!keep) k->SetBit(kMustCleanup);
3213  fCompiled->Add(k);
3214 
3215  return !gSystem->Load(library);
3216  }
3217 
3218  if (withInfo) {
3219  ::Info("ACLiC","%s script has already been compiled and loaded",
3220  modified ? "modified" : "unmodified");
3221  }
3222 
3223  if ( !recompile ) {
3224  return kTRUE;
3225  } else {
3226  if (withInfo) {
3227  ::Info("ACLiC","it will be regenerated and reloaded!");
3228  }
3229  if ( gInterpreter->UnloadFile( library.Data() ) != 0 ) {
3230  // The library is being used. We can not unload it.
3231  return kFALSE;
3232  }
3233  if (libinfo) {
3234  fCompiled->Remove(libinfo);
3235  delete libinfo;
3236  libinfo = 0;
3237  }
3238  Unlink(library);
3239  }
3240 
3241  }
3242 
3243  TString libmapfilename;
3244  AssignAndDelete( libmapfilename, ConcatFileName( build_loc, libname ) );
3245  libmapfilename += ".rootmap";
3246 #if (defined(R__MACOSX) && !defined(MAC_OS_X_VERSION_10_5)) || defined(R__WIN32)
3247  Bool_t produceRootmap = kTRUE;
3248 #else
3249  Bool_t produceRootmap = kFALSE;
3250 #endif
3251  Bool_t linkDepLibraries = !produceRootmap;
3252  if (gEnv) {
3253 #if (defined(R__MACOSX) && !defined(MAC_OS_X_VERSION_10_5))
3254  Int_t linkLibs = gEnv->GetValue("ACLiC.LinkLibs",2);
3255 #elif defined(R__WIN32)
3256  Int_t linkLibs = gEnv->GetValue("ACLiC.LinkLibs",3);
3257 #else
3258  Int_t linkLibs = gEnv->GetValue("ACLiC.LinkLibs",1);
3259 #endif
3260  produceRootmap = linkLibs & 0x2;
3261  linkDepLibraries = linkLibs & 0x1;
3262  }
3263 
3264  if (!recompile) {
3265  // The library already exist, let's just load it.
3266  if (loadLib) {
3267  TNamed *k = new TNamed(library,library);
3268  Long_t lib_time;
3269  gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time );
3270  k->SetUniqueID(lib_time);
3271  if (!keep) k->SetBit(kMustCleanup);
3272  fCompiled->Add(k);
3273 
3274  if (gInterpreter->GetSharedLibDeps(libname) == 0) {
3275  gInterpreter->LoadLibraryMap(libmapfilename);
3276  }
3277 
3278  return !gSystem->Load(library);
3279  }
3280  else return kTRUE;
3281  }
3282 
3283  if (!canWrite && recompile) {
3284 
3285  if (mkdirFailed) {
3286  ::Warning("ACLiC","Could not create the directory: %s",
3287  build_loc.Data());
3288  } else {
3289  ::Warning("ACLiC","%s is not writable!",
3290  build_loc.Data());
3291  }
3292  if (emergency_loc == build_dir ) {
3293  ::Error("ACLiC","%s is the last resort location (i.e. temp location)",build_loc.Data());
3294  return kFALSE;
3295  }
3296  ::Warning("ACLiC","Output will be written to %s",
3297  emergency_loc.Data());
3298  return CompileMacro(expFileName, opt, library_specified, emergency_loc, dirmode);
3299  }
3300 
3301  if (withInfo) {
3302  Info("ACLiC","creating shared library %s",library.Data());
3303  }
3304 
3305  R__WriteDependencyFile(build_loc, depfilename, filename_fullpath, library, libname, extension, version_var_prefix, includes, defines, incPath);
3306 
3307  // ======= Select the dictionary name
3308  TString dict = libname + "_ACLiC_dict";
3309 
3310  // the file name end up in the file produced
3311  // by rootcint as a variable name so all character need to be valid!
3312  static const int maxforbidden = 27;
3313  static const char *forbidden_chars[maxforbidden] =
3314  { "+","-","*","/","&","%","|","^",">","<",
3315  "=","~",".","(",")","[","]","!",",","$",
3316  " ",":","'","#","@","\\","\"" };
3317  for( int ic = 0; ic < maxforbidden; ic++ ) {
3318  dict.ReplaceAll( forbidden_chars[ic],"_" );
3319  }
3320  if ( dict.Last('.')!=dict.Length()-1 ) dict.Append(".");
3321  AssignAndDelete( dict, ConcatFileName( build_loc, dict ) );
3322  TString dicth = dict;
3323  TString dictObj = dict;
3324  dict += "cxx"; //no need to keep the extension of the original file, any extension will do
3325  dicth += "h";
3326  dictObj += fObjExt;
3327 
3328  // ======= Generate a linkdef file
3329 
3330  TString linkdef;
3331  AssignAndDelete( linkdef, ConcatFileName( build_loc, libname ) );
3332  linkdef += "_ACLiC_linkdef.h";
3333  std::ofstream linkdefFile( linkdef, std::ios::out );
3334  linkdefFile << "// File Automatically generated by the ROOT Script Compiler "
3335  << std::endl;
3336  linkdefFile << std::endl;
3337  linkdefFile << "#ifdef __CINT__" << std::endl;
3338  linkdefFile << std::endl;
3339  linkdefFile << "#pragma link C++ nestedclasses;" << std::endl;
3340  linkdefFile << "#pragma link C++ nestedtypedefs;" << std::endl;
3341  linkdefFile << std::endl;
3342 
3343  // We want to look for a header file that has the same name as the macro
3344 
3345  const char * extensions[] = { ".h", ".hh", ".hpp", ".hxx", ".hPP", ".hXX" };
3346 
3347  int i;
3348  for (i = 0; i < 6; i++ ) {
3349  char * name;
3350  TString extra_linkdef = BaseName( libname_noext );
3351  extra_linkdef.Append(GetLinkdefSuffix());
3352  extra_linkdef.Append(extensions[i]);
3353  name = Which(incPath,extra_linkdef);
3354  if (name) {
3355  if (verboseLevel>4 && withInfo) {
3356  Info("ACLiC","including extra linkdef file: %s",name);
3357  }
3358  linkdefFile << "#include \"" << name << "\"" << std::endl;
3359  delete [] name;
3360  }
3361  }
3362 
3363  if (verboseLevel>5 && withInfo) {
3364  Info("ACLiC","looking for header in: %s",incPath.Data());
3365  }
3366  for (i = 0; i < 6; i++ ) {
3367  char * name;
3368  TString lookup = BaseName( libname_noext );
3369  lookup.Append(extensions[i]);
3370  name = Which(incPath,lookup);
3371  if (name) {
3372  linkdefFile << "#pragma link C++ defined_in "<<name<<";"<< std::endl;
3373  delete [] name;
3374  }
3375  }
3376  linkdefFile << "#pragma link C++ defined_in \""<<filename_fullpath << "\";" << std::endl;
3377  linkdefFile << std::endl;
3378  linkdefFile << "#endif" << std::endl;
3379  linkdefFile.close();
3380 
3381  // ======= Generate the list of rootmap files to be looked at
3382 
3383  TString mapfile;
3384  AssignAndDelete( mapfile, ConcatFileName( build_loc, libname ) );
3385  mapfile += "_ACLiC_map";
3386  TString mapfilein = mapfile + ".in";
3387  TString mapfileout = mapfile + ".out";
3388 
3389  Bool_t needLoadMap = kFALSE;
3390  if (gInterpreter->GetSharedLibDeps(libname) !=0 ) {
3391  gInterpreter->UnloadLibraryMap(libname);
3392  needLoadMap = kTRUE;
3393  }
3394 
3395  std::ofstream mapfileStream( mapfilein, std::ios::out );
3396  {
3397  TString name = ".rootmap";
3398  TString sname = "system.rootmap";
3399  TString file;
3400 #ifdef ROOTETCDIR
3401  AssignAndDelete(file, ConcatFileName(ROOTETCDIR, sname) );
3402 #else
3403  TString etc = gRootDir;
3404 #ifdef WIN32
3405  etc += "\\etc";
3406 #else
3407  etc += "/etc";
3408 #endif
3409  AssignAndDelete(file, ConcatFileName(etc, sname));
3410  if (gSystem->AccessPathName(file)) {
3411  // for backward compatibility check also $ROOTSYS/system<name> if
3412  // $ROOTSYS/etc/system<name> does not exist
3413  AssignAndDelete(file, ConcatFileName(gRootDir, sname));
3414  if (gSystem->AccessPathName(file)) {
3415  // for backward compatibility check also $ROOTSYS/<name> if
3416  // $ROOTSYS/system<name> does not exist
3417  AssignAndDelete(file, ConcatFileName(gRootDir, name));
3418  }
3419  }
3420 #endif
3421  mapfileStream << file << std::endl;
3422  AssignAndDelete(file, ConcatFileName(gSystem->HomeDirectory(), name) );
3423  mapfileStream << file << std::endl;
3424  mapfileStream << name << std::endl;
3425  if (gInterpreter->GetRootMapFiles()) {
3426  for (i = 0; i < gInterpreter->GetRootMapFiles()->GetEntriesFast(); i++) {
3427  mapfileStream << ((TNamed*)gInterpreter->GetRootMapFiles()->At(i))->GetTitle() << std::endl;
3428  }
3429  }
3430  }
3431  mapfileStream.close();
3432 
3433  // ======= Generate the rootcling command line
3434  TString rcling;
3435 #ifndef ROOTBINDIR
3436  rcling = gSystem->Getenv("ROOTSYS");
3437 #ifndef R__WIN32
3438  rcling += "/bin/";
3439 #else
3440  rcling += "\\bin\\";
3441 #endif
3442 #else
3443  rcling = ROOTBINDIR;
3444 #ifndef R__WIN32
3445  rcling += "/";
3446 #else
3447  rcling += "\\";
3448 #endif
3449 #endif
3450  rcling += "rootcling -v0 \"--lib-list-prefix=";
3451  rcling += mapfile;
3452  rcling += "\" -f \"";
3453  rcling.Append(dict).Append("\" -c -p ");
3454  if (produceRootmap) {
3455  rcling += " -rml " + libname + " -rmf \"" + libmapfilename + "\" ";
3456  }
3457  rcling.Append(GetIncludePath()).Append(" -D__ACLIC__ ");
3458  if (produceRootmap) {
3459  rcling.Append("-DR__ACLIC_ROOTMAP ");
3460  }
3461  if (gEnv) {
3462  TString fromConfig = gEnv->GetValue("ACLiC.IncludePaths","");
3463  rcling.Append(fromConfig).Append(" \"");
3464  }
3465  rcling.Append(filename_fullpath).Append("\" \"").Append(linkdef).Append("\"");;
3466 
3467  // ======= Run rootcint
3468  if (withInfo) {
3469  if (verboseLevel>3) {
3470  ::Info("ACLiC","creating the dictionary files");
3471  if (verboseLevel>4) ::Info("ACLiC", "%s", rcling.Data());
3472  }
3473  }
3474 
3475  Int_t dictResult = gSystem->Exec(rcling);
3476  if (dictResult) {
3477  if (dictResult==139) ::Error("ACLiC","Dictionary generation failed with a core dump!");
3478  else ::Error("ACLiC","Dictionary generation failed!");
3479  }
3480 
3481  Bool_t result = !dictResult;
3482  TString depLibraries;
3483 
3484  // ======= Load the library the script might depend on
3485  if (result) {
3486  TString linkedlibs = GetLibraries("", "S");
3487  TString libtoload;
3488  TString all_libtoload;
3489  std::ifstream liblist(mapfileout);
3490 
3491  while ( liblist >> libtoload ) {
3492  // Load the needed library except for the library we are currently building!
3493  if (libtoload == "#") {
3494  // The comment terminates the list of libraries.
3495  std::string toskipcomment;
3496  std::getline(liblist,toskipcomment);
3497  break;
3498  }
3499  if (libtoload != library && libtoload != libname && libtoload != libname_ext) {
3500  if (produceRootmap) {
3501  if (loadLib || linkDepLibraries /* For GetLibraries to Work */) {
3502  result = gROOT->LoadClass("", libtoload) >= 0;
3503  if (!result) {
3504  // We failed to load one of the dependency.
3505  break;
3506  }
3507  }
3508  if (!linkedlibs.Contains(libtoload)) {
3509  all_libtoload.Append(" ").Append(libtoload);
3510  depLibraries.Append(" ");
3511  depLibraries.Append(GetLibraries(libtoload,"DSL",kFALSE));
3512  depLibraries = depLibraries.Strip(); // Remove any trailing spaces.
3513  }
3514  } else {
3515  gROOT->LoadClass("", libtoload);
3516  }
3517  }
3518  unsigned char c = liblist.peek();
3519  if (c=='\n' || c=='\r') {
3520  // Consume the character
3521  liblist.get();
3522  break;
3523  }
3524  }
3525 
3526 // depLibraries = all_libtoload;
3527 // depLibraries.ReplaceAll(" lib"," -l");
3528 // depLibraries.ReplaceAll(TString::Format(".%s",fSoExt.Data()),"");
3529  }
3530 
3531  // ======= Calculate the libraries for linking:
3532  TString linkLibraries;
3533  /*
3534  this is intentionally disabled until it can become useful
3535  if (gEnv) {
3536  linkLibraries = gEnv->GetValue("ACLiC.Libraries","");
3537  linkLibraries.Prepend(" ");
3538  }
3539  */
3540  TString linkLibrariesNoQuotes(GetLibraries("","SDL"));
3541  // We need to enclose the single paths in quotes to account for paths with spaces
3542  TString librariesWithQuotes;
3543  TString singleLibrary;
3544  Bool_t collectingSingleLibraryNameTokens = kFALSE;
3545  for (auto tokenObj : *linkLibrariesNoQuotes.Tokenize(" ")) {
3546  singleLibrary = ((TObjString*)tokenObj)->GetString();
3547  if (!AccessPathName(singleLibrary)) {
3548  if (collectingSingleLibraryNameTokens) {
3549  librariesWithQuotes.Chop();
3550  librariesWithQuotes += "\" \"" + singleLibrary + "\"";
3551  collectingSingleLibraryNameTokens = kFALSE;
3552  } else {
3553  librariesWithQuotes += " \"" + singleLibrary + "\"";
3554  }
3555  } else {
3556  if (collectingSingleLibraryNameTokens) {
3557  librariesWithQuotes += singleLibrary + " ";
3558  } else {
3559  collectingSingleLibraryNameTokens = kTRUE;
3560  librariesWithQuotes += " \"" + singleLibrary + " ";
3561  }
3562  }
3563  }
3564 
3565  linkLibraries.Prepend(librariesWithQuotes);
3566 
3567  // ======= Generate the build command lines
3568  TString cmd = fMakeSharedLib;
3569  // we do not add filename because it is already included via the dictionary(in dicth) !
3570  // dict.Append(" ").Append(filename);
3571  cmd.ReplaceAll("$SourceFiles","-D__ACLIC__ \"$SourceFiles\"");
3572  cmd.ReplaceAll("$SourceFiles",dict);
3573  cmd.ReplaceAll("$ObjectFiles","\"$ObjectFiles\"");
3574  cmd.ReplaceAll("$ObjectFiles",dictObj);
3575  cmd.ReplaceAll("$IncludePath",includes);
3576  cmd.ReplaceAll("$SharedLib","\"$SharedLib\"");
3577  cmd.ReplaceAll("$SharedLib",library);
3578  if (linkDepLibraries) {
3579  if (produceRootmap) {
3580  cmd.ReplaceAll("$DepLibs",depLibraries);
3581  } else {
3582  cmd.ReplaceAll("$DepLibs",linkLibraries);
3583  }
3584  }
3585  cmd.ReplaceAll("$LinkedLibs",linkLibraries);
3586  cmd.ReplaceAll("$LibName",libname);
3587  cmd.ReplaceAll("\"$BuildDir","$BuildDir");
3588  cmd.ReplaceAll("$BuildDir","\"$BuildDir\"");
3589  cmd.ReplaceAll("$BuildDir",build_loc);
3590  if (mode==kDebug) {
3591  cmd.ReplaceAll("$Opt",fFlagsDebug);
3592  } else {
3593  cmd.ReplaceAll("$Opt",fFlagsOpt);
3594  }
3595 #ifdef WIN32
3596  R__FixLink(cmd);
3597 #endif
3598 
3599  TString testcmd = fMakeExe;
3600  TString fakeMain;
3601  AssignAndDelete( fakeMain, ConcatFileName( build_loc, libname ) );
3602  fakeMain += "_ACLiC_main";
3603  fakeMain += extension;
3604  std::ofstream fakeMainFile( fakeMain, std::ios::out );
3605  fakeMainFile << "// File Automatically generated by the ROOT Script Compiler "
3606  << std::endl;
3607  fakeMainFile << "int main(char*argc,char**argvv) {};" << std::endl;
3608  fakeMainFile.close();
3609  // We could append this fake main routine to the compilation line.
3610  // But in this case compiler may output the name of the dictionary file
3611  // and of the fakeMain file while it compiles it. (this would be useless
3612  // confusing output).
3613  // We could also the fake main routine to the end of the dictionary file
3614  // however compilation would fail if a main is already there
3615  // (like stress.cxx)
3616  // dict.Append(" ").Append(fakeMain);
3617  TString exec;
3618  AssignAndDelete( exec, ConcatFileName( build_loc, libname ) );
3619  exec += "_ACLiC_exec";
3620  testcmd.ReplaceAll("$SourceFiles","-D__ACLIC__ \"$SourceFiles\"");
3621  testcmd.ReplaceAll("$SourceFiles",dict);
3622  testcmd.ReplaceAll("$ObjectFiles","\"$ObjectFiles\"");
3623  testcmd.ReplaceAll("$ObjectFiles",dictObj);
3624  testcmd.ReplaceAll("$IncludePath",includes);
3625  testcmd.ReplaceAll("$ExeName",exec);
3626  testcmd.ReplaceAll("$LinkedLibs",linkLibraries);
3627  testcmd.ReplaceAll("$BuildDir",build_loc);
3628  if (mode==kDebug)
3629  testcmd.ReplaceAll("$Opt",fFlagsDebug);
3630  else
3631  testcmd.ReplaceAll("$Opt",fFlagsOpt);
3632 
3633 #ifdef WIN32
3634  R__FixLink(testcmd);
3635 #endif
3636 
3637  // ======= Build the library
3638  if (result) {
3639  if (verboseLevel>3 && withInfo) {
3640  ::Info("ACLiC","compiling the dictionary and script files");
3641  if (verboseLevel>4) ::Info("ACLiC", "%s", cmd.Data());
3642  }
3643  Int_t compilationResult = gSystem->Exec( cmd );
3644  if (compilationResult) {
3645  if (compilationResult==139) ::Error("ACLiC","Compilation failed with a core dump!");
3646  else ::Error("ACLiC","Compilation failed!");
3647  if (produceRootmap) {
3648  gSystem->Unlink(libmapfilename);
3649  }
3650  }
3651  result = !compilationResult;
3652  }
3653 
3654  if ( result ) {
3655 
3656  TNamed *k = new TNamed(library,library);
3657  Long_t lib_time;
3658  gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time );
3659  k->SetUniqueID(lib_time);
3660  if (!keep) k->SetBit(kMustCleanup);
3661  fCompiled->Add(k);
3662 
3663  if (needLoadMap) {
3664  gInterpreter->LoadLibraryMap(libmapfilename);
3665  }
3666  if (verboseLevel>3 && withInfo) ::Info("ACLiC","loading the shared library");
3667  if (loadLib) result = !gSystem->Load(library);
3668  else result = kTRUE;
3669 
3670  if ( !result ) {
3671  if (verboseLevel>3 && withInfo) {
3672  ::Info("ACLiC","testing for missing symbols:");
3673  if (verboseLevel>4) ::Info("ACLiC", "%s", testcmd.Data());
3674  }
3675  gSystem->Exec(testcmd);
3676  gSystem->Unlink( exec );
3677  }
3678 
3679  };
3680 
3681  if (verboseLevel<=5 && !internalDebug) {
3682  gSystem->Unlink( dict );
3683  gSystem->Unlink( dicth );
3684  gSystem->Unlink( dictObj );
3685  gSystem->Unlink( linkdef );
3686  gSystem->Unlink( mapfilein );
3687  gSystem->Unlink( mapfileout );
3688  gSystem->Unlink( fakeMain );
3689  gSystem->Unlink( exec );
3690  }
3691  if (verboseLevel>6) {
3692  rcling.Prepend("echo ");
3693  cmd.Prepend("echo \" ").Append(" \" ");
3694  testcmd.Prepend("echo \" ").Append(" \" ");
3695  gSystem->Exec(rcling);
3696  gSystem->Exec( cmd );
3697  gSystem->Exec(testcmd);
3698  }
3699 
3700  return result;
3701 }
3702 
3703 ////////////////////////////////////////////////////////////////////////////////
3704 /// Return the ACLiC properties field. See EAclicProperties for details
3705 /// on the semantic of each bit.
3706 
3708 {
3709  return fAclicProperties;
3710 }
3711 
3712 ////////////////////////////////////////////////////////////////////////////////
3713 /// Return the build architecture.
3714 
3715 const char *TSystem::GetBuildArch() const
3716 {
3717  return fBuildArch;
3718 }
3719 
3720 ////////////////////////////////////////////////////////////////////////////////
3721 /// Return the build compiler
3722 
3723 const char *TSystem::GetBuildCompiler() const
3724 {
3725  return fBuildCompiler;
3726 }
3727 
3728 ////////////////////////////////////////////////////////////////////////////////
3729 /// Return the build compiler version
3730 
3732 {
3733  return fBuildCompilerVersion;
3734 }
3735 
3736 ////////////////////////////////////////////////////////////////////////////////
3737 /// Return the build node name.
3738 
3739 const char *TSystem::GetBuildNode() const
3740 {
3741  return fBuildNode;
3742 }
3743 
3744 ////////////////////////////////////////////////////////////////////////////////
3745 /// Return the path of the build directory.
3746 
3747 const char *TSystem::GetBuildDir() const
3748 {
3749  if (fBuildDir.Length()==0) {
3750  if (!gEnv) return "";
3751  const_cast<TSystem*>(this)->fBuildDir = gEnv->GetValue("ACLiC.BuildDir","");
3752  }
3753  return fBuildDir;
3754 }
3755 
3756 ////////////////////////////////////////////////////////////////////////////////
3757 /// Return the debug flags.
3758 
3759 const char *TSystem::GetFlagsDebug() const
3760 {
3761  return fFlagsDebug;
3762 }
3763 
3764 ////////////////////////////////////////////////////////////////////////////////
3765 /// Return the optimization flags.
3766 
3767 const char *TSystem::GetFlagsOpt() const
3768 {
3769  return fFlagsOpt;
3770 }
3771 
3772 ////////////////////////////////////////////////////////////////////////////////
3773 /// AclicMode indicates whether the library should be built in
3774 /// debug mode or optimized. The values are:
3775 /// - TSystem::kDefault : compile the same as the current ROOT
3776 /// - TSystem::kDebug : compiled in debug mode
3777 /// - TSystem::kOpt : optimized the library
3778 
3780 {
3781  return fAclicMode;
3782 }
3783 
3784 ////////////////////////////////////////////////////////////////////////////////
3785 /// Return the command line use to make a shared library.
3786 /// See TSystem::CompileMacro for more details.
3787 
3788 const char *TSystem::GetMakeSharedLib() const
3789 {
3790  return fMakeSharedLib;
3791 }
3792 
3793 ////////////////////////////////////////////////////////////////////////////////
3794 /// Return the command line use to make an executable.
3795 /// See TSystem::CompileMacro for more details.
3796 
3797 const char *TSystem::GetMakeExe() const
3798 {
3799  return fMakeExe;
3800 }
3801 
3802 ////////////////////////////////////////////////////////////////////////////////
3803 /// Get the list of include path.
3804 
3806 {
3808  fListPaths.Append(" ").Append(gInterpreter->GetIncludePath());
3809  return fListPaths;
3810 }
3811 
3812 ////////////////////////////////////////////////////////////////////////////////
3813 /// Return the list of library linked to this executable.
3814 /// See TSystem::CompileMacro for more details.
3815 
3816 const char *TSystem::GetLinkedLibs() const
3817 {
3818  return fLinkedLibs;
3819 }
3820 
3821 ////////////////////////////////////////////////////////////////////////////////
3822 /// Return the linkdef suffix chosen by the user for ACLiC.
3823 /// See TSystem::CompileMacro for more details.
3824 
3825 const char *TSystem::GetLinkdefSuffix() const
3826 {
3827  if (fLinkdefSuffix.Length()==0) {
3828  if (!gEnv) return "_linkdef";
3829  const_cast<TSystem*>(this)->fLinkdefSuffix = gEnv->GetValue("ACLiC.Linkdef","_linkdef");
3830  }
3831  return fLinkdefSuffix;
3832 }
3833 
3834 ////////////////////////////////////////////////////////////////////////////////
3835 /// Get the shared library extension.
3836 
3837 const char *TSystem::GetSoExt() const
3838 {
3839  return fSoExt;
3840 }
3841 
3842 ////////////////////////////////////////////////////////////////////////////////
3843 /// Get the object file extension.
3844 
3845 const char *TSystem::GetObjExt() const
3846 {
3847  return fObjExt;
3848 }
3849 
3850 ////////////////////////////////////////////////////////////////////////////////
3851 /// Set the location where ACLiC will create libraries and use as
3852 /// a scratch area.
3853 ///
3854 /// If isflast is flase, then the libraries are actually stored in
3855 /// sub-directories of 'build_dir' including the full pathname of the
3856 /// script. If the script is location at /full/path/name/macro.C
3857 /// the library will be located at 'build_dir+/full/path/name/macro_C.so'
3858 /// If 'isflat' is true, then no subdirectory is created and the library
3859 /// is created directly in the directory 'build_dir'. Note that in this
3860 /// mode there is a risk than 2 script of the same in different source
3861 /// directory will over-write each other.
3862 
3863 void TSystem::SetBuildDir(const char* build_dir, Bool_t isflat)
3864 {
3865  fBuildDir = build_dir;
3866  if (isflat) fAclicProperties |= (kFlatBuildDir & kBitMask);
3868 }
3869 
3870 ////////////////////////////////////////////////////////////////////////////////
3871 /// FlagsDebug should contain the options to pass to the C++ compiler
3872 /// in order to compile the library in debug mode.
3873 
3874 void TSystem::SetFlagsDebug(const char *flags)
3875 {
3876  fFlagsDebug = flags;
3877 }
3878 
3879 ////////////////////////////////////////////////////////////////////////////////
3880 /// FlagsOpt should contain the options to pass to the C++ compiler
3881 /// in order to compile the library in optimized mode.
3882 
3883 void TSystem::SetFlagsOpt(const char *flags)
3884 {
3885  fFlagsOpt = flags;
3886 }
3887 
3888 ////////////////////////////////////////////////////////////////////////////////
3889 /// AclicMode indicates whether the library should be built in
3890 /// debug mode or optimized. The values are:
3891 /// - TSystem::kDefault : compile the same as the current ROOT
3892 /// - TSystem::kDebug : compiled in debug mode
3893 /// - TSystem::kOpt : optimized the library
3894 
3896 {
3897  fAclicMode = mode;
3898 }
3899 
3900 ////////////////////////////////////////////////////////////////////////////////
3901 /// Directives has the same syntax as the argument of SetMakeSharedLib but is
3902 /// used to create an executable. This creation is used as a means to output
3903 /// a list of unresolved symbols, when loading a shared library has failed.
3904 /// The required variable is $ExeName rather than $SharedLib, e.g.:
3905 /// ~~~ {.cpp}
3906 /// gSystem->SetMakeExe(
3907 /// "g++ -Wall -fPIC $IncludePath $SourceFiles
3908 /// -o $ExeName $LinkedLibs -L/usr/X11R6/lib -lX11 -lm -ldl -rdynamic");
3909 /// ~~~
3910 
3911 void TSystem::SetMakeExe(const char *directives)
3912 {
3913  fMakeExe = directives;
3914  // NOTE: add verification that the directives has the required variables
3915 }
3916 
3917 ////////////////////////////////////////////////////////////////////////////////
3918 /// Directives should contain the description on how to compile and link a
3919 /// shared lib. This description can be any valid shell command, including
3920 /// the use of ';' to separate several instructions. However, shell specific
3921 /// construct should be avoided. In particular this description can contain
3922 /// environment variables, like $ROOTSYS (or %ROOTSYS% on windows).
3923 /// ~~~ {.cpp}
3924 /// Five special variables will be expanded before execution:
3925 /// Variable name Expands to
3926 /// ------------- ----------
3927 /// $SourceFiles Name of source files to be compiled
3928 /// $SharedLib Name of the shared library being created
3929 /// $LibName Name of shared library without extension
3930 /// $BuildDir Directory where the files will be created
3931 /// $IncludePath value of fIncludePath
3932 /// $LinkedLibs value of fLinkedLibs
3933 /// $DepLibs libraries on which this library depends on
3934 /// $ObjectFiles Name of source files to be compiler with
3935 /// their extension changed to .o or .obj
3936 /// $Opt location of the optimization/debug options
3937 /// set fFlagsDebug and fFlagsOpt
3938 /// ~~~
3939 /// e.g.:
3940 /// ~~~ {.cpp}
3941 /// gSystem->SetMakeSharedLib(
3942 /// "KCC -n32 --strict $IncludePath -K0 \$Opt $SourceFile
3943 /// --no_exceptions --signed_chars --display_error_number
3944 /// --diag_suppress 68 -o $SharedLib");
3945 ///
3946 /// gSystem->setMakeSharedLib(
3947 /// "Cxx $IncludePath -c $SourceFile;
3948 /// ld -L/usr/lib/cmplrs/cxx -rpath /usr/lib/cmplrs/cxx -expect_unresolved
3949 /// \$Opt -shared /usr/lib/cmplrs/cc/crt0.o /usr/lib/cmplrs/cxx/_main.o
3950 /// -o $SharedLib $ObjectFile -lcxxstd -lcxx -lexc -lots -lc"
3951 ///
3952 /// gSystem->SetMakeSharedLib(
3953 /// "$HOME/mygcc/bin/g++ \$Opt -Wall -fPIC $IncludePath $SourceFile
3954 /// -shared -o $SharedLib");
3955 ///
3956 /// gSystem->SetMakeSharedLib(
3957 /// "cl -DWIN32 -D_WIN32 -D_MT -D_DLL -MD /O2 /G5 /MD -DWIN32
3958 /// -D_WINDOWS $IncludePath $SourceFile
3959 /// /link -PDB:NONE /NODEFAULTLIB /INCREMENTAL:NO /RELEASE /NOLOGO
3960 /// $LinkedLibs -entry:_DllMainCRTStartup@12 -dll /out:$SharedLib")
3961 /// ~~~
3962 
3963 void TSystem::SetMakeSharedLib(const char *directives)
3964 {
3965  fMakeSharedLib = directives;
3966  // NOTE: add verification that the directives has the required variables
3967 }
3968 
3969 ////////////////////////////////////////////////////////////////////////////////
3970 /// Add includePath to the already set include path.
3971 
3972 void TSystem::AddIncludePath(const char *includePath)
3973 {
3974  if (includePath) {
3975  fIncludePath += " ";
3976  fIncludePath += includePath;
3977  }
3978 }
3979 
3980 ////////////////////////////////////////////////////////////////////////////////
3981 /// Add linkedLib to already set linked libs.
3982 
3983 void TSystem::AddLinkedLibs(const char *linkedLib)
3984 {
3985  if (linkedLib) {
3986  fLinkedLibs += " ";
3987  fLinkedLibs += linkedLib;
3988  }
3989 }
3990 
3991 ////////////////////////////////////////////////////////////////////////////////
3992 /// IncludePath should contain the list of compiler flags to indicate where
3993 /// to find user defined header files. It is used to expand $IncludePath in
3994 /// the directives given to SetMakeSharedLib() and SetMakeExe(), e.g.:
3995 /// ~~~ {.cpp}
3996 /// gSystem->SetInclude("-I$ROOTSYS/include -Imydirectory/include");
3997 /// ~~~
3998 /// the default value of IncludePath on Unix is:
3999 /// ~~~ {.cpp}
4000 /// "-I$ROOTSYS/include "
4001 /// ~~~
4002 /// and on Windows:
4003 /// ~~~ {.cpp}
4004 /// "/I%ROOTSYS%/include "
4005 /// ~~~
4006 
4007 void TSystem::SetIncludePath(const char *includePath)
4008 {
4009  fIncludePath = includePath;
4010 }
4011 
4012 ////////////////////////////////////////////////////////////////////////////////
4013 /// LinkedLibs should contain the library directory and list of libraries
4014 /// needed to recreate the current executable. It is used to expand $LinkedLibs
4015 /// in the directives given to SetMakeSharedLib() and SetMakeExe()
4016 /// The default value on Unix is: `root-config --glibs`
4017 
4018 void TSystem::SetLinkedLibs(const char *linkedLibs)
4019 {
4020  fLinkedLibs = linkedLibs;
4021 }
4022 
4023 ////////////////////////////////////////////////////////////////////////////////
4024 /// The 'suffix' will be appended to the name of a script loaded by ACLiC
4025 /// and used to locate any eventual additional linkdef information that
4026 /// ACLiC should used to produce the dictionary.
4027 ///
4028 /// So by default, when doing .L MyScript.cxx, ACLiC will look
4029 /// for a file name MyScript_linkdef and having one of the .h (.hpp,
4030 /// etc.) extensions. If such a file exist, it will be added to
4031 /// the end of the linkdef file used to created the ACLiC dictionary.
4032 /// This effectively enable the full customization of the creation
4033 /// of the dictionary. It should be noted that the file is intended
4034 /// as a linkdef `fragment`, so usually you would not list the
4035 /// typical:
4036 ///~~~ {.cpp}
4037 /// #pragma link off ....
4038 ///~~~
4039 
4040 void TSystem::SetLinkdefSuffix(const char *suffix)
4041 {
4042  fLinkdefSuffix = suffix;
4043 }
4044 
4045 
4046 ////////////////////////////////////////////////////////////////////////////////
4047 /// Set shared library extension, should be either .so, .sl, .a, .dll, etc.
4048 
4049 void TSystem::SetSoExt(const char *SoExt)
4050 {
4051  fSoExt = SoExt;
4052 }
4053 
4054 ////////////////////////////////////////////////////////////////////////////////
4055 /// Set object files extension, should be either .o, .obj, etc.
4056 
4057 void TSystem::SetObjExt(const char *ObjExt)
4058 {
4059  fObjExt = ObjExt;
4060 }
4061 
4062 ////////////////////////////////////////////////////////////////////////////////
4063 /// This method split a filename of the form:
4064 /// ~~~ {.cpp}
4065 /// [path/]macro.C[+|++[k|f|g|O|c|s|d|v|-]][(args)].
4066 /// ~~~
4067 /// It stores the ACliC mode [+|++[options]] in 'mode',
4068 /// the arguments (including parenthesis) in arg
4069 /// and the I/O indirection in io
4070 
4071 TString TSystem::SplitAclicMode(const char* filename, TString &aclicMode,
4072  TString &arguments, TString &io) const
4073 {
4074  char *fname = Strip(filename);
4075 
4076  char *arg = strchr(fname, '(');
4077  // special case for $(HOME)/aap.C(10)
4078  while (arg && *arg && (arg > fname && *(arg-1) == '$') && *(arg+1))
4079  arg = strchr(arg+1, '(');
4080  if (arg && arg > fname) {
4081  *arg = 0;
4082  char *t = arg-1;
4083  while (*t == ' ') {
4084  *t = 0; t--;
4085  }
4086  arg++;
4087  }
4088 
4089  // strip off I/O redirect tokens from filename
4090  {
4091  char *s2 = 0;
4092  char *s3;
4093  s2 = strstr(fname, ">>");
4094  if (!s2) s2 = strstr(fname, "2>");
4095  if (!s2) s2 = strchr(fname, '>');
4096  s3 = strchr(fname, '<');
4097  if (s2 && s3) s2 = s2<s3 ? s2 : s3;
4098  if (s3 && !s2) s2 = s3;
4099  if (s2==fname) {
4100  io = fname;
4101  aclicMode = "";
4102  arguments = "";
4103  delete []fname;
4104  return "";
4105  } else if (s2) {
4106  s2--;
4107  while (s2 && *s2 == ' ') s2--;
4108  s2++;
4109  io = s2; // ssave = *s2;
4110  *s2 = 0;
4111  } else
4112  io = "";
4113  }
4114 
4115  // remove the possible ACLiC + or ++ and g or O etc
4116  aclicMode.Clear();
4117  int len = strlen(fname);
4118  TString mode;
4119  while (len > 1) {
4120  if (strchr("kfgOcsdv-", fname[len - 1])) {
4121  mode += fname[len - 1];
4122  --len;
4123  } else {
4124  break;
4125  }
4126  }
4127  Bool_t compile = len && fname[len - 1] == '+';
4128  Bool_t remove = compile && len > 1 && fname[len - 2] == '+';
4129  if (compile) {
4130  if (mode.Length()) {
4131  fname[len] = 0;
4132  }
4133  if (remove) {
4134  fname[strlen(fname)-2] = 0;
4135  aclicMode = "++";
4136  } else {
4137  fname[strlen(fname)-1] = 0;
4138  aclicMode = "+";
4139  }
4140  if (mode.Length())
4141  aclicMode += mode;
4142  }
4143 
4144  TString resFilename = fname;
4145  arguments = "(";
4146  if (arg) arguments += arg;
4147  else arguments = "";
4148 
4149  delete []fname;
4150  return resFilename;
4151 }
4152 
4153 ////////////////////////////////////////////////////////////////////////////////
4154 /// Remove the shared libs produced by the CompileMacro() function.
4155 
4157 {
4158  TIter next(fCompiled);
4159  TNamed *lib;
4160  while ((lib = (TNamed*)next())) {
4161  if (lib->TestBit(kMustCleanup)) Unlink(lib->GetTitle());
4162  }
4163 }
4164 
4165 ////////////////////////////////////////////////////////////////////////////////
4166 /// Register version of plugin library.
4167 
4169 {
4170  if (versionCode != TROOT::RootVersionCode() && gLibraryVersion)
4171  gLibraryVersion[gLibraryVersionIdx] = versionCode;
4172 }
const char * GetHost() const
Definition: TUrl.h:76
virtual const char * BaseName(const char *pathname)
Base name of a file name. Base name of /user/root is root.
Definition: TSystem.cxx:928
virtual const char * GetTitle() const
Returns title of object.
Definition: TNamed.h:52
virtual Bool_t AccessPathName(const char *path, EAccessMode mode=kFileExists)
Returns FALSE if one can access a file using the specified access mode.
Definition: TSystem.cxx:1265
virtual TObject * Remove(TObject *obj)=0
virtual void Add(TObject *obj)
ClassImp(TProcessEventTimer) TProcessEventTimer
Create async event processor timer. Delay is in milliseconds.
Definition: TSystem.cxx:65
TSeqCollection * fCompiled
Definition: TSystem.h:311
double read(const std::string &file_name)
reading
Ssiz_t Last(char c) const
Find last occurrence of a character c.
Definition: TString.cxx:864
TString fBuildCompiler
Definition: TSystem.h:295
virtual Bool_t IsAbsoluteFileName(const char *dir)
Return true if dir is an absolute pathname.
Definition: TSystem.cxx:945
Bool_t fDone
Definition: TSystem.h:283
virtual TString SplitAclicMode(const char *filename, TString &mode, TString &args, TString &io) const
This method split a filename of the form: ~~~ {.cpp} [path/]macro.C[+|++[k|f|g|O|c|s|d|v|-]][(args)]...
Definition: TSystem.cxx:4071
virtual int GetPid()
Get process id.
Definition: TSystem.cxx:711
An array of TObjects.
Definition: TObjArray.h:39
virtual Bool_t ProcessEvents()
Process pending events (GUI, timers, sockets).
Definition: TSystem.cxx:420
virtual void Syslog(ELogLevel level, const char *mess)
Send mess to syslog daemon.
Definition: TSystem.cxx:1648
const char * GetHostName() const
Definition: TInetAddress.h:75
virtual Bool_t IsPathLocal(const char *path)
Returns TRUE if the url in 'path' points to the local file system.
Definition: TSystem.cxx:1274
Bool_t ProcessEvents()
Process events if timer did time out.
Definition: TSystem.cxx:81
long long Long64_t
Definition: RtypesCore.h:69
Int_t fSigcnt
Definition: TSystem.h:275
Int_t fReadOffSet
Definition: TSystem.h:220
virtual const char * WorkingDirectory()
Return working directory.
Definition: TSystem.cxx:865
virtual void StackTrace()
Print a stack trace.
Definition: TSystem.cxx:736
EAclicMode
Definition: TSystem.h:261
void Reset()
Reset the timer.
Definition: TTimer.cxx:155
virtual TObject * FindObject(const char *name) const
Find an object in this collection using its name.
virtual const char * GetBuildCompiler() const
Return the build compiler.
Definition: TSystem.cxx:3723
virtual void SigAlarmInterruptsSyscalls(Bool_t)
Definition: TSystem.h:321
virtual void SetFlagsDebug(const char *)
FlagsDebug should contain the options to pass to the C++ compiler in order to compile the library in ...
Definition: TSystem.cxx:3874
virtual void NotifyApplicationCreated()
Hook to tell TSystem that the TApplication object has been created.
Definition: TSystem.cxx:315
ClassImp(TSeqCollection) Int_t TSeqCollection TIter next(this)
Return index of object in collection.
R__EXTERN TVirtualMutex * gSystemMutex
Definition: TSystem.h:236
Ssiz_t Length() const
Definition: TString.h:390
TLine * line
Collectable string class.
Definition: TObjString.h:32
Int_t fLevel
Definition: TSystem.h:284
const char Option_t
Definition: RtypesCore.h:62
virtual const char * GetLinkdefSuffix() const
Return the linkdef suffix chosen by the user for ACLiC.
Definition: TSystem.cxx:3825
virtual int Link(const char *from, const char *to)
Create a link from file1 to file2.
Definition: TSystem.cxx:1328
Int_t fBeepFreq
Definition: TSystem.h:279
virtual const char * GetBuildArch() const
Return the build architecture.
Definition: TSystem.cxx:3715
virtual void SetFlagsOpt(const char *)
FlagsOpt should contain the options to pass to the C++ compiler in order to compile the library in op...
Definition: TSystem.cxx:3883
virtual const char * GetLinkedLibraries()
Get list of shared libraries loaded at the start of the executable.
Definition: TSystem.cxx:2066
TSeqCollection * fOnExitList
Definition: TSystem.h:290
void RemoveOnExit(TObject *obj)
Objects that should be deleted on exit of the OS interface.
Definition: TSystem.cxx:296
virtual Int_t SetFPEMask(Int_t mask=kDefaultMask)
Set which conditions trigger a floating point exception.
Definition: TSystem.cxx:646
This class represents a WWW compatible URL.
Definition: TUrl.h:41
TString & ReplaceAll(const TString &s1, const TString &s2)
Definition: TString.h:635
int GetPathInfo(const char *path, Long_t *id, Long_t *size, Long_t *flags, Long_t *modtime)
Get info about a file: id, size, flags, modification time.
Definition: TSystem.cxx:1363
TString fBuildCompilerVersion
Definition: TSystem.h:296
static Int_t RootVersionCode()
Return ROOT version code as defined in RVersion.h.
Definition: TROOT.cxx:2512
const char * GetProtocol() const
Definition: TUrl.h:73
TH1 * h
Definition: legend2.C:5
virtual TString GetFromPipe(const char *command)
Execute command and return output in TString.
Definition: TSystem.cxx:684
Ssiz_t Index(const TString &str, Ssiz_t *len, Ssiz_t start=0) const
Find the first occurrence of the regexp in string and return the position, or -1 if there is no match...
Definition: TRegexp.cxx:208
TString fBuildNode
Definition: TSystem.h:297
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Definition: TObject.cxx:892
This class represents an Internet Protocol (IP) address.
Definition: TInetAddress.h:40
virtual int MakeDirectory(const char *name)
Make a directory.
Definition: TSystem.cxx:821
virtual void AddSignalHandler(TSignalHandler *sh)
Add a signal handler to list of system signal handlers.
Definition: TSystem.cxx:536
virtual const char * HomeDirectory(const char *userName=0)
Return the user's home directory.
Definition: TSystem.cxx:881
virtual void CloseConnection(int sock, Bool_t force=kFALSE)
Close socket connection.
Definition: TSystem.cxx:2344
Regular expression class.
Definition: TRegexp.h:35
This class implements a mutex interface.
Definition: TVirtualMutex.h:34
virtual Bool_t ChangeDirectory(const char *path)
Change directory.
Definition: TSystem.cxx:856
static const char * filename()
TVersionCheck(int versionCode)
Register version of plugin library.
Definition: TSystem.cxx:4168
#define gROOT
Definition: TROOT.h:340
virtual UserGroup_t * GetGroupInfo(Int_t gid)
Returns all group info in the UserGroup_t structure.
Definition: TSystem.cxx:1587
virtual int GetFsInfo(const char *path, Long_t *id, Long_t *bsize, Long_t *blocks, Long_t *bfree)
Get info about a file system: fs type, block size, number of blocks, number of free blocks...
Definition: TSystem.cxx:1437
virtual void SetMakeExe(const char *directives)
Directives has the same syntax as the argument of SetMakeSharedLib but is used to create an executabl...
Definition: TSystem.cxx:3911
Int_t LoadPlugin()
Load the plugin library for this handler.
virtual int Load(const char *module, const char *entry="", Bool_t system=kFALSE)
Load a shared library.
Definition: TSystem.cxx:1818
virtual void AddStdExceptionHandler(TStdExceptionHandler *eh)
Add an exception handler to list of system exception handlers.
Definition: TSystem.cxx:615
virtual const char * TempDirectory() const
Return a user configured or systemwide directory to create temporary files in.
Definition: TSystem.cxx:1447
Basic string class.
Definition: TString.h:137
TSeqCollection * fSignalHandler
Definition: TSystem.h:287
TString fBuildArch
Definition: TSystem.h:294
virtual void ResetSignal(ESignals sig, Bool_t reset=kTRUE)
If reset is true reset the signal handler for the specified signal to the default handler...
Definition: TSystem.cxx:580
static void R__AddPath(TString &target, const TString &path)
Definition: TSystem.cxx:2510
int Int_t
Definition: RtypesCore.h:41
virtual const char * DirName(const char *pathname)
Return the directory name in pathname.
Definition: TSystem.cxx:996
bool Bool_t
Definition: RtypesCore.h:59
virtual TTimer * RemoveTimer(TTimer *t)
Remove timer from list of system timers.
Definition: TSystem.cxx:485
TArc * a
Definition: textangle.C:12
const Bool_t kFALSE
Definition: Rtypes.h:92
#define ENDTRY
Definition: TException.h:79
#define gInterpreter
Definition: TInterpreter.h:502
virtual char * Which(const char *search, const char *file, EAccessMode mode=kFileExists)
Find location of file in a search path.
Definition: TSystem.cxx:1511
Long_t fMtime
Definition: TSystem.h:142
virtual void SetMakeSharedLib(const char *directives)
Directives should contain the description on how to compile and link a shared lib.
Definition: TSystem.cxx:3963
virtual int AnnounceUdpService(int port, int backlog)
Announce UDP service.
Definition: TSystem.cxx:2308
virtual FILE * OpenPipe(const char *command, const char *mode)
Open a pipe.
Definition: TSystem.cxx:666
Int_t GetEntriesFast() const
Definition: TObjArray.h:66
TString & Prepend(const char *cs)
Definition: TString.h:604
R__EXTERN TApplication * gApplication
Definition: TApplication.h:171
virtual void ResetSignals()
Reset signals handlers to previous behaviour.
Definition: TSystem.cxx:588
virtual void IgnoreInterrupt(Bool_t ignore=kTRUE)
If ignore is true ignore the interrupt signal, else restore previous behaviour.
Definition: TSystem.cxx:606
Basic time type with millisecond precision.
Definition: TTime.h:29
static bool R__MatchFilename(const char *left, const char *right)
Figure out if left and right points to the same object in the file system.
Definition: TSystem.cxx:1778
Long_t ExecPlugin(int nargs, const T &...params)
Long64_t fSize
Definition: TSystem.h:141
virtual TInetAddress GetPeerName(int sock)
Get Internet Protocol (IP) address of remote host and port #.
Definition: TSystem.cxx:2254
Bool_t BeginsWith(const char *s, ECaseCompare cmp=kExact) const
Definition: TString.h:558
virtual EAclicMode GetAclicMode() const
AclicMode indicates whether the library should be built in debug mode or optimized.
Definition: TSystem.cxx:3779
virtual int GetProcInfo(ProcInfo_t *info) const
Returns cpu and memory used by this process into the ProcInfo_t structure.
Definition: TSystem.cxx:2443
virtual int SendRaw(int sock, const void *buffer, int length, int flag)
Send exactly length bytes from buffer.
Definition: TSystem.cxx:2363
virtual TFileHandler * RemoveFileHandler(TFileHandler *fh)
Remove a file handler from the list of file handlers.
Definition: TSystem.cxx:568
Bool_t R_ISREG(Int_t mode)
Definition: TSystem.h:129
virtual char * GetServiceByPort(int port)
Get name of internet service.
Definition: TSystem.cxx:2281
virtual int mkdir(const char *name, Bool_t recursive=kFALSE)
Make a file system directory.
Definition: TSystem.cxx:900
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition: TObject.cxx:732
virtual const char * FindFile(const char *search, TString &file, EAccessMode mode=kFileExists)
Find location of file in a search path.
Definition: TSystem.cxx:1501
virtual const char * UnixPathName(const char *unixpathname)
Convert from a Unix pathname to a local pathname.
Definition: TSystem.cxx:1036
TString & Replace(Ssiz_t pos, Ssiz_t n, const char *s)
Definition: TString.h:625
static Int_t GetErrno()
Static function returning system error number.
Definition: TSystem.cxx:264
Int_t fMode
Definition: TSystem.h:138
TSeqCollection * fStdExceptionHandler
Definition: TSystem.h:289
virtual int Rename(const char *from, const char *to)
Rename a file.
Definition: TSystem.cxx:1319
const char * Data() const
Definition: TString.h:349
virtual void Delete(Option_t *option="")=0
Delete this object.
virtual void * GetDirPtr() const
Definition: TSystem.h:407
virtual const char * GetDirEntry(void *dirp)
Get a directory entry. Returns 0 if no more entries.
Definition: TSystem.cxx:847
#define SafeDelete(p)
Definition: RConfig.h:436
virtual int Unlink(const char *name)
Unlink, i.e. remove, a file.
Definition: TSystem.cxx:1346
Double_t x[n]
Definition: legend1.C:17
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString...
Definition: TString.cxx:2334
virtual FILE * TempFileName(TString &base, const char *dir=0)
Create a secure temporary file by appending a unique 6 letter string to base.
Definition: TSystem.cxx:1462
TTime GetAbsTime() const
Definition: TTimer.h:84
virtual void Sleep(UInt_t milliSec)
Sleep milliSec milli seconds.
Definition: TSystem.cxx:441
Bool_t IsInterruptingSyscalls() const
Definition: TTimer.h:88
TString fBuildDir
Definition: TSystem.h:298
static const std::string separator("@@@")
TText * tt
Definition: textangle.C:16
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:33
Int_t fMaxrfd
Definition: TSystem.h:273
TSeqCollection * fHelpers
Definition: TSystem.h:312
TString fListPaths
Definition: TSystem.h:301
virtual const char * GetLinkedLibs() const
Return the list of library linked to this executable.
Definition: TSystem.cxx:3816
TString fLinkedLibs
Definition: TSystem.h:303
Bool_t fTimeout
Definition: TTimer.h:62
UChar_t mod R__LOCKGUARD2(gSrvAuthenticateMutex)
TObject * Next()
Return next object in collection.
Int_t fNfd
Signals that were trapped.
Definition: TSystem.h:272
virtual const char * GetDynamicPath()
Return the dynamic path (used to find shared libraries).
Definition: TSystem.cxx:1757
std::map< std::string, std::string >::const_iterator iter
Definition: TAlienJob.cxx:54
void Clear()
Clear string without changing its capacity.
Definition: TString.cxx:1139
virtual int CompileMacro(const char *filename, Option_t *opt="", const char *library_name="", const char *build_dir="", UInt_t dirmode=0)
This method compiles and loads a shared library containing the code from the file "filename"...
Definition: TSystem.cxx:2788
virtual const char * Getenv(const char *env)
Get environment variable.
Definition: TSystem.cxx:1627
virtual void ListLibraries(const char *regexp="")
List all loaded shared libraries.
Definition: TSystem.cxx:2011
if(pyself &&pyself!=Py_None)
virtual const char * GetMakeSharedLib() const
Return the command line use to make a shared library.
Definition: TSystem.cxx:3788
void Info(const char *location, const char *msgfmt,...)
virtual void SetDisplay()
Set DISPLAY environment variable based on utmp entry. Only for UNIX.
Definition: TSystem.cxx:235
TString & Append(const char *cs)
Definition: TString.h:492
virtual const char * PrependPathName(const char *dir, TString &name)
Concatenate a directory and a file name.
Definition: TSystem.cxx:1054
virtual void ExitLoop()
Exit from event loop.
Definition: TSystem.cxx:396
virtual UserGroup_t * GetUserInfo(Int_t uid)
Returns all user info in the UserGroup_t structure.
Definition: TSystem.cxx:1563
virtual int RecvRaw(int sock, void *buffer, int length, int flag)
Receive exactly length bytes into buffer.
Definition: TSystem.cxx:2353
virtual ~TSystem()
Delete the OS interface.
Definition: TSystem.cxx:142
virtual void Unload(const char *module)
Unload a shared library.
Definition: TSystem.cxx:1990
static Int_t gLibraryVersionMax
Definition: TSystem.cxx:62
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition: TObject.cxx:918
virtual Bool_t ConsistentWith(const char *path, void *dirptr=0)
Check consistency of this helper with the one required by 'path' or 'dirptr'.
Definition: TSystem.cxx:798
virtual TInetAddress GetHostByName(const char *server)
Get Internet Protocol (IP) address of host.
Definition: TSystem.cxx:2245
void Error(const char *location, const char *msgfmt,...)
char * out
Definition: TBase64.cxx:29
ELogLevel
Definition: TSystem.h:66
virtual void Closelog()
Close connection to system log daemon.
Definition: TSystem.cxx:1656
virtual const char * GetFlagsDebug() const
Return the debug flags.
Definition: TSystem.cxx:3759
TSeqCollection * fFileHandler
Definition: TSystem.h:288
virtual void SetUniqueID(UInt_t uid)
Set the unique object id.
Definition: TObject.cxx:743
TString fLinkdefSuffix
Definition: TSystem.h:309
A doubly linked list.
Definition: TList.h:47
TString & GetLastErrorString()
Return the thread local storage for the custom last error message.
Definition: TSystem.cxx:2048
static Int_t * gLibraryVersion
Definition: TSystem.cxx:60
virtual EStatus Handle(std::exception &exc)=0
virtual const char * GetSoExt() const
Get the shared library extension.
Definition: TSystem.cxx:3837
void Remove()
Definition: TTimer.h:91
virtual void AddDynamicPath(const char *pathname)
Add a new directory to the dynamic path.
Definition: TSystem.cxx:1749
ESignals
TString fUser
Definition: TSystem.h:152
virtual TTime Now()
Get current time in milliseconds since 0:00 Jan 1 1995.
Definition: TSystem.cxx:467
virtual void Setenv(const char *name, const char *value)
Set environment variable.
Definition: TSystem.cxx:1611
virtual TStdExceptionHandler * RemoveStdExceptionHandler(TStdExceptionHandler *eh)
Remove an exception handler from list of exception handlers.
Definition: TSystem.cxx:625
static void R__WriteDependencyFile(const TString &build_loc, const TString &depfilename, const TString &filename, const TString &library, const TString &libname, const TString &extension, const char *version_var_prefix, const TString &includes, const TString &defines, const TString &incPath)
Definition: TSystem.cxx:2524
ROOT::R::TRInterface & r
Definition: Object.C:4
Bool_t EndsWith(const char *pat, ECaseCompare cmp=kExact) const
Return true if string ends with the specified string.
Definition: TString.cxx:2220
virtual Bool_t Init()
Initialize the OS interface.
Definition: TSystem.cxx:186
virtual const char * GetBuildNode() const
Return the build node name.
Definition: TSystem.cxx:3739
SVector< double, 2 > v
Definition: Dict.h:5
virtual const char * GetLibraries(const char *regexp="", const char *option="", Bool_t isRegexp=kTRUE)
Return a space separated list of loaded shared libraries.
Definition: TSystem.cxx:2084
const char * gProgName
Definition: TSystem.cxx:54
virtual Int_t GetValue(const char *name, Int_t dflt)
Returns the integer value for a resource.
Definition: TEnv.cxx:494
virtual int AcceptConnection(int sock)
Accept a connection.
Definition: TSystem.cxx:2335
Bool_t Gets(FILE *fp, Bool_t chop=kTRUE)
Read one line from the stream, including the , or until EOF.
Definition: Stringio.cxx:198
void AssignAndDelete(TString &target, char *tobedeleted)
Definition: TSystem.cxx:2451
char * Strip(const char *str, char c= ' ')
Strip leading and trailing c (blanks by default) from a string.
Definition: TString.cxx:2477
virtual void SetDynamicPath(const char *pathname)
Set the dynamic path to a new value.
Definition: TSystem.cxx:1768
virtual int AnnounceTcpService(int port, Bool_t reuse, int backlog, int tcpwindowsize=-1)
Announce TCP/IP service.
Definition: TSystem.cxx:2299
virtual Long_t NextTimeOut(Bool_t mode)
Time when next timer of mode (synchronous=kTRUE or asynchronous=kFALSE) will time-out (in ms)...
Definition: TSystem.cxx:498
static Int_t ConvertVersionCode2Int(Int_t code)
Convert version code to an integer, i.e. 331527 -> 51507.
Definition: TROOT.cxx:2493
unsigned int UInt_t
Definition: RtypesCore.h:42
Bool_t TestBit(UInt_t f) const
Definition: TObject.h:173
bool verbose
char * Form(const char *fmt,...)
virtual int Umask(Int_t mask)
Set the process file creation mode mask.
Definition: TSystem.cxx:1480
virtual void SetBuildDir(const char *build_dir, Bool_t isflat=kFALSE)
Set the location where ACLiC will create libraries and use as a scratch area.
Definition: TSystem.cxx:3863
virtual int SendBuf(int sock, const void *buffer, int length)
Send a buffer headed by a length indicator.
Definition: TSystem.cxx:2381
const char * gProgPath
Definition: TSystem.cxx:55
TLine * l
Definition: textangle.C:4
void AbstractMethod(const char *method) const
Use this method to implement an "abstract" method that you don't want to leave purely abstract...
Definition: TObject.cxx:960
virtual std::string GetWorkingDirectory() const
Return working directory.
Definition: TSystem.cxx:873
Handles synchronous and a-synchronous timer events.
Definition: TTimer.h:57
virtual const char * GetBuildDir() const
Return the path of the build directory.
Definition: TSystem.cxx:3747
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:51
virtual void ListSymbols(const char *module, const char *re="")
List symbols in a shared library.
Definition: TSystem.cxx:2002
virtual const char * GetMakeExe() const
Return the command line use to make an executable.
Definition: TSystem.cxx:3797
TSubString Strip(EStripType s=kTrailing, char c= ' ') const
Return a substring of self stripped at beginning and/or end.
Definition: TString.cxx:1069
const std::string sname
Definition: testIO.cxx:45
virtual Int_t Exec(const char *shellcmd)
Execute a command.
Definition: TSystem.cxx:657
virtual void StopIdleing()
Called when system stops idleing.
TString fMakeExe
Definition: TSystem.h:308
virtual int Utime(const char *file, Long_t modtime, Long_t actime)
Set the a files modification and access times.
Definition: TSystem.cxx:1490
virtual void Abort(int code=0)
Abort the application.
Definition: TSystem.cxx:728
virtual void InnerLoop()
Inner event loop.
Definition: TSystem.cxx:404
virtual void SetSoExt(const char *soExt)
Set shared library extension, should be either .so, .sl, .a, .dll, etc.
Definition: TSystem.cxx:4049
Bool_t IsNull() const
Definition: TString.h:387
virtual const char * GetBuildCompilerVersion() const
Return the build compiler version.
Definition: TSystem.cxx:3731
TString fListLibs
Definition: TSystem.h:292
virtual int GetCpuInfo(CpuInfo_t *info, Int_t sampleTime=1000) const
Returns cpu load average and load info into the CpuInfo_t structure.
Definition: TSystem.cxx:2423
void Warning(const char *location, const char *msgfmt,...)
Long64_t entry
TString fName
Definition: TNamed.h:36
virtual void Unsetenv(const char *name)
Unset environment variable.
Definition: TSystem.cxx:1619
Int_t fAclicProperties
Definition: TSystem.h:310
virtual void FreeDirectory(void *dirp)
Free a directory.
Definition: TSystem.cxx:839
virtual int ClosePipe(FILE *pipe)
Close the pipe.
Definition: TSystem.cxx:675
TObjArray * Tokenize(const TString &delim) const
This function is used to isolate sequential tokens in a TString.
Definition: TString.cxx:2240
virtual void Run()
System event loop.
Definition: TSystem.cxx:347
#define Printf
Definition: TGeoToOCC.h:18
char * StrDup(const char *str)
Duplicate the string str.
Definition: TString.cxx:2513
virtual int OpenConnection(const char *server, int port, int tcpwindowsize=-1, const char *protocol="tcp")
Open a connection to another host.
Definition: TSystem.cxx:2290
virtual int SetSockOpt(int sock, int kind, int val)
Set socket option.
Definition: TSystem.cxx:2390
const char * extension
Definition: civetweb.c:2467
virtual Int_t Select(TList *active, Long_t timeout)
Select on active file descriptors (called by TMonitor).
Definition: TSystem.cxx:449
virtual const char * FindDynamicLibrary(TString &lib, Bool_t quiet=kFALSE)
Find a dynamic library using the system search paths.
Definition: TSystem.cxx:1972
virtual Int_t RedirectOutput(const char *name, const char *mode="a", RedirectHandle_t *h=0)
Redirect standard output (stdout, stderr) to the specified file.
Definition: TSystem.cxx:1677
TString & Remove(Ssiz_t pos)
Definition: TString.h:616
long Long_t
Definition: RtypesCore.h:50
int Ssiz_t
Definition: RtypesCore.h:63
virtual int Chmod(const char *file, UInt_t mode)
Set the file permission bits. Returns -1 in case or error, 0 otherwise.
Definition: TSystem.cxx:1471
virtual void SysError(const char *method, const char *msgfmt,...) const
Issue system error message.
Definition: TObject.cxx:932
virtual TSignalHandler * RemoveSignalHandler(TSignalHandler *sh)
Remove a signal handler from list of signal handlers.
Definition: TSystem.cxx:546
EAclicMode fAclicMode
Definition: TSystem.h:306
virtual void StartIdleing()
Called when system starts idleing.
virtual Int_t GetEffectiveUid()
Returns the effective user id.
Definition: TSystem.cxx:1534
virtual const char * GetIncludePath()
Get the list of include path.
Definition: TSystem.cxx:3805
virtual const char * GetFlagsOpt() const
Return the optimization flags.
Definition: TSystem.cxx:3767
const RooCatType * lookup(Int_t idx) const
virtual Func_t DynFindSymbol(const char *module, const char *entry)
Find specific entry point in specified library.
Definition: TSystem.cxx:1982
virtual const char * HostName()
Return the system's host name.
Definition: TSystem.cxx:307
virtual int Symlink(const char *from, const char *to)
Create a symbolic link from file1 to file2.
Definition: TSystem.cxx:1337
char * DynamicPathName(const char *lib, Bool_t quiet=kFALSE)
Find a dynamic library called lib using the system search paths.
Definition: TSystem.cxx:1958
ELogFacility
Definition: TSystem.h:77
R__EXTERN TEnv * gEnv
Definition: TEnv.h:174
virtual const char * ExpandFileName(const char *fname)
Expand a pathname getting rid of special shell characters like ~.
Definition: TSystem.cxx:1071
ClassImp(TMCParticle) void TMCParticle printf(": p=(%7.3f,%7.3f,%9.3f) ;", fPx, fPy, fPz)
TNamed()
Definition: TNamed.h:40
TString fObjExt
Definition: TSystem.h:305
virtual void SetProgname(const char *name)
Set the application name (from command line, argv[0]) and copy it in gProgName.
Definition: TSystem.cxx:227
virtual Int_t GetGid(const char *group=0)
Returns the group's id. If group = 0, returns current user's group.
Definition: TSystem.cxx:1543
void Beep(Int_t freq=-1, Int_t duration=-1, Bool_t setDefault=kFALSE)
Beep for duration milliseconds with a tone of frequency freq.
Definition: TSystem.cxx:328
Bool_t IsSync() const
Definition: TTimer.h:86
virtual void DispatchOneEvent(Bool_t pendingOnly=kFALSE)
Dispatch a single event.
Definition: TSystem.cxx:433
virtual void CleanCompiledMacros()
Remove the shared libs produced by the CompileMacro() function.
Definition: TSystem.cxx:4156
virtual TInetAddress GetSockName(int sock)
Get Internet Protocol (IP) address of host and port #.
Definition: TSystem.cxx:2263
virtual Int_t GetUid(const char *user=0)
Returns the user's id. If user = 0, returns current user's id.
Definition: TSystem.cxx:1524
EAccessMode
Definition: TSystem.h:54
virtual void AddLinkedLibs(const char *linkedLib)
Add linkedLib to already set linked libs.
Definition: TSystem.cxx:3983
virtual UInt_t GetUniqueID() const
Return the unique object id.
Definition: TObject.cxx:433
virtual void SetAclicMode(EAclicMode mode)
AclicMode indicates whether the library should be built in debug mode or optimized.
Definition: TSystem.cxx:3895
#define name(a, b)
Definition: linkTestLib0.cpp:5
Mother of all ROOT objects.
Definition: TObject.h:58
virtual void SetObjExt(const char *objExt)
Set object files extension, should be either .o, .obj, etc.
Definition: TSystem.cxx:4057
virtual Bool_t IsFileInIncludePath(const char *name, char **fullpath=0)
Return true if 'name' is a file that can be found in the ROOT include path or the current directory...
Definition: TSystem.cxx:960
const Int_t kMaxInt
Definition: Rtypes.h:103
virtual Int_t GetAclicProperties() const
Return the ACLiC properties field.
Definition: TSystem.cxx:3707
Int_t fMaxwfd
Definition: TSystem.h:274
virtual std::string GetHomeDirectory(const char *userName=0) const
Return the user's home directory.
Definition: TSystem.cxx:889
TSeqCollection * fTimers
Definition: TSystem.h:286
virtual int RecvBuf(int sock, void *buffer, int length)
Receive a buffer headed by a length indicator.
Definition: TSystem.cxx:2372
virtual void Openlog(const char *name, Int_t options, ELogFacility facility)
Open connection to system log daemon.
Definition: TSystem.cxx:1639
Bool_t R_ISDIR(Int_t mode)
Definition: TSystem.h:126
virtual int GetServiceByName(const char *service)
Get port # of internet service.
Definition: TSystem.cxx:2272
virtual int AnnounceUnixService(int port, int backlog)
Announce unix domain service.
Definition: TSystem.cxx:2317
const Ssiz_t kNPOS
Definition: Rtypes.h:115
virtual void AddTimer(TTimer *t)
Add timer to list of system timers.
Definition: TSystem.cxx:475
virtual void ShowOutput(RedirectHandle_t *h)
Display the content associated with the redirection described by the opaque handle 'h'...
Definition: TSystem.cxx:1687
Bool_t fInControl
Definition: TSystem.h:282
virtual void SetLinkedLibs(const char *linkedLibs)
LinkedLibs should contain the library directory and list of libraries needed to recreate the current ...
Definition: TSystem.cxx:4018
virtual Int_t GetEffectiveGid()
Returns the effective group id.
Definition: TSystem.cxx:1553
virtual void Exit(int code, Bool_t mode=kTRUE)
Exit the application.
Definition: TSystem.cxx:720
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
Definition: TString.h:567
virtual const char * GetObjExt() const
Get the object file extension.
Definition: TSystem.cxx:3845
#define ROOT_RELEASE
Definition: RVersion.h:17
TString fFlagsDebug
Definition: TSystem.h:299
Long_t fIno
Definition: TSystem.h:137
TString fFlagsOpt
Definition: TSystem.h:300
virtual int CopyFile(const char *from, const char *to, Bool_t overwrite=kFALSE)
Copy a file.
Definition: TSystem.cxx:1310
virtual void * OpenDirectory(const char *name)
Open a directory. Returns 0 if directory does not exist.
Definition: TSystem.cxx:830
R__EXTERN Int_t gDebug
Definition: Rtypes.h:128
Iterator of ordered collection.
virtual void AddIncludePath(const char *includePath)
Add includePath to the already set include path.
Definition: TSystem.cxx:3972
TSystem * FindHelper(const char *path, void *dirptr=0)
Create helper TSystem to handle file and directory operations that might be special for remote file a...
Definition: TSystem.cxx:748
virtual void AddFileHandler(TFileHandler *fh)
Add a file handler to the list of system file handlers.
Definition: TSystem.cxx:558
static void ResetErrno()
Static function resetting system error number.
Definition: TSystem.cxx:280
double result[121]
void TurnOn()
Definition: TTimer.cxx:58
virtual int GetMemInfo(MemInfo_t *info) const
Returns ram and swap memory usage info into the MemInfo_t structure.
Definition: TSystem.cxx:2433
virtual Bool_t ExpandPathName(TString &path)
Expand a pathname getting rid of special shell characters like ~.
Definition: TSystem.cxx:1243
TString fMakeSharedLib
Definition: TSystem.h:307
Int_t fBeepDuration
Definition: TSystem.h:280
TObject * At(Int_t idx) const
Definition: TObjArray.h:167
void SetErrorStr(const char *errstr)
Set the system error string.
Definition: TSystem.cxx:245
Long_t fDev
Definition: TSystem.h:136
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
Definition: TString.h:582
TString fSoExt
Definition: TSystem.h:304
virtual int GetSockOpt(int sock, int kind, int *val)
Get socket option.
Definition: TSystem.cxx:2399
const char * gRootDir
Definition: TSystem.cxx:53
Abstract base class defining a generic interface to the underlying Operating System.
Definition: TSystem.h:258
const Bool_t kTRUE
Definition: Rtypes.h:91
Ordered collection.
TObject * obj
virtual void SetLinkdefSuffix(const char *suffix)
The 'suffix' will be appended to the name of a script loaded by ACLiC and used to locate any eventual...
Definition: TSystem.cxx:4040
virtual Int_t GetFPEMask()
Return the bitmap of conditions that trigger a floating point exception.
Definition: TSystem.cxx:636
#define RETRY
Definition: TException.h:59
static Int_t gLibraryVersionIdx
Definition: TSystem.cxx:61
virtual char * ConcatFileName(const char *dir, const char *name)
Concatenate a directory and a file name. User must delete returned string.
Definition: TSystem.cxx:1044
const Int_t n
Definition: legend1.C:16
const char * GetUser() const
Definition: TUrl.h:74
TString fFile
Definition: TSystem.h:215
TString fIncludePath
Definition: TSystem.h:302
virtual const char * GetError()
Return system error string.
Definition: TSystem.cxx:254
Ssiz_t First(char c) const
Find first occurrence of a character c.
Definition: TString.cxx:466
virtual int GetSysInfo(SysInfo_t *info) const
Returns static system info, like OS type, CPU type, number of CPUs RAM size, etc into the SysInfo_t s...
Definition: TSystem.cxx:2412
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Compare a string to char *cs2.
Definition: TString.cxx:385
Bool_t IsAsync() const
Definition: TTimer.h:87
virtual void DoBeep(Int_t=-1, Int_t=-1) const
Definition: TSystem.h:323
static Int_t * ReAllocInt(Int_t *vp, size_t size, size_t oldsize)
Reallocate (i.e.
Definition: TStorage.cxx:289
virtual void SetIncludePath(const char *includePath)
IncludePath should contain the list of compiler flags to indicate where to find user defined header f...
Definition: TSystem.cxx:4007
TString & Chop()
Definition: TString.h:622
virtual void IgnoreSignal(ESignals sig, Bool_t ignore=kTRUE)
If ignore is true ignore the specified signal, else restore previous behaviour.
Definition: TSystem.cxx:597
const char * GetHostAddress() const
Returns the IP address string "%d.%d.%d.%d".
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
Definition: TObject.cxx:904