source: trunk/FACT++/src/DataProcessorImp.h@ 16862

Last change on this file since 16862 was 16055, checked in by tbretz, 11 years ago
Replaced the pointer argument when opening a file or writing an event by a const-reference.
File size: 1.9 KB
Line 
1#ifndef FACT_DataProcessorImp
2#define FACT_DataProcessorImp
3
4#include "MessageImp.h"
5
6struct RUN_HEAD;
7struct _EVENT;
8struct _RUN_TAIL;
9
10namespace FAD
11{
12 struct RunDescription;
13};
14
15typedef struct _EVENT EVENT;
16typedef struct _RUN_TAIL RUN_TAIL;
17
18class DataProcessorImp : public MessageImp
19{
20 std::string fPath;
21 uint32_t fNight;
22 uint32_t fRunId;
23
24 int Write(const Time &time, const std::string &txt, int qos=kMessage)
25 {
26 return fMsg.Write(time, txt, qos);
27 }
28
29protected:
30 MessageImp &fMsg;
31 std::string fFileName;
32
33public:
34 DataProcessorImp(const std::string &path, uint64_t night, uint32_t id, MessageImp &imp) : fPath(path), fNight(night), fRunId(id), fMsg(imp) { }
35 virtual ~DataProcessorImp() { }
36
37 virtual bool Open(const RUN_HEAD &h, const FAD::RunDescription &desc) = 0;
38 virtual bool WriteEvt(const EVENT &) = 0;
39 virtual bool Close(const RUN_TAIL * = 0) = 0;
40
41 const std::string &GetFileName() const { return fFileName; }
42
43 std::string GetPath() const { return fPath; }
44 uint32_t GetNight() const { return fNight; }
45 uint32_t GetRunId() const { return fRunId; }
46
47 static std::string FormFileName(const std::string &path, uint64_t night, uint32_t runid, const std::string &extension);
48 std::string FormFileName(const std::string &extension)
49 {
50 return FormFileName(fPath, fNight, fRunId, extension);
51 }
52};
53
54#include "Time.h"
55
56class DataDump : public DataProcessorImp
57{
58 Time fTime;
59
60public:
61 DataDump(const std::string &path, uint64_t night, uint32_t id, MessageImp &imp) : DataProcessorImp(path, night, id, imp) { }
62
63 bool Open(const RUN_HEAD &h, const FAD::RunDescription &d);
64 bool WriteEvt(const EVENT &e);
65 bool Close(const RUN_TAIL * = 0);
66};
67
68class DataDebug : public DataDump
69{
70public:
71 DataDebug(const std::string &path, uint64_t night, uint32_t id, MessageImp &imp) : DataDump(path, night, id, imp) { }
72
73 bool WriteEvt(const EVENT &e);
74};
75
76#endif
Note: See TracBrowser for help on using the repository browser.