source: trunk/FACT++/src/EventBuilderWrapper.h@ 11605

Last change on this file since 11605 was 11605, checked in by tbretz, 13 years ago
Changed the definition of min/max in Compare so that it is compatible with FwVersion; added some TODO outputs; removed some unsused variables in function calls
File size: 55.5 KB
Line 
1#ifndef FACT_EventBuilderWrapper
2#define FACT_EventBuilderWrapper
3
4#include <sstream>
5
6#if BOOST_VERSION < 104400
7#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 4))
8#undef BOOST_HAS_RVALUE_REFS
9#endif
10#endif
11#include <boost/thread.hpp>
12#include <boost/date_time/posix_time/posix_time_types.hpp>
13
14
15#include <CCfits/CCfits>
16
17#include "EventBuilder.h"
18
19extern "C" {
20 extern void StartEvtBuild();
21 extern int CloseRunFile(uint32_t runId, uint32_t closeTime, uint32_t maxEvt);
22}
23
24namespace ba = boost::asio;
25namespace bs = boost::system;
26
27using ba::ip::tcp;
28
29using namespace std;
30
31class DataFileImp : public MessageImp
32{
33 uint32_t fRunId;
34
35 int Write(const Time &time, const std::string &txt, int qos)
36 {
37 return fMsg.Write(time, txt, qos);
38 }
39
40protected:
41 MessageImp &fMsg;
42 string fFileName;
43
44public:
45 DataFileImp(uint32_t id, MessageImp &imp) : fRunId(id), fMsg(imp) { }
46 virtual ~DataFileImp() { }
47
48 virtual bool OpenFile(RUN_HEAD* h) = 0;
49 virtual bool WriteEvt(EVENT *) = 0;
50 virtual bool Close(RUN_TAIL * = 0) = 0;
51
52 const string &GetFileName() const { return fFileName; }
53
54 uint32_t GetRunId() const { return fRunId; }
55
56 // --------------------------------------------------------------------------
57 //
58 //! This creates an appropriate file name for a particular run number and type
59 //! @param runNumber the run number for which a filename is to be created
60 //! @param runType an int describing the kind of run. 0=Data, 1=Pedestal, 2=Calibration, 3=Calibrated data
61 //! @param extension a string containing the extension to be appened to the file name
62 //
63 static string FormFileName(uint32_t runid, string extension)
64 {
65 ostringstream name;
66 name << Time().NightAsInt() << '_' << setfill('0') << setw(3) << runid << '.' << extension;
67 return name.str();
68 }
69};
70
71class DataFileNone : public DataFileImp
72{
73public:
74 DataFileNone(uint32_t id, MessageImp &imp) : DataFileImp(id, imp) { }
75
76 Time fTime;
77
78 bool OpenFile(RUN_HEAD* h)
79 {
80 fFileName = "/dev/null";
81
82 ostringstream str;
83 str << this << " - "
84 << "OPEN_FILE #" << GetRunId() << ":"
85 << " Ver=" << h->Version
86 << " Typ=" << h->RunType
87 << " Nb=" << h->NBoard
88 << " Np=" << h->NPix
89 << " NTm=" << h->NTm
90 << " roi=" << h->Nroi;
91
92 Debug(str);
93
94 fTime = Time();
95
96 return true;
97 }
98 bool WriteEvt(EVENT *e)
99 {
100 const Time now;
101 if (now-fTime<boost::posix_time::seconds(5))
102 return true;
103
104 fTime = now;
105
106 ostringstream str;
107 str << this << " - EVENT #" << e->EventNum;
108 Debug(str);
109
110 return true;
111 }
112 bool Close(RUN_TAIL * = 0)
113 {
114 ostringstream str;
115 str << this << " - CLOSE FILE #" << GetRunId();
116
117 Debug(str);
118
119 return true;
120 }
121};
122
123class DataFileDebug : public DataFileNone
124{
125public:
126 DataFileDebug(uint32_t id, MessageImp &imp) : DataFileNone(id, imp) { }
127
128 bool WriteEvt(EVENT *e)
129 {
130 cout << "WRITE_EVENT #" << GetRunId() << " (" << e->EventNum << ")" << endl;
131 cout << " Typ=" << e->TriggerType << endl;
132 cout << " roi=" << e->Roi << endl;
133 cout << " trg=" << e->SoftTrig << endl;
134 cout << " tim=" << e->PCTime << endl;
135
136 return true;
137 }
138};
139
140#include "FAD.h"
141
142class DataFileRaw : public DataFileImp
143{
144 ofstream fOut;
145
146 off_t fPosTail;
147
148 uint32_t fCounter;
149
150
151 // WRITE uint32_t 0xFAC77e1e (FACT Tele)
152 // ===
153 // WRITE uint32_t TYPE(>0) == 1
154 // WRITE uint32_t ID(>0) == 0
155 // WRITE uint32_t VERSION(>0) == 1
156 // WRITE uint32_t LENGTH
157 // -
158 // WRITE uint32_t TELESCOPE ID
159 // WRITE uint32_t RUNID
160 // ===
161 // WRITE uint32_t TYPE(>0) == 2
162 // WRITE uint32_t ID(>0) == 0
163 // WRITE uint32_t VERSION(>0) == 1
164 // WRITE uint32_t LENGTH
165 // -
166 // WRITE HEADER
167 // ===
168 // [ 40 TIMES
169 // WRITE uint32_t TYPE(>0) == 3
170 // WRITE uint32_t ID(>0) == 0..39
171 // WRITE uint32_t VERSION(>0) == 1
172 // WRITE uint32_t LENGTH
173 // -
174 // WRITE BOARD-HEADER
175 // ]
176 // ===
177 // WRITE uint32_t TYPE(>0) == 4
178 // WRITE uint32_t ID(>0) == 0
179 // WRITE uint32_t VERSION(>0) == 1
180 // WRITE uint32_t LENGTH
181 // -
182 // WRITE FOOTER (empty)
183 // ===
184 // [ N times
185 // WRITE uint32_t TYPE(>0) == 10
186 // WRITE uint32_t ID(>0) == counter
187 // WRITE uint32_t VERSION(>0) == 1
188 // WRITE uint32_t LENGTH HEADER
189 // -
190 // WRITE HEADER+DATA
191 // ]
192 // ===
193 // WRITE uint32_t TYPE ==0
194 // WRITE uint32_t VERSION==0
195 // WRITE uint32_t LENGTH ==0
196 // ===
197 // Go back and write footer
198
199public:
200 DataFileRaw(uint32_t id, MessageImp &imp) : DataFileImp(id, imp), fPosTail(0) { }
201 ~DataFileRaw() { if (fOut.is_open()) Close(); }
202
203 void WriteBlockHeader(uint32_t type, uint32_t ver, uint32_t cnt, uint32_t len)
204 {
205 const uint32_t val[4] = { type, ver, cnt, len };
206
207 fOut.write(reinterpret_cast<const char*>(val), sizeof(val));
208 }
209
210 template<typename T>
211 void WriteValue(const T &t)
212 {
213 fOut.write(reinterpret_cast<const char*>(&t), sizeof(T));
214 }
215
216 enum
217 {
218 kEndOfFile = 0,
219 kIdentifier = 1,
220 kRunHeader,
221 kBoardHeader,
222 kRunSummary,
223 kEvent,
224 };
225
226 bool OpenFile(RUN_HEAD *h)
227 {
228 const string name = FormFileName(GetRunId(), "bin");
229 if (access(name.c_str(), F_OK)==0)
230 {
231 Error("File '"+name+"' already exists.");
232 return false;
233 }
234
235 fFileName = name;
236
237 errno = 0;
238 fOut.open(name.c_str(), ios_base::out);
239 if (!fOut)
240 {
241 ostringstream str;
242 str << "ofstream::open() failed for '" << name << "': " << strerror(errno) << " [errno=" << errno << "]";
243 Error(str);
244
245 return false;
246 }
247
248 fCounter = 0;
249
250 static uint32_t FACT = 0xFAC77e1e;
251
252 fOut.write(reinterpret_cast<char*>(&FACT), 4);
253
254 WriteBlockHeader(kIdentifier, 1, 0, 8);
255 WriteValue(uint32_t(0));
256 WriteValue(GetRunId());
257
258 WriteBlockHeader(kRunHeader, 1, 0, sizeof(RUN_HEAD)-sizeof(PEVNT_HEADER*));
259 fOut.write(reinterpret_cast<char*>(h), sizeof(RUN_HEAD)-sizeof(PEVNT_HEADER*));
260
261 for (int i=0; i<40; i++)
262 {
263 WriteBlockHeader(kBoardHeader, 1, i, sizeof(PEVNT_HEADER));
264 fOut.write(reinterpret_cast<char*>(h->FADhead+i), sizeof(PEVNT_HEADER));
265 }
266
267 // FIXME: Split this
268 const vector<char> block(sizeof(uint32_t)+sizeof(RUN_TAIL));
269 WriteBlockHeader(kRunSummary, 1, 0, block.size());
270
271 fPosTail = fOut.tellp();
272 fOut.write(block.data(), block.size());
273
274 if (!fOut)
275 {
276 ostringstream str;
277 str << "ofstream::write() failed for '" << name << "': " << strerror(errno) << " [errno=" << errno << "]";
278 Error(str);
279
280 return false;
281 }
282
283 return true;
284 }
285 bool WriteEvt(EVENT *evt)
286 {
287 const int sh = sizeof(EVENT)-2 + NPIX*evt->Roi*2;
288
289 WriteBlockHeader(kEvent, 1, fCounter++, sh);
290 fOut.write(reinterpret_cast<char*>(evt)+2, sh);
291 return true;
292 }
293 bool Close(RUN_TAIL *tail= 0)
294 {
295 WriteBlockHeader(kEndOfFile, 0, 0, 0);
296
297 if (tail)
298 {
299 fOut.seekp(fPosTail);
300
301 WriteValue(uint32_t(1));
302 fOut.write(reinterpret_cast<char*>(tail), sizeof(RUN_TAIL));
303 }
304
305 if (!fOut)
306 {
307 ostringstream str;
308
309 str << "ofstream::write() failed for '" << GetFileName() << "': " << strerror(errno) << " [errno=" << errno << "]";
310 Error(str);
311
312 return false;
313 }
314
315 fOut.close();
316
317 if (!fOut)
318 {
319 ostringstream str;
320 str << "ofstream::close() failed for '" << GetFileName() << "': " << strerror(errno) << " [errno=" << errno << "]";
321 Error(str);
322
323 return false;
324 }
325
326 return true;
327 }
328};
329
330#ifdef HAVE_FITS
331class DataFileFits : public DataFileImp
332{
333 CCfits::FITS* fFile; /// The pointer to the CCfits FITS file
334 CCfits::Table* fTable; /// The pointer to the CCfits binary table
335
336 uint64_t fNumRows; ///the number of rows that have been written already to the FITS file.
337
338 Converter *fConv;
339
340public:
341 DataFileFits(uint32_t runid, MessageImp &imp) :
342 DataFileImp(runid, imp), fFile(0), fNumRows(0), fConv(0)
343 {
344 }
345
346 // --------------------------------------------------------------------------
347 //
348 //! Default destructor
349 //! The Fits file SHOULD have been closed already, otherwise the informations
350 //! related to the RUN_TAIL will NOT be written to the file.
351 //
352 ~DataFileFits() { Close(); delete fConv; }
353
354 // --------------------------------------------------------------------------
355 //
356 //! Add a new column to the vectors storing the column data.
357 //! @param names the vector of string storing the columns names
358 //! @param types the vector of string storing the FITS data format
359 //! @param numElems the number of elements in this column
360 //! @param type the char describing the FITS data format
361 //! @param name the name of the particular column to be added.
362 //
363 inline void AddColumnEntry(vector<string>& names, vector<string>& types, int numElems, char type, string name)
364 {
365 names.push_back(name);
366
367 ostringstream str;
368 if (numElems != 1)
369 str << numElems;
370 str << type;
371 types.push_back(str.str());
372 }
373
374 // --------------------------------------------------------------------------
375 //
376 //! Writes a single header key entry
377 //! @param name the name of the key
378 //! @param value its value
379 //! @param comment the comment associated to that key
380 //
381 //FIXME this function is a duplicate from the class Fits. should we try to merge it ?
382 template <typename T>
383 void WriteKey(const string &name, const T &value, const string &comment)
384 {
385 try
386 {
387 fTable->addKey(name, value, comment);
388 }
389 catch (CCfits::FitsException e)
390 {
391 ostringstream str;
392 str << "Could not add header key " << name;
393 Error(str);
394 }
395 }
396
397 template <typename T>
398 void WriteKey(const string &name, const int idx, const T &value, const string &comment)
399 {
400 ostringstream str;
401 str << name << idx;
402
403 ostringstream com;
404 com << "Board " << setw(2) << idx << ": " << comment;
405
406 WriteKey(str.str(), value, com.str());
407 }
408
409 // --------------------------------------------------------------------------
410 //
411 //! DataFileFits constructor. This is the one that should be used, not the default one (parameter-less)
412 //! @param runid This parameter should probably be removed. I first thought it was the run number, but apparently it is not
413 //! @param h a pointer to the RUN_HEAD structure that contains the informations relative to this run
414 //
415 bool OpenFile(RUN_HEAD* h)
416 {
417 //Form filename, based on runid and run-type
418 const string fileName = FormFileName(GetRunId(), "fits");
419 if (access(fileName.c_str(), F_OK)==0)
420 {
421 Error("File '"+fileName+"' already exists.");
422 return false;
423 }
424
425 fFileName = fileName;
426
427 /*
428 out <<
429 "SIMPLE = T / file does conform to FITS standard "
430 "BITPIX = 8 / number of bits per data pixel "
431 "NAXIS = 0 / number of data axes "
432 "EXTEND = T / FITS dataset may contain extensions "
433 "COMMENT FITS (Flexible Image Transport System) format is defined in 'Astronomy"
434 "COMMENT and Astrophysics', volume 376, page 359; bibcode: 2001A&A...376..359H "
435 "END ";
436 for (int i=0; i<29; i++)
437 out << " "
438 */
439
440 //create the FITS object
441 try
442 {
443 fFile = new CCfits::FITS(fileName, CCfits::RWmode::Write);
444 }
445 catch (CCfits::FitsException e)
446 {
447 ostringstream str;
448 str << "Could not open FITS file " << fileName << ": " << e.message();
449 Error(str);
450 return false;
451 }
452
453 h->NroiTM = 0;
454
455 vector<string> colNames;
456 vector<string> dataTypes;
457 AddColumnEntry(colNames, dataTypes, 1, 'J', "EventNum");
458 AddColumnEntry(colNames, dataTypes, 1, 'I', "TriggerType");
459 AddColumnEntry(colNames, dataTypes, 1, 'J', "NumBoards");
460 AddColumnEntry(colNames, dataTypes, 1, 'J', "reserved");
461 AddColumnEntry(colNames, dataTypes, 1, 'J', "SoftTrig");
462 AddColumnEntry(colNames, dataTypes, 2, 'J', "PCTime");
463 AddColumnEntry(colNames, dataTypes, h->NBoard, 'J', "BoardTime");
464 AddColumnEntry(colNames, dataTypes, h->NPix, 'I', "StartCellData");
465 AddColumnEntry(colNames, dataTypes, h->NTm, 'I', "StartCellTimeMarker");
466 AddColumnEntry(colNames, dataTypes, h->NPix*h->Nroi, 'I', "Data");
467 AddColumnEntry(colNames, dataTypes, h->NTm*h->NroiTM, 'I', "TimeMarker");
468
469 // Write length of physical pipeline (1024)
470
471 /*
472 ostringstream fmt;
473 fmt << "I:1"; // uint32_t EventNum
474 fmt << ";S:1"; // uint16_t TriggerType
475 fmt << ";I:5"; // uint32_t NumBoards, reserved, SoftTrig, PCTime, PCUsec
476 fmt << ";I:" << h->NBoard; // uint32_t BoardTime[NBOARDS]
477 fmt << ";S:" << h->NPix+h->NTm; // int16_t StartPix[NPIX], StartTM[NTMARK]
478 fmt << ";S:" << h->NPix*h->Nroi + h->NTm*h->NroiTM; // int16_t Adc_Data[]
479 */
480 fConv = new Converter(Converter::ToFormat(dataTypes));
481
482 //actually create the table
483 try
484 {
485 fTable = fFile->addTable("Events", 0, colNames, dataTypes);
486 }
487 catch (const CCfits::FitsException &e)
488 {
489 ostringstream str;
490 str << "Could not create FITS table 'Events' in file " << fileName << " reason: " << e.message();
491 Error(str);
492 return false;
493 }
494
495 if (fTable->rows() != 0)
496 {
497 Error("FITS table created on the fly looks non-empty.");
498 return false;
499 }
500
501 //write header data
502 //first the "standard" keys
503 WriteKey("EXTREL", 1.0f, "Release Number");
504 WriteKey("TELESCOP", "FACT", "Telescope that acquired this data");
505 WriteKey("ORIGIN", "ISDC", "Institution that wrote the file");
506 WriteKey("CREATOR", "fadctrl", "Program that wrote this file (FACT++ Event Builder)");
507
508 WriteKey("PACKAGE", PACKAGE_NAME, "Package name");
509 WriteKey("VERSION", PACKAGE_VERSION, "Package description");
510 WriteKey("COMPILED", __DATE__" "__TIME__, "Compile time");
511 WriteKey("REVISION", REVISION, "SVN revision");
512 //WriteKey("CONTACT", PACKAGE_BUGREPORT, "Current package maintainer");
513 //WriteKey("URL", PACKAGE_URL, "Current repositiory location");
514
515 WriteKey("BLDVER", h->Version, "Builder version");
516 WriteKey("RUNID", GetRunId(), "Run number");
517 WriteKey("RUNTYPE", h->RunType, "Type of run");
518 WriteKey("NBOARD", h->NBoard, "Number of acquisition boards");
519 WriteKey("NPIX", h->NPix, "Number of pixels");
520 WriteKey("NTMARK", h->NTm, "Number of Time marks");
521 WriteKey("NROI", h->Nroi, "Number of slices per pixels");
522 WriteKey("NROITM", h->NroiTM, "Number of slices per time-marker");
523
524 const Time now;
525 WriteKey("TIMESYS", "UTC", "Time system");
526 WriteKey("DATE", now.Iso(), "File creation date");
527 WriteKey("NIGHT", now.NightAsInt(), "Night as int");
528
529 //FIXME should we also put the start and stop time of the received data ?
530 //now the events header related variables
531 WriteKey("CAMERA", "MGeomCamFACT", "");
532 WriteKey("DAQ", "DRS4", "");
533
534 WriteKey("ADCCOUNT", 2.0f, "ADC Counts per milliVolt");
535
536 Info("==> TODO: Write sampling frequency...");
537
538 // Write a single key for:
539 // -----------------------
540 // Start package flag
541 // package length
542 // version number
543 // status
544 // Prescaler
545
546 // Write 40 kays for (?)
547 // Phaseshift
548 // DAC
549
550 for (int i=0; i<h->NBoard; i++)
551 {
552 const PEVNT_HEADER &hh = h->FADhead[i];
553
554 // Header values whihc won't change during the run
555 WriteKey("ID", i, hh.board_id, "Board ID");
556 WriteKey("DNA", i, hh.DNA, "DNA");
557 WriteKey("FWVER", i, hh.version_no, "Firmware Version");
558 }
559
560
561 /*
562 //now the boards related keywords
563 for (int i=0; i<h->NBoard; i++)
564 {
565 const PEVNT_HEADER &hh = h->FADhead[i];
566
567 WriteKey("STPKGFG", i, hh.start_package_flag, "Start package flag");
568 WriteKey("PKGLEN", i, hh.package_length, "Package length");
569 WriteKey("STATUS", i, hh.PLLLCK, "");
570
571// WriteKey("TRIGCRC", i, hh.trigger_crc, "Trigger CRC");
572// WriteKey("TRIGTYP", i, hh.trigger_type, "Trigger type");
573// WriteKey("TRIGID", i, hh.trigger_id, "Trigger ID");
574// WriteKey("EVTCNTR", i, hh.fad_evt_counter, "FAD Event Counter");
575// WriteKey("REFCLK", i, hh.REFCLK_frequency, "Reference Clock Frequency");
576
577 WriteKey("PHASESH", i, hh.adc_clock_phase_shift, "ADC clock phase shift");
578 WriteKey("TRGGEN", i, hh.number_of_triggers_to_generate, "Number of triggers to generate");
579 WriteKey("PRESC", i, hh.trigger_generator_prescaler, "Trigger generator prescaler");
580 WriteKey("RUNNB", i, hh.runnumber, "Run number");
581
582 WriteKey("TIME", i, hh.time, "Time");
583
584// for (int j=0;j<NTemp;j++)
585// {
586// str.str(""); str2.str("");
587// str << "DRS_T" << i << j;
588// str2 << "DRS temperature #" << i << " " << j;
589// WriteKey(str.str(), h->FADhead[i].drs_temperature[j], str2.str());
590// }
591 for (int j=0;j<NDAC;j++)
592 WriteKey("DAC", i*NDAC+j, hh.dac[j], "DAC");
593 }
594*/
595
596 //Last but not least, add header keys that will be updated when closing the file
597 WriteFooter(NULL);
598
599 return true;
600 }
601
602
603 int WriteColumns(size_t &start, size_t size, const void *e)
604 {
605 int status = 0;
606 fits_write_tblbytes(fFile->fitsPointer(), fNumRows, start, size,
607 (unsigned char*)e, &status);
608 if (status)
609 {
610 char text[30];//max length of cfitsio error strings (from doc)
611 fits_get_errstatus(status, text);
612
613 ostringstream str;
614 str << "Writing FITS row " << fNumRows << ": " << text << " (file_write_tblbytes, rc=" << status << ")";
615 Error(str);
616 }
617
618 start += size;
619 return status;
620 }
621
622 // --------------------------------------------------------------------------
623 //
624 //! This writes one event to the file
625 //! @param e the pointer to the EVENT
626 //
627 virtual bool WriteEvt(EVENT *e)
628 {
629 //FIXME As discussed earlier, we do not swap the bytes yet.
630 fTable->makeThisCurrent();
631
632 //insert a new row
633 int status(0);
634 if (fits_insert_rows(fTable->fitsPointer(), fNumRows, 1, &status))
635 {
636 char text[30];//max length of cfitsio error strings (from doc)
637 fits_get_errstatus(status, text);
638
639 ostringstream str;
640 str << "Inserting row " << fNumRows << " into " << fFileName << ": " << text << " (fits_insert_rows, rc=" << status << ")";
641 Error(str);
642
643 return false;
644 }
645 fNumRows++;
646
647 // FIXME: Get NPIX and NTMARK from header
648 const size_t sz = sizeof(EVENT) + sizeof(e->StartPix)*e->Roi+sizeof(e->StartTM)*e->RoiTM;
649
650 const vector<char> data = fConv->ToFits(reinterpret_cast<char*>(e)+4, sz-4);
651
652 // column size pointer
653 size_t col = 1;
654 if (!WriteColumns(col, data.size(), data.data()))
655 return true;
656
657 //TODO output an error
658 return false;
659
660 /*
661 //write the data, chunk by chunk
662 //FIXME hard-coded size corresponds to current variables of the event, in bytes.
663 //FIXME no padding was taken into account. Because smallest member is 2 bytes, I don't think that this should be a problem.
664 const long sizeInBytesOfEventBeforePointers = 16;
665
666 long col = 1;
667 if (FitsWriteTblBytes(col, sizeInBytesOfEventBeforePointers, e))
668 {
669 //TODO output an error
670 return false;
671 }
672 if (FitsWriteTblBytes(col, NBOARDS*2, e->BoardTime))
673 {
674 //TODO output an error
675 return false;
676 }
677 if (FitsWriteTblBytes(col, NPIX*2, e->StartPix))
678 {
679 //TODO output an error
680 return false;
681 }
682 if (FitsWriteTblBytes(col, NTMARK*2, e->StartTM))
683 {
684 //TODO output an error
685 return false;
686 }
687 if (FitsWriteTblBytes(col, NPIX*fRoi*2, e->Adc_Data))
688 {
689 //TODO output an error
690 return false;
691 }
692 return true;*/
693 }
694
695 void WriteFooter(RUN_TAIL *rt)
696 {
697 //write final header keys
698 fTable->makeThisCurrent();
699
700 WriteKey("NBEVTOK", rt ? rt->nEventsOk : uint32_t(0),
701 "How many events were written");
702
703 WriteKey("NBEVTREJ", rt ? rt->nEventsRej : uint32_t(0),
704 "How many events were rejected by SW-trig");
705
706 WriteKey("NBEVTBAD", rt ? rt->nEventsBad : uint32_t(0),
707 "How many events were rejected by Error");
708
709 //FIXME shouldn't we convert start and stop time to MjD first ?
710 //FIXME shouldn't we also add an MjD reference ?
711
712 WriteKey("TSTART", rt ? rt->PCtime0 : uint32_t(0),
713 "Time when first event received");
714
715 WriteKey("TSTOP", rt ? rt->PCtimeX : uint32_t(0),
716 "Time when last event received");
717 }
718
719 // --------------------------------------------------------------------------
720 //
721 //! Closes the file, and before this it write the TAIL data
722 //! @param rt the pointer to the RUN_TAIL data structure
723 //
724 virtual bool Close(RUN_TAIL *rt = 0)
725 {
726 if (!fFile)
727 return false;
728
729 WriteFooter(rt);
730
731 delete fFile;
732 fFile = NULL;
733
734 return true;
735 }
736
737};
738#else
739#define DataFileFits DataFileRaw
740#endif
741
742#include "DimWriteStatistics.h"
743
744class EventBuilderWrapper
745{
746public:
747 // FIXME
748 static EventBuilderWrapper *This;
749
750 MessageImp &fMsg;
751
752private:
753 boost::thread fThread;
754
755 enum CommandStates_t // g_runStat
756 {
757 kAbort = -2, // quit as soon as possible ('abort')
758 kExit = -1, // stop reading, quit when buffered events done ('exit')
759 kInitialize = 0, // 'initialize' (e.g. dim not yet started)
760 kHybernate = 1, // do nothing for long time ('hybernate') [wakeup within ~1sec]
761 kSleep = 2, // do nothing ('sleep') [wakeup within ~10msec]
762 kModeFlush = 10, // read data from camera, but skip them ('flush')
763 kModeTest = 20, // read data and process them, but do not write to disk ('test')
764 kModeFlag = 30, // read data, process and write all to disk ('flag')
765 kModeRun = 40, // read data, process and write selected to disk ('run')
766 };
767
768 enum
769 {
770 kCurrent = 0,
771 kTotal = 1,
772 kEventId = 2,
773 kTriggerId = 3,
774 };
775
776 enum FileFormat_t
777 {
778 kNone = 0,
779 kDebug,
780 kFits,
781 kRaw
782 };
783
784 FileFormat_t fFileFormat;
785
786
787 uint32_t fMaxRun;
788 uint32_t fLastOpened;
789 uint32_t fLastClosed;
790 uint32_t fNumEvts[4];
791
792 DimWriteStatistics fDimWriteStats;
793 DimDescribedService fDimRuns;
794 DimDescribedService fDimEvents;
795 DimDescribedService fDimEventData;
796 DimDescribedService fDimFwVersion;
797 DimDescribedService fDimRunNumber;
798 DimDescribedService fDimStatus;
799 DimDescribedService fDimDNA;
800 DimDescribedService fDimTemperature;
801 DimDescribedService fDimPrescaler;
802 DimDescribedService fDimRefClock;
803 DimDescribedService fDimStatistics1;
804 DimDescribedService fDimStatistics2;
805
806 bool fDebugStream;
807 bool fDebugRead;
808 bool fDebugLog;
809
810 uint32_t fRunNumber;
811
812 void InitRunNumber()
813 {
814 // FIXME: Add a check that we are not too close to noon!
815 //const int night = Time().NightAsInt();
816
817 fRunNumber = 1000;
818
819 while (--fRunNumber>0)
820 {
821 const string name = DataFileImp::FormFileName(fRunNumber, "");
822
823 if (access((name+"bin").c_str(), F_OK) == 0)
824 break;
825 if (access((name+"fits").c_str(), F_OK) == 0)
826 break;
827 }
828
829 fRunNumber++;
830
831 ostringstream str;
832 str << "Starting with run number " << fRunNumber;
833 fMsg.Message(str);
834
835 fMsg.Info(" ==> TODO: Run-number detection doesn't work when noon passes!");
836 fMsg.Info(" ==> TODO: Crosscheck with database!");
837 }
838
839public:
840 EventBuilderWrapper(MessageImp &imp) : fMsg(imp),
841 fFileFormat(kNone), fMaxRun(0), fLastOpened(0), fLastClosed(0),
842 fDimWriteStats ("FAD_CONTROL", imp),
843 fDimRuns ("FAD_CONTROL/RUNS", "I:5;C", ""),
844 fDimEvents ("FAD_CONTROL/EVENTS", "I:4", ""),
845 fDimEventData ("FAD_CONTROL/EVENT_DATA", "S:1;I:1;S:1;I:1;I:2;I:40;S:1440;S:160;S", ""),
846 fDimFwVersion ("FAD_CONTROL/FIRMWARE_VERSION", "F:42", ""),
847 fDimRunNumber ("FAD_CONTROL/RUN_NUMBER", "I:42", ""),
848 fDimStatus ("FAD_CONTROL/STATUS", "S:42", ""),
849 fDimDNA ("FAD_CONTROL/DNA", "X:40", ""),
850 fDimTemperature ("FAD_CONTROL/TEMPERATURE", "F:82", ""),
851 fDimPrescaler ("FAD_CONTROL/PRESCALER", "S:42", ""),
852 fDimRefClock ("FAD_CONTROL/REFERENCE_CLOCK", "I:42", ""),
853 fDimStatistics1 ("FAD_CONTROL/STATISTICS1", "I:3;I:5;X:4;I:3;I:3;I:40;I:1;I:2;C:40;I:40;I:40;X:40", ""),
854 fDimStatistics2 ("FAD_CONTROL/STATISTICS2", "I:1;I:280;X:40;I:40;I:4;I:4;I:2;I:2;I:3;C:40", ""),
855 fDebugStream(false), fDebugRead(false), fDebugLog(false)
856 {
857 if (This)
858 throw logic_error("EventBuilderWrapper cannot be instantiated twice.");
859
860 This = this;
861
862 memset(fNumEvts, 0, sizeof(fNumEvts));
863
864 fDimEvents.Update(fNumEvts);
865
866 for (size_t i=0; i<40; i++)
867 ConnectSlot(i, tcp::endpoint());
868
869 InitRunNumber();
870 }
871 virtual ~EventBuilderWrapper()
872 {
873 Abort();
874
875 // FIXME: Used timed_join and abort afterwards
876 // What's the maximum time the eb need to abort?
877 fThread.join();
878 //ffMsg.Info("EventBuilder stopped.");
879
880 for (vector<DataFileImp*>::iterator it=fFiles.begin(); it!=fFiles.end(); it++)
881 delete *it;
882 }
883
884 struct RunDescription
885 {
886 uint32_t maxtime;
887 uint32_t maxevt;
888
889 FAD::Configuration reference;
890 };
891
892 map<uint32_t, RunDescription> fExpectedRuns;
893
894 uint32_t StartNewRun(int64_t maxtime, int64_t maxevt, const FAD::Configuration &ref)
895 {
896 if (maxtime<=0 || maxtime>24*60*60)
897 maxtime = 24*60*60;
898 if (maxevt<=0 || maxevt>INT32_MAX)
899 maxevt = INT32_MAX;
900
901 const RunDescription descr =
902 {
903 uint32_t(maxtime),
904 uint32_t(maxevt),
905 ref
906 };
907
908 // FIMXE: Maybe reset an event counter so that the mcp can count events?
909
910 fExpectedRuns[fRunNumber] = descr;
911 return fRunNumber++;
912 }
913
914 bool IsThreadRunning()
915 {
916 return !fThread.timed_join(boost::posix_time::microseconds(0));
917 }
918
919 void SetMaxMemory(unsigned int mb) const
920 {
921 /*
922 if (mb*1000000<GetUsedMemory())
923 {
924 // ffMsg.Warn("...");
925 return;
926 }*/
927
928 g_maxMem = size_t(mb)*1000000;
929 }
930
931 void StartThread(const vector<tcp::endpoint> &addr)
932 {
933 if (IsThreadRunning())
934 {
935 fMsg.Warn("Start - EventBuilder still running");
936 return;
937 }
938
939 fLastMessage.clear();
940
941 for (size_t i=0; i<40; i++)
942 ConnectSlot(i, addr[i]);
943
944 g_runStat = kModeRun;
945
946 fMsg.Message("Starting EventBuilder thread");
947
948 fThread = boost::thread(StartEvtBuild);
949 }
950 void ConnectSlot(unsigned int i, const tcp::endpoint &addr)
951 {
952 if (i>39)
953 return;
954
955 if (addr==tcp::endpoint())
956 {
957 DisconnectSlot(i);
958 return;
959 }
960
961 g_port[i].sockAddr.sin_family = AF_INET;
962 g_port[i].sockAddr.sin_addr.s_addr = htonl(addr.address().to_v4().to_ulong());
963 g_port[i].sockAddr.sin_port = htons(addr.port());
964 // In this order
965 g_port[i].sockDef = 1;
966 }
967 void DisconnectSlot(unsigned int i)
968 {
969 if (i>39)
970 return;
971
972 g_port[i].sockDef = 0;
973 // In this order
974 g_port[i].sockAddr.sin_family = AF_INET;
975 g_port[i].sockAddr.sin_addr.s_addr = 0;
976 g_port[i].sockAddr.sin_port = 0;
977 }
978 void IgnoreSlot(unsigned int i)
979 {
980 if (i>39)
981 return;
982 if (g_port[i].sockAddr.sin_port==0)
983 return;
984
985 g_port[i].sockDef = -1;
986 }
987
988
989 void Abort()
990 {
991 fMsg.Message("Signal abort to EventBuilder thread...");
992 g_runStat = kAbort;
993 }
994
995 void ResetThread(bool soft)
996 {
997 /*
998 if (g_reset > 0)
999
1000 * suspend reading
1001 * reset = g_reset;
1002 * g_reset=0
1003
1004 * reset% 10
1005 == 0 leave event Buffers as they are
1006 == 1 let all buffers drain (write (incomplete) events)
1007 > 1 flush all buffers (do not write buffered events)
1008
1009 * (reset/10)%10
1010 > 0 close all sockets and destroy them (also free the
1011 allocated read-buffers)
1012 recreate before resuming operation
1013 [ this is more than just close/open that can be
1014 triggered by e.g. close/open the base-socket ]
1015
1016 * (reset/100)%10
1017 > 0 close all open run-files
1018
1019 * (reset/1000)
1020 sleep so many seconds before resuming operation
1021 (does not (yet) take into account time left when waiting
1022 for buffers getting empty ...)
1023
1024 * resume_reading
1025
1026 */
1027 fMsg.Message("Signal reset to EventBuilder thread...");
1028 g_reset = soft ? 101 : 102;
1029 }
1030
1031 void Exit()
1032 {
1033 fMsg.Message("Signal exit to EventBuilder thread...");
1034 g_runStat = kExit;
1035 }
1036
1037 /*
1038 void Wait()
1039 {
1040 fThread.join();
1041 ffMsg.Message("EventBuilder stopped.");
1042 }*/
1043
1044 void Hybernate() const { g_runStat = kHybernate; }
1045 void Sleep() const { g_runStat = kSleep; }
1046 void FlushMode() const { g_runStat = kModeFlush; }
1047 void TestMode() const { g_runStat = kModeTest; }
1048 void FlagMode() const { g_runStat = kModeFlag; }
1049 void RunMode() const { g_runStat = kModeRun; }
1050
1051 // FIXME: To be removed
1052 void SetMode(int mode) const { g_runStat = mode; }
1053
1054 bool IsConnected(int i) const { return gi_NumConnect[i]==7; }
1055 bool IsConnecting(int i) const { return !IsConnected(i) && !IsDisconnected(i); }
1056 bool IsDisconnected(int i) const { return gi_NumConnect[i]<=0 && g_port[i].sockDef==0; }
1057 int GetNumConnected(int i) const { return gi_NumConnect[i]; }
1058
1059 void SetIgnore(int i, bool b) const { if (g_port[i].sockDef!=0) g_port[i].sockDef=b?-1:1; }
1060 bool IsIgnored(int i) const { return g_port[i].sockDef==-1; }
1061
1062 void SetOutputFormat(FileFormat_t f) { fFileFormat = f; }
1063
1064 void SetDebugLog(bool b) { fDebugLog = b; }
1065
1066 void SetDebugStream(bool b)
1067 {
1068 fDebugStream = b;
1069 if (b)
1070 return;
1071
1072 for (int i=0; i<40; i++)
1073 {
1074 if (!fDumpStream[i].is_open())
1075 continue;
1076
1077 fDumpStream[i].close();
1078
1079 ostringstream name;
1080 name << "socket_dump-" << setfill('0') << setw(2) << i << ".bin";
1081 fMsg.Message("Closed file '"+name.str()+"'");
1082 }
1083 }
1084
1085 void SetDebugRead(bool b)
1086 {
1087 fDebugRead = b;
1088 if (b || !fDumpRead.is_open())
1089 return;
1090
1091 fDumpRead.close();
1092 fMsg.Message("Closed file 'socket_events.txt'");
1093 }
1094
1095// size_t GetUsedMemory() const { return gi_usedMem; }
1096
1097 virtual int CloseOpenFiles() { CloseRunFile(0, 0, 0); return 0; }
1098
1099
1100 /*
1101 struct OpenFileToDim
1102 {
1103 int code;
1104 char fileName[FILENAME_MAX];
1105 };
1106
1107 SignalRunOpened(runid, filename);
1108 // Send num open files
1109 // Send runid, (more info about the run?), filename via dim
1110
1111 SignalEvtWritten(runid);
1112 // Send num events written of newest file
1113
1114 SignalRunClose(runid);
1115 // Send new num open files
1116 // Send empty file-name if no file is open
1117
1118 */
1119
1120 // -------------- Mapped event builder callbacks ------------------
1121
1122 void UpdateRuns(const string &fname="")
1123 {
1124 uint32_t values[5] =
1125 {
1126 static_cast<uint32_t>(fFiles.size()),
1127 0xffffffff,
1128 0,
1129 fLastOpened,
1130 fLastClosed
1131 };
1132
1133 for (vector<DataFileImp*>::const_iterator it=fFiles.begin();
1134 it!=fFiles.end(); it++)
1135 {
1136 const DataFileImp *file = *it;
1137
1138 if (file->GetRunId()<values[1])
1139 values[1] = file->GetRunId();
1140
1141 if (file->GetRunId()>values[2])
1142 values[2] = file->GetRunId();
1143 }
1144
1145 fMaxRun = values[2];
1146
1147 vector<char> data(sizeof(values)+fname.size()+1);
1148 memcpy(data.data(), values, sizeof(values));
1149 strcpy(data.data()+sizeof(values), fname.c_str());
1150
1151 fDimRuns.Update(data);
1152 }
1153
1154 vector<DataFileImp*> fFiles;
1155
1156 FileHandle_t runOpen(uint32_t runid, RUN_HEAD *h, size_t)
1157 {
1158 fMsg.Info(" ==> TODO: Update run configuration in database!");
1159
1160 // Check if file already exists...
1161 DataFileImp *file = 0;
1162 switch (fFileFormat)
1163 {
1164 case kNone: file = new DataFileNone(runid, fMsg); break;
1165 case kDebug: file = new DataFileDebug(runid, fMsg); break;
1166 case kFits: file = new DataFileFits(runid, fMsg); break;
1167 case kRaw: file = new DataFileRaw(runid, fMsg); break;
1168 }
1169
1170 try
1171 {
1172 if (!file->OpenFile(h))
1173 return 0;
1174 }
1175 catch (const exception &e)
1176 {
1177 fMsg.Error("Exception trying to open file: "+string(e.what()));
1178 return 0;
1179 }
1180
1181 fFiles.push_back(file);
1182
1183 ostringstream str;
1184 str << "Opened: " << file->GetFileName() << " (" << file->GetRunId() << ")";
1185 fMsg.Info(str);
1186
1187 fDimWriteStats.FileOpened(file->GetFileName());
1188
1189 fLastOpened = runid;
1190 UpdateRuns(file->GetFileName());
1191
1192 fNumEvts[kEventId] = 0;
1193 fNumEvts[kTriggerId] = 0;
1194
1195 fNumEvts[kCurrent] = 0;
1196 fDimEvents.Update(fNumEvts);
1197 // fDimCurrentEvent.Update(uint32_t(0));
1198
1199 return reinterpret_cast<FileHandle_t>(file);
1200 }
1201
1202 int runWrite(FileHandle_t handler, EVENT *e, size_t)
1203 {
1204 DataFileImp *file = reinterpret_cast<DataFileImp*>(handler);
1205
1206 if (!file->WriteEvt(e))
1207 return -1;
1208
1209 if (file->GetRunId()==fMaxRun)
1210 {
1211 fNumEvts[kCurrent]++;
1212 fNumEvts[kEventId] = e->EventNum;
1213 fNumEvts[kTriggerId] = e->TriggerType;
1214 }
1215
1216 fNumEvts[kTotal]++;
1217
1218 static Time oldt(boost::date_time::neg_infin);
1219 Time newt;
1220 if (newt>oldt+boost::posix_time::seconds(1))
1221 {
1222 fDimEvents.Update(fNumEvts);
1223 oldt = newt;
1224 }
1225
1226
1227 // ===> SignalEvtWritten(runid);
1228 // Send num events written of newest file
1229
1230 /* close run runId (all all runs if runId=0) */
1231 /* return: 0=close scheduled / >0 already closed / <0 does not exist */
1232 //CloseRunFile(file->GetRunId(), time(NULL)+2) ;
1233
1234 return 0;
1235 }
1236
1237 int runClose(FileHandle_t handler, RUN_TAIL *tail, size_t)
1238 {
1239 fMsg.Info(" ==> TODO: Update run configuration in database!");
1240
1241 DataFileImp *file = reinterpret_cast<DataFileImp*>(handler);
1242
1243 const vector<DataFileImp*>::iterator it = find(fFiles.begin(), fFiles.end(), file);
1244 if (it==fFiles.end())
1245 {
1246 ostringstream str;
1247 str << "File handler (" << handler << ") requested to close by event builder doesn't exist.";
1248 fMsg.Fatal(str);
1249 return -1;
1250 }
1251
1252 fFiles.erase(it);
1253
1254 fLastClosed = file->GetRunId();
1255 UpdateRuns();
1256
1257 fDimEvents.Update(fNumEvts);
1258
1259 const bool rc = file->Close(tail);
1260 if (!rc)
1261 {
1262 // Error message
1263 }
1264
1265 ostringstream str;
1266 str << "Closed: " << file->GetFileName() << " (" << file->GetRunId() << ")";
1267 fMsg.Info(str);
1268
1269 delete file;
1270
1271 // ==> SignalRunClose(runid);
1272 // Send new num open files
1273 // Send empty file-name if no file is open
1274
1275 return rc ? 0 : -1;
1276 }
1277
1278 ofstream fDumpStream[40];
1279
1280 void debugStream(int isock, void *buf, int len)
1281 {
1282 if (!fDebugStream)
1283 return;
1284
1285 const int slot = isock/7;
1286 if (slot<0 || slot>39)
1287 return;
1288
1289 if (!fDumpStream[slot].is_open())
1290 {
1291 ostringstream name;
1292 name << "socket_dump-" << setfill('0') << setw(2) << slot << ".bin";
1293
1294 fDumpStream[slot].open(name.str().c_str(), ios::app);
1295 if (!fDumpStream[slot])
1296 {
1297 ostringstream str;
1298 str << "Open file '" << name << "': " << strerror(errno) << " (errno=" << errno << ")";
1299 fMsg.Error(str);
1300
1301 return;
1302 }
1303
1304 fMsg.Message("Opened file '"+name.str()+"' for writing.");
1305 }
1306
1307 fDumpStream[slot].write(reinterpret_cast<const char*>(buf), len);
1308 }
1309
1310 ofstream fDumpRead; // Stream to possibly dump docket events
1311
1312 void debugRead(int isock, int ibyte, uint32_t event, uint32_t ftmevt, uint32_t runno, int state, uint32_t tsec, uint32_t tusec)
1313 {
1314 // isock = socketID (0-279)
1315 // ibyte = #bytes gelesen
1316 // event = eventId (oder 0 wenn noch nicht bekannt)
1317 // state : 1=finished reading data
1318 // 0=reading data
1319 // -1=start reading data (header)
1320 // -2=start reading data,
1321 // eventId not known yet (too little data)
1322 // tsec, tusec = time when reading seconds, microseconds
1323 //
1324 if (!fDebugRead || ibyte==0)
1325 return;
1326
1327 if (!fDumpRead.is_open())
1328 {
1329 fDumpRead.open("socket_events.txt", ios::app);
1330 if (!fDumpRead)
1331 {
1332 ostringstream str;
1333 str << "Open file 'socket_events.txt': " << strerror(errno) << " (errno=" << errno << ")";
1334 fMsg.Error(str);
1335
1336 return;
1337 }
1338
1339 fMsg.Message("Opened file 'socket_events.txt' for writing.");
1340
1341 fDumpRead << "# START: " << Time().GetAsStr() << endl;
1342 fDumpRead << "# state time_sec time_usec socket slot runno event_id trigger_id bytes_received" << endl;
1343 }
1344
1345 fDumpRead
1346 << setw(2) << state << " "
1347 << setw(8) << tsec << " "
1348 << setw(9) << tusec << " "
1349 << setw(3) << isock << " "
1350 << setw(2) << isock/7 << " "
1351 << runno << " "
1352 << event << " "
1353 << ftmevt << " "
1354 << ibyte << endl;
1355 }
1356
1357 int eventCheck(PEVNT_HEADER *fadhd, EVENT *event)
1358 {
1359 /*
1360 fadhd[i] ist ein array mit den 40 fad-headers
1361 (falls ein board nicht gelesen wurde, ist start_package_flag =0 )
1362
1363 event ist die Struktur, die auch die write routine erhaelt;
1364 darin sind im header die 'soll-werte' fuer z.B. eventID
1365 als auch die ADC-Werte (falls Du die brauchst)
1366
1367 Wenn die routine einen negativen Wert liefert, wird das event
1368 geloescht (nicht an die write-routine weitergeleitet [mind. im Prinzip]
1369 */
1370
1371 const FAD::EventHeader *beg = reinterpret_cast<FAD::EventHeader*>(fadhd);
1372 const FAD::EventHeader *end = reinterpret_cast<FAD::EventHeader*>(fadhd)+40;
1373
1374 for (const FAD::EventHeader *ptr=beg; ptr!=end; ptr++)
1375 {
1376 // Event incomplete
1377 if (ptr->fStartDelimiter==0)
1378 return -1;
1379
1380 // Either one of
1381 // * fStatus
1382 // * fRunNumber
1383 // * fEventCounter
1384 // * fAdcClockPhaseShift
1385 // * fTriggerGeneratorPrescaler
1386 // * fDac
1387 // inconsistent
1388 if (*ptr != *beg)
1389 return -1;
1390
1391 if (ptr->fTriggerType != beg->fTriggerType)
1392 return -1;
1393 if (ptr->fTriggerId != beg->fTriggerId)
1394 return -1;
1395 if (ptr->fVersion != beg->fVersion)
1396 return -1;
1397 }
1398
1399 // check REFCLK_frequency
1400 // check consistency with command configuration
1401 // how to log errors?
1402 // need gotNewRun/closedRun to know it is finished
1403
1404 static Time oldt(boost::date_time::neg_infin);
1405 Time newt;
1406
1407 if (newt<oldt+boost::posix_time::seconds(1))
1408 return 0;
1409
1410 oldt = newt;
1411
1412 const size_t sz = sizeof(EVENT)+event->Roi*2*1440;
1413
1414 fDimEventData.setData(event, sz);
1415 fDimEventData.updateService();
1416
1417 return 0;
1418 }
1419
1420 bool IsRunStarted() const
1421 {
1422 return fExpectedRuns.find(fRunNumber-1)==fExpectedRuns.end();
1423 }
1424
1425 void gotNewRun(int runnr, PEVNT_HEADER */*headers*/)
1426 {
1427 // This function is called even when writing is switched off
1428 const map<uint32_t,RunDescription>::iterator it = fExpectedRuns.find(runnr);
1429 if (it==fExpectedRuns.end())
1430 {
1431 ostringstream str;
1432 str << "gotNewRun - Run " << runnr << " wasn't expected." << endl;
1433 return;
1434 }
1435
1436 CloseRunFile(runnr, time(NULL)+it->second.maxtime, it->second.maxevt);
1437 // return: 0=close scheduled / >0 already closed / <0 does not exist
1438
1439 fExpectedRuns.erase(it);
1440 }
1441
1442 map<boost::thread::id, string> fLastMessage;
1443
1444 void factOut(int severity, int err, const char *message)
1445 {
1446 if (!fDebugLog && severity==99)
1447 return;
1448
1449 ostringstream str;
1450 //str << boost::this_thread::get_id() << " ";
1451 str << "EventBuilder(";
1452 if (err<0)
1453 str << "---";
1454 else
1455 str << err;
1456 str << "): " << message;
1457
1458 string &old = fLastMessage[boost::this_thread::get_id()];
1459
1460 if (str.str()==old)
1461 return;
1462 old = str.str();
1463
1464 fMsg.Update(str, severity);
1465 }
1466/*
1467 void factStat(int64_t *stat, int len)
1468 {
1469 if (len!=7)
1470 {
1471 fMsg.Warn("factStat received unknown number of values.");
1472 return;
1473 }
1474
1475 vector<int64_t> data(1, g_maxMem);
1476 data.insert(data.end(), stat, stat+len);
1477
1478 static vector<int64_t> last(8);
1479 if (data==last)
1480 return;
1481 last = data;
1482
1483 fDimStatistics.Update(data);
1484
1485 // len ist die Laenge des arrays.
1486 // array[4] enthaelt wieviele bytes im Buffer aktuell belegt sind; daran
1487 // kannst Du pruefen, ob die 100MB voll sind ....
1488
1489 ostringstream str;
1490 str
1491 << "Wait=" << stat[0] << " "
1492 << "Skip=" << stat[1] << " "
1493 << "Del=" << stat[2] << " "
1494 << "Tot=" << stat[3] << " "
1495 << "Mem=" << stat[4] << "/" << g_maxMem << " "
1496 << "Read=" << stat[5] << " "
1497 << "Conn=" << stat[6];
1498
1499 fMsg.Info(str);
1500 }
1501 */
1502
1503 void factStat(const EVT_STAT &stat)
1504 {
1505 fDimStatistics2.Update(stat);
1506 /*
1507 //some info about what happened since start of program (or last 'reset')
1508 uint32_t reset ; //#if increased, reset all counters
1509 uint32_t numRead[MAX_SOCK] ; //how often succesfull read from N sockets per loop
1510
1511 uint64_t gotByte[NBOARDS] ; //#Bytes read per Board
1512 uint32_t gotErr[NBOARDS] ; //#Communication Errors per Board
1513 uint32_t evtGet; //#new Start of Events read
1514 uint32_t evtTot; //#complete Events read
1515 uint32_t evtErr; //#Events with Errors
1516 uint32_t evtSkp; //#Events incomplete (timeout)
1517
1518 uint32_t procTot; //#Events processed
1519 uint32_t procErr; //#Events showed problem in processing
1520 uint32_t procTrg; //#Events accepted by SW trigger
1521 uint32_t procSkp; //#Events rejected by SW trigger
1522
1523 uint32_t feedTot; //#Events used for feedBack system
1524 uint32_t feedErr; //#Events rejected by feedBack
1525
1526 uint32_t wrtTot; //#Events written to disk
1527 uint32_t wrtErr; //#Events with write-error
1528
1529 uint32_t runOpen; //#Runs opened
1530 uint32_t runClose; //#Runs closed
1531 uint32_t runErr; //#Runs with open/close errors
1532
1533
1534 //info about current connection status
1535 uint8_t numConn[NBOARDS] ; //#Sockets succesfully open per board
1536 */
1537 }
1538
1539 void factStat(const GUI_STAT &stat)
1540 {
1541 fDimStatistics1.Update(stat);
1542 /*
1543 //info about status of the main threads
1544 int32_t readStat ; //read thread
1545 int32_t procStat ; //processing thread(s)
1546 int32_t writStat ; //write thread
1547
1548 //info about some rates
1549 int32_t deltaT ; //time in milli-seconds for rates
1550 int32_t readEvt ; //#events read
1551 int32_t procEvt ; //#events processed
1552 int32_t writEvt ; //#events written
1553 int32_t skipEvt ; //#events skipped
1554
1555 //some info about current state of event buffer (snapspot)
1556 int32_t evtBuf; //#Events currently waiting in Buffer
1557 uint64_t totMem; //#Bytes available in Buffer
1558 uint64_t usdMem; //#Bytes currently used
1559 uint64_t maxMem; //max #Bytes used during past Second
1560 */
1561 }
1562
1563
1564 array<FAD::EventHeader, 40> fVecHeader;
1565
1566 template<typename T>
1567 array<T, 42> Compare(const FAD::EventHeader *h, const T *t)
1568 {
1569 const int offset = reinterpret_cast<const char *>(t) - reinterpret_cast<const char *>(h);
1570
1571 const T *min = NULL;
1572 const T *val = NULL;
1573 const T *max = NULL;
1574
1575 array<T, 42> vec;
1576
1577 bool rc = true;
1578 for (int i=0; i<40; i++)
1579 {
1580 const char *base = reinterpret_cast<const char*>(&fVecHeader[i]);
1581 const T *ref = reinterpret_cast<const T*>(base+offset);
1582
1583 vec[i] = *ref;
1584
1585 if (gi_NumConnect[i]!=7)
1586 {
1587 vec[i] = 0;
1588 continue;
1589 }
1590
1591 if (!val)
1592 {
1593 min = ref;
1594 val = ref;
1595 max = ref;
1596 }
1597
1598 if (*ref<*min)
1599 min = ref;
1600
1601 if (*ref>*max)
1602 max = ref;
1603
1604 if (*val!=*ref)
1605 rc = false;
1606 }
1607
1608 vec[40] = val ? *min : 1;
1609 vec[41] = val ? *max : 0;
1610
1611 return vec;
1612 }
1613
1614 template<typename T>
1615 array<T, 42> CompareBits(const FAD::EventHeader *h, const T *t)
1616 {
1617 const int offset = reinterpret_cast<const char *>(t) - reinterpret_cast<const char *>(h);
1618
1619 T val = 0;
1620 T rc = 0;
1621
1622 array<T, 42> vec;
1623
1624 bool first = true;
1625
1626 for (int i=0; i<40; i++)
1627 {
1628 const char *base = reinterpret_cast<const char*>(&fVecHeader[i]);
1629 const T *ref = reinterpret_cast<const T*>(base+offset);
1630
1631 vec[i+2] = *ref;
1632
1633 if (gi_NumConnect[i]!=7)
1634 {
1635 vec[i+2] = 0;
1636 continue;
1637 }
1638
1639 if (first)
1640 {
1641 first = false;
1642 val = *ref;
1643 rc = 0;
1644 }
1645
1646 rc |= val^*ref;
1647 }
1648
1649 vec[0] = rc;
1650 vec[1] = val;
1651
1652 return vec;
1653 }
1654
1655 template<typename T, size_t N>
1656 void Update(DimDescribedService &svc, const array<T, N> &data, int n=N)
1657 {
1658// svc.setQuality(vec[40]<=vec[41]);
1659 svc.setData(const_cast<T*>(data.data()), sizeof(T)*n);
1660 svc.updateService();
1661 }
1662
1663 template<typename T>
1664 void Print(const char *name, const pair<bool,array<T, 43>> &data)
1665 {
1666 cout << name << "|" << data.first << "|" << data.second[1] << "|" << data.second[0] << "<x<" << data.second[1] << ":";
1667 for (int i=0; i<40;i++)
1668 cout << " " << data.second[i+3];
1669 cout << endl;
1670 }
1671
1672 vector<uint> fNumConnected;
1673
1674 void debugHead(int /*socket*/, const FAD::EventHeader &h)
1675 {
1676 const uint16_t id = h.Id();
1677 if (id>39)
1678 return;
1679
1680 if (fNumConnected.size()!=40)
1681 fNumConnected.resize(40);
1682
1683 const vector<uint> con(gi_NumConnect, gi_NumConnect+40);
1684
1685 const bool changed = con!=fNumConnected || !IsThreadRunning();
1686
1687 fNumConnected = con;
1688
1689 const FAD::EventHeader old = fVecHeader[id];
1690 fVecHeader[id] = h;
1691
1692 if (old.fVersion != h.fVersion || changed)
1693 {
1694 const array<uint16_t,42> ver = Compare(&h, &h.fVersion);
1695
1696 array<float,42> data;
1697 for (int i=0; i<42; i++)
1698 {
1699 ostringstream str;
1700 str << (ver[i]>>8) << '.' << (ver[i]&0xff);
1701 data[i] = stof(str.str());
1702 }
1703 Update(fDimFwVersion, data);
1704 }
1705
1706 if (old.fRunNumber != h.fRunNumber || changed)
1707 {
1708 const array<uint32_t,42> run = Compare(&h, &h.fRunNumber);
1709 fDimRunNumber.Update(run);
1710 }
1711
1712 if (old.fTriggerGeneratorPrescaler != h.fTriggerGeneratorPrescaler || changed)
1713 {
1714 const array<uint16_t,42> pre = Compare(&h, &h.fTriggerGeneratorPrescaler);
1715 fDimPrescaler.Update(pre);
1716 }
1717
1718 if (old.fDNA != h.fDNA || changed)
1719 {
1720 const array<uint64_t,42> dna = Compare(&h, &h.fDNA);
1721 Update(fDimDNA, dna, 40);
1722 }
1723
1724 if (old.fStatus != h.fStatus || changed)
1725 {
1726 const array<uint16_t,42> sts = CompareBits(&h, &h.fStatus);
1727 Update(fDimStatus, sts);
1728 }
1729
1730 // -----------
1731
1732 static Time oldt(boost::date_time::neg_infin);
1733 Time newt;
1734
1735 if (newt>oldt+boost::posix_time::seconds(1))
1736 {
1737 oldt = newt;
1738
1739 // --- RefClock
1740
1741 const array<uint32_t,42> clk = Compare(&h, &h.fFreqRefClock);
1742 Update(fDimRefClock, clk);
1743
1744 // --- Temperatures
1745
1746 const array<int16_t,42> tmp[4] =
1747 {
1748 Compare(&h, &h.fTempDrs[0]), // 0-39:val, 40:min, 41:max
1749 Compare(&h, &h.fTempDrs[1]), // 0-39:val, 40:min, 41:max
1750 Compare(&h, &h.fTempDrs[2]), // 0-39:val, 40:min, 41:max
1751 Compare(&h, &h.fTempDrs[3]) // 0-39:val, 40:min, 41:max
1752 };
1753
1754 vector<int16_t> data;
1755 data.reserve(82);
1756 data.push_back(tmp[0][40]); // min: 0
1757 data.insert(data.end(), tmp[0].data(), tmp[0].data()+40); // val: 1-40
1758 data.push_back(tmp[0][41]); // max: 41
1759 data.insert(data.end(), tmp[0].data(), tmp[0].data()+40); // val: 42-81
1760
1761 for (int j=1; j<=3; j++)
1762 {
1763 const array<int16_t,42> &ref = tmp[j];
1764
1765 // Gloabl min
1766 if (ref[40]<data[0]) // 40=min
1767 data[0] = ref[40];
1768
1769 // Global max
1770 if (ref[41]>data[41]) // 41=max
1771 data[41] = ref[41];
1772
1773 for (int i=0; i<40; i++)
1774 {
1775 // min per board
1776 if (ref[i]<data[i+1]) // data: 1-40
1777 data[i+1] = ref[i]; // ref: 0-39
1778
1779 // max per board
1780 if (ref[i]>data[i+42]) // data: 42-81
1781 data[i+42] = ref[i]; // ref: 0-39
1782 }
1783
1784
1785 }
1786
1787 vector<float> deg(82); // 0: global min, 1-40: min
1788 for (int i=0; i<82; i++) // 41: global max, 42-81: max
1789 deg[i] = data[i]/16.;
1790 fDimTemperature.Update(deg);
1791 }
1792
1793 /*
1794 uint16_t fTriggerType;
1795 uint32_t fTriggerId;
1796 uint32_t fEventCounter;
1797 uint16_t fAdcClockPhaseShift;
1798 uint16_t fNumTriggersToGenerate;
1799 uint16_t fTriggerGeneratorPrescaler;
1800 uint32_t fTimeStamp;
1801 int16_t fTempDrs[kNumTemp]; // In units of 1/16 deg(?)
1802 uint16_t fDac[kNumDac];
1803 */
1804 }
1805};
1806
1807EventBuilderWrapper *EventBuilderWrapper::This = 0;
1808
1809// ----------- Event builder callbacks implementation ---------------
1810extern "C"
1811{
1812 FileHandle_t runOpen(uint32_t irun, RUN_HEAD *runhd, size_t len)
1813 {
1814 return EventBuilderWrapper::This->runOpen(irun, runhd, len);
1815 }
1816
1817 int runWrite(FileHandle_t fileId, EVENT *event, size_t len)
1818 {
1819 return EventBuilderWrapper::This->runWrite(fileId, event, len);
1820 }
1821
1822 int runClose(FileHandle_t fileId, RUN_TAIL *runth, size_t len)
1823 {
1824 return EventBuilderWrapper::This->runClose(fileId, runth, len);
1825 }
1826
1827 void factOut(int severity, int err, const char *message)
1828 {
1829 EventBuilderWrapper::This->factOut(severity, err, message);
1830 }
1831
1832 void factStat(GUI_STAT stat)
1833 {
1834 EventBuilderWrapper::This->factStat(stat);
1835 }
1836
1837 void factStatNew(EVT_STAT stat)
1838 {
1839 EventBuilderWrapper::This->factStat(stat);
1840 }
1841
1842 void debugHead(int socket, int/*board*/, void *buf)
1843 {
1844 const uint16_t *ptr = reinterpret_cast<uint16_t*>(buf);
1845
1846 EventBuilderWrapper::This->debugHead(socket, FAD::EventHeader(ptr));
1847 }
1848
1849 void debugStream(int isock, void *buf, int len)
1850 {
1851 return EventBuilderWrapper::This->debugStream(isock, buf, len);
1852 }
1853
1854 void debugRead(int isock, int ibyte, int32_t event, int32_t ftmevt, int32_t runno, int state, uint32_t tsec, uint32_t tusec)
1855 {
1856 EventBuilderWrapper::This->debugRead(isock, ibyte, event, ftmevt, runno, state, tsec, tusec);
1857 }
1858
1859 int eventCheck(PEVNT_HEADER *fadhd, EVENT *event)
1860 {
1861 return EventBuilderWrapper::This->eventCheck(fadhd, event);
1862 }
1863
1864 void gotNewRun( int runnr, PEVNT_HEADER *headers )
1865 {
1866 return EventBuilderWrapper::This->gotNewRun(runnr, headers);
1867 }
1868}
1869
1870#endif
Note: See TracBrowser for help on using the repository browser.