CMS 3D CMS Logo

Classes | Functions | Variables
edm::service Namespace Reference

Classes

class  AbstractMLscribe
 
class  CheckTransitions
 
struct  close_and_delete
 
class  ConcurrentModuleTimer
 
class  CondorStatusService
 
class  CPU
 
class  ELadministrator
 
class  ELdestination
 
class  ELlimitsTable
 
class  ELoutput
 
class  ELstatistics
 
class  IgProfService
 
class  InitRootHandlers
 
class  JobReportService
 
class  LoadAllDictionaries
 
class  MainThreadMLscribe
 
class  MessageLogger
 
struct  MessageLoggerDefaults
 
class  MessageLoggerScribe
 
class  MessageServicePresence
 
class  MessageServicePSetValidation
 
class  PrescaleService
 
struct  ProcInfo
 
class  ProcInfoFetcher
 
class  ProductRegistryDumper
 
class  RandomNumberGeneratorService
 
class  ResourceEnforcer
 
class  SilentMLscribe
 
class  SimpleMemoryCheck
 
class  SingleThreadMSPresence
 
class  SiteLocalConfigService
 
struct  smapsInfo
 
class  StallMonitor
 
class  SystemBounds
 
class  ThreadQueue
 
class  ThreadSafeLogMessageLoggerScribe
 
class  Timing
 
class  Tracer
 
class  TriggerNamesService
 
class  UnixSignalService
 

Functions

int cmssw_stacktrace (void *)
 
static void cmssw_stacktrace_fork ()
 
static std::string d2str (double d)
 
static std::string d2str (double d)
 
static ELstring formatTime (const time_t t)
 
static double getCPU ()
 
static double getTime ()
 
static std::string i2str (int i)
 
bool isProcessWideService (void const *)
 
bool isProcessWideService (JobReportService const *)
 
bool isProcessWideService (TFileAdaptor const *)
 
bool isProcessWideService (CPU const *)
 
bool isProcessWideService (SiteLocalConfigService const *)
 
bool isProcessWideService (TFileService const *)
 
bool isProcessWideService (InitRootHandlers const *)
 
bool isProcessWideService (MessageLogger const *)
 
bool isProcessWideService (DependencyGraph const *)
 
static std::vector< double > & moduleTimeStack ()
 
std::ostream & operator<< (std::ostream &os, SimpleMemoryCheck::SignificantEvent const &se)
 
std::ostream & operator<< (std::ostream &os, SimpleMemoryCheck::SignificantModule const &se)
 
static double popStack ()
 
static void pushStack (bool configuredInTopLevelProcess)
 
static std::string summarizeContext (const std::string &c)
 
static std::string ui2str (unsigned int i)
 

Variables

static char dashC [] = "-c"
 
static const ELstring hereMsg = "available via this destination"
 
static const ELstring noosMsg = "No ostream"
 
static const ELstring notELoutputMsg = "This destination is not an ELoutput"
 
static char pstackName [] = "(CMSSW stack trace helper)"
 

Function Documentation

int edm::service::cmssw_stacktrace ( void *  )

Definition at line 756 of file InitRootHandlers.cc.

References cmsBatch::argv, and edm::service::InitRootHandlers::getPstackArgv().

Referenced by cmssw_stacktrace_fork().

757  {
758  set_default_signals();
759 
761  // NOTE: this is NOT async-signal-safe at CERN's lxplus service.
762  // CERN uses LD_PRELOAD to replace execv with a function from libsnoopy which
763  // calls dlsym.
764 #ifdef __linux__
765  syscall(SYS_execve, "/bin/sh", argv, __environ);
766 #else
767  execv("/bin/sh", argv);
768 #endif
769  ::abort();
770  return 1;
771  }
static char *const * getPstackArgv()
void edm::service::cmssw_stacktrace_fork ( )
static

Definition at line 722 of file InitRootHandlers.cc.

References clone(), cmssw_stacktrace(), sysUtil::pid, and mps_update::status.

Referenced by isProcessWideService(), and edm::service::InitRootHandlers::stacktraceHelperThread().

