Logo ROOT   6.07/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 \ingroup Base
14 
15 Abstract base class defining a generic interface to the underlying
16 Operating System.
17 This is not an ABC in the strict sense of the (C++) word. For
18 every member function there is an implementation (often not more
19 than a call to AbstractMethod() which prints a warning saying
20 that the method should be overridden in a derived class), which
21 allows a simple partial implementation for new OS'es.
22 */
23 
24 #ifdef WIN32
25 #include <io.h>
26 #endif
27 #include <stdlib.h>
28 #include <errno.h>
29 #include <algorithm>
30 #include <sys/stat.h>
31 
32 #include "Riostream.h"
33 #include "TSystem.h"
34 #include "TApplication.h"
35 #include "TException.h"
36 #include "TROOT.h"
37 #include "TClass.h"
38 #include "TClassTable.h"
39 #include "TEnv.h"
40 #include "TBrowser.h"
41 #include "TString.h"
42 #include "TOrdCollection.h"
43 #include "TInterpreter.h"
44 #include "TRegexp.h"
45 #include "TTimer.h"
46 #include "TObjString.h"
47 #include "TError.h"
48 #include "TPluginManager.h"
49 #include "TUrl.h"
50 #include "TVirtualMutex.h"
51 #include "compiledata.h"
52 #include "RConfigure.h"
53 
54 const char *gRootDir;
55 const char *gProgName;
56 const char *gProgPath;
57 
59 TFileHandler *gXDisplay = 0; // Display server event handler, set in TGClient
60 
61 static Int_t *gLibraryVersion = 0; // Set in TVersionCheck, used in Load()
62 static Int_t gLibraryVersionIdx = 0; // Set in TVersionCheck, used in Load()
64 
65 
67 
68 ////////////////////////////////////////////////////////////////////////////////
69 /// Create async event processor timer. Delay is in milliseconds.
70 
72 {
73  gROOT->SetInterrupt(kFALSE);
74  TurnOn();
75 }
76 
77 ////////////////////////////////////////////////////////////////////////////////
78 /// Process events if timer did time out. Returns kTRUE if interrupt
79 /// flag is set (by hitting a key in the canvas or selecting the
80 /// Interrupt menu item in canvas or some other action).
81 
83 {
84  if (fTimeout) {
85  if (gSystem->ProcessEvents()) {
86  Remove();
87  return kTRUE;
88  } else {
89  Reset();
90  return kFALSE;
91  }
92  }
93  return kFALSE;
94 }
95 
96 
97 
99 
101 
102 ////////////////////////////////////////////////////////////////////////////////
103 /// Create a new OS interface.
104 
105 TSystem::TSystem(const char *name, const char *title) : TNamed(name, title), fAclicProperties(0)
106 {
107  if (gSystem && name[0] != '-' && strcmp(name, "Generic"))
108  Error("TSystem", "only one instance of TSystem allowed");
109 
110  fOnExitList = 0;
111  fSignalHandler = 0;
112  fFileHandler = 0;
113  fStdExceptionHandler = 0;
114  fTimers = 0;
115  fCompiled = 0;
116  fHelpers = 0;
117  fInsideNotify = kFALSE;
118  fBeepDuration = 0;
119  fBeepFreq = 0;
120  fReadmask = 0;
121  fWritemask = 0;
122  fReadready = 0;
123  fWriteready = 0;
124  fSignals = 0;
125  fDone = kFALSE;
126  fAclicMode = kDefault;
127  fInControl = kFALSE;
128  fLevel = 0;
129  fMaxrfd = -1;
130  fMaxwfd = -1;
131  fNfd = 0;
132  fSigcnt = 0;
133 
134  if (!gLibraryVersion) {
136  memset(gLibraryVersion, 0, gLibraryVersionMax*sizeof(Int_t));
137  }
138 }
139 
140 ////////////////////////////////////////////////////////////////////////////////
141 /// Delete the OS interface.
142 
144 {
145  if (fOnExitList) {
146  fOnExitList->Delete();
147  SafeDelete(fOnExitList);
148  }
149 
150  if (fSignalHandler) {
151  fSignalHandler->Delete();
152  SafeDelete(fSignalHandler);
153  }
154 
155  if (fFileHandler) {
156  fFileHandler->Delete();
157  SafeDelete(fFileHandler);
158  }
159 
160  if (fStdExceptionHandler) {
161  fStdExceptionHandler->Delete();
162  SafeDelete(fStdExceptionHandler);
163  }
164 
165  if (fTimers) {
166  fTimers->Delete();
167  SafeDelete(fTimers);
168  }
169 
170  if (fCompiled) {
171  fCompiled->Delete();
172  SafeDelete(fCompiled);
173  }
174 
175  if (fHelpers) {
176  fHelpers->Delete();
177  SafeDelete(fHelpers);
178  }
179 
180  if (gSystem == this)
181  gSystem = 0;
182 }
183 
184 ////////////////////////////////////////////////////////////////////////////////
185 /// Initialize the OS interface.
186 
188 {
189  fNfd = 0;
190  fMaxrfd = -1;
191  fMaxwfd = -1;
192 
193  fSigcnt = 0;
194  fLevel = 0;
195 
196  fSignalHandler = new TOrdCollection;
197  fFileHandler = new TOrdCollection;
198  fStdExceptionHandler = new TOrdCollection;
199  fTimers = new TOrdCollection;
200 
201  fBuildArch = BUILD_ARCH;
202  fBuildCompiler = COMPILER;
203  fBuildCompilerVersion = COMPILERVERS;
204  fBuildNode = BUILD_NODE;
205  fFlagsDebug = CXXDEBUG;
206  fFlagsOpt = CXXOPT;
207  fIncludePath = INCLUDEPATH;
208  fLinkedLibs = LINKEDLIBS;
209  fSoExt = SOEXT;
210  fObjExt = OBJEXT;
211  fAclicMode = kDefault;
212  fMakeSharedLib = MAKESHAREDLIB;
213  fMakeExe = MAKEEXE;
214  fCompiled = new TOrdCollection;
215 
216  if (gEnv && fBeepDuration == 0 && fBeepFreq == 0) {
217  fBeepDuration = gEnv->GetValue("Root.System.BeepDuration", 100);
218  fBeepFreq = gEnv->GetValue("Root.System.BeepFreq", 440);
219  }
220  if (!fName.CompareTo("Generic")) return kTRUE;
221  return kFALSE;
222 }
223 
224 ////////////////////////////////////////////////////////////////////////////////
225 /// Set the application name (from command line, argv[0]) and copy it in
226 /// gProgName.
227 
228 void TSystem::SetProgname(const char *name)
229 {
230  gProgName = StrDup(name);
231 }
232 
233 ////////////////////////////////////////////////////////////////////////////////
234 /// Set DISPLAY environment variable based on utmp entry. Only for UNIX.
235 
237 {
238 }
239 
240 ////////////////////////////////////////////////////////////////////////////////
241 /// Set the system error string. This string will be used by GetError().
242 /// To be used in case one does not want or can use the system error
243 /// string (e.g. because error is generated by a third party POSIX like
244 /// library that does not use standard errno).
245 
246 void TSystem::SetErrorStr(const char *errstr)
247 {
248  ResetErrno(); // so GetError() uses the fLastErrorString
249  GetLastErrorString() = errstr;
250 }
251 
252 ////////////////////////////////////////////////////////////////////////////////
253 /// Return system error string.
254 
255 const char *TSystem::GetError()
256 {
257  if (GetErrno() == 0 && GetLastErrorString() != "")
258  return GetLastErrorString();
259  return Form("errno: %d", GetErrno());
260 }
261 
262 ////////////////////////////////////////////////////////////////////////////////
263 /// Static function returning system error number.
264 
266 {
267 #ifdef _REENTRANT
268  return errno; // errno can be a macro if _REENTRANT is set
269 #else
270 #ifdef R__SOLARIS_CC50
271  return ::errno;
272 #else
273  return errno;
274 #endif
275 #endif
276 }
277 
278 ////////////////////////////////////////////////////////////////////////////////
279 /// Static function resetting system error number.
280 
282 {
283 #ifdef _REENTRANT
284  errno = 0; // errno can be a macro if _REENTRANT is set
285 #else
286 #ifdef R__SOLARIS_CC50
287  ::errno = 0;
288 #else
289  errno = 0;
290 #endif
291 #endif
292 }
293 
294 ////////////////////////////////////////////////////////////////////////////////
295 /// Objects that should be deleted on exit of the OS interface.
296 
298 {
299  if (fOnExitList == 0)
300  fOnExitList = new TOrdCollection;
301  if (fOnExitList->FindObject(obj) == 0)
302  fOnExitList->Add(obj);
303 }
304 
305 ////////////////////////////////////////////////////////////////////////////////
306 /// Return the system's host name.
307 
308 const char *TSystem::HostName()
309 {
310  return "Local host";
311 }
312 
313 ////////////////////////////////////////////////////////////////////////////////
314 /// Hook to tell TSystem that the TApplication object has been created.
315 
317 {
318  // Currently needed only for WinNT interface.
319 }
320 
321 ////////////////////////////////////////////////////////////////////////////////
322 /// Beep for duration milliseconds with a tone of frequency freq.
323 /// Defaults to printing the `\a` character to stdout.
324 /// If freq or duration is <0 respectively, use default value.
325 /// If setDefault is set, only set the frequency and duration as
326 /// new defaults, but don't beep.
327 /// If default freq or duration is <0, never beep (silence)
328 
329 void TSystem::Beep(Int_t freq /*=-1*/, Int_t duration /*=-1*/,
330  Bool_t setDefault /*=kFALSE*/)
331 {
332  if (setDefault) {
333  fBeepFreq = freq;
334  fBeepDuration = duration;
335  return;
336  }
337  if (fBeepDuration < 0 || fBeepFreq < 0) return; // silence
338  if (freq < 0) freq = fBeepFreq;
339  if (duration < 0) duration = fBeepDuration;
340  DoBeep(freq, duration);
341 }
342 
343 //---- EventLoop ---------------------------------------------------------------
344 
345 ////////////////////////////////////////////////////////////////////////////////
346 /// System event loop.
347 
349 {
350  fInControl = kTRUE;
351  fDone = kFALSE;
352 
353 loop_entry:
354  try {
355  RETRY {
356  while (!fDone) {
358  InnerLoop();
360  }
361  } ENDTRY;
362  }
363  catch (std::exception& exc) {
364  TIter next(fStdExceptionHandler);
365  TStdExceptionHandler* eh = 0;
366  while ((eh = (TStdExceptionHandler*) next())) {
367  switch (eh->Handle(exc))
368  {
370  break;
372  goto loop_entry;
373  break;
375  Warning("Run", "instructed to abort");
376  goto loop_end;
377  break;
378  }
379  }
380  throw;
381  }
382  catch (const char *str) {
383  printf("%s\n", str);
384  }
385  // handle every exception
386  catch (...) {
387  Warning("Run", "handle uncaugth exception, terminating");
388  }
389 
390 loop_end:
391  fInControl = kFALSE;
392 }
393 
394 ////////////////////////////////////////////////////////////////////////////////
395 /// Exit from event loop.
396 
398 {
399  fDone = kTRUE;
400 }
401 
402 ////////////////////////////////////////////////////////////////////////////////
403 /// Inner event loop.
404 
406 {
407  fLevel++;
408  DispatchOneEvent();
409  fLevel--;
410 }
411 
412 ////////////////////////////////////////////////////////////////////////////////
413 /// Process pending events (GUI, timers, sockets). Returns the result of
414 /// TROOT::IsInterrupted(). The interrupt flag (TROOT::SetInterrupt())
415 /// can be set during the handling of the events. This mechanism allows
416 /// macros running in tight calculating loops to be interrupted by some
417 /// GUI event (depending on the interval with which this method is
418 /// called). For example hitting ctrl-c in a canvas will set the
419 /// interrupt flag.
420 
422 {
423  gROOT->SetInterrupt(kFALSE);
424 
425  if (!gROOT->TestBit(TObject::kInvalidObject))
426  DispatchOneEvent(kTRUE);
427 
428  return gROOT->IsInterrupted();
429 }
430 
431 ////////////////////////////////////////////////////////////////////////////////
432 /// Dispatch a single event.
433 
435 {
436  AbstractMethod("DispatchOneEvent");
437 }
438 
439 ////////////////////////////////////////////////////////////////////////////////
440 /// Sleep milliSec milli seconds.
441 
443 {
444  AbstractMethod("Sleep");
445 }
446 
447 ////////////////////////////////////////////////////////////////////////////////
448 /// Select on active file descriptors (called by TMonitor).
449 
451 {
452  AbstractMethod("Select");
453  return -1;
454 }
455 ////////////////////////////////////////////////////////////////////////////////
456 /// Select on active file descriptors (called by TMonitor).
457 
459 {
460  AbstractMethod("Select");
461  return -1;
462 }
463 
464 //---- handling of system events -----------------------------------------------
465 ////////////////////////////////////////////////////////////////////////////////
466 /// Get current time in milliseconds since 0:00 Jan 1 1995.
467 
469 {
470  return TTime(0);
471 }
472 
473 ////////////////////////////////////////////////////////////////////////////////
474 /// Add timer to list of system timers.
475 
477 {
478  if (ti && fTimers && (fTimers->FindObject(ti) == 0))
479  fTimers->Add(ti);
480 }
481 
482 ////////////////////////////////////////////////////////////////////////////////
483 /// Remove timer from list of system timers. Returns removed timer or 0
484 /// if timer was not active.
485 
487 {
488  if (fTimers) {
489  TTimer *tr = (TTimer*) fTimers->Remove(ti);
490  return tr;
491  }
492  return 0;
493 }
494 
495 ////////////////////////////////////////////////////////////////////////////////
496 /// Time when next timer of mode (synchronous=kTRUE or
497 /// asynchronous=kFALSE) will time-out (in ms).
498 
500 {
501  if (!fTimers) return -1;
502 
503  TOrdCollectionIter it((TOrdCollection*)fTimers);
504  TTimer *t, *to = 0;
505  Long64_t tt, tnow = Now();
506  Long_t timeout = -1;
507 
508  while ((t = (TTimer *) it.Next())) {
509  if (t->IsSync() == mode) {
510  tt = (Long64_t)t->GetAbsTime() - tnow;
511  if (tt < 0) tt = 0;
512  if (timeout == -1) {
513  timeout = (Long_t)tt;
514  to = t;
515  }
516  if (tt < timeout) {
517  timeout = (Long_t)tt;
518  to = t;
519  }
520  }
521  }
522 
523  if (to && to->IsAsync() && timeout > 0) {
524  if (to->IsInterruptingSyscalls())
525  SigAlarmInterruptsSyscalls(kTRUE);
526  else
527  SigAlarmInterruptsSyscalls(kFALSE);
528  }
529 
530  return timeout;
531 }
532 
533 ////////////////////////////////////////////////////////////////////////////////
534 /// Add a signal handler to list of system signal handlers. Only adds
535 /// the handler if it is not already in the list of signal handlers.
536 
538 {
539  if (h && fSignalHandler && (fSignalHandler->FindObject(h) == 0))
540  fSignalHandler->Add(h);
541 }
542 
543 ////////////////////////////////////////////////////////////////////////////////
544 /// Remove a signal handler from list of signal handlers. Returns
545 /// the handler or 0 if the handler was not in the list of signal handlers.
546 
548 {
549  if (fSignalHandler)
550  return (TSignalHandler *)fSignalHandler->Remove(h);
551 
552  return 0;
553 }
554 
555 ////////////////////////////////////////////////////////////////////////////////
556 /// Add a file handler to the list of system file handlers. Only adds
557 /// the handler if it is not already in the list of file handlers.
558 
560 {
561  if (h && fFileHandler && (fFileHandler->FindObject(h) == 0))
562  fFileHandler->Add(h);
563 }
564 
565 ////////////////////////////////////////////////////////////////////////////////
566 /// Remove a file handler from the list of file handlers. Returns
567 /// the handler or 0 if the handler was not in the list of file handlers.
568 
570 {
571  if (fFileHandler)
572  return (TFileHandler *)fFileHandler->Remove(h);
573 
574  return 0;
575 }
576 
577 ////////////////////////////////////////////////////////////////////////////////
578 /// If reset is true reset the signal handler for the specified signal
579 /// to the default handler, else restore previous behaviour.
580 
581 void TSystem::ResetSignal(ESignals /*sig*/, Bool_t /*reset*/)
582 {
583  AbstractMethod("ResetSignal");
584 }
585 
586 ////////////////////////////////////////////////////////////////////////////////
587 /// Reset signals handlers to previous behaviour.
588 
590 {
591  AbstractMethod("ResetSignals");
592 }
593 
594 ////////////////////////////////////////////////////////////////////////////////
595 /// If ignore is true ignore the specified signal, else restore previous
596 /// behaviour.
597 
598 void TSystem::IgnoreSignal(ESignals /*sig*/, Bool_t /*ignore*/)
599 {
600  AbstractMethod("IgnoreSignal");
601 }
602 
603 ////////////////////////////////////////////////////////////////////////////////
604 /// If ignore is true ignore the interrupt signal, else restore previous
605 /// behaviour. Typically call ignore interrupt before writing to disk.
606 
608 {
609  IgnoreSignal(kSigInterrupt, ignore);
610 }
611 
612 ////////////////////////////////////////////////////////////////////////////////
613 /// Add an exception handler to list of system exception handlers. Only adds
614 /// the handler if it is not already in the list of exception handlers.
615 
617 {
618  if (eh && fStdExceptionHandler && (fStdExceptionHandler->FindObject(eh) == 0))
619  fStdExceptionHandler->Add(eh);
620 }
621 
622 ////////////////////////////////////////////////////////////////////////////////
623 /// Remove an exception handler from list of exception handlers. Returns
624 /// the handler or 0 if the handler was not in the list of exception handlers.
625 
627 {
628  if (fStdExceptionHandler)
629  return (TStdExceptionHandler *)fStdExceptionHandler->Remove(eh);
630 
631  return 0;
632 }
633 
634 ////////////////////////////////////////////////////////////////////////////////
635 /// Return the bitmap of conditions that trigger a floating point exception.
636 
638 {
639  AbstractMethod("GetFPEMask");
640  return 0;
641 }
642 
643 ////////////////////////////////////////////////////////////////////////////////
644 /// Set which conditions trigger a floating point exception.
645 /// Return the previous set of conditions.
646 
648 {
649  AbstractMethod("SetFPEMask");
650  return 0;
651 }
652 
653 //---- Processes ---------------------------------------------------------------
654 
655 ////////////////////////////////////////////////////////////////////////////////
656 /// Execute a command.
657 
658 int TSystem::Exec(const char*)
659 {
660  AbstractMethod("Exec");
661  return -1;
662 }
663 
664 ////////////////////////////////////////////////////////////////////////////////
665 /// Open a pipe.
666 
667 FILE *TSystem::OpenPipe(const char*, const char*)
668 {
669  AbstractMethod("OpenPipe");
670  return 0;
671 }
672 
673 ////////////////////////////////////////////////////////////////////////////////
674 /// Close the pipe.
675 
677 {
678  AbstractMethod("ClosePipe");
679  return -1;
680 }
681 
682 ////////////////////////////////////////////////////////////////////////////////
683 /// Execute command and return output in TString.
684 
685 TString TSystem::GetFromPipe(const char *command)
686 {
687  TString out;
688 
689  FILE *pipe = OpenPipe(command, "r");
690  if (!pipe) {
691  SysError("GetFromPipe", "cannot run command \"%s\"", command);
692  return out;
693  }
694 
695  TString line;
696  while (line.Gets(pipe)) {
697  if (out != "")
698  out += "\n";
699  out += line;
700  }
701 
702  Int_t r = ClosePipe(pipe);
703  if (r) {
704  Error("GetFromPipe", "command \"%s\" returned %d", command, r);
705  }
706  return out;
707 }
708 
709 ////////////////////////////////////////////////////////////////////////////////
710 /// Get process id.
711 
713 {
714  AbstractMethod("GetPid");
715  return -1;
716 }
717 
718 ////////////////////////////////////////////////////////////////////////////////
719 /// Exit the application.
720 
722 {
723  AbstractMethod("Exit");
724 }
725 
726 ////////////////////////////////////////////////////////////////////////////////
727 /// Abort the application.
728 
729 void TSystem::Abort(int)
730 {
731  AbstractMethod("Abort");
732 }
733 
734 ////////////////////////////////////////////////////////////////////////////////
735 /// Print a stack trace.
736 
738 {
739  AbstractMethod("StackTrace");
740 }
741 
742 
743 //---- Directories -------------------------------------------------------------
744 
745 ////////////////////////////////////////////////////////////////////////////////
746 /// Create helper TSystem to handle file and directory operations that
747 /// might be special for remote file access, like via rfiod or rootd.
748 
749 TSystem *TSystem::FindHelper(const char *path, void *dirptr)
750 {
751  if (!fHelpers)
752  fHelpers = new TOrdCollection;
753 
754  TPluginHandler *h;
755  TSystem *helper = 0;
756  if (path) {
757  if (!GetDirPtr()) {
758  TUrl url(path, kTRUE);
759  if (!strcmp(url.GetProtocol(), "file"))
760  return 0;
761  }
762  }
763 
764  // look for existing helpers
765  TIter next(fHelpers);
766  while ((helper = (TSystem*) next()))
767  if (helper->ConsistentWith(path, dirptr))
768  return helper;
769 
770  if (!path)
771  return 0;
772 
773  // create new helper
774  TRegexp re("^root.*:"); // also roots, rootk, etc
775  TString pname = path;
776  if (pname.BeginsWith("xroot:") || pname.Index(re) != kNPOS) {
777  // (x)rootd daemon ...
778  if ((h = gROOT->GetPluginManager()->FindHandler("TSystem", path))) {
779  if (h->LoadPlugin() == -1)
780  return 0;
781  helper = (TSystem*) h->ExecPlugin(2, path, kFALSE);
782  }
783  } else if ((h = gROOT->GetPluginManager()->FindHandler("TSystem", path))) {
784  if (h->LoadPlugin() == -1)
785  return 0;
786  helper = (TSystem*) h->ExecPlugin(0);
787  }
788 
789  if (helper)
790  fHelpers->Add(helper);
791 
792  return helper;
793 }
794 
795 ////////////////////////////////////////////////////////////////////////////////
796 /// Check consistency of this helper with the one required
797 /// by 'path' or 'dirptr'
798 
799 Bool_t TSystem::ConsistentWith(const char *path, void *dirptr)
800 {
801  Bool_t checkproto = kFALSE;
802  if (path) {
803  if (!GetDirPtr()) {
804  TUrl url(path, kTRUE);
805  if (!strncmp(url.GetProtocol(), GetName(), strlen(GetName())))
806  checkproto = kTRUE;
807  }
808  }
809 
810  Bool_t checkdir = kFALSE;
811  if (GetDirPtr() && GetDirPtr() == dirptr)
812  checkdir = kTRUE;
813 
814  return (checkproto || checkdir);
815 }
816 
817 ////////////////////////////////////////////////////////////////////////////////
818 /// Make a directory. Returns 0 in case of success and
819 /// -1 if the directory could not be created (either already exists or
820 /// illegal path name).
821 
822 int TSystem::MakeDirectory(const char*)
823 {
824  AbstractMethod("MakeDirectory");
825  return 0;
826 }
827 
828 ////////////////////////////////////////////////////////////////////////////////
829 /// Open a directory. Returns 0 if directory does not exist.
830 
831 void *TSystem::OpenDirectory(const char*)
832 {
833  AbstractMethod("OpenDirectory");
834  return 0;
835 }
836 
837 ////////////////////////////////////////////////////////////////////////////////
838 /// Free a directory.
839 
841 {
842  AbstractMethod("FreeDirectory");
843 }
844 
845 ////////////////////////////////////////////////////////////////////////////////
846 /// Get a directory entry. Returns 0 if no more entries.
847 
848 const char *TSystem::GetDirEntry(void*)
849 {
850  AbstractMethod("GetDirEntry");
851  return 0;
852 }
853 
854 ////////////////////////////////////////////////////////////////////////////////
855 /// Change directory.
856 
858 {
859  AbstractMethod("ChangeDirectory");
860  return kFALSE;
861 }
862 
863 ////////////////////////////////////////////////////////////////////////////////
864 /// Return working directory.
865 
867 {
868  return 0;
869 }
870 
871 //////////////////////////////////////////////////////////////////////////////
872 /// Return working directory.
873 
874 std::string TSystem::GetWorkingDirectory() const
875 {
876  return std::string();
877 }
878 
879 ////////////////////////////////////////////////////////////////////////////////
880 /// Return the user's home directory.
881 
882 const char *TSystem::HomeDirectory(const char*)
883 {
884  return 0;
885 }
886 
887 //////////////////////////////////////////////////////////////////////////////
888 /// Return the user's home directory.
889 
890 std::string TSystem::GetHomeDirectory(const char*) const
891 {
892  return std::string();
893 }
894 
895 ////////////////////////////////////////////////////////////////////////////////
896 /// Make a file system directory. Returns 0 in case of success and
897 /// -1 if the directory could not be created (either already exists or
898 /// illegal path name).
899 /// If 'recursive' is true, makes parent directories as needed.
900 
901 int TSystem::mkdir(const char *name, Bool_t recursive)
902 {
903  if (recursive) {
904  TString safeName = name; // local copy in case 'name' is output from
905  // TSystem::DirName as it uses static buffers
906  TString dirname = DirName(safeName);
907  if (!dirname.Length()) {
908  // well we should not have to make the root of the file system!
909  // (and this avoid infinite recursions!)
910  return -1;
911  }
912  if (AccessPathName(dirname, kFileExists)) {
913  int res = mkdir(dirname, kTRUE);
914  if (res) return res;
915  }
916  if (!AccessPathName(safeName, kFileExists)) {
917  return -1;
918  }
919  }
920 
921  return MakeDirectory(name);
922 }
923 
924 //---- Paths & Files -----------------------------------------------------------
925 
926 ////////////////////////////////////////////////////////////////////////////////
927 /// Base name of a file name. Base name of /user/root is root.
928 
929 const char *TSystem::BaseName(const char *name)
930 {
931  if (name) {
932  if (name[0] == '/' && name[1] == '\0')
933  return name;
934  char *cp;
935  if ((cp = (char*)strrchr(name, '/')))
936  return ++cp;
937  return name;
938  }
939  Error("BaseName", "name = 0");
940  return 0;
941 }
942 
943 ////////////////////////////////////////////////////////////////////////////////
944 /// Return true if dir is an absolute pathname.
945 
947 {
948  if (dir)
949  return dir[0] == '/';
950  return kFALSE;
951 }
952 
953 ////////////////////////////////////////////////////////////////////////////////
954 /// Return true if 'name' is a file that can be found in the ROOT include
955 /// path or the current directory.
956 /// If 'name' contains any ACLiC style information (e.g. trailing +[+][g|O]),
957 /// it will be striped off 'name'.
958 /// If fullpath is != 0, the full path to the file is returned in *fullpath,
959 /// which must be deleted by the caller.
960 
961 Bool_t TSystem::IsFileInIncludePath(const char *name, char **fullpath)
962 {
963  if (!name || !name[0]) return kFALSE;
964 
965  TString aclicMode;
966  TString arguments;
967  TString io;
968  TString realname = SplitAclicMode(name, aclicMode, arguments, io);
969 
970  TString fileLocation = DirName(realname);
971 
972  TString incPath = gSystem->GetIncludePath(); // of the form -Idir1 -Idir2 -Idir3
973  incPath.Append(":").Prepend(" ");
974  incPath.ReplaceAll(" -I",":"); // of form :dir1 :dir2:dir3
975  while ( incPath.Index(" :") != -1 ) {
976  incPath.ReplaceAll(" :",":");
977  }
978  incPath.Prepend(fileLocation+":.:");
979 
980  char *actual = Which(incPath,realname);
981 
982  if (!actual) {
983  return kFALSE;
984  } else {
985  if (fullpath)
986  *fullpath = actual;
987  else
988  delete [] actual;
989  return kTRUE;
990  }
991 }
992 
993 ////////////////////////////////////////////////////////////////////////////////
994 /// Return the directory name in pathname. DirName of /user/root is /user.
995 /// In case no dirname is specified "." is returned.
996 
997 const char *TSystem::DirName(const char *pathname)
998 {
999  if (pathname && strchr(pathname, '/')) {
1000  R__LOCKGUARD2(gSystemMutex);
1001 
1002  static int len = 0;
1003  static char *buf = 0;
1004  int pathlen = strlen(pathname);
1005  if (pathlen > len) {
1006  delete [] buf;
1007  len = pathlen;
1008  buf = new char [len+1];
1009  }
1010  strcpy(buf, pathname);
1011 
1012  char *r = buf+pathlen-1;
1013  // First skip the trailing '/'
1014  while ( r>buf && *(r)=='/') { --r; }
1015  // Then find the next non slash
1016  while ( r>buf && *(r)!='/') { --r; }
1017  // Then skip duplicate slashes
1018  // Note the 'r>buf' is a strict comparison to allows '/topdir' to return '/'
1019  while ( r>buf && *(r)=='/') { --r; }
1020  // If all was cut away, we encountered a rel. path like 'subdir/'
1021  // and ended up at '.'.
1022  if (r==buf && *(r)!='/') {
1023  return ".";
1024  }
1025  // And finally terminate the string to drop off the filename
1026  *(r+1) = '\0';
1027 
1028  return buf;
1029  }
1030  return ".";
1031 }
1032 
1033 ////////////////////////////////////////////////////////////////////////////////
1034 /// Convert from a Unix pathname to a local pathname. E.g. from `/user/root` to
1035 /// `\user\root`.
1036 
1037 const char *TSystem::UnixPathName(const char *name)
1038 {
1039  return name;
1040 }
1041 
1042 ////////////////////////////////////////////////////////////////////////////////
1043 /// Concatenate a directory and a file name. User must delete returned string.
1044 
1045 char *TSystem::ConcatFileName(const char *dir, const char *name)
1046 {
1047  TString nameString(name);
1048  PrependPathName(dir, nameString);
1049  return StrDup(nameString.Data());
1050 }
1051 
1052 ////////////////////////////////////////////////////////////////////////////////
1053 /// Concatenate a directory and a file name.
1054 
1055 const char *TSystem::PrependPathName(const char *, TString&)
1056 {
1057  AbstractMethod("PrependPathName");
1058  return 0;
1059 }
1060 
1061 
1062 //---- Paths & Files -----------------------------------------------------------
1063 
1064 ////////////////////////////////////////////////////////////////////////////////
1065 /// Expand a pathname getting rid of special shell characters like ~.$, etc.
1066 /// For Unix/Win32 compatibility use $(XXX) instead of $XXX when using
1067 /// environment variables in a pathname. If compatibility is not an issue
1068 /// you can use on Unix directly $XXX. This is a protected function called
1069 /// from the OS specific system classes, like TUnixSystem and TWinNTSystem.
1070 /// Returns the expanded filename or 0 in case of error.
1071 
1072 const char *TSystem::ExpandFileName(const char *fname)
1073 {
1074  const int kBufSize = kMAXPATHLEN;
1075  TTHREAD_TLS_ARRAY(char, kBufSize, xname);
1076 
1077  Bool_t res = ExpandFileName(fname, xname, kBufSize);
1078  if (res)
1079  return nullptr;
1080  else
1081  return xname;
1082 }
1083 
1084 //////////////////////////////////////////////////////////////////////////////
1085 /// Expand a pathname getting rid of special shell characters like ~.$, etc.
1086 /// This function is analogous to ExpandFileName(const char *), except that
1087 /// it receives a TString reference of the pathname to be expanded.
1088 /// Returns kTRUE in case of error and kFALSE otherwise.
1089 
1091 {
1092  const int kBufSize = kMAXPATHLEN;
1093  char xname[kBufSize];
1094 
1095  Bool_t res = ExpandFileName(fname.Data(), xname, kBufSize);
1096  if (!res)
1097  fname = xname;
1098 
1099  return res;
1100 }
1101 
1102 ////////////////////////////////////////////////////////////////////////////
1103 /// Private method for pathname expansion.
1104 /// Returns kTRUE in case of error and kFALSE otherwise.
1105 
1106 Bool_t TSystem::ExpandFileName(const char *fname, char *xname, const int kBufSize)
1107 {
1108  int n, ier, iter, lx, ncopy;
1109  char *inp, *out, *x, *t, buff[kBufSize*4];
1110  const char *b, *c, *e;
1111  const char *p;
1112 
1113  iter = 0; xname[0] = 0; inp = buff + kBufSize; out = inp + kBufSize;
1114  inp[-1] = ' '; inp[0] = 0; out[-1] = ' ';
1115  c = fname + strspn(fname, " \t\f\r");
1116  //VP if (isalnum(c[0])) { strcpy(inp, WorkingDirectory()); strcat(inp, "/"); } // add $cwd
1117 
1118  strlcat(inp, c, kBufSize);
1119 
1120 again:
1121  iter++; c = inp; ier = 0;
1122  x = out; x[0] = 0;
1123 
1124  p = 0; e = 0;
1125  if (c[0] == '~' && c[1] == '/') { // ~/ case
1126  std::string hd = GetHomeDirectory();
1127  p = hd.c_str();
1128  e = c + 1;
1129  if (p) { // we have smth to copy
1130  strlcpy(x, p, kBufSize);
1131  x += strlen(p);
1132  c = e;
1133  } else {
1134  ++ier;
1135  ++c;
1136  }
1137  } else if (c[0] == '~' && c[1] != '/') { // ~user case
1138  n = strcspn(c+1, "/ ");
1139  buff[0] = 0;
1140  strncat(buff, c+1, n);
1141  std::string hd = GetHomeDirectory(buff);
1142  p = hd.c_str();
1143  e = c+1+n;
1144  if (p) { // we have smth to copy
1145  strlcpy(x, p, kBufSize);
1146  x += strlen(p);
1147  c = e;
1148  } else {
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 
1928  gLibraryVersionMax *= 2;
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;
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  {
2642  // Add dependency on rootcling.
2643  char *rootCling = gSystem->Which(gSystem->Getenv("PATH"),"rootcling");
2644  if (rootCling) {
2645  R__AddPath(adddictdep,rootCling);
2646  adddictdep += " ";
2647  delete [] rootCling;
2648  }
2649  }
2650  adddictdep += " >> \""+depfilename+"\"";
2651 
2652  TString addversiondep( "echo ");
2653  addversiondep += libname + version_var_prefix + " \"" + ROOT_RELEASE + "\" >> \""+depfilename+"\"";
2654 
2655  if (gDebug > 4) {
2656  ::Info("ACLiC", "%s", touch.Data());
2657  ::Info("ACLiC", "%s", builddep.Data());
2658  ::Info("ACLiC", "%s", adddictdep.Data());
2659  }
2660 
2661  Int_t depbuilt = !gSystem->Exec(touch);
2662  if (depbuilt) depbuilt = !gSystem->Exec(builddep);
2663  if (depbuilt) depbuilt = !gSystem->Exec(adddictdep);
2664  if (depbuilt) depbuilt = !gSystem->Exec(addversiondep);
2665 
2666  if (!depbuilt) {
2667  ::Warning("ACLiC","Failed to generate the dependency file for %s",
2668  library.Data());
2669  } else {
2670 #ifdef WIN32
2671  gSystem->Unlink(stderrfile);
2672 #endif
2673  gSystem->Unlink(bakdepfilename);
2674  }
2675 }
2676 
2677 ////////////////////////////////////////////////////////////////////////////////
2678 /// This method compiles and loads a shared library containing
2679 /// the code from the file "filename".
2680 ///
2681 /// The return value is true (1) in case of success and false (0)
2682 /// in case of error.
2683 ///
2684 /// The possible options are:
2685 /// - k : keep the shared library after the session end.
2686 /// - f : force recompilation.
2687 /// - g : compile with debug symbol
2688 /// - O : optimized the code
2689 /// - c : compile only, do not attempt to load the library.
2690 /// - s : silence all informational output
2691 /// - v : output all information output
2692 /// - d : debug ACLiC, keep all the output files.
2693 /// - - : if buildir is set, use a flat structure (see buildir below)
2694 ///
2695 /// If library_specified is specified, CompileMacro generates the file
2696 /// "library_specified".soext where soext is the shared library extension for
2697 /// the current platform.
2698 ///
2699 /// If build_dir is specified, it is used as an alternative 'root' for the
2700 /// generation of the shared library. The library is stored in a sub-directories
2701 /// of 'build_dir' including the full pathname of the script unless a flat
2702 /// directory structure is requested ('-' option). With the '-' option the libraries
2703 /// are created directly in the directory 'build_dir'; in particular this means that
2704 /// 2 scripts with the same name in different source directory will over-write each
2705 /// other's library.
2706 /// See also TSystem::SetBuildDir.
2707 ///
2708 /// If dirmode is not zero and we need to create the target directory, the
2709 /// file mode bit will be change to 'dirmode' using chmod.
2710 ///
2711 /// If library_specified is not specified, CompileMacro generate a default name
2712 /// for library by taking the name of the file "filename" but replacing the
2713 /// dot before the extension by an underscore and by adding the shared
2714 /// library extension for the current platform.
2715 /// For example on most platform, hsimple.cxx will generate hsimple_cxx.so
2716 ///
2717 /// It uses the directive fMakeSharedLibs to create a shared library.
2718 /// If loading the shared library fails, it tries to output a list of missing
2719 /// symbols by creating an executable (on some platforms like OSF, this does
2720 /// not HAVE to be an executable) containing the script. It uses the
2721 /// directive fMakeExe to do so.
2722 /// For both directives, before passing them to TSystem::Exec, it expands the
2723 /// variables $SourceFiles, $SharedLib, $LibName, $IncludePath, $LinkedLibs,
2724 /// $DepLibs, $ExeName and $ObjectFiles. See SetMakeSharedLib() for more
2725 /// information on those variables.
2726 ///
2727 /// This method is used to implement the following feature:
2728 ///
2729 /// Synopsis:
2730 ///
2731 /// The purpose of this addition is to allow the user to use an external
2732 /// compiler to create a shared library from its C++ macro (scripts).
2733 /// Currently in order to execute a script, a user has to type at the root
2734 /// prompt
2735 /// ~~~ {.cpp}
2736 /// .X myfunc.C(arg1,arg2)
2737 /// ~~~
2738 /// We allow them to type:
2739 /// ~~~ {.cpp}
2740 /// .X myfunc.C++(arg1,arg2)
2741 /// ~~~
2742 /// or
2743 /// ~~~ {.cpp}
2744 /// .X myfunc.C+(arg1,arg2)
2745 /// ~~~
2746 /// In which case an external compiler will be called to create a shared
2747 /// library. This shared library will then be loaded and the function
2748 /// myfunc will be called with the two arguments. With '++' the shared library
2749 /// is always recompiled. With '+' the shared library is recompiled only
2750 /// if it does not exist yet or the macro file is newer than the shared
2751 /// library.
2752 ///
2753 /// Of course the + and ++ notation is supported in similar way for .x and .L.
2754 ///
2755 /// Through the function TSystem::SetMakeSharedLib(), the user will be able to
2756 /// indicate, with shell commands, how to build a shared library (a good
2757 /// default will be provided). The most common change, namely where to find
2758 /// header files, will be available through the function
2759 /// TSystem::SetIncludePath().
2760 /// A good default will be provided so that a typical user session should be at
2761 /// most:
2762 /// ~~~ {.cpp}
2763 /// root[1] gSystem->SetIncludePath("-I$ROOTSYS/include
2764 /// -I$HOME/mypackage/include");
2765 /// root[2] .x myfunc.C++(10,20);
2766 /// ~~~
2767 /// The user may sometimes try to compile a script before it has loaded all the
2768 /// needed shared libraries. In this case we want to be helpfull and output a
2769 /// list of the unresolved symbols. So if the loading of the created shared
2770 /// library fails, we will try to build a executable that contains the
2771 /// script. The linker should then output a list of missing symbols.
2772 ///
2773 /// To support this we provide a TSystem::SetMakeExe() function, that sets the
2774 /// directive telling how to create an executable. The loader will need
2775 /// to be informed of all the libraries available. The information about
2776 /// the libraries that has been loaded by .L and TSystem::Load() is accesible
2777 /// to the script compiler. However, the information about
2778 /// the libraries that have been selected at link time by the application
2779 /// builder (like the root libraries for root.exe) are not available and need
2780 /// to be explicitly listed in fLinkedLibs (either by default or by a call to
2781 /// TSystem::SetLinkedLibs()).
2782 ///
2783 /// To simplify customization we could also add to the .rootrc support for the
2784 /// variables
2785 /// ~~~ {.cpp}
2786 /// Unix.*.Root.IncludePath: -I$ROOTSYS/include
2787 /// WinNT.*.Root.IncludePath: -I%ROOTSYS%/include
2788 ///
2789 /// Unix.*.Root.LinkedLibs: -L$ROOTSYS/lib -lBase ....
2790 /// WinNT.*.Root.LinkedLibs: %ROOTSYS%/lib/*.lib msvcrt.lib ....
2791 /// ~~~
2792 /// And also support for MakeSharedLibs() and MakeExe().
2793 ///
2794 /// (the ... have to be replaced by the actual values and are here only to
2795 /// shorten this comment).
2796 
2797 int TSystem::CompileMacro(const char *filename, Option_t *opt,
2798  const char *library_specified,
2799  const char *build_dir,
2800  UInt_t dirmode)
2801 {
2802  static const char *version_var_prefix = "__ROOTBUILDVERSION=";
2803 
2804  // ======= Analyze the options
2805  Bool_t keep = kFALSE;
2806  Bool_t recompile = kFALSE;
2807  EAclicMode mode = fAclicMode;
2808  Bool_t loadLib = kTRUE;
2809  Bool_t withInfo = kTRUE;
2810  Bool_t verbose = kFALSE;
2811  Bool_t internalDebug = kFALSE;
2812  if (opt) {
2813  keep = (strchr(opt,'k')!=0);
2814  recompile = (strchr(opt,'f')!=0);
2815  if (strchr(opt,'O')!=0) {
2816  mode = kOpt;
2817  }
2818  if (strchr(opt,'g')!=0) {
2819  mode = kDebug;
2820  }
2821  if (strchr(opt,'c')!=0) {
2822  loadLib = kFALSE;
2823  }
2824  withInfo = strchr(opt, 's') == 0;
2825  verbose = strchr(opt, 'v') != 0;
2826  internalDebug = strchr(opt, 'd') != 0;
2827  }
2828  if (mode==kDefault) {
2829  TString rootbuild = ROOTBUILD;
2830  if (rootbuild.Index("debug",0,TString::kIgnoreCase)==kNPOS) {
2831  mode=kOpt;
2832  } else {
2833  mode=kDebug;
2834  }
2835  }
2836  UInt_t verboseLevel = verbose ? 7 : gDebug;
2837  Bool_t flatBuildDir = (fAclicProperties & kFlatBuildDir) || (strchr(opt,'-')!=0);
2838 
2839  // if non-zero, build_loc indicates where to build the shared library.
2840  TString build_loc = ExpandFileName(GetBuildDir());
2841  if (build_dir && strlen(build_dir)) build_loc = build_dir;
2842  if (build_loc == ".") {
2843  build_loc = WorkingDirectory();
2844  } else if (build_loc.Length() && (!IsAbsoluteFileName(build_loc)) ) {
2845  AssignAndDelete( build_loc , ConcatFileName( WorkingDirectory(), build_loc ) );
2846  }
2847 
2848  // Get the include directory list in the dir1:dir2:dir3 format
2849  // [Used for generating the .d file and to look for header files for
2850  // the linkdef file]
2851  TString incPath = GetIncludePath(); // of the form -Idir1 -Idir2 -Idir3
2852  incPath.Append(":").Prepend(" ");
2853  if (gEnv) {
2854  TString fromConfig = gEnv->GetValue("ACLiC.IncludePaths","");
2855  incPath.Append(fromConfig);
2856  }
2857  incPath.ReplaceAll(" -I",":"); // of form :dir1 :dir2:dir3
2858  while ( incPath.Index(" :") != -1 ) {
2859  incPath.ReplaceAll(" :",":");
2860  }
2861  incPath.Prepend(":.:");
2862  incPath.Prepend(WorkingDirectory());
2863 
2864  // ======= Get the right file names for the dictionary and the shared library
2865  TString expFileName(filename);
2866  ExpandPathName( expFileName );
2867  TString library = expFileName;
2868  if (! IsAbsoluteFileName(library) )
2869  {
2870  const char *whichlibrary = Which(incPath,library);
2871  if (whichlibrary) {
2872  library = whichlibrary;
2873  delete [] whichlibrary;
2874  } else {
2875  ::Error("ACLiC","The file %s can not be found in the include path: %s",filename,incPath.Data());
2876  return kFALSE;
2877  }
2878  } else {
2879  if (gSystem->AccessPathName(library)) {
2880  ::Error("ACLiC","The file %s can not be found.",filename);
2881  return kFALSE;
2882  }
2883  }
2884  { // Remove multiple '/' characters, rootcling treats them as comments.
2885  Ssiz_t pos = 0;
2886  while ((pos = library.Index("//", 2, pos, TString::kExact)) != kNPOS) {
2887  library.Remove(pos, 1);
2888  }
2889  }
2890  TString filename_fullpath = library;
2891 
2892  TString file_dirname = DirName( filename_fullpath );
2893  // For some probably good reason, DirName on Windows returns the 'name' of
2894  // the directory, omitting the drive letter (even if there was one). In
2895  // consequence the result is not useable as a 'root directory', we need to
2896  // add the drive letter if there was one..
2897  if (library.Length()>1 && isalpha(library[0]) && library[1]==':') {
2898  file_dirname.Prepend(library(0,2));
2899  }
2900  TString file_location( file_dirname ); // Location of the script.
2901  incPath.Prepend( file_location + ":" );
2902 
2903  Ssiz_t dot_pos = library.Last('.');
2904  TString extension = library;
2905  extension.Replace( 0, dot_pos+1, 0 , 0);
2906  TString libname_noext = library;
2907  if (dot_pos>=0) libname_noext.Remove( dot_pos );
2908 
2909  // Extension of shared library is platform dependent!!
2910  library.Replace( dot_pos, library.Length()-dot_pos,
2911  TString("_") + extension + "." + fSoExt );
2912 
2913  TString libname ( BaseName( libname_noext ) );
2914  libname.Append("_").Append(extension);
2915 
2916  if (library_specified && strlen(library_specified) ) {
2917  // Use the specified name instead of the default
2918  libname = BaseName( library_specified );
2919  library = library_specified;
2920  ExpandPathName( library );
2921  if (! IsAbsoluteFileName(library) ) {
2922  AssignAndDelete( library , ConcatFileName( WorkingDirectory(), library ) );
2923  }
2924  library = TString(library) + "." + fSoExt;
2925  }
2926 
2927  TString libname_ext ( libname );
2928  libname_ext += "." + fSoExt;
2929 
2930  TString lib_dirname = DirName( library );
2931  // For some probably good reason, DirName on Windows returns the 'name' of
2932  // the directory, omitting the drive letter (even if there was one). In
2933  // consequence the result is not useable as a 'root directory', we need to
2934  // add the drive letter if there was one..
2935  if (library.Length()>1 && isalpha(library[0]) && library[1]==':') {
2936  lib_dirname.Prepend(library(0,2));
2937  }
2938  // Strip potential, somewhat redundant '/.' from the pathname ...
2939  if ( strncmp( &(lib_dirname[lib_dirname.Length()-2]), "/.", 2) == 0 ) {
2940  lib_dirname.Remove(lib_dirname.Length()-2);
2941  }
2942  if ( strncmp( &(lib_dirname[lib_dirname.Length()-2]), "\\.", 2) == 0 ) {
2943  lib_dirname.Remove(lib_dirname.Length()-2);
2944  }
2945  TString lib_location( lib_dirname );
2946  Bool_t mkdirFailed = kFALSE;
2947 
2948  if (build_loc.Length()==0) {
2949  build_loc = lib_location;
2950  } else {
2951  // Removes an existing disk specification from the names
2952  TRegexp disk_finder ("[A-z]:");
2953  Int_t pos = library.Index( disk_finder );
2954  if (pos==0) library.Remove(pos,3);
2955  pos = lib_location.Index( disk_finder );
2956  if (pos==0) lib_location.Remove(pos,3);
2957 
2958  if (flatBuildDir) {
2959  AssignAndDelete( library, ConcatFileName( build_loc, libname_ext) );
2960  } else {
2961  AssignAndDelete( library, ConcatFileName( build_loc, library) );
2962  }
2963 
2964  Bool_t canWriteBuild_loc = !gSystem->AccessPathName(build_loc,kWritePermission);
2965  TString build_loc_store( build_loc );
2966  if (!flatBuildDir) {
2967  AssignAndDelete( build_loc, ConcatFileName( build_loc, lib_location) );
2968  }
2969 
2970  if (gSystem->AccessPathName(build_loc,kFileExists)) {
2971  mkdirFailed = (0 != mkdir(build_loc, true));
2972  if (mkdirFailed && !canWriteBuild_loc) {
2973  // The mkdir failed __and__ we can not write to the target directory,
2974  // let make sure the error message will be about the target directory
2975  build_loc = build_loc_store;
2976  mkdirFailed = kFALSE;
2977  } else if (!mkdirFailed && dirmode!=0) {
2978  Chmod(build_loc,dirmode);
2979  }
2980  }
2981  }
2982 
2983  // ======= Check if the library need to loaded or compiled
2984  if ( gInterpreter->IsLoaded(expFileName) &&
2985  !gInterpreter->IsLoaded(library) ) {
2986  // the script has already been loaded in interpreted mode
2987  // Let's warn the user and unload it.
2988 
2989  if (withInfo) {
2990  ::Info("ACLiC","script has already been loaded in interpreted mode");
2991  ::Info("ACLiC","unloading %s and compiling it", filename);
2992  }
2993 
2994  if ( gInterpreter->UnloadFile( expFileName ) != 0 ) {
2995  // We can not unload it.
2996  return kFALSE;
2997  }
2998  }
2999 
3000  // Calculate the -I lines
3001  TString includes = GetIncludePath();
3002  includes.Prepend(' ');
3003 
3004  {
3005  // I need to replace the -Isomerelativepath by -I../ (or -I..\ on NT)
3006  TRegexp rel_inc(" -I[^\"/\\$%-][^:-]+");
3007  Int_t len,pos;
3008  pos = rel_inc.Index(includes,&len);
3009  while( len != 0 ) {
3010  TString sub = includes(pos,len);
3011  sub.Remove(0,3); // Remove ' -I'
3012  AssignAndDelete( sub, ConcatFileName( WorkingDirectory(), sub ) );
3013  sub.Prepend(" -I\"");
3014  sub.Chop(); // Remove trailing space (i.e between the -Is ...
3015  sub.Append("\" ");
3016  includes.Replace(pos,len,sub);
3017  pos = rel_inc.Index(includes,&len);
3018  }
3019  }
3020  {
3021  // I need to replace the -I"somerelativepath" by -I"$cwd/ (or -I"$cwd\ on NT)
3022  TRegexp rel_inc(" -I\"[^/\\$%-][^:-]+");
3023  Int_t len,pos;
3024  pos = rel_inc.Index(includes,&len);
3025  while( len != 0 ) {
3026  TString sub = includes(pos,len);
3027  sub.Remove(0,4); // Remove ' -I"'
3028  AssignAndDelete( sub, ConcatFileName( WorkingDirectory(), sub ) );
3029  sub.Prepend(" -I\"");
3030  includes.Replace(pos,len,sub);
3031  pos = rel_inc.Index(includes,&len);
3032  }
3033  }
3034  //includes += " -I\"" + build_loc;
3035  //includes += "\" -I\"";
3036  //includes += WorkingDirectory();
3037 // if (includes[includes.Length()-1] == '\\') {
3038 // // The current directory is (most likely) the root of a windows drive and
3039 // // has a trailing \ which would espace the quote if left by itself.
3040 // includes += '\\';
3041 // }
3042 // includes += "\"";
3043  if (gEnv) {
3044  TString fromConfig = gEnv->GetValue("ACLiC.IncludePaths","");
3045  includes.Append(" ").Append(fromConfig).Append(" ");
3046  }
3047 
3048  // Extract the -D for the dependency generation.
3049  TString defines = " ";
3050  {
3051  TString cmd = GetMakeSharedLib();
3052  TRegexp rel_def("-D[^\\s\\t\\n\\r]*");
3053  Int_t len,pos;
3054  pos = rel_def.Index(cmd,&len);
3055  while( len != 0 ) {
3056  defines += cmd(pos,len);
3057  defines += " ";
3058  pos = rel_def.Index(cmd,&len,pos+1);
3059  }
3060 
3061  }
3062 
3063  TString emergency_loc;
3064  {
3065  UserGroup_t *ug = gSystem->GetUserInfo(gSystem->GetUid());
3066  if (ug) {
3067  AssignAndDelete( emergency_loc, ConcatFileName( TempDirectory(), ug->fUser ) );
3068  delete ug;
3069  } else {
3070  emergency_loc = TempDirectory();
3071  }
3072  }
3073 
3074  Bool_t canWrite = !gSystem->AccessPathName(build_loc,kWritePermission);
3075 
3076  Bool_t modified = kFALSE;
3077 
3078  // Generate the dependency filename
3079  TString depdir = build_loc;
3080  TString depfilename;
3081  AssignAndDelete( depfilename, ConcatFileName(depdir, BaseName(libname_noext)) );
3082  depfilename += "_" + extension + ".d";
3083 
3084  if ( !recompile ) {
3085 
3086  Long_t lib_time, file_time;
3087 
3088  if ((gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time ) != 0) ||
3089  (gSystem->GetPathInfo( expFileName, 0, (Long_t*)0, 0, &file_time ) == 0 &&
3090  (lib_time < file_time))) {
3091 
3092  // the library does not exist or is older than the script.
3093  recompile = kTRUE;
3094  modified = kTRUE;
3095 
3096  } else {
3097 
3098  if ( gSystem->GetPathInfo( depfilename, 0,(Long_t*) 0, 0, &file_time ) != 0 ) {
3099  if (!canWrite) {
3100  depdir = emergency_loc;
3101  AssignAndDelete( depfilename, ConcatFileName(depdir, BaseName(libname_noext)) );
3102  depfilename += "_" + extension + ".d";
3103  }
3104  R__WriteDependencyFile(build_loc, depfilename, filename_fullpath, library, libname, extension, version_var_prefix, includes, defines, incPath);
3105  }
3106  }
3107 
3108  if (!modified) {
3109 
3110  // We need to check the dependencies
3111  FILE * depfile = fopen(depfilename.Data(),"r");
3112  if (depfile==0) {
3113  // there is no accessible dependency file, let's assume the library has been
3114  // modified
3115  modified = kTRUE;
3116  recompile = kTRUE;
3117 
3118  } else {
3119 
3120  TString version_var = libname + version_var_prefix;
3121 
3122  Int_t sz = 256;
3123  char *line = new char[sz];
3124  line[0] = 0;
3125 
3126  int c;
3127  Int_t current = 0;
3128  Int_t nested = 0;
3129  Bool_t hasversion = false;
3130 
3131  while ((c = fgetc(depfile)) != EOF) {
3132  if (c=='#') {
3133  // skip comment
3134  while ((c = fgetc(depfile)) != EOF) {
3135  if (c=='\n') {
3136  break;
3137  }
3138  }
3139  continue;
3140  }
3141  if (current && line[current-1]=='=' && strncmp(version_var.Data(),line,current)==0) {
3142 
3143  // The next word will be the version number.
3144  hasversion = kTRUE;
3145  line[0] = 0;
3146  current = 0;
3147  } else if (isspace(c) && !nested) {
3148  if (current) {
3149  if (line[current-1]!=':') {
3150  // ignore target
3151  line[current] = 0;
3152 
3153  Long_t filetime;
3154  if (hasversion) {
3155  modified |= strcmp(ROOT_RELEASE,line)!=0;
3156  hasversion = kFALSE;
3157  } else if ( gSystem->GetPathInfo( line, 0, (Long_t*)0, 0, &filetime ) == 0 ) {
3158  modified |= ( lib_time <= filetime );
3159  }
3160  }
3161  }
3162  current = 0;
3163  line[0] = 0;
3164  } else {
3165  if (current==sz-1) {
3166  sz = 2*sz;
3167  char *newline = new char[sz];
3168  strcpy(newline,line);
3169  delete [] line;
3170  line = newline;
3171  }
3172  if (c=='"') nested = !nested;
3173  else {
3174  line[current] = c;
3175  current++;
3176  }
3177  }
3178  }
3179  delete [] line;
3180  fclose(depfile);
3181  recompile = modified;
3182 
3183  }
3184 
3185  }
3186  }
3187 
3188  if ( gInterpreter->IsLoaded(library)
3189  || strlen(GetLibraries(library,"D",kFALSE)) != 0 ) {
3190  // The library has already been built and loaded.
3191 
3192  Bool_t reload = kFALSE;
3193  TNamed *libinfo = (TNamed*)fCompiled->FindObject(library);
3194  if (libinfo) {
3195  Long_t load_time = libinfo->GetUniqueID();
3196  Long_t lib_time;
3197  if ( gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time ) == 0
3198  && (lib_time>load_time)) {
3199  reload = kTRUE;
3200  }
3201  }
3202 
3203  if ( !recompile && reload ) {
3204 
3205  if (withInfo) {
3206  ::Info("ACLiC","%s has been modified and will be reloaded",
3207  libname.Data());
3208  }
3209  if ( gInterpreter->UnloadFile( library.Data() ) != 0 ) {
3210  // The library is being used. We can not unload it.
3211  return kFALSE;
3212  }
3213  if (libinfo) {
3214  fCompiled->Remove(libinfo);
3215  delete libinfo;
3216  libinfo = 0;
3217  }
3218  TNamed *k = new TNamed(library,library);
3219  Long_t lib_time;
3220  gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time );
3221  k->SetUniqueID(lib_time);
3222  if (!keep) k->SetBit(kMustCleanup);
3223  fCompiled->Add(k);
3224 
3225  return !gSystem->Load(library);
3226  }
3227 
3228  if (withInfo) {
3229  ::Info("ACLiC","%s script has already been compiled and loaded",
3230  modified ? "modified" : "unmodified");
3231  }
3232 
3233  if ( !recompile ) {
3234  return kTRUE;
3235  } else {
3236  if (withInfo) {
3237  ::Info("ACLiC","it will be regenerated and reloaded!");
3238  }
3239  if ( gInterpreter->UnloadFile( library.Data() ) != 0 ) {
3240  // The library is being used. We can not unload it.
3241  return kFALSE;
3242  }
3243  if (libinfo) {
3244  fCompiled->Remove(libinfo);
3245  delete libinfo;
3246  libinfo = 0;
3247  }
3248  Unlink(library);
3249  }
3250 
3251  }
3252 
3253  TString libmapfilename;
3254  AssignAndDelete( libmapfilename, ConcatFileName( build_loc, libname ) );
3255  libmapfilename += ".rootmap";
3256 #if (defined(R__MACOSX) && !defined(MAC_OS_X_VERSION_10_5)) || defined(R__WIN32)
3257  Bool_t produceRootmap = kTRUE;
3258 #else
3259  Bool_t produceRootmap = kFALSE;
3260 #endif
3261  Bool_t linkDepLibraries = !produceRootmap;
3262  if (gEnv) {
3263 #if (defined(R__MACOSX) && !defined(MAC_OS_X_VERSION_10_5))
3264  Int_t linkLibs = gEnv->GetValue("ACLiC.LinkLibs",2);
3265 #elif defined(R__WIN32)
3266  Int_t linkLibs = gEnv->GetValue("ACLiC.LinkLibs",3);
3267 #else
3268  Int_t linkLibs = gEnv->GetValue("ACLiC.LinkLibs",1);
3269 #endif
3270  produceRootmap = linkLibs & 0x2;
3271  linkDepLibraries = linkLibs & 0x1;
3272  }
3273 
3274  if (!recompile) {
3275  // The library already exist, let's just load it.
3276  if (loadLib) {
3277  TNamed *k = new TNamed(library,library);
3278  Long_t lib_time;
3279  gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time );
3280  k->SetUniqueID(lib_time);
3281  if (!keep) k->SetBit(kMustCleanup);
3282  fCompiled->Add(k);
3283 
3284  if (gInterpreter->GetSharedLibDeps(libname) == 0) {
3285  gInterpreter->LoadLibraryMap(libmapfilename);
3286  }
3287 
3288  return !gSystem->Load(library);
3289  }
3290  else return kTRUE;
3291  }
3292 
3293  if (!canWrite && recompile) {
3294 
3295  if (mkdirFailed) {
3296  ::Warning("ACLiC","Could not create the directory: %s",
3297  build_loc.Data());
3298  } else {
3299  ::Warning("ACLiC","%s is not writable!",
3300  build_loc.Data());
3301  }
3302  if (emergency_loc == build_dir ) {
3303  ::Error("ACLiC","%s is the last resort location (i.e. temp location)",build_loc.Data());
3304  return kFALSE;
3305  }
3306  ::Warning("ACLiC","Output will be written to %s",
3307  emergency_loc.Data());
3308  return CompileMacro(expFileName, opt, library_specified, emergency_loc, dirmode);
3309  }
3310 
3311  if (withInfo) {
3312  Info("ACLiC","creating shared library %s",library.Data());
3313  }
3314 
3315  R__WriteDependencyFile(build_loc, depfilename, filename_fullpath, library, libname, extension, version_var_prefix, includes, defines, incPath);
3316 
3317  // ======= Select the dictionary name
3318  TString dict = libname + "_ACLiC_dict";
3319 
3320  // the file name end up in the file produced
3321  // by rootcling as a variable name so all character need to be valid!
3322  static const int maxforbidden = 27;
3323  static const char *forbidden_chars[maxforbidden] =
3324  { "+","-","*","/","&","%","|","^",">","<",
3325  "=","~",".","(",")","[","]","!",",","$",
3326  " ",":","'","#","@","\\","\"" };
3327  for( int ic = 0; ic < maxforbidden; ic++ ) {
3328  dict.ReplaceAll( forbidden_chars[ic],"_" );
3329  }
3330  if ( dict.Last('.')!=dict.Length()-1 ) dict.Append(".");
3331  AssignAndDelete( dict, ConcatFileName( build_loc, dict ) );
3332  TString dicth = dict;
3333  TString dictObj = dict;
3334  dict += "cxx"; //no need to keep the extension of the original file, any extension will do
3335  dicth += "h";
3336  dictObj += fObjExt;
3337 
3338  // ======= Generate a linkdef file
3339 
3340  TString linkdef;
3341  AssignAndDelete( linkdef, ConcatFileName( build_loc, libname ) );
3342  linkdef += "_ACLiC_linkdef.h";
3343  std::ofstream linkdefFile( linkdef, std::ios::out );
3344  linkdefFile << "// File Automatically generated by the ROOT Script Compiler "
3345  << std::endl;
3346  linkdefFile << std::endl;
3347  linkdefFile << "#ifdef __CINT__" << std::endl;
3348  linkdefFile << std::endl;
3349  linkdefFile << "#pragma link C++ nestedclasses;" << std::endl;
3350  linkdefFile << "#pragma link C++ nestedtypedefs;" << std::endl;
3351  linkdefFile << std::endl;
3352 
3353  // We want to look for a header file that has the same name as the macro
3354 
3355  const char * extensions[] = { ".h", ".hh", ".hpp", ".hxx", ".hPP", ".hXX" };
3356 
3357  int i;
3358  for (i = 0; i < 6; i++ ) {
3359  char * name;
3360  TString extra_linkdef = BaseName( libname_noext );
3361  extra_linkdef.Append(GetLinkdefSuffix());
3362  extra_linkdef.Append(extensions[i]);
3363  name = Which(incPath,extra_linkdef);
3364  if (name) {
3365  if (verboseLevel>4 && withInfo) {
3366  Info("ACLiC","including extra linkdef file: %s",name);
3367  }
3368  linkdefFile << "#include \"" << name << "\"" << std::endl;
3369  delete [] name;
3370  }
3371  }
3372 
3373  if (verboseLevel>5 && withInfo) {
3374  Info("ACLiC","looking for header in: %s",incPath.Data());
3375  }
3376  for (i = 0; i < 6; i++ ) {
3377  char * name;
3378  TString lookup = BaseName( libname_noext );
3379  lookup.Append(extensions[i]);
3380  name = Which(incPath,lookup);
3381  if (name) {
3382  linkdefFile << "#pragma link C++ defined_in "<<name<<";"<< std::endl;
3383  delete [] name;
3384  }
3385  }
3386  linkdefFile << "#pragma link C++ defined_in \""<<filename_fullpath << "\";" << std::endl;
3387  linkdefFile << std::endl;
3388  linkdefFile << "#endif" << std::endl;
3389  linkdefFile.close();
3390 
3391  // ======= Generate the list of rootmap files to be looked at
3392 
3393  TString mapfile;
3394  AssignAndDelete( mapfile, ConcatFileName( build_loc, libname ) );
3395  mapfile += "_ACLiC_map";
3396  TString mapfilein = mapfile + ".in";
3397  TString mapfileout = mapfile + ".out";
3398 
3399  Bool_t needLoadMap = kFALSE;
3400  if (gInterpreter->GetSharedLibDeps(libname) !=0 ) {
3401  gInterpreter->UnloadLibraryMap(libname);
3402  needLoadMap = kTRUE;
3403  }
3404 
3405  std::ofstream mapfileStream( mapfilein, std::ios::out );
3406  {
3407  TString name = ".rootmap";
3408  TString sname = "system.rootmap";
3409  TString file;
3410 #ifdef ROOTETCDIR
3411  AssignAndDelete(file, ConcatFileName(ROOTETCDIR, sname) );
3412 #else
3413  TString etc = gRootDir;
3414 #ifdef WIN32
3415  etc += "\\etc";
3416 #else
3417  etc += "/etc";
3418 #endif
3419  AssignAndDelete(file, ConcatFileName(etc, sname));
3420  if (gSystem->AccessPathName(file)) {
3421  // for backward compatibility check also $ROOTSYS/system<name> if
3422  // $ROOTSYS/etc/system<name> does not exist
3423  AssignAndDelete(file, ConcatFileName(gRootDir, sname));
3424  if (gSystem->AccessPathName(file)) {
3425  // for backward compatibility check also $ROOTSYS/<name> if
3426  // $ROOTSYS/system<name> does not exist
3427  AssignAndDelete(file, ConcatFileName(gRootDir, name));
3428  }
3429  }
3430 #endif
3431  mapfileStream << file << std::endl;
3432  AssignAndDelete(file, ConcatFileName(gSystem->HomeDirectory(), name) );
3433  mapfileStream << file << std::endl;
3434  mapfileStream << name << std::endl;
3435  if (gInterpreter->GetRootMapFiles()) {
3436  for (i = 0; i < gInterpreter->GetRootMapFiles()->GetEntriesFast(); i++) {
3437  mapfileStream << ((TNamed*)gInterpreter->GetRootMapFiles()->At(i))->GetTitle() << std::endl;
3438  }
3439  }
3440  }
3441  mapfileStream.close();
3442 
3443  // ======= Generate the rootcling command line
3444  TString rcling;
3445 #ifndef ROOTBINDIR
3446  rcling = gSystem->Getenv("ROOTSYS");
3447 #ifndef R__WIN32
3448  rcling += "/bin/";
3449 #else
3450  rcling += "\\bin\\";
3451 #endif
3452 #else
3453  rcling = ROOTBINDIR;
3454 #ifndef R__WIN32
3455  rcling += "/";
3456 #else
3457  rcling += "\\";
3458 #endif
3459 #endif
3460  rcling += "rootcling -v0 \"--lib-list-prefix=";
3461  rcling += mapfile;
3462  rcling += "\" -f \"";
3463  rcling.Append(dict).Append("\" -c -p ");
3464  if (produceRootmap) {
3465  rcling += " -rml " + libname + " -rmf \"" + libmapfilename + "\" ";
3466  }
3467  rcling.Append(GetIncludePath()).Append(" -D__ACLIC__ ");
3468  if (produceRootmap) {
3469  rcling.Append("-DR__ACLIC_ROOTMAP ");
3470  }
3471  if (gEnv) {
3472  TString fromConfig = gEnv->GetValue("ACLiC.IncludePaths","");
3473  rcling.Append(fromConfig).Append(" \"");
3474  }
3475  rcling.Append(filename_fullpath).Append("\" \"").Append(linkdef).Append("\"");;
3476 
3477  // ======= Run rootcling
3478  if (withInfo) {
3479  if (verboseLevel>3) {
3480  ::Info("ACLiC","creating the dictionary files");
3481  if (verboseLevel>4) ::Info("ACLiC", "%s", rcling.Data());
3482  }
3483  }
3484 
3485  Int_t dictResult = gSystem->Exec(rcling);
3486  if (dictResult) {
3487  if (dictResult==139) ::Error("ACLiC","Dictionary generation failed with a core dump!");
3488  else ::Error("ACLiC","Dictionary generation failed!");
3489  }
3490 
3491  Bool_t result = !dictResult;
3492  TString depLibraries;
3493 
3494  // ======= Load the library the script might depend on
3495  if (result) {
3496  TString linkedlibs = GetLibraries("", "S");
3497  TString libtoload;
3498  TString all_libtoload;
3499  std::ifstream liblist(mapfileout);
3500 
3501  while ( liblist >> libtoload ) {
3502  // Load the needed library except for the library we are currently building!
3503  if (libtoload == "#") {
3504  // The comment terminates the list of libraries.
3505  std::string toskipcomment;
3506  std::getline(liblist,toskipcomment);
3507  break;
3508  }
3509  if (libtoload != library && libtoload != libname && libtoload != libname_ext) {
3510  if (produceRootmap) {
3511  if (loadLib || linkDepLibraries /* For GetLibraries to Work */) {
3512  result = gROOT->LoadClass("", libtoload) >= 0;
3513  if (!result) {
3514  // We failed to load one of the dependency.
3515  break;
3516  }
3517  }
3518  if (!linkedlibs.Contains(libtoload)) {
3519  all_libtoload.Append(" ").Append(libtoload);
3520  depLibraries.Append(" ");
3521  depLibraries.Append(GetLibraries(libtoload,"DSL",kFALSE));
3522  depLibraries = depLibraries.Strip(); // Remove any trailing spaces.
3523  }
3524  } else {
3525  gROOT->LoadClass("", libtoload);
3526  }
3527  }
3528  unsigned char c = liblist.peek();
3529  if (c=='\n' || c=='\r') {
3530  // Consume the character
3531  liblist.get();
3532  break;
3533  }
3534  }
3535 
3536 // depLibraries = all_libtoload;
3537 // depLibraries.ReplaceAll(" lib"," -l");
3538 // depLibraries.ReplaceAll(TString::Format(".%s",fSoExt.Data()),"");
3539  }
3540 
3541  // ======= Calculate the libraries for linking:
3542  TString linkLibraries;
3543  /*
3544  this is intentionally disabled until it can become useful
3545  if (gEnv) {
3546  linkLibraries = gEnv->GetValue("ACLiC.Libraries","");
3547  linkLibraries.Prepend(" ");
3548  }
3549  */
3550  TString linkLibrariesNoQuotes(GetLibraries("","SDL"));
3551  // We need to enclose the single paths in quotes to account for paths with spaces
3552  TString librariesWithQuotes;
3553  TString singleLibrary;
3554  Bool_t collectingSingleLibraryNameTokens = kFALSE;
3555  for (auto tokenObj : *linkLibrariesNoQuotes.Tokenize(" ")) {
3556  singleLibrary = ((TObjString*)tokenObj)->GetString();
3557  if (!AccessPathName(singleLibrary) || singleLibrary[0]=='-') {
3558  if (collectingSingleLibraryNameTokens) {
3559  librariesWithQuotes.Chop();
3560  librariesWithQuotes += "\" \"" + singleLibrary + "\"";
3561  collectingSingleLibraryNameTokens = kFALSE;
3562  } else {
3563  librariesWithQuotes += " \"" + singleLibrary + "\"";
3564  }
3565  } else {
3566  if (collectingSingleLibraryNameTokens) {
3567  librariesWithQuotes += singleLibrary + " ";
3568  } else {
3569  collectingSingleLibraryNameTokens = kTRUE;
3570  librariesWithQuotes += " \"" + singleLibrary + " ";
3571  }
3572  }
3573  }
3574 
3575  linkLibraries.Prepend(librariesWithQuotes);
3576 
3577  // ======= Generate the build command lines
3578  TString cmd = fMakeSharedLib;
3579  // we do not add filename because it is already included via the dictionary(in dicth) !
3580  // dict.Append(" ").Append(filename);
3581  cmd.ReplaceAll("$SourceFiles","-D__ACLIC__ \"$SourceFiles\"");
3582  cmd.ReplaceAll("$SourceFiles",dict);
3583  cmd.ReplaceAll("$ObjectFiles","\"$ObjectFiles\"");
3584  cmd.ReplaceAll("$ObjectFiles",dictObj);
3585  cmd.ReplaceAll("$IncludePath",includes);
3586  cmd.ReplaceAll("$SharedLib","\"$SharedLib\"");
3587  cmd.ReplaceAll("$SharedLib",library);
3588  if (linkDepLibraries) {
3589  if (produceRootmap) {
3590  cmd.ReplaceAll("$DepLibs",depLibraries);
3591  } else {
3592  cmd.ReplaceAll("$DepLibs",linkLibraries);
3593  }
3594  }
3595  cmd.ReplaceAll("$LinkedLibs",linkLibraries);
3596  cmd.ReplaceAll("$LibName",libname);
3597  cmd.ReplaceAll("\"$BuildDir","$BuildDir");
3598  cmd.ReplaceAll("$BuildDir","\"$BuildDir\"");
3599  cmd.ReplaceAll("$BuildDir",build_loc);
3600  if (mode==kDebug) {
3601  cmd.ReplaceAll("$Opt",fFlagsDebug);
3602  } else {
3603  cmd.ReplaceAll("$Opt",fFlagsOpt);
3604  }
3605 #ifdef WIN32
3606  R__FixLink(cmd);
3607 #endif
3608 
3609  TString testcmd = fMakeExe;
3610  TString fakeMain;
3611  AssignAndDelete( fakeMain, ConcatFileName( build_loc, libname ) );
3612  fakeMain += "_ACLiC_main";
3613  fakeMain += extension;
3614  std::ofstream fakeMainFile( fakeMain, std::ios::out );
3615  fakeMainFile << "// File Automatically generated by the ROOT Script Compiler "
3616  << std::endl;
3617  fakeMainFile << "int main(char*argc,char**argvv) {};" << std::endl;
3618  fakeMainFile.close();
3619  // We could append this fake main routine to the compilation line.
3620  // But in this case compiler may output the name of the dictionary file
3621  // and of the fakeMain file while it compiles it. (this would be useless
3622  // confusing output).
3623  // We could also the fake main routine to the end of the dictionary file
3624  // however compilation would fail if a main is already there
3625  // (like stress.cxx)
3626  // dict.Append(" ").Append(fakeMain);
3627  TString exec;
3628  AssignAndDelete( exec, ConcatFileName( build_loc, libname ) );
3629  exec += "_ACLiC_exec";
3630  testcmd.ReplaceAll("$SourceFiles","-D__ACLIC__ \"$SourceFiles\"");
3631  testcmd.ReplaceAll("$SourceFiles",dict);
3632  testcmd.ReplaceAll("$ObjectFiles","\"$ObjectFiles\"");
3633  testcmd.ReplaceAll("$ObjectFiles",dictObj);
3634  testcmd.ReplaceAll("$IncludePath",includes);
3635  testcmd.ReplaceAll("$ExeName",exec);
3636  testcmd.ReplaceAll("$LinkedLibs",linkLibraries);
3637  testcmd.ReplaceAll("$BuildDir",build_loc);
3638  if (mode==kDebug)
3639  testcmd.ReplaceAll("$Opt",fFlagsDebug);
3640  else
3641  testcmd.ReplaceAll("$Opt",fFlagsOpt);
3642 
3643 #ifdef WIN32
3644  R__FixLink(testcmd);
3645 #endif
3646 
3647  // ======= Build the library
3648  if (result) {
3649  if (verboseLevel>3 && withInfo) {
3650  ::Info("ACLiC","compiling the dictionary and script files");
3651  if (verboseLevel>4) ::Info("ACLiC", "%s", cmd.Data());
3652  }
3653  Int_t compilationResult = gSystem->Exec( cmd );
3654  if (compilationResult) {
3655  if (compilationResult==139) ::Error("ACLiC","Compilation failed with a core dump!");
3656  else ::Error("ACLiC","Compilation failed!");
3657  if (produceRootmap) {
3658  gSystem->Unlink(libmapfilename);
3659  }
3660  }
3661  result = !compilationResult;
3662  }
3663 
3664  if ( result ) {
3665 
3666  TNamed *k = new TNamed(library,library);
3667  Long_t lib_time;
3668  gSystem->GetPathInfo( library, 0, (Long_t*)0, 0, &lib_time );
3669  k->SetUniqueID(lib_time);
3670  if (!keep) k->SetBit(kMustCleanup);
3671  fCompiled->Add(k);
3672 
3673  if (needLoadMap) {
3674  gInterpreter->LoadLibraryMap(libmapfilename);
3675  }
3676  if (verboseLevel>3 && withInfo) ::Info("ACLiC","loading the shared library");
3677  if (loadLib) result = !gSystem->Load(library);
3678  else result = kTRUE;
3679 
3680  if ( !result ) {
3681  if (verboseLevel>3 && withInfo) {
3682  ::Info("ACLiC","testing for missing symbols:");
3683  if (verboseLevel>4) ::Info("ACLiC", "%s", testcmd.Data());
3684  }
3685  gSystem->Exec(testcmd);
3686  gSystem->Unlink( exec );
3687  }
3688 
3689  };
3690 
3691  if (verboseLevel<=5 && !internalDebug) {
3692  gSystem->Unlink( dict );
3693  gSystem->Unlink( dicth );
3694  gSystem->Unlink( dictObj );
3695  gSystem->Unlink( linkdef );
3696  gSystem->Unlink( mapfilein );
3697  gSystem->Unlink( mapfileout );
3698  gSystem->Unlink( fakeMain );
3699  gSystem->Unlink( exec );
3700  }
3701  if (verboseLevel>6) {
3702  rcling.Prepend("echo ");
3703  cmd.Prepend("echo \" ").Append(" \" ");
3704  testcmd.Prepend("echo \" ").Append(" \" ");
3705  gSystem->Exec(rcling);
3706  gSystem->Exec( cmd );
3707  gSystem->Exec(testcmd);
3708  }
3709 
3710  return result;
3711 }
3712 
3713 ////////////////////////////////////////////////////////////////////////////////
3714 /// Return the ACLiC properties field. See EAclicProperties for details
3715 /// on the semantic of each bit.
3716 
3718 {
3719  return fAclicProperties;
3720 }
3721 
3722 ////////////////////////////////////////////////////////////////////////////////
3723 /// Return the build architecture.
3724 
3725 const char *TSystem::GetBuildArch() const
3726 {
3727  return fBuildArch;
3728 }
3729 
3730 ////////////////////////////////////////////////////////////////////////////////
3731 /// Return the build compiler
3732 
3733 const char *TSystem::GetBuildCompiler() const
3734 {
3735  return fBuildCompiler;
3736 }
3737 
3738 ////////////////////////////////////////////////////////////////////////////////
3739 /// Return the build compiler version
3740 
3742 {
3743  return fBuildCompilerVersion;
3744 }
3745 
3746 ////////////////////////////////////////////////////////////////////////////////
3747 /// Return the build node name.
3748 
3749 const char *TSystem::GetBuildNode() const
3750 {
3751  return fBuildNode;
3752 }
3753 
3754 ////////////////////////////////////////////////////////////////////////////////
3755 /// Return the path of the build directory.
3756 
3757 const char *TSystem::GetBuildDir() const
3758 {
3759  if (fBuildDir.Length()==0) {
3760  if (!gEnv) return "";
3761  const_cast<TSystem*>(this)->fBuildDir = gEnv->GetValue("ACLiC.BuildDir","");
3762  }
3763  return fBuildDir;
3764 }
3765 
3766 ////////////////////////////////////////////////////////////////////////////////
3767 /// Return the debug flags.
3768 
3769 const char *TSystem::GetFlagsDebug() const
3770 {
3771  return fFlagsDebug;
3772 }
3773 
3774 ////////////////////////////////////////////////////////////////////////////////
3775 /// Return the optimization flags.
3776 
3777 const char *TSystem::GetFlagsOpt() const
3778 {
3779  return fFlagsOpt;
3780 }
3781 
3782 ////////////////////////////////////////////////////////////////////////////////
3783 /// AclicMode indicates whether the library should be built in
3784 /// debug mode or optimized. The values are:
3785 /// - TSystem::kDefault : compile the same as the current ROOT
3786 /// - TSystem::kDebug : compiled in debug mode
3787 /// - TSystem::kOpt : optimized the library
3788 
3790 {
3791  return fAclicMode;
3792 }
3793 
3794 ////////////////////////////////////////////////////////////////////////////////
3795 /// Return the command line use to make a shared library.
3796 /// See TSystem::CompileMacro for more details.
3797 
3798 const char *TSystem::GetMakeSharedLib() const
3799 {
3800  return fMakeSharedLib;
3801 }
3802 
3803 ////////////////////////////////////////////////////////////////////////////////
3804 /// Return the command line use to make an executable.
3805 /// See TSystem::CompileMacro for more details.
3806 
3807 const char *TSystem::GetMakeExe() const
3808 {
3809  return fMakeExe;
3810 }
3811 
3812 ////////////////////////////////////////////////////////////////////////////////
3813 /// Get the list of include path.
3814 
3816 {
3817  fListPaths = fIncludePath;
3818  fListPaths.Append(" ").Append(gInterpreter->GetIncludePath());
3819  return fListPaths;
3820 }
3821 
3822 ////////////////////////////////////////////////////////////////////////////////
3823 /// Return the list of library linked to this executable.
3824 /// See TSystem::CompileMacro for more details.
3825 
3826 const char *TSystem::GetLinkedLibs() const
3827 {
3828  return fLinkedLibs;
3829 }
3830 
3831 ////////////////////////////////////////////////////////////////////////////////
3832 /// Return the linkdef suffix chosen by the user for ACLiC.
3833 /// See TSystem::CompileMacro for more details.
3834 
3835 const char *TSystem::GetLinkdefSuffix() const
3836 {
3837  if (fLinkdefSuffix.Length()==0) {
3838  if (!gEnv) return "_linkdef";
3839  const_cast<TSystem*>(this)->fLinkdefSuffix = gEnv->GetValue("ACLiC.Linkdef","_linkdef");
3840  }
3841  return fLinkdefSuffix;
3842 }
3843 
3844 ////////////////////////////////////////////////////////////////////////////////
3845 /// Get the shared library extension.
3846 
3847 const char *TSystem::GetSoExt() const
3848 {
3849  return fSoExt;
3850 }
3851 
3852 ////////////////////////////////////////////////////////////////////////////////
3853 /// Get the object file extension.
3854 
3855 const char *TSystem::GetObjExt() const
3856 {
3857  return fObjExt;
3858 }
3859 
3860 ////////////////////////////////////////////////////////////////////////////////
3861 /// Set the location where ACLiC will create libraries and use as
3862 /// a scratch area.
3863 ///
3864 /// If isflast is flase, then the libraries are actually stored in
3865 /// sub-directories of 'build_dir' including the full pathname of the
3866 /// script. If the script is location at /full/path/name/macro.C
3867 /// the library will be located at 'build_dir+/full/path/name/macro_C.so'
3868 /// If 'isflat' is true, then no subdirectory is created and the library
3869 /// is created directly in the directory 'build_dir'. Note that in this
3870 /// mode there is a risk than 2 script of the same in different source
3871 /// directory will over-write each other.
3872 
3873 void TSystem::SetBuildDir(const char* build_dir, Bool_t isflat)
3874 {
3875  fBuildDir = build_dir;
3876  if (isflat) fAclicProperties |= (kFlatBuildDir & kBitMask);
3877  else fAclicProperties &= ~(kFlatBuildDir & kBitMask);
3878 }
3879 
3880 ////////////////////////////////////////////////////////////////////////////////
3881 /// FlagsDebug should contain the options to pass to the C++ compiler
3882 /// in order to compile the library in debug mode.
3883 
3884 void TSystem::SetFlagsDebug(const char *flags)
3885 {
3886  fFlagsDebug = flags;
3887 }
3888 
3889 ////////////////////////////////////////////////////////////////////////////////
3890 /// FlagsOpt should contain the options to pass to the C++ compiler
3891 /// in order to compile the library in optimized mode.
3892 
3893 void TSystem::SetFlagsOpt(const char *flags)
3894 {
3895  fFlagsOpt = flags;
3896 }
3897 
3898 ////////////////////////////////////////////////////////////////////////////////
3899 /// AclicMode indicates whether the library should be built in
3900 /// debug mode or optimized. The values are:
3901 /// - TSystem::kDefault : compile the same as the current ROOT
3902 /// - TSystem::kDebug : compiled in debug mode
3903 /// - TSystem::kOpt : optimized the library
3904 
3906 {
3907  fAclicMode = mode;
3908 }
3909 
3910 ////////////////////////////////////////////////////////////////////////////////
3911 /// Directives has the same syntax as the argument of SetMakeSharedLib but is
3912 /// used to create an executable. This creation is used as a means to output
3913 /// a list of unresolved symbols, when loading a shared library has failed.
3914 /// The required variable is $ExeName rather than $SharedLib, e.g.:
3915 /// ~~~ {.cpp}
3916 /// gSystem->SetMakeExe(
3917 /// "g++ -Wall -fPIC $IncludePath $SourceFiles
3918 /// -o $ExeName $LinkedLibs -L/usr/X11R6/lib -lX11 -lm -ldl -rdynamic");
3919 /// ~~~
3920 
3921 void TSystem::SetMakeExe(const char *directives)
3922 {
3923  fMakeExe = directives;
3924  // NOTE: add verification that the directives has the required variables
3925 }
3926 
3927 ////////////////////////////////////////////////////////////////////////////////
3928 /// Directives should contain the description on how to compile and link a
3929 /// shared lib. This description can be any valid shell command, including
3930 /// the use of ';' to separate several instructions. However, shell specific
3931 /// construct should be avoided. In particular this description can contain
3932 /// environment variables, like $ROOTSYS (or %ROOTSYS% on windows).
3933 /// ~~~ {.cpp}
3934 /// Five special variables will be expanded before execution:
3935 /// Variable name Expands to
3936 /// ------------- ----------
3937 /// $SourceFiles Name of source files to be compiled
3938 /// $SharedLib Name of the shared library being created
3939 /// $LibName Name of shared library without extension
3940 /// $BuildDir Directory where the files will be created
3941 /// $IncludePath value of fIncludePath
3942 /// $LinkedLibs value of fLinkedLibs
3943 /// $DepLibs libraries on which this library depends on
3944 /// $ObjectFiles Name of source files to be compiler with
3945 /// their extension changed to .o or .obj
3946 /// $Opt location of the optimization/debug options
3947 /// set fFlagsDebug and fFlagsOpt
3948 /// ~~~
3949 /// e.g.:
3950 /// ~~~ {.cpp}
3951 /// gSystem->SetMakeSharedLib(
3952 /// "KCC -n32 --strict $IncludePath -K0 \$Opt $SourceFile
3953 /// --no_exceptions --signed_chars --display_error_number
3954 /// --diag_suppress 68 -o $SharedLib");
3955 ///
3956 /// gSystem->setMakeSharedLib(
3957 /// "Cxx $IncludePath -c $SourceFile;
3958 /// ld -L/usr/lib/cmplrs/cxx -rpath /usr/lib/cmplrs/cxx -expect_unresolved
3959 /// \$Opt -shared /usr/lib/cmplrs/cc/crt0.o /usr/lib/cmplrs/cxx/_main.o
3960 /// -o $SharedLib $ObjectFile -lcxxstd -lcxx -lexc -lots -lc"
3961 ///
3962 /// gSystem->SetMakeSharedLib(
3963 /// "$HOME/mygcc/bin/g++ \$Opt -Wall -fPIC $IncludePath $SourceFile
3964 /// -shared -o $SharedLib");
3965 ///
3966 /// gSystem->SetMakeSharedLib(
3967 /// "cl -DWIN32 -D_WIN32 -D_MT -D_DLL -MD /O2 /G5 /MD -DWIN32
3968 /// -D_WINDOWS $IncludePath $SourceFile
3969 /// /link -PDB:NONE /NODEFAULTLIB /INCREMENTAL:NO /RELEASE /NOLOGO
3970 /// $LinkedLibs -entry:_DllMainCRTStartup@12 -dll /out:$SharedLib")
3971 /// ~~~
3972 
3973 void TSystem::SetMakeSharedLib(const char *directives)
3974 {
3975  fMakeSharedLib = directives;
3976  // NOTE: add verification that the directives has the required variables
3977 }
3978 
3979 ////////////////////////////////////////////////////////////////////////////////
3980 /// Add includePath to the already set include path.
3981 
3982 void TSystem::AddIncludePath(const char *includePath)
3983 {
3984  if (includePath) {
3985  fIncludePath += " ";
3986  fIncludePath += includePath;
3987  }
3988 }
3989 
3990 ////////////////////////////////////////////////////////////////////////////////
3991 /// Add linkedLib to already set linked libs.
3992 
3993 void TSystem::AddLinkedLibs(const char *linkedLib)
3994 {
3995  if (linkedLib) {
3996  fLinkedLibs += " ";
3997  fLinkedLibs += linkedLib;
3998  }
3999 }
4000 
4001 ////////////////////////////////////////////////////////////////////////////////
4002 /// IncludePath should contain the list of compiler flags to indicate where
4003 /// to find user defined header files. It is used to expand $IncludePath in
4004 /// the directives given to SetMakeSharedLib() and SetMakeExe(), e.g.:
4005 /// ~~~ {.cpp}
4006 /// gSystem->SetInclude("-I$ROOTSYS/include -Imydirectory/include");
4007 /// ~~~
4008 /// the default value of IncludePath on Unix is:
4009 /// ~~~ {.cpp}
4010 /// "-I$ROOTSYS/include "
4011 /// ~~~
4012 /// and on Windows:
4013 /// ~~~ {.cpp}
4014 /// "/I%ROOTSYS%/include "
4015 /// ~~~
4016 
4017 void TSystem::SetIncludePath(const char *includePath)
4018 {
4019  fIncludePath = includePath;
4020 }
4021 
4022 ////////////////////////////////////////////////////////////////////////////////
4023 /// LinkedLibs should contain the library directory and list of libraries
4024 /// needed to recreate the current executable. It is used to expand $LinkedLibs
4025 /// in the directives given to SetMakeSharedLib() and SetMakeExe()
4026 /// The default value on Unix is: `root-config --glibs`
4027 
4028 void TSystem::SetLinkedLibs(const char *linkedLibs)
4029 {
4030  fLinkedLibs = linkedLibs;
4031 }
4032 
4033 ////////////////////////////////////////////////////////////////////////////////
4034 /// The 'suffix' will be appended to the name of a script loaded by ACLiC
4035 /// and used to locate any eventual additional linkdef information that
4036 /// ACLiC should used to produce the dictionary.
4037 ///
4038 /// So by default, when doing .L MyScript.cxx, ACLiC will look
4039 /// for a file name MyScript_linkdef and having one of the .h (.hpp,
4040 /// etc.) extensions. If such a file exist, it will be added to
4041 /// the end of the linkdef file used to created the ACLiC dictionary.
4042 /// This effectively enable the full customization of the creation
4043 /// of the dictionary. It should be noted that the file is intended
4044 /// as a linkdef `fragment`, so usually you would not list the
4045 /// typical:
4046 /// ~~~ {.cpp}
4047 /// #pragma link off ....
4048 /// ~~~
4049 
4050 void TSystem::SetLinkdefSuffix(const char *suffix)
4051 {
4052  fLinkdefSuffix = suffix;
4053 }
4054 
4055 
4056 ////////////////////////////////////////////////////////////////////////////////
4057 /// Set shared library extension, should be either .so, .sl, .a, .dll, etc.
4058 
4059 void TSystem::SetSoExt(const char *SoExt)
4060 {
4061  fSoExt = SoExt;
4062 }
4063 
4064 ////////////////////////////////////////////////////////////////////////////////
4065 /// Set object files extension, should be either .o, .obj, etc.
4066 
4067 void TSystem::SetObjExt(const char *ObjExt)
4068 {
4069  fObjExt = ObjExt;
4070 }
4071 
4072 ////////////////////////////////////////////////////////////////////////////////
4073 /// This method split a filename of the form:
4074 /// ~~~ {.cpp}
4075 /// [path/]macro.C[+|++[k|f|g|O|c|s|d|v|-]][(args)].
4076 /// ~~~
4077 /// It stores the ACliC mode [+|++[options]] in 'mode',
4078 /// the arguments (including parenthesis) in arg
4079 /// and the I/O indirection in io
4080 
4081 TString TSystem::SplitAclicMode(const char* filename, TString &aclicMode,
4082  TString &arguments, TString &io) const
4083 {
4084  char *fname = Strip(filename);
4085 
4086  char *arg = strchr(fname, '(');
4087  // special case for $(HOME)/aap.C(10)
4088  while (arg && *arg && (arg > fname && *(arg-1) == '$') && *(arg+1))
4089  arg = strchr(arg+1, '(');
4090  if (arg && arg > fname) {
4091  *arg = 0;
4092  char *t = arg-1;
4093  while (*t == ' ') {
4094  *t = 0; t--;
4095  }
4096  arg++;
4097  }
4098 
4099  // strip off I/O redirect tokens from filename
4100  {
4101  char *s2 = 0;
4102  char *s3;
4103  s2 = strstr(fname, ">>");
4104  if (!s2) s2 = strstr(fname, "2>");
4105  if (!s2) s2 = strchr(fname, '>');
4106  s3 = strchr(fname, '<');
4107  if (s2 && s3) s2 = s2<s3 ? s2 : s3;
4108  if (s3 && !s2) s2 = s3;
4109  if (s2==fname) {
4110  io = fname;
4111  aclicMode = "";
4112  arguments = "";
4113  delete []fname;
4114  return "";
4115  } else if (s2) {
4116  s2--;
4117  while (s2 && *s2 == ' ') s2--;
4118  s2++;
4119  io = s2; // ssave = *s2;
4120  *s2 = 0;
4121  } else
4122  io = "";
4123  }
4124 
4125  // remove the possible ACLiC + or ++ and g or O etc
4126  aclicMode.Clear();
4127  int len = strlen(fname);
4128  TString mode;
4129  while (len > 1) {
4130  if (strchr("kfgOcsdv-", fname[len - 1])) {
4131  mode += fname[len - 1];
4132  --len;
4133  } else {
4134  break;
4135  }
4136  }
4137  Bool_t compile = len && fname[len - 1] == '+';
4138  Bool_t remove = compile && len > 1 && fname[len - 2] == '+';
4139  if (compile) {
4140  if (mode.Length()) {
4141  fname[len] = 0;
4142  }
4143  if (remove) {
4144  fname[strlen(fname)-2] = 0;
4145  aclicMode = "++";
4146  } else {
4147  fname[strlen(fname)-1] = 0;
4148  aclicMode = "+";
4149  }
4150  if (mode.Length())
4151  aclicMode += mode;
4152  }
4153 
4154  TString resFilename = fname;
4155  arguments = "(";
4156  if (arg) arguments += arg;
4157  else arguments = "";
4158 
4159  delete []fname;
4160  return resFilename;
4161 }
4162 
4163 ////////////////////////////////////////////////////////////////////////////////
4164 /// Remove the shared libs produced by the CompileMacro() function.
4165 
4167 {
4168  TIter next(fCompiled);
4169  TNamed *lib;
4170  while ((lib = (TNamed*)next())) {
4171  if (lib->TestBit(kMustCleanup)) Unlink(lib->GetTitle());
4172  }
4173 }
4174 
4175 ////////////////////////////////////////////////////////////////////////////////
4176 /// Register version of plugin library.
4177 
4179 {
4180  if (versionCode != TROOT::RootVersionCode() && gLibraryVersion)
4181  gLibraryVersion[gLibraryVersionIdx] = versionCode;
4182 }
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:929
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 void Add(TObject *obj)
double read(const std::string &file_name)
reading
Ssiz_t Last(char c) const
Find last occurrence of a character c.
Definition: TString.cxx:865
virtual Bool_t IsAbsoluteFileName(const char *dir)
Return true if dir is an absolute pathname.
Definition: TSystem.cxx:946
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:4081
virtual int GetPid()
Get process id.
Definition: TSystem.cxx:712
An array of TObjects.
Definition: TObjArray.h:39
virtual Bool_t ProcessEvents()
Process pending events (GUI, timers, sockets).
Definition: TSystem.cxx:421
virtual void Syslog(ELogLevel level, const char *mess)
Send mess to syslog daemon.
Definition: TSystem.cxx:1648
int GetErrno()
return errno
const char * GetHostName() const
Definition: TInetAddress.h:75
virtual Bool_t IsPathLocal(const char *path)
Returns TRUE if the url in &#39;path&#39; points to the local file system.
Definition: TSystem.cxx:1274
Bool_t ProcessEvents()
Process events if timer did time out.
Definition: TSystem.cxx:82
long long Long64_t
Definition: RtypesCore.h:69
Int_t fReadOffSet
Definition: TSystem.h:220
virtual const char * WorkingDirectory()
Return working directory.
Definition: TSystem.cxx:866
virtual void StackTrace()
Print a stack trace.
Definition: TSystem.cxx:737
EAclicMode
Definition: TSystem.h:261
void Reset()
Reset the timer.
Definition: TTimer.cxx:157
virtual const char * GetBuildCompiler() const
Return the build compiler.
Definition: TSystem.cxx:3733
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:3884
virtual void NotifyApplicationCreated()
Hook to tell TSystem that the TApplication object has been created.
Definition: TSystem.cxx:316
Ssiz_t Length() const
Definition: TString.h:390
TLine * line
Collectable string class.
Definition: TObjString.h:32
return c
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:3835
virtual int Link(const char *from, const char *to)
Create a link from file1 to file2.
Definition: TSystem.cxx:1328
virtual const char * GetBuildArch() const
Return the build architecture.
Definition: TSystem.cxx:3725
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:3893
virtual const char * GetLinkedLibraries()
Get list of shared libraries loaded at the start of the executable.
Definition: TSystem.cxx:2066
void RemoveOnExit(TObject *obj)
Objects that should be deleted on exit of the OS interface.
Definition: TSystem.cxx:297
virtual Int_t SetFPEMask(Int_t mask=kDefaultMask)
Set which conditions trigger a floating point exception.
Definition: TSystem.cxx:647
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
static Int_t RootVersionCode()
Return ROOT version code as defined in RVersion.h.
Definition: TROOT.cxx:2665
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:685
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:209
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Definition: TObject.cxx:899
This class represents an Internet Protocol (IP) address.
Definition: TInetAddress.h:40
virtual int MakeDirectory(const char *name)
Make a directory.
Definition: TSystem.cxx:822
virtual void AddSignalHandler(TSignalHandler *sh)
Add a signal handler to list of system signal handlers.
Definition: TSystem.cxx:537
virtual const char * HomeDirectory(const char *userName=0)
Return the user&#39;s home directory.
Definition: TSystem.cxx:882
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:857
TVersionCheck(int versionCode)
Register version of plugin library.
Definition: TSystem.cxx:4178
#define gROOT
Definition: TROOT.h:364
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:3921
Int_t LoadPlugin()
Load the plugin library for this handler.
virtual void Remove()
Remove std::exception handler from system handler list.
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:616
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
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:581
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:997
bool Bool_t
Definition: RtypesCore.h:59
virtual TTimer * RemoveTimer(TTimer *t)
Remove timer from list of system timers.
Definition: TSystem.cxx:486
TArc * a
Definition: textangle.C:12
const Bool_t kFALSE
Definition: Rtypes.h:92
#define ENDTRY
Definition: TException.h:73
#define gInterpreter
Definition: TInterpreter.h:515
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:3973
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:667
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:589
virtual void IgnoreInterrupt(Bool_t ignore=kTRUE)
If ignore is true ignore the interrupt signal, else restore previous behaviour.
Definition: TSystem.cxx:607
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:3789
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:569
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:901
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition: TObject.cxx:739
TVirtualMutex * gSystemMutex
Definition: TSystem.cxx:100
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:1037
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:265
Int_t fMode
Definition: TSystem.h:138
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 const char * GetDirEntry(void *dirp)
Get a directory entry. Returns 0 if no more entries.
Definition: TSystem.cxx:848
#define SafeDelete(p)
Definition: RConfig.h:499
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:2335
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:442
Bool_t IsInterruptingSyscalls() const
Definition: TTimer.h:88
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
virtual const char * GetLinkedLibs() const
Return the list of library linked to this executable.
Definition: TSystem.cxx:3826
Bool_t fTimeout
Definition: TTimer.h:62
TObject * Next()
Return next object in collection.
virtual const char * GetDynamicPath()
Return the dynamic path (used to find shared libraries).
Definition: TSystem.cxx:1757
void Clear()
Clear string without changing its capacity.
Definition: TString.cxx:1140
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:2797
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
virtual const char * GetMakeSharedLib() const
Return the command line use to make a shared library.
Definition: TSystem.cxx:3798
virtual void SetDisplay()
Set DISPLAY environment variable based on utmp entry. Only for UNIX.
Definition: TSystem.cxx:236
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:1055
virtual void ExitLoop()
Exit from event loop.
Definition: TSystem.cxx:397
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:143
virtual void Unload(const char *module)
Unload a shared library.
Definition: TSystem.cxx:1990
static Int_t gLibraryVersionMax
Definition: TSystem.cxx:63
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition: TObject.cxx:925
virtual Bool_t ConsistentWith(const char *path, void *dirptr=0)
Check consistency of this helper with the one required by &#39;path&#39; or &#39;dirptr&#39;.
Definition: TSystem.cxx:799
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,...)
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:3769
virtual void SetUniqueID(UInt_t uid)
Set the unique object id.
Definition: TObject.cxx:750
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:61
virtual EStatus Handle(std::exception &exc)=0
virtual const char * GetSoExt() const
Get the shared library extension.
Definition: TSystem.cxx:3847
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:468
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:626
void ResetErrno()
reset errno
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
Bool_t EndsWith(const char *pat, ECaseCompare cmp=kExact) const
Return true if string ends with the specified string.
Definition: TString.cxx:2221
TRandom2 r(17)
virtual Bool_t Init()
Initialize the OS interface.
Definition: TSystem.cxx:187
virtual const char * GetBuildNode() const
Return the build node name.
Definition: TSystem.cxx:3749
SVector< double, 2 > v
Definition: Dict.h:5
if object ctor succeeded but object should not be used
Definition: TObject.h:70
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:55
virtual Int_t GetValue(const char *name, Int_t dflt)
Returns the integer value for a resource.
Definition: TEnv.cxx:496
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:2478
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:499
static Int_t ConvertVersionCode2Int(Int_t code)
Convert version code to an integer, i.e. 331527 -> 51507.
Definition: TROOT.cxx:2646
unsigned int UInt_t
Definition: RtypesCore.h:42
Bool_t TestBit(UInt_t f) const
Definition: TObject.h:159
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:3873
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:56
TLine * l
Definition: textangle.C:4
void AbstractMethod(const char *method) const
Use this method to implement an "abstract" method that you don&#39;t want to leave purely abstract...
Definition: TObject.cxx:967
virtual std::string GetWorkingDirectory() const
Return working directory.
Definition: TSystem.cxx:874
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:3757
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:3807
TSubString Strip(EStripType s=kTrailing, char c= ' ') const
Return a substring of self stripped at beginning and/or end.
Definition: TString.cxx:1070
TFileHandler * gXDisplay
Definition: TSystem.cxx:59
const std::string sname
Definition: testIO.cxx:45
virtual Int_t Exec(const char *shellcmd)
Execute a command.
Definition: TSystem.cxx:658
virtual void StopIdleing()
Called when system stops idleing.
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:729
virtual void InnerLoop()
Inner event loop.
Definition: TSystem.cxx:405
virtual void SetSoExt(const char *soExt)
Set shared library extension, should be either .so, .sl, .a, .dll, etc.
Definition: TSystem.cxx:4059
Bool_t IsNull() const
Definition: TString.h:387
virtual const char * GetBuildCompilerVersion() const
Return the build compiler version.
Definition: TSystem.cxx:3741
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
virtual void Unsetenv(const char *name)
Unset environment variable.
Definition: TSystem.cxx:1619
if object destructor must call RecursiveRemove()
Definition: TObject.h:64
virtual void FreeDirectory(void *dirp)
Free a directory.
Definition: TSystem.cxx:840
virtual int ClosePipe(FILE *pipe)
Close the pipe.
Definition: TSystem.cxx:676
TObjArray * Tokenize(const TString &delim) const
This function is used to isolate sequential tokens in a TString.
Definition: TString.cxx:2241
virtual void Run()
System event loop.
Definition: TSystem.cxx:348
#define Printf
Definition: TGeoToOCC.h:18
char * StrDup(const char *str)
Duplicate the string str.
Definition: TString.cxx:2514
#define R__LOCKGUARD2(mutex)
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:5005
virtual Int_t Select(TList *active, Long_t timeout)
Select on active file descriptors (called by TMonitor).
Definition: TSystem.cxx:450
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:939
virtual TSignalHandler * RemoveSignalHandler(TSignalHandler *sh)
Remove a signal handler from list of signal handlers.
Definition: TSystem.cxx:547
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:3815
#define ClassImp(name)
Definition: Rtypes.h:279
double f(double x)
virtual const char * GetFlagsOpt() const
Return the optimization flags.
Definition: TSystem.cxx:3777
virtual Func_t DynFindSymbol(const char *module, const char *entry)
Find specific entry point in specified library.
Definition: TSystem.cxx:1982
virtual const char * GetName() const
Returns name of object.
Definition: TObject.cxx:416
virtual const char * HostName()
Return the system&#39;s host name.
Definition: TSystem.cxx:308
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
virtual void Remove()
Remove signal handler from system signal handler list.
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:1072
virtual void SetProgname(const char *name)
Set the application name (from command line, argv[0]) and copy it in gProgName.
Definition: TSystem.cxx:228
TSystem * gSystem
Definition: TSystem.cxx:58
you should not use this method at all Int_t Int_t Double_t Double_t Double_t e
Definition: TRolke.cxx:630
virtual Int_t GetGid(const char *group=0)
Returns the group&#39;s id. If group = 0, returns current user&#39;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:329
Bool_t IsSync() const
Definition: TTimer.h:86
virtual void DispatchOneEvent(Bool_t pendingOnly=kFALSE)
Dispatch a single event.
Definition: TSystem.cxx:434
virtual void CleanCompiledMacros()
Remove the shared libs produced by the CompileMacro() function.
Definition: TSystem.cxx:4166
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&#39;s id. If user = 0, returns current user&#39;s id.
Definition: TSystem.cxx:1524
EAccessMode
Definition: TSystem.h:54
virtual void Remove()
Remove file event handler from system file handler list.
virtual void AddLinkedLibs(const char *linkedLib)
Add linkedLib to already set linked libs.
Definition: TSystem.cxx:3993
virtual UInt_t GetUniqueID() const
Return the unique object id.
Definition: TObject.cxx:434
virtual void SetAclicMode(EAclicMode mode)
AclicMode indicates whether the library should be built in debug mode or optimized.
Definition: TSystem.cxx:3905
Mother of all ROOT objects.
Definition: TObject.h:44
virtual void SetObjExt(const char *objExt)
Set object files extension, should be either .o, .obj, etc.
Definition: TSystem.cxx:4067
virtual Bool_t IsFileInIncludePath(const char *name, char **fullpath=0)
Return true if &#39;name&#39; is a file that can be found in the ROOT include path or the current directory...
Definition: TSystem.cxx:961
const Int_t kMaxInt
Definition: Rtypes.h:103
virtual Int_t GetAclicProperties() const
Return the ACLiC properties field.
Definition: TSystem.cxx:3717
virtual std::string GetHomeDirectory(const char *userName=0) const
Return the user&#39;s home directory.
Definition: TSystem.cxx:890
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:476
virtual void ShowOutput(RedirectHandle_t *h)
Display the content associated with the redirection described by the opaque handle &#39;h&#39;...
Definition: TSystem.cxx:1687
Definition: file.py:1
virtual void SetLinkedLibs(const char *linkedLibs)
LinkedLibs should contain the library directory and list of libraries needed to recreate the current ...
Definition: TSystem.cxx:4028
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:721
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:3855
#define ROOT_RELEASE
Definition: RVersion.h:17
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Definition: TRolke.cxx:630
Long_t fIno
Definition: TSystem.h:137
#define snprintf
Definition: civetweb.c:822
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:831
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:3982
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:749
virtual void AddFileHandler(TFileHandler *fh)
Add a file handler to the list of system file handlers.
Definition: TSystem.cxx:559
static void ResetErrno()
Static function resetting system error number.
Definition: TSystem.cxx:281
double result[121]
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
TObject * At(Int_t idx) const
Definition: TObjArray.h:167
void SetErrorStr(const char *errstr)
Set the system error string.
Definition: TSystem.cxx:246
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
virtual int GetSockOpt(int sock, int kind, int *val)
Get socket option.
Definition: TSystem.cxx:2399
const char * gRootDir
Definition: TSystem.cxx:54
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.
virtual const char * GetTitle() const
Returns title of object.
Definition: TObject.cxx:460
virtual void SetLinkdefSuffix(const char *suffix)
The &#39;suffix&#39; will be appended to the name of a script loaded by ACLiC and used to locate any eventual...
Definition: TSystem.cxx:4050
virtual Int_t GetFPEMask()
Return the bitmap of conditions that trigger a floating point exception.
Definition: TSystem.cxx:637
virtual TObject * FindObject(const char *name) const
Must be redefined in derived classes.
Definition: TObject.cxx:380
#define RETRY
Definition: TException.h:53
static Int_t gLibraryVersionIdx
Definition: TSystem.cxx:62
virtual char * ConcatFileName(const char *dir, const char *name)
Concatenate a directory and a file name. User must delete returned string.
Definition: TSystem.cxx:1045
const Int_t n
Definition: legend1.C:16
const char * GetUser() const
Definition: TUrl.h:74
TString fFile
Definition: TSystem.h:215
virtual const char * GetError()
Return system error string.
Definition: TSystem.cxx:255
char name[80]
Definition: TGX11.cxx:109
Ssiz_t First(char c) const
Find first occurrence of a character c.
Definition: TString.cxx:467
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
Bool_t IsAsync() const
Definition: TTimer.h:87
static Int_t * ReAllocInt(Int_t *vp, size_t size, size_t oldsize)
Reallocate (i.e.
Definition: TStorage.cxx:290
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:4017
if(line.BeginsWith("/*"))
Definition: HLFactory.cxx:443
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:598
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:911