Class Reference for E1039 Core & Analysis Software
CodaInputManager.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
3 #include <sstream>
4 #include <cstdlib>
5 #include <fstream>
6 #include <unistd.h>
7 #include <UtilAna/UtilOnline.h>
8 #include "evio.h"
9 #include "CodaInputManager.h"
10 using namespace std;
11 
13  m_verb(0), m_online(true), m_go_end(false), m_handle(-1), m_run(0)
14 {
15  ;
16 }
17 
18 int CodaInputManager::OpenFile(const std::string fname, const long file_size_min, const int sec_wait, const int n_wait)
19 {
20  if (! file_exists(fname)) {
21  cerr << "!!ERROR!! Coda file does not exist: " << fname << "." << endl;
22  return 1;
23  }
24  m_fname = fname;
25 
26  // evOpen will return an error if the file is less than
27  // a certain size, so wait until the file is big enough.
28  bool size_ok = false;
29  for (int i_wait = 0; i_wait < n_wait + 1; i_wait++) {
30  FILE* fp = fopen (fname.c_str(), "r");
31  if (fp == NULL) {
32  cout << "Failed at fopen() with errno=" << errno << "." << endl;
33  } else {
34  if (fseek(fp, 0L, SEEK_END) != 0) {
35  cout << "Failed at fseek() with errno=" << errno << "." << endl;
36  }
37  m_file_size = ftell(fp);
38  fclose(fp);
39  if (m_file_size >= file_size_min) {
40  size_ok = true;
41  break;
42  }
43  if (m_verb) {
44  cout << "File size: " << m_file_size << " < " << file_size_min
45  << ". Wait for " << sec_wait << " s (" << i_wait << ")." << endl;
46  }
47  }
48  sleep (sec_wait);
49  }
50  if (! size_ok) {
51  cout << "File size not enough (" << m_file_size << " < " << file_size_min << "). Wait timeout. Exiting..." << endl;
52  return 2;
53  }
54 
55  if (m_verb) {
56  cout << "Loading " << fname << "..." << endl;
57  }
58  CloseFile();
59  int ret = evOpen((char*)fname.c_str(), (char*)"r", &m_handle);
60  if (ret != 0) {
61  cout << "Failed at opening the Coda file. ret = " << ret << ". Exiting..." << endl;
62  return 3;
63  }
64  m_event_count = 0;
65  return 0;
66 }
67 
69 {
70  if (m_handle < 0) return 0; // Do nothing since no file is opened.
71  int ret = evClose(m_handle);
72  m_handle = -1;
73  return ret;
74 }
75 
76 bool CodaInputManager::JumpCodaEvent(unsigned int& event_count, int*& event_words, const unsigned int n_evt)
77 {
78  for (unsigned int i_evt = 0; i_evt < n_evt; i_evt++) {
79  if (! NextCodaEvent(event_count, event_words)) {
80  cout << "CodaInputManager::SkipCodaEvent(): Failed at i=" << i_evt << " (n=" << n_evt << ")." << endl;
81  return false;
82  }
83  }
84  return true;
85 }
86 
87 bool CodaInputManager::NextCodaEvent(unsigned int& event_count, int*& event_words)
88 {
89  if (m_go_end) return false;
90  int ret = evRead(m_handle, m_event_words, buflen);
91  if (ret == 0) {
92  event_count = m_event_count++;
93  event_words = m_event_words;
94  return true;
95  }
96 
97  if (m_online && m_run > 0) {
98  cout << "No new event seems available for now. Try to recover." << endl;
99  if (file_exists(UtilOnline::GetEndFilePath(m_run))) {
100  cout << "Exiting since the END file exists." << endl;
101  ForceEnd();
102  return false;
103  }
104 
105  if (file_exists(UtilOnline::GetCodaFilePath(m_run+1))) {
106  cout << "Exiting since the next run file exists." << endl;
107  ForceEnd();
108  return false;
109  }
110  // Re-open the file, requring a larger file size
111  unsigned int event_count_jump = m_event_count + 1;
112  ret = OpenFile(m_fname, m_file_size + 32768, 10, 20); // m_event_count is reset
113  if (ret == 0) {
114  cout << "Jumping over " << event_count_jump << " events." << endl;
115  return JumpCodaEvent(event_count, event_words, event_count_jump);
116  } else {
117  cout << "OpenFile() returned " << ret << "." << endl;
118  }
119  }
120  cout << "CodaInputManager::NextCodaEvent(): Bad end." << endl;
121  ForceEnd();
122  return false;
123 }
124 
125 bool CodaInputManager::file_exists(const std::string fname)
126 {
127  FILE *fp = fopen(fname.c_str(), "r");
128  if (fp) {
129  fclose (fp);
130  return true;
131  }
132  return false;
133 }
134 
141 int get_hex_bit (unsigned int hexNum, int numBitFromRight)
142 {
143  int shift;
144  unsigned int hexBit;
145  // Shift the number to get rid of the bits on the right that we want
146  shift = numBitFromRight;
147  hexBit = hexNum;
148  hexBit = hexBit >> (4 * shift);
149  // Do the bitwise AND operation
150  hexBit = hexBit & 0xF;
151  return hexBit;
152 }
153 
161 int get_hex_bits (unsigned int hexNum, int numBitFromRight, int numBits)
162 {
163  unsigned int hexBits = 0x0;
164  int shift;
165  unsigned int bitwiseand = 0xF;
166  unsigned int eff = 0xF;
167  int i;
168  // Bitwise method. Shift the bits, and use bitwise AND to get the bits we want
169  // Shift the number to get rid of the bits on the right that we want
170  shift = numBitFromRight - numBits + 1;
171  hexBits = hexNum;
172  hexBits = hexBits >> (4 * shift);
173 
174  // Assemble the number that we will use with the above number
175  // in the bitwise AND operation
176  // so, if we want get_hex_bits(hexNum, 3, 2), it will make 0xFF
177  for (i = 1; i < numBits; i++)
178  {
179  bitwiseand += (eff << (4 * i) );
180  }
181 
182  // Do the bitwise AND operation
183  hexBits = hexBits & bitwiseand;
184  return hexBits;
185 }
186 
194 int get_bin_bit (unsigned int binNum, int numBitFromRight)
195 {
196  while (numBitFromRight--)
197  {
198  binNum /= 2;
199  }
200 
201  return (binNum % 2);
202 }
203 
212 int get_bin_bits (unsigned int binNum, int numBitFromRight, int numBits)
213 {
214  int binBit = 0;
215  int binBits = 0;
216  int n = 0;
217  double d = 1.0;
218 
219  for (n = 0; n < (numBits - 1); n++)
220  {
221  d *= 2.0;
222  }
223 
224  for (n = 0; n < (numBits) && n <= numBitFromRight; n++)
225  {
226  binBit = get_bin_bit (binNum, numBitFromRight - n);
227  binBits += binBit * d;
228  d /= 2;
229  }
230 
231  return binBits;
232 }
233 
234 void Abort(const char* message)
235 {
236  cerr << "!!ERROR!! " << message << endl;
237  exit(1);
238 }
239 
240 void PrintWords(int* words, int idx_begin, int idx_end, int idx_atte)
241 {
242  cout << " PrintWords[" << idx_begin << "-" << idx_end << "]:\n";
243  int idx_b5 = (idx_begin / 5) * 5;
244  for (int idx = idx_b5; idx < idx_end; idx++) {
245  if (idx % 5 == 0) cout << "\n " << setw(6) << idx << ": ";
246  cout << " " << hex << setw(8) << words[idx] << dec;
247  if (idx == idx_atte) cout << "!";
248  }
249  cout << endl;
250 }
251 
260 void PrintCodaEventSummary(int* words)
261 {
262  int n_wd = words[0];
263  int code = words[1];
264  cout << " Event code = " << hex << code
265  //<< " 0x" << get_hex_bits(code, 3, 4)
266  //<< " 0x" << get_hex_bits(code, 7, 4)
267  << dec << " (" << n_wd << ")" << endl;
268  int idx = 7; // the start of ROC data
269  while (idx < n_wd) {
270  int n_wd_roc = words[idx ];
271  int roc_id = get_hex_bits(words[idx+1], 5, 2);
272  cout << " ROC " << setw(2) << roc_id << " (" << n_wd_roc << ") |";
273  int idx_roc_end = idx + n_wd_roc + 1;
274  idx += 5; // the 1st word of data of boards
275  while (idx < idx_roc_end) {
276  int e906flag = words[idx];
277  if (e906flag == (int)0xe906c0da) {
278  cout << " c0da";
279  idx++;
280  break;
281  }
282  int flag_hi = get_hex_bits(e906flag, 7, 4);
283  int flag_lo = get_hex_bits(e906flag, 3, 4);
284  bool is_flag = (flag_hi == (int)0xe906);
285 
286  int board_id = get_hex_bits(words[idx + 1], 7, 2);
287  int n_wd_bd = get_hex_bits(words[idx + 1], 3, 4);
288  bool has_dummy = (words[idx+2] == (int)0xe906e906);
289  idx += n_wd_bd + (has_dummy ? 3 : 2); // index of _next_ board
290  bool overflow_n_wd = (idx > idx_roc_end);
291  cout << hex << " " << (is_flag ? "" : "?") << flag_lo << ":" << board_id
292  << dec << "(" << n_wd_bd << ")";
293  if (overflow_n_wd) cout << "OF";
294  }
295  if (idx < idx_roc_end) cout << " | UF";
296  else if (idx > idx_roc_end) cout << " | OF";
297  idx = idx_roc_end;
298  cout << endl;
299  }
300 }
int get_hex_bit(unsigned int hexNum, int numBitFromRight)
int get_bin_bit(unsigned int binNum, int numBitFromRight)
void PrintCodaEventSummary(int *words)
void PrintWords(int *words, int idx_begin, int idx_end, int idx_atte)
int get_hex_bits(unsigned int hexNum, int numBitFromRight, int numBits)
void Abort(const char *message)
int get_bin_bits(unsigned int binNum, int numBitFromRight, int numBits)
#define NULL
Definition: Pdb.h:9
int OpenFile(const std::string fname, const long file_size_min=0, const int sec_wait=10, const int n_wait=0)
bool JumpCodaEvent(unsigned int &event_count, int *&event_words, const unsigned int n_evt)
bool NextCodaEvent(unsigned int &event_count, int *&event_words)
static std::string GetCodaFilePath(const int run)
Definition: UtilOnline.cc:143
static std::string GetEndFilePath(const int run)
Definition: UtilOnline.cc:148
int evClose(int handle)
Definition: evio.c:586
int evOpen(char *fname, char *flags, int *handle)
Definition: evio.c:187
int evRead(int handle, int *buffer, int buflen)
Definition: evio.c:369