723  {
724  char child_stack[4*1024];
725  char *child_stack_ptr = child_stack + 4*1024;
726  // On Linux, we currently use jemalloc. This registers pthread_atfork handlers; these
727  // handlers are *not* async-signal safe. Hence, a deadlock is possible if we invoke
728  // fork() from our signal handlers. Accordingly, we use clone (not POSIX, but AS-safe)
729  // as that is closer to the 'raw metal' syscall and avoids pthread_atfork handlers.
730  int pid =
731 #ifdef __linux__
732  clone(edm::service::cmssw_stacktrace, child_stack_ptr, CLONE_VM|CLONE_FS|SIGCHLD, nullptr);
733 #else
734  fork();
735  if (child_stack_ptr) {} // Suppress 'unused variable' warning on non-Linux
736  if (pid == 0) { edm::service::cmssw_stacktrace(nullptr); }
737 #endif
738  if (pid == -1)
739  {
740  full_cerr_write("(Attempt to perform stack dump failed.)\n");
741  }
742  else
743  {
744  int status;
745  if (waitpid(pid, &status, 0) == -1)
746  {
747  full_cerr_write("(Failed to wait on stack dump output.)\n");
748  }
749  if (status)
750  {
751  full_cerr_write("(GDB stack trace failed unexpectedly)\n");
752  }
753  }
754  }
int cmssw_stacktrace(void *)
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
static std::string edm::service::d2str ( double  d)
static

Definition at line 158 of file Timing.cc.

References edmIntegrityCheck::d, and lumiQTWidget::t.

158  {
159  std::stringstream t;
160  t << d;
161  return t.str();
162  }
static std::string edm::service::d2str ( double  d)
static
static ELstring edm::service::formatTime ( const time_t  t)
static

Definition at line 100 of file ELoutput.cc.

References b, and mps_fire::result.

Referenced by edm::service::ELoutput::changeFile(), edm::service::ELoutput::ELoutput(), Vx3DHLTAnalyzer::endLuminosityBlock(), edm::service::ELoutput::log(), Vx3DHLTAnalyzer::reset(), and Vx3DHLTAnalyzer::writeToFile().

100  { // Change log 7
101 
102  static char const dummy[] = "dd-Mon-yyyy hh:mm:ss TZN "; // Change log 7 for length only
103  char ts[sizeof(dummy)]; // Change log 7
104 
105  struct tm timebuf; // Change log 7
106 
107  strftime( ts, sizeof(dummy), "%d-%b-%Y %H:%M:%S %Z", localtime_r(&t, &timebuf) ); // Change log 7
108  // mf 4-9-04
109 
110 #ifdef STRIP_TRAILING_BLANKS_IN_TIMEZONE
111  // strip trailing blanks that would come when the time zone is not as
112  // long as the maximum allowed - probably not worth the time
113  unsigned int b = strlen(ts);
114  while (ts[--b] == ' ') {ts[b] = 0;}
115 #endif
116 
117  ELstring result(ts); // Change log 7
118  return result; // Change log 7
119 } // formatTime()
double b
Definition: hdecay.h:120
std::string ELstring
Definition: ELstring.h:26
static double edm::service::getCPU ( )
static

Definition at line 178 of file Timing.cc.

Referenced by edm::service::Timing::getTotalCPU(), edm::service::Timing::postBeginJob(), and edm::service::Timing::postEndJob().

178  {
179  struct rusage usage;
180  getrusage(RUSAGE_SELF, &usage);
181 
182  double totalCPUTime = 0.0;
183  // User code
184  totalCPUTime = (double)usage.ru_utime.tv_sec + (double(usage.ru_utime.tv_usec) * 1E-6);
185  // System functions
186  totalCPUTime += (double)usage.ru_stime.tv_sec + (double(usage.ru_stime.tv_usec) * 1E-6);
187 
188  // Additionally, add in CPU usage from our child processes.
189  getrusage(RUSAGE_CHILDREN, &usage);
190  totalCPUTime += (double)usage.ru_utime.tv_sec + (double(usage.ru_utime.tv_usec) * 1E-6);
191  totalCPUTime += (double)usage.ru_stime.tv_sec + (double(usage.ru_stime.tv_usec) * 1E-6);
192 
193  return totalCPUTime;
194  }
void usage()
Definition: array2xmlEB.cc:14
static double edm::service::getTime ( )
static

Definition at line 171 of file Timing.cc.

References Exception.

