Class Reference for E1039 Core & Analysis Software
Fun4AllFileOutStream.cc
Go to the documentation of this file.
1 #include "Fun4AllFileOutStream.h"
2 #include "Fun4AllServer.h"
3 
4 #include <Event/olzoBuffer.h>
5 #include <Event/Event.h>
6 
7 #include <phool/phool.h>
8 
9 #include <cstring>
10 #include <iostream>
11 #include <sys/types.h>
12 #include <sys/stat.h>
13 #include <fcntl.h>
14 
15 using namespace std;
16 
17 
18 Fun4AllFileOutStream::Fun4AllFileOutStream(const string &frule, const string &name):
20  filerule(frule),
21  ob(NULL),
22  iseq(0),
23  outfile_desc(-1),
24  byteswritten(0),
25  MAXSIZE(10000000000LL)
26 {
27  memset(xb, 0, sizeof(xb));
28 }
29 
31 {
32  if (ob)
33  {
34  delete ob;
35  }
36  if (outfile_desc >= 0)
37  {
38  close(outfile_desc);
39  }
40  return;
41 }
42 
43 int
45 {
46  if (! ob)
47  {
49  int irun = evt->getRunNumber();
50  unsigned filenamesize = filerule.size() + 15; // %010d-%04d is 14 + /0 = 15
51 
52  char *outfilename = new char[filenamesize];
53  iseq = se->SegmentNumber();
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  }
63  outfile_desc = open(outfilename, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE ,
64  S_IRWXU | S_IROTH | S_IRGRP );
65  if (outfile_desc == -1) // failure to open
66  {
67  cout << "could not open " << outfilename << " quitting" << endl;
68  exit(1);
69  }
70  cout << "opening new file " << outfilename << endl;
71  ob = new olzoBuffer ( outfile_desc, xb, LENGTH, irun, iseq);
72  delete [] outfilename;
73  }
74 
75  int status = ob->addEvent(evt);
76  if (status)
77  {
78  cout << ThisName << ": ERROR WRITING OUT FILTERED EVENT "
79  << evt->getEvtSequence() << " FOR RUN "
80  << evt->getRunNumber() << " Status: " << status << endl;
81  }
82  // byteswritten += 4*evt->getEvtLength(); // evtlength is in 32bit words
83  byteswritten = ob->getBytesWritten();
84  if (byteswritten >= MAXSIZE)
85  {
86  delete ob;
87  ob = 0;
88  iseq++;
89  byteswritten = 0;
90  close(outfile_desc);
91  outfile_desc = -1;
92  }
93  return 0;
94 }
95 
96 int
98 {
99  if (ob)
100  {
101  delete ob;
102  ob = 0;
103  }
104  return 0;
105 }
106 
107 void
109 {
110  os << "Fun4AllFileOutStream writing to " << filerule << endl;
111  return;
112 }
static const unsigned int LENGTH
#define NULL
Definition: Pdb.h:9
Definition: Event.h:13
std::string ThisName
Definition: Fun4AllBase.h:72
Fun4AllFileOutStream(const std::string &frule="OUTDATA-%010d-%04d.PRDFF", const std::string &name="FILEOUTSTREAM")
unsigned long long MAXSIZE
void identify(std::ostream &os=std::cout) const
unsigned long long byteswritten
int WriteEventOut(Event *evt)
static Fun4AllServer * instance()
#define PHWHERE
Definition: phool.h:23