CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EvFDaqDirector.h
Go to the documentation of this file.
1 #ifndef EVENTFILTER_UTILTIES_PLUGINS_EVFDAQDIRECTOR
2 #define EVENTFILTER_UTILTIES_PLUGINS_EVFDAQDIRECTOR
3 
7 
10 
11 //std headers
12 #include <string>
13 #include <sstream>
14 #include <iomanip>
15 #include <vector>
16 #include <list>
17 #include <mutex>
18 
19 //system headers
20 //#include <sys/types.h>
21 #include <sys/stat.h>
22 #include <fcntl.h>
23 #include <errno.h>
24 #include <string.h>
25 #include <stdio.h>
26 
27 class SystemBounds;
28 class GlobalContext;
29 class StreamID;
30 
31 class InputFile;
32 class InputChunk;
33 
34 namespace Json{
35  class Value;
36 }
37 
38 namespace evf{
39 
41 
43  {
44  public:
45 
47 
48  explicit EvFDaqDirector( const edm::ParameterSet &pset, edm::ActivityRegistry& reg );
50  void preallocate(edm::service::SystemBounds const& bounds);
51  void preBeginRun(edm::GlobalContext const& globalContext);
52  void postEndRun(edm::GlobalContext const& globalContext);
53  void preGlobalEndLumi(edm::GlobalContext const& globalContext);
54  void preSourceEvent(edm::StreamID const& streamID);
55  //std::string &baseDir(){return base_dir_;}
59 
61  std::string getInputJsonFilePath(const unsigned int ls, const unsigned int index) const;
62  std::string getRawFilePath(const unsigned int ls, const unsigned int index) const;
63  std::string getOpenRawFilePath(const unsigned int ls, const unsigned int index) const;
64  std::string getOpenInputJsonFilePath(const unsigned int ls, const unsigned int index) const;
65  std::string getOpenDatFilePath(const unsigned int ls, std::string const& stream) const;
66  std::string getOpenOutputJsonFilePath(const unsigned int ls, std::string const& stream) const;
67  std::string getOutputJsonFilePath(const unsigned int ls, std::string const& stream) const;
68  std::string getMergedDatFilePath(const unsigned int ls, std::string const& stream) const;
69  std::string getMergedDatChecksumFilePath(const unsigned int ls, std::string const& stream) const;
73  std::string getProtocolBufferHistogramFilePath(const unsigned int ls, std::string const& stream) const;
75  std::string getOpenRootHistogramFilePath(const unsigned int ls, std::string const& stream) const;
76  std::string getRootHistogramFilePath(const unsigned int ls, std::string const& stream) const;
77  std::string getMergedRootHistogramFilePath(const unsigned int ls, std::string const& stream) const;
78  std::string getEoLSFilePathOnBU(const unsigned int ls) const;
79  std::string getEoLSFilePathOnFU(const unsigned int ls) const;
80  std::string getBoLSFilePathOnFU(const unsigned int ls) const;
83  std::string getRunOpenDirPath() const {return run_dir_ +"/open";}
85  void removeFile(unsigned int ls, unsigned int index);
86  void removeFile(std::string );
87 
88  FileStatus updateFuLock(unsigned int& ls, std::string& nextFile, uint32_t& fsize);
90  unsigned int getRunNumber() const { return run_; }
91  unsigned int getJumpLS() const { return jumpLS_; }
92  unsigned int getJumpIndex() const { return jumpIndex_; }
97  void lockInitLock();
98  void unlockInitLock();
100  void updateFileIndex(int const& fileIndex) {currentFileIndex_=fileIndex;}
101  std::vector<int>* getStreamFileTracker() {return &streamFileTracker_;}
102  bool isSingleStreamThread() {return nStreams_==1 && nThreads_==1;}
103  void lockFULocal();
104  void unlockFULocal();
105  void lockFULocal2();
106  void unlockFULocal2();
107  void createRunOpendirMaybe();
108  int readLastLSEntry(std::string const& file);
109  void setDeleteTracking( std::mutex* fileDeleteLock,std::list<std::pair<int,InputFile*>> *filesToDelete) {
110  fileDeleteLockPtr_=fileDeleteLock;
111  filesToDeletePtr_ = filesToDelete;
112  }
115 
116 
117  private:
118  //bool bulock();
119  //bool fulock();
120  bool bumpFile(unsigned int& ls, unsigned int& index, std::string& nextFile, uint32_t& fsize, int maxLS);
121  void openFULockfileStream(std::string& fuLockFilePath, bool create);
122  std::string inputFileNameStem(const unsigned int ls, const unsigned int index) const;
123  std::string outputFileNameStem(const unsigned int ls, std::string const& stream) const;
124  std::string mergedFileNameStem(const unsigned int ls, std::string const& stream) const;
126  std::string eolsFileName(const unsigned int ls) const;
127  std::string eorFileName() const;
128  int getNFilesFromEoLS(std::string BUEoLSFile);
129 
134  unsigned int run_;
139 
145 
152 
159 
161 
162  unsigned long previousFileSize_;
163  unsigned int jumpLS_, jumpIndex_;
164 
165  struct flock bu_w_flk;
166  struct flock bu_r_flk;
167  struct flock bu_w_fulk;
168  struct flock bu_r_fulk;
169  struct flock fu_rw_flk;
170  struct flock fu_rw_fulk;
171  struct flock data_rw_flk;
172  struct flock data_rw_fulk;
173  //struct flock fulocal_rw_flk;
174  //struct flock fulocal_rw_fulk;
175  //struct flock fulocal_rw_flk2;
176  //struct flock fulocal_rw_fulk2;
177 
179  std::vector<int> streamFileTracker_;
181 
183  std::list<std::pair<int,InputFile*>> *filesToDeletePtr_ = nullptr;
184 
185  pthread_mutex_t init_lock_ = PTHREAD_MUTEX_INITIALIZER;
186 
187  unsigned int nStreams_=0;
188  unsigned int nThreads_=0;
189 
190  bool readEolsDefinition_ = true;
191  unsigned int eolsNFilesIndex_ = 1;
193 
194  std::shared_ptr<Json::Value> transferSystemJson_;
195  };
196 }
197 
198 #endif
199 
std::string & buBaseRunDir()
struct flock bu_w_fulk
unsigned int getJumpIndex() const
unsigned int nThreads_
std::string getStreamDestinations(std::string const &stream) const
struct flock fu_rw_flk
std::string run_string_
std::string getMergedProtocolBufferHistogramFilePath(const unsigned int ls, std::string const &stream) const
std::vector< int > streamFileTracker_
std::list< std::pair< int, InputFile * > > * filesToDeletePtr_
std::vector< int > * getStreamFileTracker()
std::string outputFileNameStem(const unsigned int ls, std::string const &stream) const
std::string getMergedDatChecksumFilePath(const unsigned int ls, std::string const &stream) const
static boost::mutex mutex
Definition: LHEProxy.cc:11
std::shared_ptr< Json::Value > transferSystemJson_
void openFULockfileStream(std::string &fuLockFilePath, bool create)
std::string getInitFilePath(std::string const &stream) const
std::string getMergedRootHistogramFilePath(const unsigned int ls, std::string const &stream) const
std::string inputRawFileName(const unsigned int run, const unsigned int ls, const unsigned int index)
pthread_mutex_t init_lock_
struct flock bu_r_fulk
std::string getProtocolBufferHistogramFilePath(const unsigned int ls, std::string const &stream) const
std::string getRawFilePath(const unsigned int ls, const unsigned int index) const
std::string getOpenInitFilePath(std::string const &stream) const
std::string getOpenRawFilePath(const unsigned int ls, const unsigned int index) const
struct flock data_rw_flk
std::string eolsFileName(const unsigned int ls) const
Represents a JSON value.
Definition: value.h:111
std::string getEoLSFilePathOnBU(const unsigned int ls) const
std::string getEoRFilePath() const
unsigned long previousFileSize_
unsigned int jumpIndex_
FileStatus updateFuLock(unsigned int &ls, std::string &nextFile, uint32_t &fsize)
struct flock fu_rw_fulk
std::string hltSourceDirectory_
std::string getOpenProtocolBufferHistogramFilePath(const unsigned int ls, std::string const &stream) const
std::mutex * fileDeleteLockPtr_
void updateFileIndex(int const &fileIndex)
EvFDaqDirector(const edm::ParameterSet &pset, edm::ActivityRegistry &reg)
std::string getMergedDatFilePath(const unsigned int ls, std::string const &stream) const
std::string getOpenOutputJsonFilePath(const unsigned int ls, std::string const &stream) const
std::string getOpenRootHistogramFilePath(const unsigned int ls, std::string const &stream) const
bool outputAdler32Recheck() const
std::string getRootHistogramFilePath(const unsigned int ls, std::string const &stream) const
std::string getOpenDatFilePath(const unsigned int ls, std::string const &stream) const
void setDeleteTracking(std::mutex *fileDeleteLock, std::list< std::pair< int, InputFile * >> *filesToDelete)
std::string stopFilePath_
std::string inputFileNameStem(const unsigned int ls, const unsigned int index) const
FILE * maybeCreateAndLockFileHeadForStream(unsigned int ls, std::string &stream)
std::string bu_base_dir_
std::string findCurrentRunDir()
void removeFile(unsigned int ls, unsigned int index)
std::string selectedTransferMode_
std::string & buBaseRunOpenDir()
std::string getOpenInputJsonFilePath(const unsigned int ls, const unsigned int index) const
int readLastLSEntry(std::string const &file)
unsigned int eolsNFilesIndex_
std::string & baseRunDir()
bool getTestModeNoBuilderUnit()
std::string getOutputJsonFilePath(const unsigned int ls, std::string const &stream) const
int getNFilesFromEoLS(std::string BUEoLSFile)
struct flock bu_w_flk
void preBeginRun(edm::GlobalContext const &globalContext)
void preSourceEvent(edm::StreamID const &streamID)
void preGlobalEndLumi(edm::GlobalContext const &globalContext)
evf::FastMonitoringService * fms_
std::string bu_run_dir_
std::string eorFileName() const
std::string getBoLSFilePathOnFU(const unsigned int ls) const
std::string findRunDir(unsigned int)
Definition: DirManager.cc:37
void postEndRun(edm::GlobalContext const &globalContext)
unsigned int getRunNumber() const
unsigned int jumpLS_
std::string getEoLSFilePathOnFU(const unsigned int ls) const
std::string getJumpFilePath() const
bool bumpFile(unsigned int &ls, unsigned int &index, std::string &nextFile, uint32_t &fsize, int maxLS)
void preallocate(edm::service::SystemBounds const &bounds)
struct flock data_rw_fulk
std::string getInputJsonFilePath(const unsigned int ls, const unsigned int index) const
unsigned int getJumpLS() const
std::string getRunOpenDirPath() const
void setFMS(evf::FastMonitoringService *fms)
SurfaceDeformation * create(int type, const std::vector< double > &params)
struct flock bu_r_flk
std::string mergedFileNameStem(const unsigned int ls, std::string const &stream) const
unsigned int nStreams_
std::string getEoRFilePathOnFU() const
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 list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run
std::string bu_run_open_dir_
std::string initFileName(std::string const &stream) const