Referenced by edm::service::Timing::accumulateTimeBegin(), edm::service::Timing::accumulateTimeEnd(), popStack(), edm::service::Timing::postBeginJob(), edm::service::Timing::postEndJob(), edm::service::Timing::postEvent(), edm::service::Timing::preEvent(), and pushStack().

171  {
172  struct timeval t;
173  if(gettimeofday(&t, nullptr) < 0)
174  throw cms::Exception("SysCallFailed", "Failed call to gettimeofday");
175  return static_cast<double>(t.tv_sec) + (static_cast<double>(t.tv_usec) * 1E-6);
176  }
static std::string edm::service::i2str ( int  i)
static

Definition at line 298 of file SimpleMemoryCheck.cc.

References mps_fire::i, and lumiQTWidget::t.

Referenced by edm::service::SimpleMemoryCheck::eventStatOutput(), isProcessWideService(), edm::service::CPU::postEndJob(), and edm::service::SimpleMemoryCheck::postEndJob().

298  {
299  std::ostringstream t;
300  t << i;
301  return t.str();
302  }
bool edm::service::isProcessWideService ( void const *  )
inline

Definition at line 30 of file ServiceMakerBase.h.

30  {
31  return false;
32  }
bool edm::service::isProcessWideService ( JobReportService const *  )
inline

Definition at line 47 of file JobReportService.h.

47  {
48  return true;
49  }
bool edm::service::isProcessWideService ( TFileAdaptor const *  )
inline

Definition at line 55 of file TFileAdaptor.h.

55  {
56  return true;
57  }
bool edm::service::isProcessWideService ( CPU const *  )
inline
bool edm::service::isProcessWideService ( SiteLocalConfigService const *  )
inline

Definition at line 91 of file SiteLocalConfigService.h.

91  {
92  return true;
93  }
bool edm::service::isProcessWideService ( TFileService const *  )
inline

Definition at line 99 of file TFileService.h.

Referenced by edm::serviceregistry::ServiceMaker< T, TMaker >::processWideService().

99  {
100  return true;
101  }
bool edm::service::isProcessWideService ( InitRootHandlers const *  )
inline
bool edm::service::isProcessWideService ( MessageLogger const *  )
inline

Definition at line 181 of file MessageLogger.h.

181  {
182  return true;
183  }
bool edm::service::isProcessWideService ( DependencyGraph const *  )
inline

Definition at line 381 of file DependencyGraph.cc.

References DEFINE_FWK_SERVICE.

381  {
382  return true;
383 }
static std::vector<double>& edm::service::moduleTimeStack ( )
static

Definition at line 200 of file Timing.cc.

Referenced by popStack(), and pushStack().

200  {
201  static thread_local std::vector<double> s_stack;
202  return s_stack;
203  }
std::ostream & edm::service::operator<< ( std::ostream &  os,
SimpleMemoryCheck::SignificantEvent const &  se 
)

Definition at line 1026 of file SimpleMemoryCheck.cc.

References edm::service::SimpleMemoryCheck::SignificantEvent::count, edm::service::SimpleMemoryCheck::SignificantEvent::deltaRss, edm::service::SimpleMemoryCheck::SignificantEvent::deltaVsize, edm::service::SimpleMemoryCheck::SignificantEvent::event, edm::service::SimpleMemoryCheck::SignificantEvent::monitorPssAndPrivate, edm::service::SimpleMemoryCheck::SignificantEvent::privateSize, edm::service::SimpleMemoryCheck::SignificantEvent::pss, edm::service::SimpleMemoryCheck::SignificantEvent::rss, and edm::service::SimpleMemoryCheck::SignificantEvent::vsize.

1027  {
1028  os << "[" << se.count << "] "
1029  << se.event << " vsize = " << se.vsize
1030  << " deltaVsize = " << se.deltaVsize
1031  << " rss = " << se.rss << " delta = " << se.deltaRss;
1032 
1033  if (se.monitorPssAndPrivate) {
1034  os <<" private = "<<se.privateSize<<" pss = "<<se.pss;
1035  }
1036  return os;
1037  }
std::ostream & edm::service::operator<< ( std::ostream &  os,
SimpleMemoryCheck::SignificantModule const &  se 
)

Definition at line 1040 of file SimpleMemoryCheck.cc.

