1 | //****************************************************************
|
---|
2 | /** @class DataLogger
|
---|
3 |
|
---|
4 | @brief Logs all message and infos between the services
|
---|
5 |
|
---|
6 | This is the main logging class facility.
|
---|
7 | It derives from StateMachineDim and DimInfoHandler. the first parent is here to enforce
|
---|
8 | a state machine behaviour, while the second one is meant to make the dataLogger receive
|
---|
9 | dim services to which it subscribed from.
|
---|
10 | The possible states and transitions of the machine are:
|
---|
11 | \dot
|
---|
12 | // FIXME FIXME: Error states missing...
|
---|
13 | digraph datalogger
|
---|
14 | {
|
---|
15 | node [shape=record, fontname=Helvetica, fontsize=10];
|
---|
16 |
|
---|
17 | srt [label="Start" style="rounded"]
|
---|
18 | rdy [label="Ready"]
|
---|
19 | nop [label="NightlyOpen"]
|
---|
20 | wait [label="WaitingRun"]
|
---|
21 | log [label="Logging"]
|
---|
22 |
|
---|
23 | //e [label="Error" color="red"];
|
---|
24 | //c [label="BadFolder" color="red"]
|
---|
25 |
|
---|
26 |
|
---|
27 | cmd_start [label="START" shape="none" height="0"]
|
---|
28 | cmd_stop [label="STOP" shape="none" height="0"]
|
---|
29 | cmd_stopr [label="STOP_RUN_LOGGING" shape="none" height="0"]
|
---|
30 | cmd_startr [label="START_RUN_LOGGING" shape="none" height="0"]
|
---|
31 |
|
---|
32 | { rank=same; cmd_startr cmd_stopr }
|
---|
33 | { rank=same; cmd_start cmd_stop }
|
---|
34 |
|
---|
35 |
|
---|
36 | srt -> rdy
|
---|
37 |
|
---|
38 | rdy -> cmd_start [ arrowhead="open" dir="both" arrowtail="tee" weight=10 ]
|
---|
39 | cmd_start -> nop
|
---|
40 |
|
---|
41 | nop -> cmd_stop [ arrowhead="none" dir="both" arrowtail="inv" ]
|
---|
42 | wait -> cmd_stop [ arrowhead="none" dir="both" arrowtail="inv" ]
|
---|
43 | log -> cmd_stop [ arrowhead="none" dir="both" arrowtail="inv" ]
|
---|
44 | cmd_stop -> rdy
|
---|
45 |
|
---|
46 | wait -> cmd_stopr [ arrowhead="none" dir="both" arrowtail="inv" ]
|
---|
47 | log -> cmd_stopr [ arrowhead="none" dir="both" arrowtail="inv" ]
|
---|
48 | cmd_stopr -> nop
|
---|
49 |
|
---|
50 | nop -> cmd_startr [ arrowhead="none" dir="both" arrowtail="inv" weight=10 ]
|
---|
51 | rdy -> cmd_startr [ arrowhead="none" dir="both" arrowtail="inv" ]
|
---|
52 | cmd_startr -> wait [ weight=10 ]
|
---|
53 |
|
---|
54 |
|
---|
55 | wait -> log
|
---|
56 | log -> wait
|
---|
57 | }
|
---|
58 | \enddot
|
---|
59 |
|
---|
60 | For questions or bug report, please contact Etienne Lyard (etienne.lyard@unige.ch) or Thomas Bretz.
|
---|
61 | */
|
---|
62 | //****************************************************************
|
---|
63 | #include <unistd.h> //for getting stat of opened files
|
---|
64 | //#include <sys/statvfs.h> //for getting disk free space
|
---|
65 | //#include <sys/stat.h> //for getting files sizes
|
---|
66 | #include <fstream>
|
---|
67 | #include <functional>
|
---|
68 |
|
---|
69 | #include <boost/filesystem.hpp>
|
---|
70 |
|
---|
71 | #include "Dim.h"
|
---|
72 | #include "Event.h"
|
---|
73 | #include "StateMachineDim.h"
|
---|
74 | #include "LocalControl.h"
|
---|
75 | #include "Configuration.h"
|
---|
76 | #include "Converter.h"
|
---|
77 | #include "DimWriteStatistics.h"
|
---|
78 |
|
---|
79 | #include "Description.h"
|
---|
80 | //#include "DimNetwork.h"
|
---|
81 |
|
---|
82 | #ifdef HAVE_FITS
|
---|
83 | #include "Fits.h"
|
---|
84 | #endif
|
---|
85 |
|
---|
86 | #include "DimState.h"
|
---|
87 |
|
---|
88 | #ifdef HAVE_LIBNOVA
|
---|
89 | #include <libnova/solar.h>
|
---|
90 | #include <libnova/rise_set.h>
|
---|
91 | #endif
|
---|
92 |
|
---|
93 | //Dim structures
|
---|
94 | ///distributes the number of opened subscriptions and fits files
|
---|
95 | struct NumSubAndFitsType {
|
---|
96 | uint32_t numSubscriptions;
|
---|
97 | uint32_t numOpenFits;
|
---|
98 | };
|
---|
99 | ///distributes which files were opened.
|
---|
100 | struct OpenFileToDim {
|
---|
101 | uint32_t code;
|
---|
102 | char fileName[FILENAME_MAX];
|
---|
103 | };
|
---|
104 |
|
---|
105 | ///Run number record. Used to keep track of which run numbers are still active
|
---|
106 | struct RunNumberType {
|
---|
107 |
|
---|
108 | ///the actual run number
|
---|
109 | int32_t runNumber;
|
---|
110 | ///the time at which the run number was received
|
---|
111 | Time time;
|
---|
112 | ///default constructor
|
---|
113 | RunNumberType()
|
---|
114 | {
|
---|
115 | runNumber = 0;
|
---|
116 | }
|
---|
117 | ///default destructor
|
---|
118 | ~RunNumberType()
|
---|
119 | {
|
---|
120 |
|
---|
121 | }
|
---|
122 | };
|
---|
123 |
|
---|
124 | EventImp nullEventImp;
|
---|
125 | ///Dim subscription type. Stores all the relevant info to handle a Dim subscription
|
---|
126 | struct SubscriptionType
|
---|
127 | {
|
---|
128 | #ifdef HAVE_FITS
|
---|
129 | ///Nightly FITS output file
|
---|
130 | Fits nightlyFile;
|
---|
131 | #endif
|
---|
132 | ///the server
|
---|
133 | string server;
|
---|
134 | ///the service
|
---|
135 | string service;
|
---|
136 | ///the converter for outputting the data according to the format
|
---|
137 | shared_ptr<Converter> fConv;
|
---|
138 | ///the original format string. So that we can check if format is changing over time
|
---|
139 | string format;
|
---|
140 | ///the current run number used by this subscription
|
---|
141 | int32_t runNumber;
|
---|
142 | ///time of the latest received event
|
---|
143 | Time lastReceivedEvent;
|
---|
144 | ///whether or not the fits buffer was allocated already
|
---|
145 | bool fitsBufferAllocated;
|
---|
146 | ///the actual dimInfo pointer (must be the last in the list to ensure
|
---|
147 | /// that it is the first which is deleted -- and consequently none of
|
---|
148 | /// the other members can still be in use in an infoHandler)
|
---|
149 | //DIM_REPLACE
|
---|
150 | //shared_ptr<DimStampedInfo> dimInfo;
|
---|
151 | unsigned int index;
|
---|
152 | ///counter to know if format has changed during operations
|
---|
153 | unsigned int increment;
|
---|
154 |
|
---|
155 | ///Dim info constructor
|
---|
156 | //DIM_REPLACE
|
---|
157 | // SubscriptionType(DimStampedInfo* info=NULL)
|
---|
158 | SubscriptionType()
|
---|
159 | {
|
---|
160 | fConv = shared_ptr<Converter>();
|
---|
161 | runNumber = 0;
|
---|
162 | lastReceivedEvent = Time::None;
|
---|
163 | fitsBufferAllocated = false;
|
---|
164 | // Should be the last instantiated to make sure that all other
|
---|
165 | // variables which might be used are already initialized
|
---|
166 | //DIM_REPLACE
|
---|
167 | //dimInfo = shared_ptr<DimStampedInfo>(info);
|
---|
168 | index = 0;
|
---|
169 | increment = 0;
|
---|
170 | }
|
---|
171 | ///default destructor
|
---|
172 | ~SubscriptionType()
|
---|
173 | {
|
---|
174 | }
|
---|
175 | };
|
---|
176 |
|
---|
177 | class DataLogger : public StateMachineDim
|
---|
178 | //DIM_REPLACE
|
---|
179 | //, DimServiceInfoListImp
|
---|
180 | {
|
---|
181 | public:
|
---|
182 | /// The list of existing states specific to the DataLogger
|
---|
183 | enum
|
---|
184 | {
|
---|
185 | kSM_NightlyOpen = 20, ///< Nightly file openned and writing
|
---|
186 | kSM_WaitingRun = 30, ///< waiting for the run number to open the run file
|
---|
187 | kSM_Logging = 40, ///< both files openned and writing
|
---|
188 | kSM_BadFolder = 0x101, ///< the folder specified for Nightly logging does not exist or has bad permissions
|
---|
189 | kSM_RunWriteError = 0x103, ///< Denotes that an error occured while writing a run file (text or fits).
|
---|
190 | kSM_DailyWriteError = 0x103, ///< Denots that an error occured while writing a daily file (text or fits).
|
---|
191 | } localstates_t;
|
---|
192 |
|
---|
193 | DataLogger(ostream &out);
|
---|
194 | ~DataLogger();
|
---|
195 |
|
---|
196 | int EvalOptions(Configuration& conf);
|
---|
197 |
|
---|
198 | private:
|
---|
199 | /************************************************
|
---|
200 | * MEMBER VARIABLES
|
---|
201 | ************************************************/
|
---|
202 | /// ofstream for the NightlyLogfile
|
---|
203 | ofstream fNightlyLogFile;
|
---|
204 | /// Log stream to fNightlyLogFile
|
---|
205 | MessageImp fNightlyLogImp;
|
---|
206 | /// ofstream for the Nightly report file
|
---|
207 | ofstream fNightlyReportFile;
|
---|
208 | /// base path of files
|
---|
209 | string fFilePath;
|
---|
210 | ///run numbers
|
---|
211 | list<RunNumberType> fRunNumber;
|
---|
212 | ///old run numbers time-out delay (in seconds)
|
---|
213 | uint32_t fRunNumberTimeout;
|
---|
214 | ///previous run number. to check if changed while logging
|
---|
215 | int fPreviousRunNumber;
|
---|
216 | ///Current Service Quality
|
---|
217 | int fQuality;
|
---|
218 | ///Modified Julian Date
|
---|
219 | double fMjD;
|
---|
220 | ///for obtaining the name of the existing services
|
---|
221 | // ServiceList fServiceList;
|
---|
222 | typedef map<const string, map<string, SubscriptionType> > SubscriptionsListType;
|
---|
223 | ///All the services to which we have subscribed to, sorted by server name.
|
---|
224 | SubscriptionsListType fServiceSubscriptions;
|
---|
225 | ///full name of the nightly log file
|
---|
226 | string fFullNightlyLogFileName;
|
---|
227 | ///full name of the nightly report file
|
---|
228 | string fFullNightlyReportFileName;
|
---|
229 | ///variable to track when the statistic were last calculated
|
---|
230 | // Time fPreviousStatsUpdateTime;
|
---|
231 | Time fPreviousOldRunNumberCheck;
|
---|
232 | ///boolean to know whether we should close and reopen daily files or not
|
---|
233 | bool fDailyFileDayChangedAlready;
|
---|
234 |
|
---|
235 | DimWriteStatistics fFilesStats;
|
---|
236 |
|
---|
237 | ///map and mutex for storing services description
|
---|
238 | map<string, vector<Description> > fServiceDescriptionList;
|
---|
239 | mutex fMutex;
|
---|
240 | int HandleDescriptions(DimDescriptions* desc);
|
---|
241 | vector<Description> GetDescription(const string& server, const string& service);
|
---|
242 | private:
|
---|
243 | /***************************************************
|
---|
244 | * DIM INFO HANDLER
|
---|
245 | ***************************************************/
|
---|
246 | //overloading of DIM's infoHandler function
|
---|
247 | int infoCallback(const EventImp& evt, unsigned int infoIndex);
|
---|
248 |
|
---|
249 | // Time GetSunRise(const Time &time=Time());
|
---|
250 |
|
---|
251 | /***************************************************
|
---|
252 | * TRANSITION FUNCTIONS
|
---|
253 | ***************************************************/
|
---|
254 | ///Reporting method for the services info received
|
---|
255 | void Report(const EventImp& evt, SubscriptionType& sub);
|
---|
256 |
|
---|
257 | ///Configuration of the nightly file path
|
---|
258 | int ConfigureFilePath(const Event& evt);
|
---|
259 | ///print the current state of the dataLogger
|
---|
260 | int PrintState(const Event& evt);
|
---|
261 | ///checks whether or not the current info being treated is a run number
|
---|
262 | void CheckForRunNumber(const EventImp& evt, unsigned int index);
|
---|
263 | /// start transition
|
---|
264 | int Start();
|
---|
265 | ///from waiting to logging transition
|
---|
266 | //int StartRun();
|
---|
267 | // from logging to waiting transition
|
---|
268 | int StopRunLogging();
|
---|
269 | ///stop and reset transition
|
---|
270 | int GoToReady();
|
---|
271 | ///from NightlyOpen to waiting transition
|
---|
272 | int NightlyToWaitRun();
|
---|
273 | ///from wait for run number to nightly open
|
---|
274 | int BackToNightlyOpen();
|
---|
275 | #ifdef HAVE_FITS
|
---|
276 | ///Open fits files
|
---|
277 | void OpenFITSFiles(SubscriptionType& sub);
|
---|
278 | ///Write data to FITS files
|
---|
279 | void WriteToFITS(SubscriptionType& sub, const void* data);
|
---|
280 | ///Allocate the buffers required for fits
|
---|
281 | void AllocateFITSBuffers(SubscriptionType& sub);
|
---|
282 | #endif//has_fits
|
---|
283 |
|
---|
284 | /***************************************
|
---|
285 | * DIM SERVICES PROVIDED BY THE DATA LOGGER
|
---|
286 | ***************************************/
|
---|
287 | ///monitoring notification loop
|
---|
288 | void ServicesMonitoring();
|
---|
289 | inline void NotifyOpenedFile(const string &name, int type, DimDescribedService* service);
|
---|
290 | ///Service for opened files
|
---|
291 | DimDescribedService* fOpenedNightlyFiles;
|
---|
292 | DimDescribedService* fOpenedRunFiles;
|
---|
293 | DimDescribedService* fNumSubAndFits;
|
---|
294 | NumSubAndFitsType fNumSubAndFitsData;
|
---|
295 |
|
---|
296 | ///Service for broadcasting subscription status
|
---|
297 | DimDescribedService* fCurrentSubscription;
|
---|
298 | ///Number of seconds since the last update of the subscribed list
|
---|
299 | int fCurrentSubscriptionUpdateRate;
|
---|
300 | ///The last time in seconds of the day when the service was update
|
---|
301 | Time fLastSubscriptionUpdate;
|
---|
302 | ///update the service
|
---|
303 | void updateSubscriptionList();
|
---|
304 | ///set the duration between two updates. a zero or negative value disables the service updates
|
---|
305 | int setSubscriptionListUpdateTimeLapse(const Event& evt);
|
---|
306 | /***************************************************
|
---|
307 | * DATA LOGGER's CONFIGURATION STUFF
|
---|
308 | ***************************************************/
|
---|
309 | ///black/white listing
|
---|
310 | set<string> fBlackList;
|
---|
311 | set<string> fWhiteList;
|
---|
312 | ///list of services to be grouped
|
---|
313 | set<string> fGrouping;
|
---|
314 | ///configuration flags
|
---|
315 | bool fDebugIsOn;
|
---|
316 | bool fOpenedFilesIsOn;
|
---|
317 | bool fNumSubAndFitsIsOn;
|
---|
318 | //functions for controlling the services behavior
|
---|
319 | int SetDebugOnOff(const Event& evt);
|
---|
320 | int SetStatsPeriod(const Event& evt);
|
---|
321 | int SetOpenedFilesOnOff(const Event& evt);
|
---|
322 | int SetNumSubsAndFitsOnOff(const Event& evt);
|
---|
323 | int SetRunTimeoutDelay(const Event& evt);
|
---|
324 |
|
---|
325 | ///boolean to prevent DIM update while desctructing the dataLogger
|
---|
326 | bool fDestructing;
|
---|
327 | /***************************************************
|
---|
328 | * UTILITIES
|
---|
329 | ***************************************************/
|
---|
330 | ///vectors to keep track of opened Fits files, for grouping purposes.
|
---|
331 | map<string, vector<string> > fOpenedNightlyFits;
|
---|
332 | ///creates a group fits file based on a list of files to be grouped
|
---|
333 | void CreateFitsGrouping(map<string, vector<string> >& filesToGroup);
|
---|
334 |
|
---|
335 | bool OpenStreamImp(ofstream &stream, const string &filename, bool mightbeopen);
|
---|
336 | bool OpenStream(shared_ptr<ofstream> stream, const string &filename);
|
---|
337 | ///Open the relevant text files related to a particular run
|
---|
338 | // int OpenRunFile(RunNumberType& run);
|
---|
339 | ///add a new run number
|
---|
340 | void AddNewRunNumber(int64_t newRun, Time time);
|
---|
341 | std::vector<int64_t> previousRunNumbers;
|
---|
342 | ///removes the oldest run number, and close the relevant files.
|
---|
343 | void RemoveOldestRunNumber();
|
---|
344 | ///retrieves the size of a file
|
---|
345 | off_t GetFileSize(const string&);
|
---|
346 | ///Get the digits of year, month and day for filenames and paths
|
---|
347 | // void GetYearMonthDayForFiles(unsigned short& year, unsigned short& month, unsigned short& day);
|
---|
348 | ///Appends the relevant year month day to a given path
|
---|
349 | // void AppendYearMonthDaytoPath(string& path);
|
---|
350 | ///Form the files path
|
---|
351 | string CompileFileNameWithPath(const string &path, const string &service, const string & extension);
|
---|
352 | ///Form the file names only
|
---|
353 | string CompileFileName(const string& service, const string& extension, const Time& time=Time()) const;
|
---|
354 | ///Check whether service is in black and/or white list
|
---|
355 | bool ShouldSubscribe(const string& server, const string& service);
|
---|
356 | ///Subscribe to a given server and service
|
---|
357 | // EventImp& SubscribeTo(const string& server, const string& service);
|
---|
358 | ///Open a text file and checks for ofstream status
|
---|
359 | bool OpenTextFile(ofstream& stream, const string& name);
|
---|
360 | ///Checks if the input osftream is in error state, and if so close it.
|
---|
361 | bool CheckForOfstreamError(ofstream& out, bool isDailyStream);
|
---|
362 | ///Goes to Write error states
|
---|
363 | void GoToRunWriteErrorState();
|
---|
364 | void GoToNightlyWriteErrorState();
|
---|
365 | ///Checks if a given path exist
|
---|
366 | bool DoesPathExist(string path);
|
---|
367 | ///Check if old run numbers can be trimmed, and if so, do it
|
---|
368 | void TrimOldRunNumbers();
|
---|
369 | ///Create a given directory
|
---|
370 | bool CreateDirectory(const string &path);
|
---|
371 | /***************************************************
|
---|
372 | * INHERITED FROM DimServiceInfoList
|
---|
373 | ***************************************************/
|
---|
374 | ///Add a new server subscription
|
---|
375 | void AddServer(const string& server);
|
---|
376 | ///Add a new service subscription
|
---|
377 | void AddService(const Service& svc);
|
---|
378 | ///Remove a given service subscription
|
---|
379 | //FIXME unused
|
---|
380 | void RemoveService(const string, const string, bool);
|
---|
381 | ///Remove all the services associated with a given server
|
---|
382 | //FIXME unused
|
---|
383 | void RemoveAllServices(const string&);
|
---|
384 | ///pointer to the dim's subscription that should distribute the run numbers.
|
---|
385 | //DIM_REPLACE
|
---|
386 | //DimInfo* fRunNumberService;
|
---|
387 | unsigned int fRunNumberService;
|
---|
388 | /***************************************************
|
---|
389 | * Overwritten from MessageImp
|
---|
390 | ***************************************************/
|
---|
391 | vector<string> backLogBuffer;
|
---|
392 | bool shouldBackLog;
|
---|
393 | bool fShouldAutoStart;
|
---|
394 | bool fAutoStarted;
|
---|
395 |
|
---|
396 | //Current day variable. Used to close nightly files when night changes
|
---|
397 | Time fCurrentDay;
|
---|
398 | Time lastFlush;
|
---|
399 |
|
---|
400 | DimDnsServiceList fDimList;
|
---|
401 | vector<DimDescriptions*> fServerDescriptionsList;
|
---|
402 |
|
---|
403 | //counter for keeping tracker of services
|
---|
404 | unsigned int servicesCounter;
|
---|
405 | public:
|
---|
406 | int Write(const Time &time, const std::string &txt, int qos=kMessage);
|
---|
407 |
|
---|
408 | }; //DataLogger
|
---|
409 |
|
---|
410 |
|
---|
411 | /**
|
---|
412 | * @brief the two methods below were copied from StateMachineDimControl.cc
|
---|
413 | *
|
---|
414 | */
|
---|
415 | int DataLogger::HandleDescriptions(DimDescriptions* desc)
|
---|
416 | {
|
---|
417 | fMutex.lock();
|
---|
418 | for (auto it=desc->descriptions.begin(); it != desc->descriptions.end(); it++) {
|
---|
419 | if (fDebugIsOn)
|
---|
420 | {
|
---|
421 | Debug("Adding description for service: " + it->front().name);
|
---|
422 | }
|
---|
423 | fServiceDescriptionList[it->front().name].assign(it->begin(), it->end());
|
---|
424 | }
|
---|
425 | fMutex.unlock();
|
---|
426 |
|
---|
427 | return GetCurrentState();
|
---|
428 | }
|
---|
429 | /**
|
---|
430 | * UPDATE SUBSCRIPTION LIST. Updates the subscription list service if enough time has passed.
|
---|
431 | * Otherwise does nothing
|
---|
432 | */
|
---|
433 | void DataLogger::updateSubscriptionList()
|
---|
434 | {
|
---|
435 | if (fCurrentSubscriptionUpdateRate <= 0) return;
|
---|
436 | Time timeNow;
|
---|
437 | //if less than the update rate time has passed, just return
|
---|
438 | if (timeNow - fLastSubscriptionUpdate < boost::posix_time::seconds(fCurrentSubscriptionUpdateRate))
|
---|
439 | return;
|
---|
440 | //TODO remove me !
|
---|
441 | // cout << "Updating subscription list with: " << endl;
|
---|
442 |
|
---|
443 | fLastSubscriptionUpdate = timeNow;
|
---|
444 |
|
---|
445 | //update service !
|
---|
446 | ostringstream output;
|
---|
447 | for (auto serverIt=fServiceSubscriptions.begin();serverIt!=fServiceSubscriptions.end(); serverIt++)
|
---|
448 | {
|
---|
449 | if (serverIt->first == "DATA_LOGGER")
|
---|
450 | continue;
|
---|
451 | for (auto serviceIt=serverIt->second.begin(); serviceIt!=serverIt->second.end(); serviceIt++)
|
---|
452 | {
|
---|
453 | output << serverIt->first << "/" << serviceIt->first << ",";
|
---|
454 | if (serviceIt->second.lastReceivedEvent != Time::None)
|
---|
455 | output << (timeNow - serviceIt->second.lastReceivedEvent).total_seconds();
|
---|
456 | else
|
---|
457 | output << "-1";
|
---|
458 | output << "\n";
|
---|
459 | }
|
---|
460 | }
|
---|
461 | //TODO remove me !
|
---|
462 | //cout << output.str();
|
---|
463 | fCurrentSubscription->setData(output.str().c_str(), output.str().size()+1);
|
---|
464 | fCurrentSubscription->setQuality(0);
|
---|
465 | fCurrentSubscription->Update();
|
---|
466 | }
|
---|
467 | int DataLogger::setSubscriptionListUpdateTimeLapse(const Event& evt)
|
---|
468 | {
|
---|
469 | fCurrentSubscriptionUpdateRate = evt.GetInt();
|
---|
470 |
|
---|
471 | return GetCurrentState();
|
---|
472 | }
|
---|
473 | vector<Description> DataLogger::GetDescription(const string& server, const string& service)
|
---|
474 | {
|
---|
475 | const lock_guard<mutex> guard(fMutex);
|
---|
476 | const auto it = fServiceDescriptionList.find(server+"/"+service);
|
---|
477 | return it==fServiceDescriptionList.end()?vector<Description>():it->second;
|
---|
478 | }
|
---|
479 | // --------------------------------------------------------------------------
|
---|
480 | //
|
---|
481 | //! Overwritten write function. This way we directly log the datalogger's messages, without going through dim's dns,
|
---|
482 | //! thus increasing robustness.
|
---|
483 | //! @param time: see MessageImp class param
|
---|
484 | //! @param txt: see MessageImp class param
|
---|
485 | //! @param qos: see MessageImp class param
|
---|
486 | //! @return see MessageImp class param
|
---|
487 | //
|
---|
488 | int DataLogger::Write(const Time&time, const std::string& txt, int qos)
|
---|
489 | {
|
---|
490 | ostringstream ss;
|
---|
491 | ss << "datalogger: " << txt;
|
---|
492 | if (fNightlyLogFile.is_open())
|
---|
493 | {
|
---|
494 | fNightlyLogImp.Write(time, ss.str(), qos);
|
---|
495 | }
|
---|
496 | else if (shouldBackLog)
|
---|
497 | {
|
---|
498 | ostringstream str;
|
---|
499 | MessageImp mimp(str);
|
---|
500 | mimp.Write(time, ss.str(), qos);
|
---|
501 | backLogBuffer.push_back(str.str());
|
---|
502 | }
|
---|
503 | return StateMachineDim::Write(time, ss.str(), qos);
|
---|
504 | }
|
---|
505 | // --------------------------------------------------------------------------
|
---|
506 | //
|
---|
507 | //! Check if a given path exists
|
---|
508 | //! @param path the path to be checked
|
---|
509 | //! @return whether or not the creation has been successfull
|
---|
510 | //
|
---|
511 | bool DataLogger::CreateDirectory(const string &path)
|
---|
512 | {
|
---|
513 | try
|
---|
514 | {
|
---|
515 | boost::filesystem::create_directories(path);
|
---|
516 | return true;
|
---|
517 | }
|
---|
518 | catch (const runtime_error &e)
|
---|
519 | {
|
---|
520 | Error(e.what());
|
---|
521 | return false;
|
---|
522 | }
|
---|
523 | }
|
---|
524 | // --------------------------------------------------------------------------
|
---|
525 | //
|
---|
526 | //! Check if a given path exists
|
---|
527 | //! @param path the path to be checked
|
---|
528 | //! @return whether or not the given path exists
|
---|
529 | //
|
---|
530 | bool DataLogger::DoesPathExist(string path)
|
---|
531 | {
|
---|
532 | return DimWriteStatistics::DoesPathExist(path, *this);
|
---|
533 | }
|
---|
534 |
|
---|
535 | void DataLogger::AddServer(const string& server)
|
---|
536 | {
|
---|
537 | Info("Got request to add server " + server );
|
---|
538 | if (server != "DIS_DNS")
|
---|
539 | {
|
---|
540 | for (auto it=fServerDescriptionsList.begin(); it != fServerDescriptionsList.end(); it++)
|
---|
541 | if ((*it)->server == server)
|
---|
542 | {
|
---|
543 | if (fDebugIsOn)
|
---|
544 | {
|
---|
545 | ostringstream str;
|
---|
546 | str << "Already got description for server " << server << ". Ignoring." << endl;
|
---|
547 | Debug(str.str());
|
---|
548 | return;
|
---|
549 | }
|
---|
550 | }
|
---|
551 | DimDescriptions* d = new DimDescriptions(server);
|
---|
552 | d->SetCallbackDescriptions(bind(&DataLogger::HandleDescriptions, this, d));
|
---|
553 | d->Subscribe(*this);
|
---|
554 | fServerDescriptionsList.push_back(d);
|
---|
555 | }
|
---|
556 |
|
---|
557 | }
|
---|
558 |
|
---|
559 | // --------------------------------------------------------------------------
|
---|
560 | //
|
---|
561 | //! Add a new service subscription
|
---|
562 | //! @param server the server for which the subscription should be created
|
---|
563 | //! @param service the service for which the subscription should be created
|
---|
564 | //! @param isCmd whether this is a Dim Command or not. Commands are not logged
|
---|
565 | //
|
---|
566 | void DataLogger::AddService(const Service& svc)
|
---|
567 | {
|
---|
568 | const string& serverr = svc.server;
|
---|
569 | //FIX in order to get rid of the '+' that sometimes makes it all the way to me
|
---|
570 | string server = serverr;
|
---|
571 | if (server.size() > 0 && server[0] == '+')
|
---|
572 | {
|
---|
573 | server = server.substr(1);
|
---|
574 | Warn("Got a service beginning with +. This is not supposed to happen");
|
---|
575 | }
|
---|
576 | // server = server.substr(1);
|
---|
577 |
|
---|
578 | const string& service = svc.service;
|
---|
579 | const bool isCmd = svc.iscmd;
|
---|
580 |
|
---|
581 | //dataLogger does not subscribe to commands
|
---|
582 | if (isCmd)
|
---|
583 | return;
|
---|
584 |
|
---|
585 | Info("Got request to add service: "+server+"/"+service);
|
---|
586 |
|
---|
587 | //check the given subscription against black and white lists
|
---|
588 | if (!ShouldSubscribe(server, service))
|
---|
589 | return;
|
---|
590 |
|
---|
591 | map<string, SubscriptionType> &list = fServiceSubscriptions[server];
|
---|
592 |
|
---|
593 | if (list.find(service) != list.end())
|
---|
594 | {
|
---|
595 | if (list[service].format != svc.format)
|
---|
596 | {
|
---|
597 | if (list[service].nightlyFile.IsOpen())
|
---|
598 | {
|
---|
599 | string fileName = list[service].nightlyFile.GetName();
|
---|
600 | if (fileName == "")
|
---|
601 | {
|
---|
602 | Error("Something went wrong while dealing with new format of "+server+"/"+service+" file tagged as open but filename is empty. Aborting");
|
---|
603 | return;
|
---|
604 | }
|
---|
605 | list[service].nightlyFile.Close();
|
---|
606 | list[service].increment++;
|
---|
607 | Warn("Format of "+server+"/"+service+" has changed. Closing "+fileName);
|
---|
608 | /* string fileNameWithoutFits = fileName.substr(0, fileName.size()-4);
|
---|
609 | int counter=0;
|
---|
610 | while (counter < 100)
|
---|
611 | {
|
---|
612 | ostringstream newFileName;
|
---|
613 | newFileName << fileNameWithoutFits << counter << ".fits";
|
---|
614 | ifstream testStream(newFileName.str());
|
---|
615 | if (!testStream) //fileName available
|
---|
616 | {
|
---|
617 | rename(fileName.c_str(), newFileName.str().c_str());
|
---|
618 | break;
|
---|
619 | }
|
---|
620 | counter++;
|
---|
621 | }
|
---|
622 | if (counter==100)
|
---|
623 | Error("Could not rename "+fileName+" after 100 trials (because of format change). Aborting");
|
---|
624 | */
|
---|
625 | //reallocate the fits buffer...
|
---|
626 | list[service].fitsBufferAllocated = false;
|
---|
627 | }
|
---|
628 | list[service].fConv = shared_ptr<Converter>(new Converter(Out(), svc.format));
|
---|
629 | list[service].format = svc.format;
|
---|
630 | }
|
---|
631 | if (fDebugIsOn)
|
---|
632 | Debug("Service " + server + "/" + service + " is already in the dataLogger's list... ignoring update.");
|
---|
633 | return;
|
---|
634 | }
|
---|
635 | //DIM_REPLACE
|
---|
636 | // list[service].dimInfo.reset(SubscribeTo(server, service));
|
---|
637 | if (fDebugIsOn)
|
---|
638 | Debug("Subscribing to service "+server+"/"+service);
|
---|
639 | Subscribe(server + "/" + service)
|
---|
640 | (bind(&DataLogger::infoCallback, this, placeholders::_1, servicesCounter));
|
---|
641 | list[service].server = server;
|
---|
642 | list[service].service = service;
|
---|
643 | list[service].format = svc.format;
|
---|
644 | list[service].index = servicesCounter;
|
---|
645 | fNumSubAndFitsData.numSubscriptions++;
|
---|
646 | //check if this is the run numbers service
|
---|
647 | if ((server == "FAD_CONTROL") && (service == "START_RUN"))
|
---|
648 | fRunNumberService = servicesCounter;
|
---|
649 | servicesCounter++;
|
---|
650 | Info("Added subscription to " + server + "/" + service);
|
---|
651 | }
|
---|
652 | // --------------------------------------------------------------------------
|
---|
653 | //
|
---|
654 | //! Remove a given service subscription
|
---|
655 | //! @param server the server for which the subscription should be removed
|
---|
656 | //! @param service the service that should be removed
|
---|
657 | //! @param isCmd whether or not this is a command
|
---|
658 | //
|
---|
659 | void DataLogger::RemoveService(string server, string service, bool isCmd)
|
---|
660 | {
|
---|
661 |
|
---|
662 | Info("Got request to remove service: "+server+"/"+service);
|
---|
663 | if (fDestructing)//this function is called by the super class, after the destructor has deleted its own subscriptions
|
---|
664 | return;
|
---|
665 | //FIXME unused
|
---|
666 | return;
|
---|
667 |
|
---|
668 | if (isCmd)
|
---|
669 | return;
|
---|
670 |
|
---|
671 | if (fServiceSubscriptions.find(server) == fServiceSubscriptions.end())
|
---|
672 | {
|
---|
673 | Error("Request to remove service "+service+" from server "+server+", but service not found.");
|
---|
674 | return;
|
---|
675 | }
|
---|
676 |
|
---|
677 | if (fServiceSubscriptions[server].erase(service) != 1)
|
---|
678 | {
|
---|
679 | //check the given subscription against black and white lists
|
---|
680 | if (!ShouldSubscribe(server, service))
|
---|
681 | return;
|
---|
682 |
|
---|
683 | Error("Subscription "+server+"/"+service+" could not be removed as it is not present");
|
---|
684 | return;
|
---|
685 | }
|
---|
686 | fNumSubAndFitsData.numSubscriptions--;
|
---|
687 |
|
---|
688 | if ((server == "FAD_CONTROL") && (service == "START_RUN"))
|
---|
689 | fRunNumberService = 0;
|
---|
690 |
|
---|
691 | Info("Removed subscription to " + server + "/" + service);
|
---|
692 | }
|
---|
693 | // --------------------------------------------------------------------------
|
---|
694 | //
|
---|
695 | //! Remove all the services associated with a given server
|
---|
696 | //! @param server the server for which all the services should be removed
|
---|
697 | //
|
---|
698 | void DataLogger::RemoveAllServices(const string& server)
|
---|
699 | {
|
---|
700 | Info("Got request for removing all services from: "+server);
|
---|
701 | if (fServiceSubscriptions.find(server)==fServiceSubscriptions.end())
|
---|
702 | {
|
---|
703 | Warn("Request to remove all services, but corresponding server " + server + " not found.");
|
---|
704 | return;
|
---|
705 | }
|
---|
706 | //FIXME unused
|
---|
707 | return;
|
---|
708 | fNumSubAndFitsData.numSubscriptions -= fServiceSubscriptions[server].size();
|
---|
709 |
|
---|
710 | fServiceSubscriptions[server].clear();
|
---|
711 | fServiceSubscriptions.erase(server);
|
---|
712 |
|
---|
713 | if (server == "FAD_CONTROL")
|
---|
714 | fRunNumberService = 0;
|
---|
715 |
|
---|
716 | if (fDebugIsOn)
|
---|
717 | Debug("Removed all subscriptions to " + server + "/");
|
---|
718 | }
|
---|
719 |
|
---|
720 | // --------------------------------------------------------------------------
|
---|
721 | //
|
---|
722 | //! Checks if the given ofstream is in error state and if so, close it
|
---|
723 | //! @param out the ofstream that should be checked
|
---|
724 | //
|
---|
725 | bool DataLogger::CheckForOfstreamError(ofstream& out, bool isDailyStream)
|
---|
726 | {
|
---|
727 | if (out.good())
|
---|
728 | return true;
|
---|
729 |
|
---|
730 | Error("An error occured while writing to a text file. Closing it");
|
---|
731 | if (out.is_open())
|
---|
732 | out.close();
|
---|
733 | if (isDailyStream)
|
---|
734 | GoToNightlyWriteErrorState();
|
---|
735 | else
|
---|
736 | GoToRunWriteErrorState();
|
---|
737 |
|
---|
738 | return false;
|
---|
739 | }
|
---|
740 |
|
---|
741 | bool DataLogger::OpenStreamImp(ofstream &stream, const string &filename, bool mightbeopen)
|
---|
742 | {
|
---|
743 | if (stream.is_open())
|
---|
744 | {
|
---|
745 | if (!mightbeopen)
|
---|
746 | Error(filename+" was already open when trying to open it.");
|
---|
747 | return mightbeopen;
|
---|
748 | }
|
---|
749 |
|
---|
750 | errno = 0;
|
---|
751 | stream.open(filename.c_str(), ios_base::out | ios_base::app);
|
---|
752 | if (!stream /*|| errno!=0*/)
|
---|
753 | {
|
---|
754 | ostringstream str;
|
---|
755 | str << "ofstream::open() failed for '" << filename << "': " << strerror(errno) << " [errno=" << errno << "]";
|
---|
756 | Error(str);
|
---|
757 | return false;
|
---|
758 | }
|
---|
759 |
|
---|
760 | if (!stream.is_open())
|
---|
761 | {
|
---|
762 | Error("File "+filename+" not open as it ought to be.");
|
---|
763 | return false;
|
---|
764 | }
|
---|
765 |
|
---|
766 | Info("Opened: "+filename);
|
---|
767 |
|
---|
768 | return true;
|
---|
769 | }
|
---|
770 |
|
---|
771 | bool DataLogger::OpenStream(shared_ptr<ofstream> stream, const string &filename)
|
---|
772 | {
|
---|
773 | return OpenStreamImp(*stream, filename, false);
|
---|
774 | }
|
---|
775 |
|
---|
776 | // --------------------------------------------------------------------------
|
---|
777 | //
|
---|
778 | //! Open a text file and checks for error code
|
---|
779 | //! @param stream the ofstream for which the file should be opened
|
---|
780 | //! @name the file name
|
---|
781 | //
|
---|
782 | bool DataLogger::OpenTextFile(ofstream& stream, const string& name)
|
---|
783 | {
|
---|
784 | return OpenStreamImp(stream, name, true);
|
---|
785 | }
|
---|
786 |
|
---|
787 | // --------------------------------------------------------------------------
|
---|
788 | //
|
---|
789 | //! Create a new dim subscription to a given server and service
|
---|
790 | //! @param server the server name
|
---|
791 | //! @param service the service name
|
---|
792 | //
|
---|
793 | /*EventImp& DataLogger::SubscribeTo(const string& server, const string& service)
|
---|
794 | {
|
---|
795 |
|
---|
796 | //DIM_REPLACE
|
---|
797 | //return new DimStampedInfo((server + "/" + service).c_str(), (void*)NULL, 0, this);
|
---|
798 | EventImp& newSubscription = Subscribe(server + "/" + service);
|
---|
799 | newSubscription.bind(&infoHandler, this, placeholders::_1);
|
---|
800 | return newSubscription;
|
---|
801 | }*/
|
---|
802 | // --------------------------------------------------------------------------
|
---|
803 | //
|
---|
804 | //! Check whether a service should be subscribed to, based on the black/white list entries
|
---|
805 | //! @param server the server name associated with the service being checked
|
---|
806 | //! @param service the service name associated with the service being checked
|
---|
807 | //
|
---|
808 | bool DataLogger::ShouldSubscribe(const string& server, const string& service)
|
---|
809 | {
|
---|
810 | if ((fBlackList.find(server + "/") != fBlackList.end()) ||
|
---|
811 | (fBlackList.find(server + "/" + service) != fBlackList.end()) ||
|
---|
812 | (fBlackList.find("/" + service) != fBlackList.end()))
|
---|
813 | {
|
---|
814 | if (fWhiteList.size()>0 &&
|
---|
815 | (fWhiteList.find(server + "/" + service) != fWhiteList.end()))
|
---|
816 | {
|
---|
817 | if (fDebugIsOn)
|
---|
818 | Debug("White list saved service " + server + "/" + service + " from blacklisting");
|
---|
819 | return true;
|
---|
820 | }
|
---|
821 | if (fDebugIsOn)
|
---|
822 | Debug("Blacklist banned service " + server + "/" + service);
|
---|
823 | return false;
|
---|
824 | }
|
---|
825 | return true;
|
---|
826 | }
|
---|
827 | // --------------------------------------------------------------------------
|
---|
828 | //
|
---|
829 | //! Compiles a file name
|
---|
830 | //! @param path the base path where to put the file
|
---|
831 | //! @param time the time at which the file is created
|
---|
832 | //! @param service the service name, if any
|
---|
833 | //! @param extension the extension to add, if any
|
---|
834 | //
|
---|
835 | string DataLogger::CompileFileName(const string& service, const string& extension, const Time& time) const
|
---|
836 | {
|
---|
837 | ostringstream str;
|
---|
838 |
|
---|
839 | const Time ftime(time);//removed this as already done by nightAsInt: -boost::posix_time::hours(12));
|
---|
840 | str << ftime.NightAsInt();
|
---|
841 |
|
---|
842 | if (!service.empty())
|
---|
843 | str << '.' << service;
|
---|
844 |
|
---|
845 | if (!extension.empty())
|
---|
846 | str << "." << extension;
|
---|
847 |
|
---|
848 | return str.str();
|
---|
849 | }
|
---|
850 |
|
---|
851 | string DataLogger::CompileFileNameWithPath(const string& path, const string& service, const string& extension)
|
---|
852 | {
|
---|
853 | ostringstream str;
|
---|
854 |
|
---|
855 | const Time time;
|
---|
856 |
|
---|
857 | //calculate time suitable for naming files.
|
---|
858 | //fCurrentDay is 30 minutes after upcoming sunrise. So just use 12 hours before then
|
---|
859 | const Time ftime = fCurrentDay-boost::posix_time::hours(12);
|
---|
860 |
|
---|
861 | //output it
|
---|
862 | str << path << ftime.GetAsStr("/%Y/%m/%d");
|
---|
863 |
|
---|
864 | //check if target directory exist
|
---|
865 | if (!DoesPathExist(str.str()))
|
---|
866 | CreateDirectory(str.str());
|
---|
867 |
|
---|
868 | str << '/' << CompileFileName(service, extension, ftime);//fCurrentDay);
|
---|
869 |
|
---|
870 | return str.str();
|
---|
871 |
|
---|
872 |
|
---|
873 | }
|
---|
874 |
|
---|
875 | // --------------------------------------------------------------------------
|
---|
876 | //
|
---|
877 | //!retrieves the size on disk of a file
|
---|
878 | //! @param fileName the full file name for which the size on disk should be retrieved
|
---|
879 | //! @return the size of the file on disk, in bytes. 0 if the file does not exist or if an error occured
|
---|
880 | //
|
---|
881 | off_t DataLogger::GetFileSize(const string& fileName)
|
---|
882 | {
|
---|
883 | return DimWriteStatistics::GetFileSizeOnDisk(fileName, *this);
|
---|
884 | }
|
---|
885 |
|
---|
886 | // --------------------------------------------------------------------------
|
---|
887 | //
|
---|
888 | //! Removes the oldest run number and closes the fits files that should be closed
|
---|
889 | //! Also creates the fits grouping file
|
---|
890 | //
|
---|
891 | void DataLogger::RemoveOldestRunNumber()
|
---|
892 | {
|
---|
893 | if (fDebugIsOn)
|
---|
894 | {
|
---|
895 | ostringstream str;
|
---|
896 | str << "Removing run number " << fRunNumber.front().runNumber;
|
---|
897 | Debug(str);
|
---|
898 | }
|
---|
899 | //remove the entry
|
---|
900 | fRunNumber.pop_front();
|
---|
901 | }
|
---|
902 |
|
---|
903 | // --------------------------------------------------------------------------
|
---|
904 | //
|
---|
905 | //! Default constructor. The name of the machine is given DATA_LOGGER
|
---|
906 | //! and the state is set to kSM_Ready at the end of the function.
|
---|
907 | //
|
---|
908 | //!Setup the allows states, configs and transitions for the data logger
|
---|
909 | //
|
---|
910 | DataLogger::DataLogger(ostream &out) : StateMachineDim(out, "DATA_LOGGER"),
|
---|
911 | fNightlyLogImp(fNightlyLogFile), fFilesStats("DATA_LOGGER", *this)
|
---|
912 | {
|
---|
913 | shouldBackLog = true;
|
---|
914 |
|
---|
915 | servicesCounter=1;
|
---|
916 |
|
---|
917 | //initialize member data
|
---|
918 | fFilePath = ".";
|
---|
919 |
|
---|
920 | fDimList.Subscribe(*this);
|
---|
921 | fDimList.SetCallbackServerAdd(bind(&DataLogger::AddServer, this, placeholders::_1));
|
---|
922 | fDimList.SetCallbackServiceAdd(bind(&DataLogger::AddService, this, placeholders::_1));
|
---|
923 |
|
---|
924 | //calculate time "centered" around noon instead of midnight
|
---|
925 | const Time timeNow;
|
---|
926 | // const Time nowMinusTwelve = timeNow-boost::posix_time::hours(12);
|
---|
927 | //the "current day" is actually the next closing time of nightly files
|
---|
928 | //the next closing time is 30 minutes after upcoming sunrise.
|
---|
929 | //If we are within 30 minutes after sunrise, closing time is soon
|
---|
930 | fCurrentDay = Time().GetNextSunRise();//GetSunRise(Time()-boost::posix_time::minutes(30)) + boost::posix_time::minutes(30);//(int)(nowMinusTwelve.Mjd());//nowMinusTwelve.M()*31 + nowMinusTwelve.D();//assume 31 days per month. we do not really care, only want unique number per day of the year
|
---|
931 | lastFlush = Time();
|
---|
932 |
|
---|
933 | //Give a name to this machine's specific states
|
---|
934 | AddStateName(kSM_NightlyOpen, "NightlyFileOpen", "The summary files for the night are open.");
|
---|
935 | AddStateName(kSM_WaitingRun, "WaitForRun", "The summary files for the night are open and we wait for a run to be started.");
|
---|
936 | AddStateName(kSM_Logging, "Logging", "The summary files for the night and the files for a single run are open.");
|
---|
937 | AddStateName(kSM_BadFolder, "ErrInvalidFolder", "The folder for the files is not invalid.");
|
---|
938 | AddStateName(kSM_DailyWriteError, "ErrDailyWrite", "An error occured while writing to a daily (and run) file.");
|
---|
939 | AddStateName(kSM_RunWriteError, "ErrRunWrite", "An error occured while writing to a run file.");
|
---|
940 |
|
---|
941 | // Add the possible transitions for this machine
|
---|
942 | AddEvent("START", kSM_Ready, kSM_BadFolder)
|
---|
943 | (bind(&DataLogger::Start, this))
|
---|
944 | ("Start the nightly logging. Nightly file location must be specified already");
|
---|
945 |
|
---|
946 | AddEvent("STOP", kSM_NightlyOpen, kSM_WaitingRun, kSM_Logging, kSM_DailyWriteError, kSM_RunWriteError)
|
---|
947 | (bind(&DataLogger::GoToReady, this))
|
---|
948 | ("Stop all data logging, close all files.");
|
---|
949 |
|
---|
950 | AddEvent("RESET", kSM_Error, kSM_BadFolder, kSM_DailyWriteError, kSM_RunWriteError)
|
---|
951 | (bind(&DataLogger::GoToReady, this))
|
---|
952 | ("Transition to exit error states. Closes the any open file.");
|
---|
953 |
|
---|
954 | AddEvent("START_RUN_LOGGING", /*kSM_Logging,*/ kSM_NightlyOpen, kSM_Ready)
|
---|
955 | (bind(&DataLogger::NightlyToWaitRun, this))
|
---|
956 | ("Go to waiting for run number state. In this state with any received run-number a new file is opened.");
|
---|
957 |
|
---|
958 | AddEvent("STOP_RUN_LOGGING", kSM_WaitingRun, kSM_Logging)
|
---|
959 | (bind(&DataLogger::BackToNightlyOpen, this))
|
---|
960 | ("Go from the wait for run to nightly open state.");
|
---|
961 |
|
---|
962 | // Provide a print command
|
---|
963 | AddEvent("PRINT_INFO")
|
---|
964 | (bind(&DataLogger::PrintState, this, placeholders::_1))
|
---|
965 | ("Print information about the internal status of the data logger.");
|
---|
966 |
|
---|
967 |
|
---|
968 | OpenFileToDim fToDim;
|
---|
969 | fToDim.code = 0;
|
---|
970 | fToDim.fileName[0] = '\0';
|
---|
971 |
|
---|
972 | fOpenedNightlyFiles = new DimDescribedService(GetName() + "/FILENAME_NIGHTLY", "I:1;C", fToDim,
|
---|
973 | "Path and base name used for the nightly files."
|
---|
974 | "|Type[int]:type of open files (1=log, 2=rep, 4=fits)"
|
---|
975 | "|Name[string]:path and base file name");
|
---|
976 |
|
---|
977 | fOpenedRunFiles = new DimDescribedService(GetName() + "/FILENAME_RUN", "I:1;C", fToDim,
|
---|
978 | "Path and base name used for the run files."
|
---|
979 | "|Type[int]:type of open files (1=log, 2=rep, 4=fits)"
|
---|
980 | "|Name[string]:path and base file name");
|
---|
981 |
|
---|
982 | fNumSubAndFitsData.numSubscriptions = 0;
|
---|
983 | fNumSubAndFitsData.numOpenFits = 0;
|
---|
984 | fNumSubAndFits = new DimDescribedService(GetName() + "/NUM_SUBS", "I:2", fNumSubAndFitsData,
|
---|
985 | "Num. open files + num. subscribed services"
|
---|
986 | "|NSubAndOpenFiles[int]:Num. of subs and open files");
|
---|
987 |
|
---|
988 | //services parameters
|
---|
989 | fDebugIsOn = false;
|
---|
990 | fOpenedFilesIsOn = true;
|
---|
991 | fNumSubAndFitsIsOn = true;
|
---|
992 |
|
---|
993 | string emptyString="";
|
---|
994 | //Subscription list service
|
---|
995 | fCurrentSubscription = new DimDescribedService(GetName() + "/SUBSCRIPTIONS", "C", emptyString.c_str(),
|
---|
996 | "List of all the services subscribed by datalogger, except the ones provided by itself."
|
---|
997 | "|Liste[string]:list of logged services and the delay in seconds since last update");
|
---|
998 | fCurrentSubscriptionUpdateRate = 60; //by default, 1 minute between each update
|
---|
999 | fLastSubscriptionUpdate = timeNow;
|
---|
1000 |
|
---|
1001 | // provide services control commands
|
---|
1002 | AddEvent("SET_DEBUG_MODE", "B:1", kSM_NightlyOpen, kSM_Logging, kSM_WaitingRun, kSM_Ready)
|
---|
1003 | (bind(&DataLogger::SetDebugOnOff, this, placeholders::_1))
|
---|
1004 | ("Switch debug mode on or off. Debug mode prints information about every service written to a file."
|
---|
1005 | "|Enable[bool]:Enable of disable debug mode (yes/no).");
|
---|
1006 |
|
---|
1007 | AddEvent("SET_STATISTICS_UPDATE_INTERVAL", "S:1", kSM_NightlyOpen, kSM_Logging, kSM_WaitingRun, kSM_Ready)
|
---|
1008 | (bind(&DataLogger::SetStatsPeriod, this, placeholders::_1))
|
---|
1009 | ("Interval in which the data-logger statistics service (STATS) is updated."
|
---|
1010 | "|Interval[ms]:Value in milliseconds (<=0: no update).");
|
---|
1011 |
|
---|
1012 | AddEvent("ENABLE_FILENAME_SERVICES", "B:1", kSM_NightlyOpen, kSM_Logging, kSM_WaitingRun, kSM_Ready)
|
---|
1013 | (bind(&DataLogger::SetOpenedFilesOnOff ,this, placeholders::_1))
|
---|
1014 | ("Switch service which distributes information about the open files on or off."
|
---|
1015 | "|Enable[bool]:Enable of disable filename services (yes/no).");
|
---|
1016 |
|
---|
1017 | AddEvent("ENABLE_NUMSUBS_SERVICE", "B:1", kSM_NightlyOpen, kSM_Logging, kSM_WaitingRun, kSM_Ready)
|
---|
1018 | (bind(&DataLogger::SetNumSubsAndFitsOnOff, this, placeholders::_1))
|
---|
1019 | ("Switch the service which distributes information about the number of subscriptions and open files on or off."
|
---|
1020 | "|Enable[bool]:Enable of disable NUM_SUBS service (yes/no).");
|
---|
1021 |
|
---|
1022 | AddEvent("SET_RUN_TIMEOUT", "L:1", kSM_Ready, kSM_NightlyOpen, kSM_Logging, kSM_WaitingRun)
|
---|
1023 | (bind(&DataLogger::SetRunTimeoutDelay, this, placeholders::_1))
|
---|
1024 | ("Set the timeout delay for old run numbers."
|
---|
1025 | "|timeout[min]:Time out in minutes after which files for expired runs are closed.");
|
---|
1026 | //Provide access to the duration between two updates of the service list
|
---|
1027 | AddEvent("SET_SERVICE_LIST_UPDATE_INTERVAL", "I:1", kSM_Ready, kSM_NightlyOpen, kSM_Logging, kSM_WaitingRun)
|
---|
1028 | (bind(&DataLogger::setSubscriptionListUpdateTimeLapse, this, placeholders::_1))
|
---|
1029 | ("Set the min interval between two services-list updates."
|
---|
1030 | "|duration[sec]:The interval between two updates, in seconds.");
|
---|
1031 |
|
---|
1032 | fDestructing = false;
|
---|
1033 |
|
---|
1034 | fPreviousOldRunNumberCheck = Time().Mjd();
|
---|
1035 |
|
---|
1036 | fDailyFileDayChangedAlready = true;
|
---|
1037 | fRunNumberTimeout = 60000; //default run-timeout set to 1 minute
|
---|
1038 | fRunNumber.push_back(RunNumberType());
|
---|
1039 | fRunNumber.back().runNumber = -1;
|
---|
1040 | fRunNumber.back().time = Time();
|
---|
1041 | NotifyOpenedFile("", 0, fOpenedNightlyFiles);
|
---|
1042 | NotifyOpenedFile("", 0, fOpenedRunFiles);
|
---|
1043 |
|
---|
1044 | fRunNumberService = 0;
|
---|
1045 |
|
---|
1046 | fShouldAutoStart = false;
|
---|
1047 | fAutoStarted = false;
|
---|
1048 |
|
---|
1049 |
|
---|
1050 | if(fDebugIsOn)
|
---|
1051 | {
|
---|
1052 | Debug("DataLogger Init Done.");
|
---|
1053 | }
|
---|
1054 | }
|
---|
1055 |
|
---|
1056 | // --------------------------------------------------------------------------
|
---|
1057 | //
|
---|
1058 | //! Destructor
|
---|
1059 | //
|
---|
1060 | DataLogger::~DataLogger()
|
---|
1061 | {
|
---|
1062 | if (fDebugIsOn)
|
---|
1063 | Debug("DataLogger destruction starts");
|
---|
1064 |
|
---|
1065 | //this boolean should not be required anymore
|
---|
1066 | fDestructing = true;
|
---|
1067 |
|
---|
1068 | //now clear the services subscriptions
|
---|
1069 | dim_lock();
|
---|
1070 | fServiceSubscriptions.clear();
|
---|
1071 | dim_unlock();
|
---|
1072 |
|
---|
1073 | //clear any remaining run number (should remain only one)
|
---|
1074 | while (fRunNumber.size() > 0)
|
---|
1075 | {
|
---|
1076 | RemoveOldestRunNumber();
|
---|
1077 | }
|
---|
1078 | //go to the ready state. i.e. close all files, run-wise first
|
---|
1079 | GoToReady();
|
---|
1080 |
|
---|
1081 | Info("Will soon close the daily log file");
|
---|
1082 |
|
---|
1083 | delete fOpenedNightlyFiles;
|
---|
1084 | delete fOpenedRunFiles;
|
---|
1085 | delete fNumSubAndFits;
|
---|
1086 | delete fCurrentSubscription;
|
---|
1087 |
|
---|
1088 | if (fNightlyLogFile.is_open())//this file is the only one that has not been closed by GoToReady
|
---|
1089 | {
|
---|
1090 | fNightlyLogFile << endl;
|
---|
1091 | fNightlyLogFile.close();
|
---|
1092 | }
|
---|
1093 | if (!fNightlyLogFile.is_open())
|
---|
1094 | Info("Daily log file was closed indeed");
|
---|
1095 | else
|
---|
1096 | Warn("Seems like there was a problem while closing the daily log file.");
|
---|
1097 | for (auto it=fServerDescriptionsList.begin(); it!= fServerDescriptionsList.end(); it++)
|
---|
1098 | delete *it;
|
---|
1099 |
|
---|
1100 | if (fDebugIsOn)
|
---|
1101 | Debug("DataLogger desctruction ends");
|
---|
1102 | }
|
---|
1103 |
|
---|
1104 | // --------------------------------------------------------------------------
|
---|
1105 | //
|
---|
1106 | //! checks if old run numbers should be trimmed and if so, do it
|
---|
1107 | //
|
---|
1108 | void DataLogger::TrimOldRunNumbers()
|
---|
1109 | {
|
---|
1110 | const Time cTime = Time();
|
---|
1111 |
|
---|
1112 | if (cTime - fPreviousOldRunNumberCheck < boost::posix_time::milliseconds(fRunNumberTimeout))
|
---|
1113 | return;
|
---|
1114 |
|
---|
1115 | while (fRunNumber.size() > 1 && (cTime - fRunNumber.back().time) > boost::posix_time::milliseconds(fRunNumberTimeout))
|
---|
1116 | {
|
---|
1117 | RemoveOldestRunNumber();
|
---|
1118 | }
|
---|
1119 | fPreviousOldRunNumberCheck = cTime;
|
---|
1120 | }
|
---|
1121 | // --------------------------------------------------------------------------
|
---|
1122 | //
|
---|
1123 | //! Inherited from DimInfo. Handles all the Infos to which we subscribed, and log them
|
---|
1124 | //
|
---|
1125 | int DataLogger::infoCallback(const EventImp& evt, unsigned int subIndex)
|
---|
1126 | {
|
---|
1127 | // if (fDebugIsOn)
|
---|
1128 | // {
|
---|
1129 | // ostringstream str;
|
---|
1130 | // str << "Got infoCallback called with service index= " << subIndex;
|
---|
1131 | // Debug(str.str());
|
---|
1132 | // }
|
---|
1133 |
|
---|
1134 | if ((GetCurrentState() == kSM_Ready) && (!fAutoStarted) && fShouldAutoStart)
|
---|
1135 | {
|
---|
1136 | fAutoStarted = true;
|
---|
1137 | SetCurrentState(Start(), "infoCallback");
|
---|
1138 | // SetCurrentState(NightlyToWaitRun());
|
---|
1139 | }
|
---|
1140 | else
|
---|
1141 | {
|
---|
1142 | if (GetCurrentState() > kSM_Ready)
|
---|
1143 | fAutoStarted = true;
|
---|
1144 | }
|
---|
1145 |
|
---|
1146 |
|
---|
1147 | //check if the service pointer corresponds to something that we subscribed to
|
---|
1148 | //this is a fix for a bug that provides bad Infos when a server starts
|
---|
1149 | bool found = false;
|
---|
1150 | SubscriptionsListType::iterator x;
|
---|
1151 | map<string, SubscriptionType>::iterator y;
|
---|
1152 | for (x=fServiceSubscriptions.begin(); x != fServiceSubscriptions.end(); x++)
|
---|
1153 | {//find current service is subscriptions
|
---|
1154 | //Edit: this should be useless now... remove it sometimes ?
|
---|
1155 | for (y=x->second.begin(); y!=x->second.end();y++)
|
---|
1156 | if (y->second.index == subIndex)
|
---|
1157 | {
|
---|
1158 | found = true;
|
---|
1159 | break;
|
---|
1160 | }
|
---|
1161 | if (found)
|
---|
1162 | break;
|
---|
1163 | }
|
---|
1164 |
|
---|
1165 | if (!found && fDebugIsOn)
|
---|
1166 | {
|
---|
1167 | ostringstream str;
|
---|
1168 | str << "Service " << evt.GetName() << " not found in subscriptions" << endl;
|
---|
1169 | Debug(str.str());
|
---|
1170 | }
|
---|
1171 | if (!found)
|
---|
1172 | return GetCurrentState();
|
---|
1173 |
|
---|
1174 |
|
---|
1175 | if (evt.GetSize() == 0 && fDebugIsOn)
|
---|
1176 | {
|
---|
1177 | ostringstream str;
|
---|
1178 | str << "Got 0 size for " << evt.GetName() << endl;
|
---|
1179 | Debug(str.str());
|
---|
1180 | }
|
---|
1181 | if (evt.GetSize() == 0)
|
---|
1182 | return GetCurrentState();
|
---|
1183 |
|
---|
1184 | if (evt.GetFormat() == "" && fDebugIsOn)
|
---|
1185 | {
|
---|
1186 | ostringstream str;
|
---|
1187 | str << "Got no format for " << evt.GetName() << endl;
|
---|
1188 | Debug(str.str());
|
---|
1189 | }
|
---|
1190 | if (evt.GetFormat() == "")
|
---|
1191 | return GetCurrentState();
|
---|
1192 |
|
---|
1193 | // cout.precision(20);
|
---|
1194 | // cout << "Orig timestamp: " << Time(I->getTimestamp(), I->getTimestampMillisecs()*1000).Mjd() << endl;
|
---|
1195 | // FIXME: Here we have to check if we have received the
|
---|
1196 | // service with the run-number.
|
---|
1197 | // CheckForRunNumber(I); has been removed because we have to
|
---|
1198 | // subscribe to this service anyway and hence we have the pointer
|
---|
1199 | // (no need to check for the name)
|
---|
1200 | CheckForRunNumber(evt, subIndex);
|
---|
1201 |
|
---|
1202 | Report(evt, y->second);
|
---|
1203 |
|
---|
1204 | //remove old run numbers
|
---|
1205 | TrimOldRunNumbers();
|
---|
1206 |
|
---|
1207 | return GetCurrentState();
|
---|
1208 | }
|
---|
1209 |
|
---|
1210 | // --------------------------------------------------------------------------
|
---|
1211 | //
|
---|
1212 | //! Add a new active run number
|
---|
1213 | //! @param newRun the new run number
|
---|
1214 | //! @param time the time at which the new run number was issued
|
---|
1215 | //
|
---|
1216 | void DataLogger::AddNewRunNumber(int64_t newRun, Time time)
|
---|
1217 | {
|
---|
1218 |
|
---|
1219 | if (newRun > 0xffffffff)
|
---|
1220 | {
|
---|
1221 | Error("New run number too large, out of range. Ignoring.");
|
---|
1222 | return;
|
---|
1223 | }
|
---|
1224 | for (std::vector<int64_t>::const_iterator it=previousRunNumbers.begin(); it != previousRunNumbers.end(); it++)
|
---|
1225 | {
|
---|
1226 | if (*it == newRun)
|
---|
1227 | {
|
---|
1228 | Error("Newly provided run number has already been used (or is still in use). Going to error state");
|
---|
1229 | SetCurrentState(kSM_BadFolder, "AddNewRunNumber");
|
---|
1230 | return;
|
---|
1231 | }
|
---|
1232 | }
|
---|
1233 | if (fDebugIsOn)
|
---|
1234 | {
|
---|
1235 | ostringstream str;
|
---|
1236 | str << "Adding new run number " << newRun << " issued at " << time;
|
---|
1237 | Debug(str);
|
---|
1238 | }
|
---|
1239 | //Add new run number to run number list
|
---|
1240 | fRunNumber.push_back(RunNumberType());
|
---|
1241 | fRunNumber.back().runNumber = int32_t(newRun);
|
---|
1242 | fRunNumber.back().time = time;
|
---|
1243 |
|
---|
1244 | if (fDebugIsOn)
|
---|
1245 | {
|
---|
1246 | ostringstream str;
|
---|
1247 | str << "The new run number is: " << fRunNumber.back().runNumber;
|
---|
1248 | Debug(str);
|
---|
1249 | }
|
---|
1250 | if (GetCurrentState() != kSM_Logging && GetCurrentState() != kSM_WaitingRun )
|
---|
1251 | return;
|
---|
1252 |
|
---|
1253 | if (newRun > 0 && GetCurrentState() == kSM_WaitingRun)
|
---|
1254 | SetCurrentState(kSM_Logging, "AddNewRunNumber");
|
---|
1255 | if (newRun < 0 && GetCurrentState() == kSM_Logging)
|
---|
1256 | SetCurrentState(kSM_WaitingRun, "AddNewRunNumber");
|
---|
1257 | }
|
---|
1258 | // --------------------------------------------------------------------------
|
---|
1259 | //
|
---|
1260 | //! Checks whether or not the current info is a run number.
|
---|
1261 | //! If so, then remember it. A run number is required to open the run-log file
|
---|
1262 | //! @param I
|
---|
1263 | //! the current DimInfo
|
---|
1264 | //
|
---|
1265 | void DataLogger::CheckForRunNumber(const EventImp& evt, unsigned int index)
|
---|
1266 | {
|
---|
1267 | if (index != fRunNumberService)
|
---|
1268 | return;
|
---|
1269 | // int64_t newRun = reinterpret_cast<const uint64_t*>(evt.GetData())[0];
|
---|
1270 | AddNewRunNumber(evt.GetXtra(), evt.GetTime());
|
---|
1271 | }
|
---|
1272 | // --------------------------------------------------------------------------
|
---|
1273 | //
|
---|
1274 | //! Get SunRise. Copied from drivectrl.cc
|
---|
1275 | //! Used to know when to close and reopen files
|
---|
1276 | //!
|
---|
1277 | /*
|
---|
1278 | Time DataLogger::GetSunRise(const Time &time)
|
---|
1279 | {
|
---|
1280 | #ifdef HAVE_LIBNOVA
|
---|
1281 | const double lon = -(17.+53./60+26.525/3600);
|
---|
1282 | const double lat = 28.+45./60+42.462/3600;
|
---|
1283 |
|
---|
1284 | ln_lnlat_posn observer;
|
---|
1285 | observer.lng = lon;
|
---|
1286 | observer.lat = lat;
|
---|
1287 |
|
---|
1288 | // This caluclates the sun-rise of the next day after 12:00 noon
|
---|
1289 | ln_rst_time sun_day;
|
---|
1290 | if (ln_get_solar_rst(time.JD(), &observer, &sun_day)==1)
|
---|
1291 | {
|
---|
1292 | Fatal("GetSunRise reported the sun to be circumpolar!");
|
---|
1293 | return Time(Time::none);
|
---|
1294 | }
|
---|
1295 |
|
---|
1296 | if (Time(sun_day.rise)>=time)
|
---|
1297 | return Time(sun_day.rise);
|
---|
1298 |
|
---|
1299 | if (ln_get_solar_rst(time.JD()+0.5, &observer, &sun_day)==1)
|
---|
1300 | {
|
---|
1301 | Fatal("GetSunRise reported the sun to be circumpolar!");
|
---|
1302 | return Time(Time::none);
|
---|
1303 | }
|
---|
1304 |
|
---|
1305 | return Time(sun_day.rise);
|
---|
1306 | #else
|
---|
1307 | return time;
|
---|
1308 | #endif
|
---|
1309 | }
|
---|
1310 | */
|
---|
1311 | // --------------------------------------------------------------------------
|
---|
1312 | //
|
---|
1313 | //! write infos to log files.
|
---|
1314 | //! @param I
|
---|
1315 | //! The current DimInfo
|
---|
1316 | //! @param sub
|
---|
1317 | //! The dataLogger's subscription corresponding to this DimInfo
|
---|
1318 | //
|
---|
1319 | void DataLogger::Report(const EventImp& evt, SubscriptionType& sub)
|
---|
1320 | {
|
---|
1321 | const string fmt(evt.GetFormat());
|
---|
1322 |
|
---|
1323 | const bool isItaReport = fmt!="C";
|
---|
1324 |
|
---|
1325 | if (!fNightlyLogFile.is_open())
|
---|
1326 | return;
|
---|
1327 |
|
---|
1328 | if (fDebugIsOn && string(evt.GetName())!="DATA_LOGGER/MESSAGE")
|
---|
1329 | {
|
---|
1330 | ostringstream str;
|
---|
1331 | str << "Logging " << evt.GetName() << " [" << evt.GetFormat() << "] (" << evt.GetSize() << ")";
|
---|
1332 | Debug(str);
|
---|
1333 | }
|
---|
1334 |
|
---|
1335 | //
|
---|
1336 | // Check whether we should close and reopen daily text files or not
|
---|
1337 | // calculate time "centered" around noon instead of midnight
|
---|
1338 | // if number of days has changed, then files should be closed and reopenned.
|
---|
1339 | const Time timeNow;
|
---|
1340 | // const Time nowMinusTwelve = timeNow-boost::posix_time::hours(12);
|
---|
1341 | // int newDayNumber = (int)(nowMinusTwelve.Mjd());
|
---|
1342 |
|
---|
1343 | //also check if we should flush the nightly files
|
---|
1344 | if (lastFlush < timeNow-boost::posix_time::minutes(1))
|
---|
1345 | {
|
---|
1346 | lastFlush = timeNow;
|
---|
1347 | SubscriptionsListType::iterator x;
|
---|
1348 | map<string, SubscriptionType>::iterator y;
|
---|
1349 | for (x=fServiceSubscriptions.begin(); x != fServiceSubscriptions.end(); x++)
|
---|
1350 | {//find current service is subscriptions
|
---|
1351 | for (y=x->second.begin(); y!=x->second.end();y++)
|
---|
1352 | if (y->second.nightlyFile.IsOpen())
|
---|
1353 | {
|
---|
1354 | y->second.nightlyFile.Flush();
|
---|
1355 | }
|
---|
1356 | }
|
---|
1357 | if (fDebugIsOn)
|
---|
1358 | Debug("Just flushed nightly fits files to the disk");
|
---|
1359 | }
|
---|
1360 | //check if we should close and reopen the nightly files
|
---|
1361 | if (timeNow > fCurrentDay)//GetSunRise(fCurrentDay)+boost::posix_time::minutes(30)) //if we went past 30 minutes after sunrise
|
---|
1362 | {
|
---|
1363 | //set the next closing time. If we are here, we have passed 30 minutes after sunrise.
|
---|
1364 | fCurrentDay = timeNow.GetNextSunRise();//GetSunRise(timeNow-boost::posix_time::minutes(30))+boost::posix_time::minutes(30);
|
---|
1365 | //crawl through the subcriptions and close any open nightly file
|
---|
1366 | SubscriptionsListType::iterator x;
|
---|
1367 | map<string, SubscriptionType>::iterator y;
|
---|
1368 | for (x=fServiceSubscriptions.begin(); x != fServiceSubscriptions.end(); x++)
|
---|
1369 | {//find current service is subscriptions
|
---|
1370 | for (y=x->second.begin(); y!=x->second.end();y++)
|
---|
1371 | {
|
---|
1372 | if (y->second.nightlyFile.IsOpen())
|
---|
1373 | {
|
---|
1374 | y->second.nightlyFile.Close();
|
---|
1375 | }
|
---|
1376 | y->second.increment = 0;
|
---|
1377 | }
|
---|
1378 | }
|
---|
1379 |
|
---|
1380 | if (fDebugIsOn)
|
---|
1381 | Debug("Day have changed! Closing and reopening nightly files");
|
---|
1382 |
|
---|
1383 | fNightlyLogFile << endl;
|
---|
1384 | fNightlyLogFile.close();
|
---|
1385 | fNightlyReportFile.close();
|
---|
1386 |
|
---|
1387 | Info("Closed: "+fFullNightlyLogFileName);
|
---|
1388 | Info("Closed: "+fFullNightlyReportFileName);
|
---|
1389 |
|
---|
1390 | fFullNightlyLogFileName = CompileFileNameWithPath(fFilePath, "", "log");
|
---|
1391 | if (!OpenTextFile(fNightlyLogFile, fFullNightlyLogFileName))
|
---|
1392 | {
|
---|
1393 | GoToReady();
|
---|
1394 | SetCurrentState(kSM_BadFolder, "Report");
|
---|
1395 | return;
|
---|
1396 | }
|
---|
1397 | fNightlyLogFile << endl;
|
---|
1398 |
|
---|
1399 | fFullNightlyReportFileName = CompileFileNameWithPath(fFilePath, "", "rep");
|
---|
1400 | if (!OpenTextFile(fNightlyReportFile, fFullNightlyReportFileName))
|
---|
1401 | {
|
---|
1402 | GoToReady();
|
---|
1403 | SetCurrentState(kSM_BadFolder, "Report");
|
---|
1404 | return;
|
---|
1405 | }
|
---|
1406 | }
|
---|
1407 | //create the converter for that service
|
---|
1408 | if (!sub.fConv)
|
---|
1409 | {
|
---|
1410 | sub.fConv = shared_ptr<Converter>(new Converter(Out(), evt.GetFormat()));
|
---|
1411 | if (!sub.fConv->valid())
|
---|
1412 | {
|
---|
1413 | ostringstream str;
|
---|
1414 | str << "Couldn't properly parse the format... service " << evt.GetName() << " ignored.";
|
---|
1415 | Error(str);
|
---|
1416 | return;
|
---|
1417 | }
|
---|
1418 | }
|
---|
1419 | //construct the header
|
---|
1420 | ostringstream header;
|
---|
1421 | const Time cTime(evt.GetTime());
|
---|
1422 | fQuality = evt.GetQoS();
|
---|
1423 |
|
---|
1424 | //update subscription last received time
|
---|
1425 | sub.lastReceivedEvent = cTime;
|
---|
1426 | //update subscription list service if required
|
---|
1427 | updateSubscriptionList();
|
---|
1428 |
|
---|
1429 | fMjD = cTime.Mjd() ? cTime.Mjd()-40587 : 0;
|
---|
1430 |
|
---|
1431 | if (isItaReport)
|
---|
1432 | {
|
---|
1433 | //DISABLED REPORT WRITING BY THOMAS REQUEST
|
---|
1434 | //write text header
|
---|
1435 | /* string serviceName = (sub.service == "MESSAGE") ? "" : "_"+sub.service;
|
---|
1436 | header << sub.server << serviceName << " " << fQuality << " ";
|
---|
1437 | header << evt.GetTime() << " ";
|
---|
1438 |
|
---|
1439 | string text;
|
---|
1440 | try
|
---|
1441 | {
|
---|
1442 | text = sub.fConv->GetString(evt.GetData(), evt.GetSize());
|
---|
1443 | }
|
---|
1444 | catch (const runtime_error &e)
|
---|
1445 | {
|
---|
1446 | ostringstream str;
|
---|
1447 | str << "Parsing service " << evt.GetName();
|
---|
1448 | str << " failed: " << e.what() << " removing the subscription to " << sub.server << "/" << sub.service;
|
---|
1449 | Warn(str);
|
---|
1450 | //remove this subscription from the list.
|
---|
1451 | //because these operators use references to elements, and because they're supposed here to erase these objects on the way, I'm not too sure... so duplicate the names !
|
---|
1452 | RemoveService(sub.server, sub.service, false);
|
---|
1453 | return;
|
---|
1454 | }
|
---|
1455 |
|
---|
1456 | if (text.empty())
|
---|
1457 | {
|
---|
1458 | ostringstream str;
|
---|
1459 | str << "Service " << evt.GetName() << " sent an empty string";
|
---|
1460 | Info(str);
|
---|
1461 | return;
|
---|
1462 | }
|
---|
1463 | //replace bizarre characters by white space
|
---|
1464 | replace(text.begin(), text.end(), '\n', '\\');
|
---|
1465 | replace_if(text.begin(), text.end(), ptr_fun<int, int>(&iscntrl), ' ');
|
---|
1466 |
|
---|
1467 | //write entry to Nightly report
|
---|
1468 | if (fNightlyReportFile.is_open())
|
---|
1469 | {
|
---|
1470 | fNightlyReportFile << header.str() << text << endl;
|
---|
1471 | if (!CheckForOfstreamError(fNightlyReportFile, true))
|
---|
1472 | return;
|
---|
1473 | }
|
---|
1474 | */
|
---|
1475 | #ifdef HAVE_FITS
|
---|
1476 | //check if the last received event was before noon and if current one is after noon.
|
---|
1477 | //if so, close the file so that it gets reopened.
|
---|
1478 | // sub.lastReceivedEvent = cTime;
|
---|
1479 | if (!sub.nightlyFile.IsOpen())
|
---|
1480 | if (GetCurrentState() != kSM_Ready)
|
---|
1481 | OpenFITSFiles(sub);
|
---|
1482 | WriteToFITS(sub, evt.GetData());
|
---|
1483 | #endif
|
---|
1484 | }
|
---|
1485 | else
|
---|
1486 | {//write entry to Nightly log
|
---|
1487 | vector<string> strings;
|
---|
1488 | try
|
---|
1489 | {
|
---|
1490 | strings = sub.fConv->ToStrings(evt.GetData());
|
---|
1491 | }
|
---|
1492 | catch (const runtime_error &e)
|
---|
1493 | {
|
---|
1494 | ostringstream str;
|
---|
1495 | str << "Parsing service " << evt.GetName();
|
---|
1496 | str << " failed: " << e.what() << " removing the subscription for now.";
|
---|
1497 | Error(str);
|
---|
1498 | //remove this subscription from the list.
|
---|
1499 | //because these operators use references to elements, and because they're supposed here to erase these objects on the way, I'm not too sure... so duplicate the names !
|
---|
1500 | RemoveService(sub.server, sub.service, false);
|
---|
1501 | return;
|
---|
1502 | }
|
---|
1503 | if (strings.size() > 1)
|
---|
1504 | {
|
---|
1505 | ostringstream err;
|
---|
1506 | err << "There was more than one string message in service " << evt.GetName() << " going to fatal error state";
|
---|
1507 | Error(err.str());
|
---|
1508 | }
|
---|
1509 |
|
---|
1510 | bool isMessage = (sub.service == "MESSAGE");
|
---|
1511 | ostringstream msg;
|
---|
1512 | string serviceName = isMessage ? "" : "_"+sub.service;
|
---|
1513 | msg << sub.server << serviceName;
|
---|
1514 |
|
---|
1515 | //fix the quality of non message "messages"
|
---|
1516 | if (!isMessage)
|
---|
1517 | {
|
---|
1518 | msg << "[" << fQuality << "]";
|
---|
1519 | fQuality = kMessage;
|
---|
1520 | }
|
---|
1521 |
|
---|
1522 | //special case for alarm reset
|
---|
1523 | if (isMessage && (fQuality == kAlarm) && (strings[0] == ""))
|
---|
1524 | {
|
---|
1525 | fQuality = kInfo;
|
---|
1526 | strings[0] = "Alarm reset";
|
---|
1527 | }
|
---|
1528 | msg << ": " << strings[0];
|
---|
1529 |
|
---|
1530 | if (fNightlyLogFile.is_open())
|
---|
1531 | {
|
---|
1532 | fNightlyLogImp.Write(cTime, msg.str().c_str(), fQuality);
|
---|
1533 | if (!CheckForOfstreamError(fNightlyLogFile, true))
|
---|
1534 | return;
|
---|
1535 | }
|
---|
1536 |
|
---|
1537 | // sub.lastReceivedEvent = cTime;
|
---|
1538 | if (!sub.nightlyFile.IsOpen())
|
---|
1539 | if (GetCurrentState() != kSM_Ready)
|
---|
1540 | OpenFITSFiles(sub);
|
---|
1541 | WriteToFITS(sub, evt.GetData());
|
---|
1542 | }
|
---|
1543 | }
|
---|
1544 |
|
---|
1545 | // --------------------------------------------------------------------------
|
---|
1546 | //
|
---|
1547 | //! print the dataLogger's current state. invoked by the PRINT command
|
---|
1548 | //! @param evt
|
---|
1549 | //! the current event. Not used by the method
|
---|
1550 | //! @returns
|
---|
1551 | //! the new state. Which, in that case, is the current state
|
---|
1552 | //!
|
---|
1553 | int DataLogger::PrintState(const Event& )
|
---|
1554 | {
|
---|
1555 | Message("------------------------------------------");
|
---|
1556 | Message("------- DATA LOGGER CURRENT STATE --------");
|
---|
1557 | Message("------------------------------------------");
|
---|
1558 |
|
---|
1559 | //print the path configuration
|
---|
1560 | #if BOOST_VERSION < 104600
|
---|
1561 | Message("File path: " + boost::filesystem::system_complete(boost::filesystem::path(fFilePath)).directory_string());
|
---|
1562 | #else
|
---|
1563 | Message("File path: " + boost::filesystem::system_complete(boost::filesystem::path(fFilePath)).parent_path().string());
|
---|
1564 | #endif
|
---|
1565 |
|
---|
1566 | //print active run numbers
|
---|
1567 | ostringstream str;
|
---|
1568 | //timeout value
|
---|
1569 | str << "Timeout delay for old run numbers: " << fRunNumberTimeout << " ms";
|
---|
1570 | Message(str);
|
---|
1571 | str.str("");
|
---|
1572 | str << "Active Run Numbers:";
|
---|
1573 | for (list<RunNumberType>::const_iterator it=fRunNumber.begin(); it!=fRunNumber.end(); it++)
|
---|
1574 | str << " " << it->runNumber;
|
---|
1575 | if (fRunNumber.empty())
|
---|
1576 | str << " <none>";
|
---|
1577 | Message(str);
|
---|
1578 |
|
---|
1579 | //print all the open files.
|
---|
1580 | Message("------------ OPEN FILES ----------------");
|
---|
1581 | if (fNightlyLogFile.is_open())
|
---|
1582 | Message("Nightly log-file: "+fFullNightlyLogFileName);
|
---|
1583 |
|
---|
1584 | if (fNightlyReportFile.is_open())
|
---|
1585 | Message("Nightly report-file: "+fFullNightlyReportFileName);
|
---|
1586 |
|
---|
1587 | const DimWriteStatistics::Stats statVar = fFilesStats.GetTotalSizeWritten();
|
---|
1588 | // /*const bool statWarning =*/ calculateTotalSizeWritten(statVar, true);
|
---|
1589 | #ifdef HAVE_FITS
|
---|
1590 | str.str("");
|
---|
1591 | str << "Number of open FITS files: " << fNumSubAndFitsData.numOpenFits;
|
---|
1592 | Message(str);
|
---|
1593 | // FIXME: Print list of open FITS files
|
---|
1594 | #else
|
---|
1595 | Message("FITS output disabled at compilation");
|
---|
1596 | #endif
|
---|
1597 | Message("----------------- STATS ------------------");
|
---|
1598 | if (fFilesStats.GetUpdateInterval()>0)
|
---|
1599 | {
|
---|
1600 | str.str("");
|
---|
1601 | str << "Statistics are updated every " << fFilesStats.GetUpdateInterval() << " ms";
|
---|
1602 | Message(str);
|
---|
1603 | }
|
---|
1604 | else
|
---|
1605 | Message("Statistics updates are currently disabled.");
|
---|
1606 | str.str("");
|
---|
1607 | str << "Total Size written: " << statVar.sizeWritten/1000 << " kB";
|
---|
1608 | Message(str);
|
---|
1609 | str.str("");
|
---|
1610 | str << "Disk free space: " << statVar.freeSpace/1000000 << " MB";
|
---|
1611 | Message(str);
|
---|
1612 |
|
---|
1613 | Message("------------ DIM SUBSCRIPTIONS -----------");
|
---|
1614 | str.str("");
|
---|
1615 | str << "There are " << fNumSubAndFitsData.numSubscriptions << " active DIM subscriptions.";
|
---|
1616 | Message(str);
|
---|
1617 | for (map<const string, map<string, SubscriptionType> >::const_iterator it=fServiceSubscriptions.begin(); it!= fServiceSubscriptions.end();it++)
|
---|
1618 | {
|
---|
1619 | Message("Server "+it->first);
|
---|
1620 | for (map<string, SubscriptionType>::const_iterator it2=it->second.begin(); it2!=it->second.end(); it2++)
|
---|
1621 | Message(" -> "+it2->first);
|
---|
1622 | }
|
---|
1623 | Message("--------------- BLOCK LIST ---------------");
|
---|
1624 | for (set<string>::const_iterator it=fBlackList.begin(); it != fBlackList.end(); it++)
|
---|
1625 | Message(" -> "+*it);
|
---|
1626 | if (fBlackList.empty())
|
---|
1627 | Message(" <empty>");
|
---|
1628 |
|
---|
1629 | Message("--------------- ALLOW LIST ---------------");
|
---|
1630 | for (set<string>::const_iterator it=fWhiteList.begin(); it != fWhiteList.end(); it++)
|
---|
1631 | Message(" -> "+*it);
|
---|
1632 | if (fWhiteList.empty())
|
---|
1633 | Message(" <empty>");
|
---|
1634 |
|
---|
1635 | Message("-------------- GROUPING LIST -------------");
|
---|
1636 | Message("The following servers and/or services will");
|
---|
1637 | Message("be grouped into a single fits file:");
|
---|
1638 | for (set<string>::const_iterator it=fGrouping.begin(); it != fGrouping.end(); it++)
|
---|
1639 | Message(" -> "+*it);
|
---|
1640 | if (fGrouping.empty())
|
---|
1641 | Message(" <no grouping>");
|
---|
1642 |
|
---|
1643 | Message("------------------------------------------");
|
---|
1644 | Message("-------- END OF DATA LOGGER STATE --------");
|
---|
1645 | Message("------------------------------------------");
|
---|
1646 |
|
---|
1647 | return GetCurrentState();
|
---|
1648 | }
|
---|
1649 |
|
---|
1650 | // --------------------------------------------------------------------------
|
---|
1651 | //
|
---|
1652 | //! turn debug mode on and off
|
---|
1653 | //! @param evt
|
---|
1654 | //! the current event. contains the instruction string: On, Off, on, off, ON, OFF, 0 or 1
|
---|
1655 | //! @returns
|
---|
1656 | //! the new state. Which, in that case, is the current state
|
---|
1657 | //!
|
---|
1658 | int DataLogger::SetDebugOnOff(const Event& evt)
|
---|
1659 | {
|
---|
1660 | const bool backupDebug = fDebugIsOn;
|
---|
1661 |
|
---|
1662 | fDebugIsOn = evt.GetBool();
|
---|
1663 |
|
---|
1664 | if (fDebugIsOn == backupDebug)
|
---|
1665 | Message("Debug mode was already in the requested state.");
|
---|
1666 |
|
---|
1667 | ostringstream str;
|
---|
1668 | str << "Debug mode is now " << fDebugIsOn;
|
---|
1669 | Message(str);
|
---|
1670 |
|
---|
1671 | fFilesStats.SetDebugMode(fDebugIsOn);
|
---|
1672 |
|
---|
1673 | return GetCurrentState();
|
---|
1674 | }
|
---|
1675 | // --------------------------------------------------------------------------
|
---|
1676 | //
|
---|
1677 | //! set the statistics update period duration. 0 disables the statistics
|
---|
1678 | //! @param evt
|
---|
1679 | //! the current event. contains the new duration.
|
---|
1680 | //! @returns
|
---|
1681 | //! the new state. Which, in that case, is the current state
|
---|
1682 | //!
|
---|
1683 | int DataLogger::SetStatsPeriod(const Event& evt)
|
---|
1684 | {
|
---|
1685 | fFilesStats.SetUpdateInterval(evt.GetShort());
|
---|
1686 | return GetCurrentState();
|
---|
1687 | }
|
---|
1688 | // --------------------------------------------------------------------------
|
---|
1689 | //
|
---|
1690 | //! set the opened files service on or off.
|
---|
1691 | //! @param evt
|
---|
1692 | //! the current event. contains the instruction string. similar to setdebugonoff
|
---|
1693 | //! @returns
|
---|
1694 | //! the new state. Which, in that case, is the current state
|
---|
1695 | //!
|
---|
1696 | int DataLogger::SetOpenedFilesOnOff(const Event& evt)
|
---|
1697 | {
|
---|
1698 | const bool backupOpened = fOpenedFilesIsOn;
|
---|
1699 |
|
---|
1700 | fOpenedFilesIsOn = evt.GetBool();
|
---|
1701 |
|
---|
1702 | if (fOpenedFilesIsOn == backupOpened)
|
---|
1703 | Message("Opened files service mode was already in the requested state.");
|
---|
1704 |
|
---|
1705 | ostringstream str;
|
---|
1706 | str << "Opened files service mode is now " << fOpenedFilesIsOn;
|
---|
1707 | Message(str);
|
---|
1708 |
|
---|
1709 | return GetCurrentState();
|
---|
1710 | }
|
---|
1711 |
|
---|
1712 | // --------------------------------------------------------------------------
|
---|
1713 | //
|
---|
1714 | //! set the number of subscriptions and opened fits on and off
|
---|
1715 | //! @param evt
|
---|
1716 | //! the current event. contains the instruction string. similar to setdebugonoff
|
---|
1717 | //! @returns
|
---|
1718 | //! the new state. Which, in that case, is the current state
|
---|
1719 | //!
|
---|
1720 | int DataLogger::SetNumSubsAndFitsOnOff(const Event& evt)
|
---|
1721 | {
|
---|
1722 | const bool backupSubs = fNumSubAndFitsIsOn;
|
---|
1723 |
|
---|
1724 | fNumSubAndFitsIsOn = evt.GetBool();
|
---|
1725 |
|
---|
1726 | if (fNumSubAndFitsIsOn == backupSubs)
|
---|
1727 | Message("Number of subscriptions service mode was already in the requested state");
|
---|
1728 |
|
---|
1729 | ostringstream str;
|
---|
1730 | str << "Number of subscriptions service mode is now " << fNumSubAndFitsIsOn;
|
---|
1731 | Message(str);
|
---|
1732 |
|
---|
1733 | return GetCurrentState();
|
---|
1734 | }
|
---|
1735 | // --------------------------------------------------------------------------
|
---|
1736 | //
|
---|
1737 | //! set the timeout delay for old run numbers
|
---|
1738 | //! @param evt
|
---|
1739 | //! the current event. contains the timeout delay long value
|
---|
1740 | //! @returns
|
---|
1741 | //! the new state. Which, in that case, is the current state
|
---|
1742 | //!
|
---|
1743 | int DataLogger::SetRunTimeoutDelay(const Event& evt)
|
---|
1744 | {
|
---|
1745 | if (evt.GetUInt() == 0)
|
---|
1746 | {
|
---|
1747 | Error("Timeout delays for old run numbers must be greater than 0... ignored.");
|
---|
1748 | return GetCurrentState();
|
---|
1749 | }
|
---|
1750 |
|
---|
1751 | if (fRunNumberTimeout == evt.GetUInt())
|
---|
1752 | Message("New timeout for old run numbers is same value as previous one.");
|
---|
1753 |
|
---|
1754 | fRunNumberTimeout = evt.GetUInt();
|
---|
1755 |
|
---|
1756 | ostringstream str;
|
---|
1757 | str << "Timeout delay for old run numbers is now " << fRunNumberTimeout << " ms";
|
---|
1758 | Message(str);
|
---|
1759 |
|
---|
1760 | return GetCurrentState();
|
---|
1761 | }
|
---|
1762 |
|
---|
1763 | // --------------------------------------------------------------------------
|
---|
1764 | //
|
---|
1765 | //! Notifies the DIM service that a particular file was opened
|
---|
1766 | //! @ param name the base name of the opened file, i.e. without path nor extension.
|
---|
1767 | //! WARNING: use string instead of string& because I pass values that do not convert to string&.
|
---|
1768 | //! this is not a problem though because file are not opened so often.
|
---|
1769 | //! @ param type the type of the opened file. 0 = none open, 1 = log, 2 = text, 4 = fits
|
---|
1770 | inline void DataLogger::NotifyOpenedFile(const string &name, int type, DimDescribedService* service)
|
---|
1771 | {
|
---|
1772 | if (!fOpenedFilesIsOn)
|
---|
1773 | return;
|
---|
1774 |
|
---|
1775 | if (fDebugIsOn)
|
---|
1776 | {
|
---|
1777 | ostringstream str;
|
---|
1778 | str << "Updating " << service->getName() << " file '" << name << "' (type=" << type << ")";
|
---|
1779 | Debug(str);
|
---|
1780 |
|
---|
1781 | str.str("");
|
---|
1782 | str << "Num subscriptions: " << fNumSubAndFitsData.numSubscriptions << " Num open FITS files: " << fNumSubAndFitsData.numOpenFits;
|
---|
1783 | Debug(str);
|
---|
1784 | }
|
---|
1785 |
|
---|
1786 | if (name.size()+1 > FILENAME_MAX)
|
---|
1787 | {
|
---|
1788 | Error("Provided file name '" + name + "' is longer than allowed file name length.");
|
---|
1789 | return;
|
---|
1790 | }
|
---|
1791 |
|
---|
1792 | OpenFileToDim fToDim;
|
---|
1793 | fToDim.code = type;
|
---|
1794 | memcpy(fToDim.fileName, name.c_str(), name.size()+1);
|
---|
1795 |
|
---|
1796 | service->setData(reinterpret_cast<void*>(&fToDim), name.size()+1+sizeof(uint32_t));
|
---|
1797 | service->setQuality(0);
|
---|
1798 | service->Update();
|
---|
1799 | }
|
---|
1800 | // --------------------------------------------------------------------------
|
---|
1801 | //
|
---|
1802 | //! Implements the Start transition.
|
---|
1803 | //! Concatenates the given path for the Nightly file and the filename itself (based on the day),
|
---|
1804 | //! and tries to open it.
|
---|
1805 | //! @returns
|
---|
1806 | //! kSM_NightlyOpen if success, kSM_BadFolder if failure
|
---|
1807 | int DataLogger::Start()
|
---|
1808 | {
|
---|
1809 | if (fDebugIsOn)
|
---|
1810 | {
|
---|
1811 | Debug("Starting...");
|
---|
1812 | }
|
---|
1813 | fFullNightlyLogFileName = CompileFileNameWithPath(fFilePath, "", "log");
|
---|
1814 | bool nightlyLogOpen = fNightlyLogFile.is_open();
|
---|
1815 | if (!OpenTextFile(fNightlyLogFile, fFullNightlyLogFileName))
|
---|
1816 | return kSM_BadFolder;
|
---|
1817 | if (!nightlyLogOpen)
|
---|
1818 | fNightlyLogFile << endl;
|
---|
1819 |
|
---|
1820 | fFullNightlyReportFileName = CompileFileNameWithPath(fFilePath, "", "rep");
|
---|
1821 | if (!OpenTextFile(fNightlyReportFile, fFullNightlyReportFileName))
|
---|
1822 | {
|
---|
1823 | fNightlyLogFile.close();
|
---|
1824 | Info("Closed: "+fFullNightlyReportFileName);
|
---|
1825 | return kSM_BadFolder;
|
---|
1826 | }
|
---|
1827 |
|
---|
1828 | fFilesStats.FileOpened(fFullNightlyLogFileName);
|
---|
1829 | fFilesStats.FileOpened(fFullNightlyReportFileName);
|
---|
1830 | //notify that a new file has been opened.
|
---|
1831 | const string baseFileName = CompileFileNameWithPath(fFilePath, "", "");
|
---|
1832 | NotifyOpenedFile(baseFileName, 3, fOpenedNightlyFiles);
|
---|
1833 |
|
---|
1834 | fOpenedNightlyFits.clear();
|
---|
1835 |
|
---|
1836 | return kSM_NightlyOpen;
|
---|
1837 | }
|
---|
1838 |
|
---|
1839 | #ifdef HAVE_FITS
|
---|
1840 | // --------------------------------------------------------------------------
|
---|
1841 | //
|
---|
1842 | //! open if required a the FITS files corresponding to a given subscription
|
---|
1843 | //! @param sub
|
---|
1844 | //! the current DimInfo subscription being examined
|
---|
1845 | void DataLogger::OpenFITSFiles(SubscriptionType& sub)
|
---|
1846 | {
|
---|
1847 | string serviceName(sub.server + "_" + sub.service);//evt.GetName());
|
---|
1848 |
|
---|
1849 | for (unsigned int i=0;i<serviceName.size(); i++)
|
---|
1850 | {
|
---|
1851 | if (serviceName[i] == '/')
|
---|
1852 | {
|
---|
1853 | serviceName[i] = '_';
|
---|
1854 | break;
|
---|
1855 | }
|
---|
1856 | }
|
---|
1857 | //we open the NightlyFile anyway, otherwise this function shouldn't have been called.
|
---|
1858 | if (!sub.nightlyFile.IsOpen())
|
---|
1859 | {
|
---|
1860 | string incrementedServiceName = serviceName;
|
---|
1861 | if (sub.increment != 0)
|
---|
1862 | {
|
---|
1863 | ostringstream str;
|
---|
1864 | str << "." << sub.increment;
|
---|
1865 | incrementedServiceName += str.str();
|
---|
1866 | }
|
---|
1867 | const string partialName = CompileFileNameWithPath(fFilePath, incrementedServiceName, "fits");
|
---|
1868 |
|
---|
1869 | const string fileNameOnly = partialName.substr(partialName.find_last_of('/')+1, partialName.size());
|
---|
1870 | if (!sub.fitsBufferAllocated)
|
---|
1871 | AllocateFITSBuffers(sub);
|
---|
1872 | //get the size of the file we're about to open
|
---|
1873 | if (fFilesStats.FileOpened(partialName))
|
---|
1874 | fOpenedNightlyFits[fileNameOnly].push_back(serviceName);
|
---|
1875 |
|
---|
1876 | if (!sub.nightlyFile.Open(partialName, serviceName, &fNumSubAndFitsData.numOpenFits, this, 0))
|
---|
1877 | {
|
---|
1878 | GoToRunWriteErrorState();
|
---|
1879 | return;
|
---|
1880 | }
|
---|
1881 |
|
---|
1882 | ostringstream str;
|
---|
1883 | str << "Opened: " << partialName << " (Nfits=" << fNumSubAndFitsData.numOpenFits << ")";
|
---|
1884 | Info(str);
|
---|
1885 |
|
---|
1886 | //notify the opening
|
---|
1887 | const string baseFileName = CompileFileNameWithPath(fFilePath, "", "");
|
---|
1888 | NotifyOpenedFile(baseFileName, 7, fOpenedNightlyFiles);
|
---|
1889 | if (fNumSubAndFitsIsOn)
|
---|
1890 | fNumSubAndFits->Update();
|
---|
1891 | }
|
---|
1892 |
|
---|
1893 | }
|
---|
1894 | // --------------------------------------------------------------------------
|
---|
1895 | //
|
---|
1896 | //! Allocates the required memory for a given pair of fits files (nightly and run)
|
---|
1897 | //! @param sub the subscription of interest.
|
---|
1898 | //
|
---|
1899 | void DataLogger::AllocateFITSBuffers(SubscriptionType& sub)
|
---|
1900 | {
|
---|
1901 | //Init the time columns of the file
|
---|
1902 | Description dateDesc(string("Time"), string("Modified Julian Date"), string("MJD"));
|
---|
1903 | sub.nightlyFile.AddStandardColumn(dateDesc, "1D", &fMjD, sizeof(double));
|
---|
1904 |
|
---|
1905 | Description QoSDesc("QoS", "Quality of service", "");
|
---|
1906 | sub.nightlyFile.AddStandardColumn(QoSDesc, "1J", &fQuality, sizeof(int));
|
---|
1907 |
|
---|
1908 | // Compilation failed
|
---|
1909 | if (!sub.fConv->valid())
|
---|
1910 | {
|
---|
1911 | Error("Compilation of format string failed.");
|
---|
1912 | return;
|
---|
1913 | }
|
---|
1914 |
|
---|
1915 | //we've got a nice structure describing the format of this service's messages.
|
---|
1916 | //Let's create the appropriate FITS columns
|
---|
1917 | const vector<string> dataFormatsLocal = sub.fConv->GetFitsFormat();
|
---|
1918 |
|
---|
1919 | ostringstream str;
|
---|
1920 | str << "Initializing data columns for service " << sub.server << "/" << sub.service;
|
---|
1921 | Info(str);
|
---|
1922 | sub.nightlyFile.InitDataColumns(GetDescription(sub.server, sub.service), dataFormatsLocal, this);
|
---|
1923 |
|
---|
1924 | sub.fitsBufferAllocated = true;
|
---|
1925 | }
|
---|
1926 | // --------------------------------------------------------------------------
|
---|
1927 | //
|
---|
1928 | //! write a dimInfo data to its corresponding FITS files
|
---|
1929 | //
|
---|
1930 | //FIXME: DO I REALLY NEED THE EVENT IMP HERE ???
|
---|
1931 | void DataLogger::WriteToFITS(SubscriptionType& sub, const void* data)
|
---|
1932 | {
|
---|
1933 | //nightly File status (open or not) already checked
|
---|
1934 | if (sub.nightlyFile.IsOpen())
|
---|
1935 | {
|
---|
1936 | if (!sub.nightlyFile.Write(*sub.fConv.get(), data))
|
---|
1937 | {
|
---|
1938 | RemoveService(sub.server, sub.service, false);
|
---|
1939 | GoToNightlyWriteErrorState();
|
---|
1940 | return;
|
---|
1941 | }
|
---|
1942 | }
|
---|
1943 | }
|
---|
1944 | #endif //if has_fits
|
---|
1945 | // --------------------------------------------------------------------------
|
---|
1946 | //
|
---|
1947 | //! Go to Run Write Error State
|
---|
1948 | // A write error has occurred. Checks what is the current state and take appropriate action
|
---|
1949 | void DataLogger::GoToRunWriteErrorState()
|
---|
1950 | {
|
---|
1951 | if ((GetCurrentState() != kSM_RunWriteError) &&
|
---|
1952 | (GetCurrentState() != kSM_DailyWriteError))
|
---|
1953 | SetCurrentState(kSM_RunWriteError, "GoToRunWriteErrorState");
|
---|
1954 | }
|
---|
1955 | // --------------------------------------------------------------------------
|
---|
1956 | //
|
---|
1957 | //! Go to Nightly Write Error State
|
---|
1958 | // A write error has occurred. Checks what is the current state and take appropriate action
|
---|
1959 | void DataLogger::GoToNightlyWriteErrorState()
|
---|
1960 | {
|
---|
1961 | if (GetCurrentState() != kSM_DailyWriteError)
|
---|
1962 | SetCurrentState(kSM_DailyWriteError, "GoToNightlyWriteErrorState");
|
---|
1963 | }
|
---|
1964 |
|
---|
1965 |
|
---|
1966 | #ifdef HAVE_FITS
|
---|
1967 | // --------------------------------------------------------------------------
|
---|
1968 | //
|
---|
1969 | //! Create a fits group file with all the run-fits that were written (either daily or run)
|
---|
1970 | //! @param filesToGroup a map of filenames mapping to table names to be grouped (i.e. a
|
---|
1971 | //! single file can contain several tables to group
|
---|
1972 | //! @param runNumber the run number that should be used for grouping. 0 means nightly group
|
---|
1973 | //
|
---|
1974 | void DataLogger::CreateFitsGrouping(map<string, vector<string> > & filesToGroup)
|
---|
1975 | {
|
---|
1976 | if (fDebugIsOn)
|
---|
1977 | {
|
---|
1978 | ostringstream str;
|
---|
1979 | str << "Creating fits group for nightly files";
|
---|
1980 | Debug(str);
|
---|
1981 | }
|
---|
1982 | //create the FITS group corresponding to the ending run.
|
---|
1983 | CCfits::FITS* groupFile;
|
---|
1984 | unsigned int numFilesToGroup = 0;
|
---|
1985 | unsigned int maxCharLength = 0;
|
---|
1986 | for (map<string, vector<string> >::const_iterator it=filesToGroup.begin(); it != filesToGroup.end(); it++)
|
---|
1987 | {
|
---|
1988 | //add the number of tables in this file to the total number to group
|
---|
1989 | numFilesToGroup += it->second.size();
|
---|
1990 | //check the length of all the strings to be written, to determine the max string length to write
|
---|
1991 | if (it->first.size() > maxCharLength)
|
---|
1992 | maxCharLength = it->first.size();
|
---|
1993 | for (vector<string>::const_iterator jt=it->second.begin(); jt != it->second.end(); jt++)
|
---|
1994 | if (jt->size() > maxCharLength)
|
---|
1995 | maxCharLength = jt->size();
|
---|
1996 | }
|
---|
1997 |
|
---|
1998 | if (fDebugIsOn)
|
---|
1999 | {
|
---|
2000 | ostringstream str;
|
---|
2001 | str << "There are " << numFilesToGroup << " tables to group";
|
---|
2002 | Debug(str);
|
---|
2003 | }
|
---|
2004 | if (numFilesToGroup <= 1)
|
---|
2005 | {
|
---|
2006 | filesToGroup.clear();
|
---|
2007 | return;
|
---|
2008 | }
|
---|
2009 | const string groupName = CompileFileNameWithPath(fFilePath, "", "fits");
|
---|
2010 |
|
---|
2011 | Info("Creating FITS group in: "+groupName);
|
---|
2012 |
|
---|
2013 | CCfits::Table* groupTable;
|
---|
2014 |
|
---|
2015 | try
|
---|
2016 | {
|
---|
2017 | groupFile = new CCfits::FITS(groupName, CCfits::RWmode::Write);
|
---|
2018 | //setup the column names
|
---|
2019 | ostringstream pathTypeName;
|
---|
2020 | pathTypeName << maxCharLength << "A";
|
---|
2021 | vector<string> names;
|
---|
2022 | vector<string> dataTypes;
|
---|
2023 | names.emplace_back("MEMBER_XTENSION");
|
---|
2024 | dataTypes.emplace_back("8A");
|
---|
2025 | names.emplace_back("MEMBER_URI_TYPE");
|
---|
2026 | dataTypes.emplace_back("3A");
|
---|
2027 | names.emplace_back("MEMBER_LOCATION");
|
---|
2028 | dataTypes.push_back(pathTypeName.str());
|
---|
2029 | names.emplace_back("MEMBER_NAME");
|
---|
2030 | dataTypes.push_back(pathTypeName.str());
|
---|
2031 | names.emplace_back("MEMBER_VERSION");
|
---|
2032 | dataTypes.emplace_back("1J");
|
---|
2033 | names.emplace_back("MEMBER_POSITION");
|
---|
2034 | dataTypes.emplace_back("1J");
|
---|
2035 |
|
---|
2036 | groupTable = groupFile->addTable("GROUPING", numFilesToGroup, names, dataTypes);
|
---|
2037 | //TODO handle the case when the logger was stopped and restarted during the same day, i.e. the grouping file must be updated
|
---|
2038 | }
|
---|
2039 | catch (CCfits::FitsException e)
|
---|
2040 | {
|
---|
2041 | ostringstream str;
|
---|
2042 | str << "Creating FITS table GROUPING in " << groupName << ": " << e.message();
|
---|
2043 | Error(str);
|
---|
2044 | return;
|
---|
2045 | }
|
---|
2046 | try
|
---|
2047 | {
|
---|
2048 | groupTable->addKey("GRPNAME", "FACT_RAW_DATA", "Data from the FACT telescope");
|
---|
2049 | }
|
---|
2050 | catch (CCfits::FitsException e)
|
---|
2051 | {
|
---|
2052 | Error("CCfits::Table::addKey failed for 'GRPNAME' in '"+groupName+"-GROUPING': "+e.message());
|
---|
2053 | return;
|
---|
2054 | }
|
---|
2055 | //CCfits seems to be buggy somehow: can't use the column's function "write": it create a compilation error: maybe strings were not thought about.
|
---|
2056 | //use cfitsio routines instead
|
---|
2057 | groupTable->makeThisCurrent();
|
---|
2058 | //create appropriate buffer.
|
---|
2059 | const unsigned int n = 8 + 3 + 2*maxCharLength + 1 + 8; //+1 for trailling character
|
---|
2060 |
|
---|
2061 | vector<char> realBuffer(n);
|
---|
2062 |
|
---|
2063 | char *startOfExtension = realBuffer.data();
|
---|
2064 | char *startOfURI = realBuffer.data()+8;
|
---|
2065 | char *startOfLocation = realBuffer.data()+8+3;
|
---|
2066 | char *startOfName = realBuffer.data()+8+3+maxCharLength;
|
---|
2067 |
|
---|
2068 | strcpy(startOfExtension, "BINTABLE");
|
---|
2069 | strcpy(startOfURI, "URL");
|
---|
2070 |
|
---|
2071 | realBuffer[8+3+2*maxCharLength+3] = 1;
|
---|
2072 | realBuffer[8+3+2*maxCharLength+7] = 1;
|
---|
2073 |
|
---|
2074 | int i=1;
|
---|
2075 | for (map<string, vector<string> >::const_iterator it=filesToGroup.begin(); it!=filesToGroup.end(); it++)
|
---|
2076 | for (vector<string>::const_iterator jt=it->second.begin(); jt != it->second.end(); jt++, i++)
|
---|
2077 | {
|
---|
2078 | memset(startOfLocation, 0, 2*maxCharLength+1+8);
|
---|
2079 |
|
---|
2080 | strcpy(startOfLocation, it->first.c_str());
|
---|
2081 | strcpy(startOfName, jt->c_str());
|
---|
2082 |
|
---|
2083 | if (fDebugIsOn)
|
---|
2084 | {
|
---|
2085 | ostringstream str;
|
---|
2086 | str << "Grouping " << it->first << " " << *jt;
|
---|
2087 | Debug(str);
|
---|
2088 | }
|
---|
2089 |
|
---|
2090 | int status = 0;
|
---|
2091 | fits_write_tblbytes(groupFile->fitsPointer(), i, 1, 8+3+2*maxCharLength +8,
|
---|
2092 | reinterpret_cast<unsigned char*>(realBuffer.data()), &status);
|
---|
2093 | if (status)
|
---|
2094 | {
|
---|
2095 | char text[30];//max length of cfitsio error strings (from doc)
|
---|
2096 | fits_get_errstatus(status, text);
|
---|
2097 | ostringstream str;
|
---|
2098 | str << "Writing FITS row " << i << " in " << groupName << ": " << text << " (file_write_tblbytes, rc=" << status << ")";
|
---|
2099 | Error(str);
|
---|
2100 | GoToRunWriteErrorState();
|
---|
2101 | delete groupFile;
|
---|
2102 | return;
|
---|
2103 | }
|
---|
2104 | }
|
---|
2105 |
|
---|
2106 | filesToGroup.clear();
|
---|
2107 | delete groupFile;
|
---|
2108 | }
|
---|
2109 | #endif //HAVE_FITS
|
---|
2110 |
|
---|
2111 | // --------------------------------------------------------------------------
|
---|
2112 | //
|
---|
2113 | //! Implements the StopRun transition.
|
---|
2114 | //! Attempts to close the run file.
|
---|
2115 | //! @returns
|
---|
2116 | //! kSM_WaitingRun if success, kSM_FatalError otherwise
|
---|
2117 | int DataLogger::StopRunLogging()
|
---|
2118 | {
|
---|
2119 |
|
---|
2120 | if (fDebugIsOn)
|
---|
2121 | {
|
---|
2122 | Debug("Stopping Run Logging...");
|
---|
2123 | }
|
---|
2124 |
|
---|
2125 | if (fNumSubAndFitsIsOn)
|
---|
2126 | fNumSubAndFits->Update();
|
---|
2127 |
|
---|
2128 | while (fRunNumber.size() > 0)
|
---|
2129 | {
|
---|
2130 | RemoveOldestRunNumber();
|
---|
2131 | }
|
---|
2132 | return kSM_WaitingRun;
|
---|
2133 | }
|
---|
2134 | // --------------------------------------------------------------------------
|
---|
2135 | //
|
---|
2136 | //! Implements the Stop and Reset transitions.
|
---|
2137 | //! Attempts to close any openned file.
|
---|
2138 | //! @returns
|
---|
2139 | //! kSM_Ready
|
---|
2140 | int DataLogger::GoToReady()
|
---|
2141 | {
|
---|
2142 | if (fDebugIsOn)
|
---|
2143 | {
|
---|
2144 | Debug("Going to the Ready state...");
|
---|
2145 | }
|
---|
2146 | if (GetCurrentState() == kSM_Logging || GetCurrentState() == kSM_WaitingRun)
|
---|
2147 | StopRunLogging();
|
---|
2148 |
|
---|
2149 | //it may be that dim tries to write a dimInfo while we're closing files. Prevent that
|
---|
2150 | const string baseFileName = CompileFileNameWithPath(fFilePath, "", "");
|
---|
2151 |
|
---|
2152 | if (fNightlyReportFile.is_open())
|
---|
2153 | {
|
---|
2154 | fNightlyReportFile.close();
|
---|
2155 | Info("Closed: "+baseFileName+".rep");
|
---|
2156 | }
|
---|
2157 | #ifdef HAVE_FITS
|
---|
2158 | for (SubscriptionsListType::iterator i = fServiceSubscriptions.begin(); i != fServiceSubscriptions.end(); i++)
|
---|
2159 | for (map<string, SubscriptionType>::iterator j = i->second.begin(); j != i->second.end(); j++)
|
---|
2160 | {
|
---|
2161 | if (j->second.nightlyFile.IsOpen())
|
---|
2162 | j->second.nightlyFile.Close();
|
---|
2163 | }
|
---|
2164 | #endif
|
---|
2165 | if (GetCurrentState() == kSM_Logging ||
|
---|
2166 | GetCurrentState() == kSM_WaitingRun ||
|
---|
2167 | GetCurrentState() == kSM_NightlyOpen)
|
---|
2168 | {
|
---|
2169 | NotifyOpenedFile("", 0, fOpenedNightlyFiles);
|
---|
2170 | if (fNumSubAndFitsIsOn)
|
---|
2171 | fNumSubAndFits->Update();
|
---|
2172 | }
|
---|
2173 | #ifdef HAVE_FITS
|
---|
2174 | CreateFitsGrouping(fOpenedNightlyFits);
|
---|
2175 | #endif
|
---|
2176 | return kSM_Ready;
|
---|
2177 | }
|
---|
2178 |
|
---|
2179 | // --------------------------------------------------------------------------
|
---|
2180 | //
|
---|
2181 | //! Implements the transition towards kSM_WaitingRun
|
---|
2182 | //! If current state is kSM_Ready, then tries to go to nightlyOpen state first.
|
---|
2183 | //! @returns
|
---|
2184 | //! kSM_WaitingRun or kSM_BadFolder
|
---|
2185 | int DataLogger::NightlyToWaitRun()
|
---|
2186 | {
|
---|
2187 | int cState = GetCurrentState();
|
---|
2188 |
|
---|
2189 | if (cState == kSM_Ready)
|
---|
2190 | cState = Start();
|
---|
2191 |
|
---|
2192 | if (cState != kSM_NightlyOpen)
|
---|
2193 | return GetCurrentState();
|
---|
2194 |
|
---|
2195 | if (fDebugIsOn)
|
---|
2196 | {
|
---|
2197 | Debug("Going to Wait Run Number state...");
|
---|
2198 | }
|
---|
2199 | return kSM_WaitingRun;
|
---|
2200 | }
|
---|
2201 | // --------------------------------------------------------------------------
|
---|
2202 | //
|
---|
2203 | //! Implements the transition from wait for run number to nightly open
|
---|
2204 | //! Does nothing really.
|
---|
2205 | //! @returns
|
---|
2206 | //! kSM_WaitingRun
|
---|
2207 | int DataLogger::BackToNightlyOpen()
|
---|
2208 | {
|
---|
2209 | if (GetCurrentState()==kSM_Logging)
|
---|
2210 | StopRunLogging();
|
---|
2211 |
|
---|
2212 | if (fDebugIsOn)
|
---|
2213 | {
|
---|
2214 | Debug("Going to NightlyOpen state...");
|
---|
2215 | }
|
---|
2216 | return kSM_NightlyOpen;
|
---|
2217 | }
|
---|
2218 | // --------------------------------------------------------------------------
|
---|
2219 | //
|
---|
2220 | //! Setup Logger's configuration from a Configuration object
|
---|
2221 | //! @param conf the configuration object that should be used
|
---|
2222 | //!
|
---|
2223 | int DataLogger::EvalOptions(Configuration& conf)
|
---|
2224 | {
|
---|
2225 | fDebugIsOn = conf.Get<bool>("debug");
|
---|
2226 | fFilesStats.SetDebugMode(fDebugIsOn);
|
---|
2227 |
|
---|
2228 | //Set the block or allow list
|
---|
2229 | fBlackList.clear();
|
---|
2230 | fWhiteList.clear();
|
---|
2231 |
|
---|
2232 | //Adding entries that should ALWAYS be ignored
|
---|
2233 | fBlackList.insert("DATA_LOGGER/MESSAGE");
|
---|
2234 | fBlackList.insert("DATA_LOGGER/SUBSCRIPTIONS");
|
---|
2235 | fBlackList.insert("/SERVICE_LIST");
|
---|
2236 | fBlackList.insert("DIS_DNS/");
|
---|
2237 |
|
---|
2238 | //set the black list, white list and the goruping
|
---|
2239 | const vector<string> vec1 = conf.Vec<string>("block");
|
---|
2240 | const vector<string> vec2 = conf.Vec<string>("allow");
|
---|
2241 | const vector<string> vec3 = conf.Vec<string>("group");
|
---|
2242 |
|
---|
2243 | fBlackList.insert(vec1.begin(), vec1.end());
|
---|
2244 | fWhiteList.insert(vec2.begin(), vec2.end());
|
---|
2245 | fGrouping.insert( vec3.begin(), vec3.end());
|
---|
2246 |
|
---|
2247 | //set the old run numbers timeout delay
|
---|
2248 | if (conf.Has("run-timeout"))
|
---|
2249 | {
|
---|
2250 | const uint32_t timeout = conf.Get<uint32_t>("run-timeout");
|
---|
2251 | if (timeout == 0)
|
---|
2252 | {
|
---|
2253 | Error("Time out delay for old run numbers must not be 0.");
|
---|
2254 | return 1;
|
---|
2255 | }
|
---|
2256 | fRunNumberTimeout = timeout;
|
---|
2257 | }
|
---|
2258 |
|
---|
2259 | //configure the run files directory
|
---|
2260 | if (conf.Has("destination-folder"))
|
---|
2261 | {
|
---|
2262 | const string folder = conf.Get<string>("destination-folder");
|
---|
2263 | if (!fFilesStats.SetCurrentFolder(folder))
|
---|
2264 | return 2;
|
---|
2265 |
|
---|
2266 | fFilePath = folder;
|
---|
2267 | fFullNightlyLogFileName = CompileFileNameWithPath(fFilePath, "", "log");
|
---|
2268 | if (!OpenTextFile(fNightlyLogFile, fFullNightlyLogFileName))
|
---|
2269 | return 3;
|
---|
2270 |
|
---|
2271 | fNightlyLogFile << endl;
|
---|
2272 | NotifyOpenedFile(fFullNightlyLogFileName, 1, fOpenedNightlyFiles);
|
---|
2273 | for (vector<string>::iterator it=backLogBuffer.begin();it!=backLogBuffer.end();it++)
|
---|
2274 | fNightlyLogFile << *it;
|
---|
2275 | }
|
---|
2276 |
|
---|
2277 | shouldBackLog = false;
|
---|
2278 | backLogBuffer.clear();
|
---|
2279 |
|
---|
2280 | //configure the interval between statistics updates
|
---|
2281 | if (conf.Has("stats-interval"))
|
---|
2282 | fFilesStats.SetUpdateInterval(conf.Get<int16_t>("stats-interval"));
|
---|
2283 |
|
---|
2284 | //configure if the filenames service is on or off
|
---|
2285 | fOpenedFilesIsOn = !conf.Get<bool>("no-filename-service");
|
---|
2286 |
|
---|
2287 | //configure if the number of subscriptions and fits files is on or off.
|
---|
2288 | fNumSubAndFitsIsOn = !conf.Get<bool>("no-numsubs-service");
|
---|
2289 | //should we open the daily files at startup ?
|
---|
2290 | if (conf.Has("start-daily-files"))
|
---|
2291 | if (conf.Get<bool>("start-daily-files"))
|
---|
2292 | {
|
---|
2293 | fShouldAutoStart = true;
|
---|
2294 | }
|
---|
2295 | if (conf.Has("service-list-interval"))
|
---|
2296 | fCurrentSubscriptionUpdateRate = conf.Get<int32_t>("service-list-interval");
|
---|
2297 | return -1;
|
---|
2298 | }
|
---|
2299 |
|
---|
2300 |
|
---|
2301 | #include "Main.h"
|
---|
2302 |
|
---|
2303 | // --------------------------------------------------------------------------
|
---|
2304 | template<class T>
|
---|
2305 | int RunShell(Configuration &conf)
|
---|
2306 | {
|
---|
2307 | return Main::execute<T, DataLogger>(conf);//, true);
|
---|
2308 | }
|
---|
2309 |
|
---|
2310 | /*
|
---|
2311 | Extract usage clause(s) [if any] for SYNOPSIS.
|
---|
2312 | Translators: "Usage" and "or" here are patterns (regular expressions) which
|
---|
2313 | are used to match the usage synopsis in program output. An example from cp
|
---|
2314 | (GNU coreutils) which contains both strings:
|
---|
2315 | Usage: cp [OPTION]... [-T] SOURCE DEST
|
---|
2316 | or: cp [OPTION]... SOURCE... DIRECTORY
|
---|
2317 | or: cp [OPTION]... -t DIRECTORY SOURCE...
|
---|
2318 | */
|
---|
2319 | void PrintUsage()
|
---|
2320 | {
|
---|
2321 | cout << "\n"
|
---|
2322 | "The data logger connects to all available Dim services and "
|
---|
2323 | "writes them to ascii and fits files.\n"
|
---|
2324 | "\n"
|
---|
2325 | "The default is that the program is started without user interaction. "
|
---|
2326 | "All actions are supposed to arrive as DimCommands. Using the -c "
|
---|
2327 | "option, a local shell can be initialized. With h or help a short "
|
---|
2328 | "help message about the usage can be brought to the screen.\n"
|
---|
2329 | "\n"
|
---|
2330 | "Usage: datalogger [-c type] [OPTIONS]\n"
|
---|
2331 | " or: datalogger [OPTIONS]\n";
|
---|
2332 | cout << endl;
|
---|
2333 |
|
---|
2334 | }
|
---|
2335 | // --------------------------------------------------------------------------
|
---|
2336 | void PrintHelp()
|
---|
2337 | {
|
---|
2338 | /* Additional help text which is printed after the configuration
|
---|
2339 | options goes here */
|
---|
2340 | cout <<
|
---|
2341 | "\n"
|
---|
2342 | "If the allow list has any element, only the servers and/or services "
|
---|
2343 | "specified in the list will be used for subscription. The black list "
|
---|
2344 | "will disable service subscription and has higher priority than the "
|
---|
2345 | "allow list. If the allow list is not present by default all services "
|
---|
2346 | "will be subscribed."
|
---|
2347 | "\n"
|
---|
2348 | "For example, block=DIS_DNS/ will skip all the services offered by "
|
---|
2349 | "the DIS_DNS server, while block=/SERVICE_LIST will skip all the "
|
---|
2350 | "SERVICE_LIST services offered by any server and DIS_DNS/SERVICE_LIST "
|
---|
2351 | "will skip DIS_DNS/SERVICE_LIST.\n"
|
---|
2352 | << endl;
|
---|
2353 |
|
---|
2354 | Main::PrintHelp<DataLogger>();
|
---|
2355 | }
|
---|
2356 |
|
---|
2357 | // --------------------------------------------------------------------------
|
---|
2358 | void SetupConfiguration(Configuration &conf)
|
---|
2359 | {
|
---|
2360 | po::options_description configs("DataLogger options");
|
---|
2361 | configs.add_options()
|
---|
2362 | ("block,b", vars<string>(), "Black-list to block services")
|
---|
2363 | ("allow,a", vars<string>(), "White-list to only allowe certain services")
|
---|
2364 | ("debug,d", po_bool(), "Debug mode. Print clear text of received service reports.")
|
---|
2365 | ("group,g", vars<string>(), "Grouping of services into a single run-Fits")
|
---|
2366 | ("run-timeout", var<uint32_t>(), "Time out delay for old run numbers in milliseconds.")
|
---|
2367 | ("destination-folder", var<string>(), "Base path for the nightly and run files")
|
---|
2368 | ("stats-interval", var<int16_t>(), "Interval in milliseconds for write statistics update")
|
---|
2369 | ("no-filename-service", po_bool(), "Disable update of filename service")
|
---|
2370 | ("no-numsubs-service", po_bool(), "Disable update of number-of-subscriptions service")
|
---|
2371 | ("start-daily-files", po_bool(), "Starts the logger in DailyFileOpen instead of Ready")
|
---|
2372 | ("service-list-interval", var<int32_t>(), "Interval between two updates of the service SUBSCRIPTIONS")
|
---|
2373 | ;
|
---|
2374 |
|
---|
2375 | conf.AddOptions(configs);
|
---|
2376 | }
|
---|
2377 | // --------------------------------------------------------------------------
|
---|
2378 | int main(int argc, const char* argv[])
|
---|
2379 | {
|
---|
2380 | Configuration conf(argv[0]);
|
---|
2381 | conf.SetPrintUsage(PrintUsage);
|
---|
2382 | Main::SetupConfiguration(conf);
|
---|
2383 | SetupConfiguration(conf);
|
---|
2384 |
|
---|
2385 | if (!conf.DoParse(argc, argv, PrintHelp))
|
---|
2386 | return 127;
|
---|
2387 |
|
---|
2388 | {
|
---|
2389 | // No console access at all
|
---|
2390 | if (!conf.Has("console"))
|
---|
2391 | return RunShell<LocalStream>(conf);
|
---|
2392 |
|
---|
2393 | // Console access w/ and w/o Dim
|
---|
2394 | if (conf.Get<int>("console")==0)
|
---|
2395 | return RunShell<LocalShell>(conf);
|
---|
2396 | else
|
---|
2397 | return RunShell<LocalConsole>(conf);
|
---|
2398 | }
|
---|
2399 |
|
---|
2400 |
|
---|
2401 | return 0;
|
---|
2402 | }
|
---|