Class Reference for E1039 Core & Analysis Software
Fun4AllRolloverFileOutStream.cc
Go to the documentation of this file.
3 #include "Fun4AllServer.h"
4 
5 #include <Event/ogzBuffer.h>
6 #include <Event/Event.h>
7 
8 #include <phool/phool.h>
9 
10 #include <iostream>
11 #include <sys/types.h>
12 #include <sys/stat.h>
13 #include <fcntl.h>
14 
15 using namespace std;
16 
18  const unsigned int sizeInMB,
19  const int offset,
20  const int increment,
21  const string &name) : Fun4AllFileOutStream(frule, name)
22 
23 {
24  i_offset = offset;
25  current_sequence = offset;
26  max_file_size = sizeInMB;
27  max_file_size = max_file_size * 1024 * 1024;
28  if ( max_file_size == 0 || max_file_size > MAXSIZE)
29  {
30  if ( max_file_size > MAXSIZE)
31  {
32  unsigned long long maxmb = MAXSIZE / (1024 * 1024);
33  cout << "setting maximum size to current max (in MB): " << maxmb << endl;
34  }
36  }
37  i_increment = increment;
38  if ( i_increment <= 0)
39  {
40  i_increment = 1; //safety belt against overwriting files
41  }
42 }
43 
44 int
46 {
47  if (! ob)
48  {
49  int irun = evt->getRunNumber();
50  unsigned filenamesize = filerule.size() + 15;
51 
52  char *outfilename = new char[filenamesize];
54  int snprintfbytes = snprintf(outfilename, filenamesize, filerule.c_str(), irun, iseq);
55  if (static_cast<unsigned>(snprintfbytes) > filenamesize)
56  {
57  cout << PHWHERE << " " << ThisName << ": filename exceeds length " << filenamesize
58  << ", tried " << snprintfbytes
59  << ". probably it is the filerule" << filerule
60  << " which uses other than %010d-%04d for runnumber/segment" << endl;
61  exit(1);
62  }
64  outfile_desc = open(outfilename, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE ,
65  S_IRWXU | S_IROTH | S_IRGRP );
66  if (outfile_desc == -1) // failure to open
67  {
68  cout << "could not open " << outfilename << " quitting" << endl;
69  exit(1);
70  }
71  if (verbosity > 0)
72  {
73  cout << "Fun4AllRolloverFileOutStream: opening new file " << outfilename << endl;
74  }
75  mymanager->SetOutfileName(outfilename);
76  // compression level 6 is best compromize between speed and compression
77  // max is 9 which is much slower but only squeezes out a few more bytes
78  ob = new ogzBuffer ( outfile_desc, xb, LENGTH, 6, irun, iseq);
79  delete [] outfilename;
80  }
81 
82  int status = ob->addEvent(evt);
83  if (status)
84  {
85  cout << ThisName << ": ERROR WRITING OUT FILTERED EVENT "
86  << evt->getEvtSequence() << " FOR RUN "
87  << evt->getRunNumber() << " Status: " << status << endl;
88  }
89  byteswritten = ob->getBytesWritten();
91  {
92  delete ob;
93  ob = 0;
94  byteswritten = 0;
95  close(outfile_desc);
96  outfile_desc = -1;
97  }
98  return 0;
99 }
100 
101 void
103 {
104  os << "Fun4AllRolloverFileOutStream writing to " << filerule
105  << " current sequence " << current_sequence << endl;
106  return ;
107 }
static const unsigned int LENGTH
Definition: Event.h:13
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
std::string ThisName
Definition: Fun4AllBase.h:72
Fun4AllEventOutputManager * mymanager
void SetOutfileName(const std::string &fname)
unsigned long long MAXSIZE
unsigned long long byteswritten
Fun4AllRolloverFileOutStream(const std::string &frule="OUTDATA-%010d-%04d.PRDFF", const unsigned int sizeInMB=0, const int offset=0, const int increment=1, const std::string &name="Fun4AllRolloverFileOutStream")
void identify(std::ostream &os=std::cout) const
#define PHWHERE
Definition: phool.h:23