References DEFINE_FWK_SERVICE, edm::service::SimpleMemoryCheck::SignificantModule::eventMaxDeltaV, edm::service::SimpleMemoryCheck::SignificantModule::maxDeltaVsize, edm::service::SimpleMemoryCheck::SignificantModule::maxEarlyVsize, edm::service::SimpleMemoryCheck::SignificantModule::postEarlyCount, edm::service::SimpleMemoryCheck::SignificantModule::totalDeltaVsize, and edm::service::SimpleMemoryCheck::SignificantModule::totalEarlyVsize.

1041  {
1042  if(sm.postEarlyCount > 0) {
1043  os << "\nPost Early Events: TotalDeltaVsize: " << sm.totalDeltaVsize
1044  << " (avg: " << sm.totalDeltaVsize/sm.postEarlyCount
1045  << "; max: " << sm.maxDeltaVsize
1046  << " during " << sm.eventMaxDeltaV << ")";
1047  }
1048  if(sm.totalEarlyVsize > 0) {
1049  os << "\n Early Events: TotalDeltaVsize: " << sm.totalEarlyVsize
1050  << " (max: " << sm.maxEarlyVsize << ")";
1051  }
1052 
1053  return os;
1054  }
static double edm::service::popStack ( )
static

Definition at line 206 of file Timing.cc.

References getTime(), moduleTimeStack(), and lumiQTWidget::t.

Referenced by edm::service::Timing::postCommon().

206  {
207  auto& modStack = moduleTimeStack();
208  assert(!modStack.empty());
209  double curr_module_time = modStack.back();
210  modStack.pop_back();
211  double t = getTime() - curr_module_time;
212  return t;
213  }
static std::vector< double > & moduleTimeStack()
Definition: Timing.cc:200
static double getTime()
Definition: Timing.cc:171
static void edm::service::pushStack ( bool  configuredInTopLevelProcess)
static

Definition at line 216 of file Timing.cc.

References getTime(), and moduleTimeStack().

Referenced by edm::service::Timing::preModule(), edm::service::Timing::preModuleGlobal(), edm::service::Timing::preModuleStream(), edm::service::Timing::preOpenFile(), edm::service::Timing::preSourceEvent(), edm::service::Timing::preSourceLumi(), and edm::service::Timing::preSourceRun().

216  {
217  if (!configuredInTopLevelProcess) {
218  return;
219  }
220  auto& modStack = moduleTimeStack();
221  modStack.push_back(getTime());
222  }
static std::vector< double > & moduleTimeStack()
Definition: Timing.cc:200
static double getTime()
Definition: Timing.cc:171
static std::string edm::service::summarizeContext ( const std::string &  c)
static

Definition at line 154 of file ELstatistics.cc.

References EnergyCorrector::c, event(), findQualityFiles::run, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by edm::service::ELstatistics::log().

155  {
156  if ( c.substr (0,4) != "Run:" ) return c;
157  std::istringstream is (c);
158  std::string runWord;
159  int run;
160  is >> runWord >> run;
161  if (!is) return c;
162  if (runWord != "Run:") return c;
163  std::string eventWord;
164  int event;
165  is >> eventWord >> event;
166  if (!is) return c;
167  if (eventWord != "Event:") return c;
168  std::ostringstream os;
169  os << run << "/" << event;
170  return os.str();
171  }
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
static std::string edm::service::ui2str ( unsigned int  i)
static

Definition at line 164 of file Timing.cc.

References mps_fire::i, and lumiQTWidget::t.

Referenced by edm::service::Timing::postEndJob().

164  {
165  std::stringstream t;
166  t << i;
167  return t.str();
168  }

Variable Documentation

char edm::service::dashC[] = "-c"
static

Definition at line 774 of file InitRootHandlers.cc.

const ELstring edm::service::hereMsg = "available via this destination"
static

Definition at line 90 of file ELdestination.cc.

const ELstring edm::service::noosMsg = "No ostream"
static

Definition at line 91 of file ELdestination.cc.

const ELstring edm::service::notELoutputMsg = "This destination is not an ELoutput"
static

Definition at line 92 of file ELdestination.cc.

Referenced by edm::service::ELdestination::changeFile().

char edm::service::pstackName[] = "(CMSSW stack trace helper)"
static

Definition at line 773 of file InitRootHandlers.cc.