source: trunk/FACT++/src/datalogger.cc@ 15324

Last change on this file since 15324 was 15163, checked in by tbretz, 12 years ago
Added some ifdef to make the datalogger also compile without libnova.
File size: 83.1 KB
Line 
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
95struct NumSubAndFitsType {
96 uint32_t numSubscriptions;
97 uint32_t numOpenFits;
98};
99///distributes which files were opened.
100struct 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
106struct 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
124EventImp nullEventImp;
125///Dim subscription type. Stores all the relevant info to handle a Dim subscription
126struct 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
177class DataLogger : public StateMachineDim
178//DIM_REPLACE
179//, DimServiceInfoListImp
180{
181public:
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
198private:
199 /************************************************
200 * MEMBER VARIABLES
201 ************************************************/
202 /// ofstream for the NightlyLogfile
203 ofstream fNightlyLogFile;
204 /// ofstream for the Nightly report file
205 ofstream fNightlyReportFile;
206 /// base path of files
207 string fFilePath;
208 ///run numbers
209 list<RunNumberType> fRunNumber;
210 ///old run numbers time-out delay (in seconds)
211 uint32_t fRunNumberTimeout;
212 ///previous run number. to check if changed while logging
213 int fPreviousRunNumber;
214 ///Current Service Quality
215 int fQuality;
216 ///Modified Julian Date
217 double fMjD;
218 ///for obtaining the name of the existing services
219// ServiceList fServiceList;
220 typedef map<const string, map<string, SubscriptionType> > SubscriptionsListType;
221 ///All the services to which we have subscribed to, sorted by server name.
222 SubscriptionsListType fServiceSubscriptions;
223 ///full name of the nightly log file
224 string fFullNightlyLogFileName;
225 ///full name of the nightly report file
226 string fFullNightlyReportFileName;
227 ///variable to track when the statistic were last calculated
228// Time fPreviousStatsUpdateTime;
229 Time fPreviousOldRunNumberCheck;
230 ///boolean to know whether we should close and reopen daily files or not
231 bool fDailyFileDayChangedAlready;
232
233 DimWriteStatistics fFilesStats;
234
235 ///map and mutex for storing services description
236 map<string, vector<Description> > fServiceDescriptionList;
237 mutex fMutex;
238 int HandleDescriptions(DimDescriptions* desc);
239 vector<Description> GetDescription(const string& server, const string& service);
240private:
241 /***************************************************
242 * DIM INFO HANDLER
243 ***************************************************/
244 //overloading of DIM's infoHandler function
245 int infoCallback(const EventImp& evt, unsigned int infoIndex);
246
247 Time GetSunRise(const Time &time=Time());
248
249 /***************************************************
250 * TRANSITION FUNCTIONS
251 ***************************************************/
252 ///Reporting method for the services info received
253 void Report(const EventImp& evt, SubscriptionType& sub);
254
255 ///Configuration of the nightly file path
256 int ConfigureFilePath(const Event& evt);
257 ///print the current state of the dataLogger
258 int PrintState(const Event& evt);
259 ///checks whether or not the current info being treated is a run number
260 void CheckForRunNumber(const EventImp& evt, unsigned int index);
261 /// start transition
262 int Start();
263 ///from waiting to logging transition
264 //int StartRun();
265 // from logging to waiting transition
266 int StopRunLogging();
267 ///stop and reset transition
268 int GoToReady();
269 ///from NightlyOpen to waiting transition
270 int NightlyToWaitRun();
271 ///from wait for run number to nightly open
272 int BackToNightlyOpen();
273#ifdef HAVE_FITS
274 ///Open fits files
275 void OpenFITSFiles(SubscriptionType& sub);
276 ///Write data to FITS files
277 void WriteToFITS(SubscriptionType& sub, const void* data);
278 ///Allocate the buffers required for fits
279 void AllocateFITSBuffers(SubscriptionType& sub);
280#endif//has_fits
281
282 /***************************************
283 * DIM SERVICES PROVIDED BY THE DATA LOGGER
284 ***************************************/
285 ///monitoring notification loop
286 void ServicesMonitoring();
287 inline void NotifyOpenedFile(const string &name, int type, DimDescribedService* service);
288 ///Service for opened files
289 DimDescribedService* fOpenedNightlyFiles;
290 DimDescribedService* fOpenedRunFiles;
291 DimDescribedService* fNumSubAndFits;
292 NumSubAndFitsType fNumSubAndFitsData;
293
294 ///Service for broadcasting subscription status
295 DimDescribedService* fCurrentSubscription;
296 ///Number of seconds since the last update of the subscribed list
297 int fCurrentSubscriptionUpdateRate;
298 ///The last time in seconds of the day when the service was update
299 Time fLastSubscriptionUpdate;
300 ///update the service
301 void updateSubscriptionList();
302 ///set the duration between two updates. a zero or negative value disables the service updates
303 int setSubscriptionListUpdateTimeLapse(const Event& evt);
304 /***************************************************
305 * DATA LOGGER's CONFIGURATION STUFF
306 ***************************************************/
307 ///black/white listing
308 set<string> fBlackList;
309 set<string> fWhiteList;
310 ///list of services to be grouped
311 set<string> fGrouping;
312 ///configuration flags
313 bool fDebugIsOn;
314 bool fOpenedFilesIsOn;
315 bool fNumSubAndFitsIsOn;
316 //functions for controlling the services behavior
317 int SetDebugOnOff(const Event& evt);
318 int SetStatsPeriod(const Event& evt);
319 int SetOpenedFilesOnOff(const Event& evt);
320 int SetNumSubsAndFitsOnOff(const Event& evt);
321 int SetRunTimeoutDelay(const Event& evt);
322
323 ///boolean to prevent DIM update while desctructing the dataLogger
324 bool fDestructing;
325 /***************************************************
326 * UTILITIES
327 ***************************************************/
328 ///vectors to keep track of opened Fits files, for grouping purposes.
329 map<string, vector<string> > fOpenedNightlyFits;
330 ///creates a group fits file based on a list of files to be grouped
331 void CreateFitsGrouping(map<string, vector<string> >& filesToGroup);
332
333 bool OpenStreamImp(ofstream &stream, const string &filename, bool mightbeopen);
334 bool OpenStream(shared_ptr<ofstream> stream, const string &filename);
335 ///Open the relevant text files related to a particular run
336 int OpenRunFile(RunNumberType& run);
337 ///add a new run number
338 void AddNewRunNumber(int64_t newRun, Time time);
339 std::vector<int64_t> previousRunNumbers;
340 ///removes the oldest run number, and close the relevant files.
341 void RemoveOldestRunNumber();
342 ///retrieves the size of a file
343 off_t GetFileSize(const string&);
344 ///Get the digits of year, month and day for filenames and paths
345 void GetYearMonthDayForFiles(unsigned short& year, unsigned short& month, unsigned short& day);
346 ///Appends the relevant year month day to a given path
347 void AppendYearMonthDaytoPath(string& path);
348 ///Form the files path
349 string CompileFileNameWithPath(const string &path, const string &service, const string & extension);
350 ///Form the file names only
351 string CompileFileName(const string& service, const string& extension, const Time& time=Time()) const;
352 ///Check whether service is in black and/or white list
353 bool ShouldSubscribe(const string& server, const string& service);
354 ///Subscribe to a given server and service
355// EventImp& SubscribeTo(const string& server, const string& service);
356 ///Open a text file and checks for ofstream status
357 bool OpenTextFile(ofstream& stream, const string& name);
358 ///Checks if the input osftream is in error state, and if so close it.
359 bool CheckForOfstreamError(ofstream& out, bool isDailyStream);
360 ///Goes to Write error states
361 void GoToRunWriteErrorState();
362 void GoToNightlyWriteErrorState();
363 ///Checks if a given path exist
364 bool DoesPathExist(string path);
365 ///Check if old run numbers can be trimmed, and if so, do it
366 void TrimOldRunNumbers();
367 ///Create a given directory
368 bool CreateDirectory(string path);
369 /***************************************************
370 * INHERITED FROM DimServiceInfoList
371 ***************************************************/
372 ///Add a new server subscription
373 void AddServer(const string& server);
374 ///Add a new service subscription
375 void AddService(const Service& svc);
376 ///Remove a given service subscription
377 //FIXME unused
378 void RemoveService(const string, const string, bool);
379 ///Remove all the services associated with a given server
380 //FIXME unused
381 void RemoveAllServices(const string&);
382 ///pointer to the dim's subscription that should distribute the run numbers.
383 //DIM_REPLACE
384 //DimInfo* fRunNumberService;
385 unsigned int fRunNumberService;
386 /***************************************************
387 * Overwritten from MessageImp
388 ***************************************************/
389 vector<string> backLogBuffer;
390 bool shouldBackLog;
391 bool fShouldAutoStart;
392 bool fAutoStarted;
393
394 //Current day variable. Used to close nightly files when night changes
395 Time fCurrentDay;
396 Time lastFlush;
397
398 DimDnsServiceList fDimList;
399 vector<DimDescriptions*> fServerDescriptionsList;
400
401 //counter for keeping tracker of services
402 unsigned int servicesCounter;
403public:
404 int Write(const Time &time, const std::string &txt, int qos=kMessage);
405
406}; //DataLogger
407
408
409/**
410 * @brief the two methods below were copied from StateMachineDimControl.cc
411 *
412 */
413int DataLogger::HandleDescriptions(DimDescriptions* desc)
414{
415 fMutex.lock();
416 for (auto it=desc->descriptions.begin(); it != desc->descriptions.end(); it++) {
417 if (fDebugIsOn)
418 {
419 Debug("Adding description for service: " + it->front().name);
420 }
421 fServiceDescriptionList[it->front().name].assign(it->begin(), it->end());
422 }
423 fMutex.unlock();
424
425 return GetCurrentState();
426}
427/**
428 * UPDATE SUBSCRIPTION LIST. Updates the subscription list service if enough time has passed.
429 * Otherwise does nothing
430 */
431void DataLogger::updateSubscriptionList()
432{
433 if (fCurrentSubscriptionUpdateRate <= 0) return;
434 Time timeNow;
435 //if less than the update rate time has passed, just return
436 if (timeNow - fLastSubscriptionUpdate < boost::posix_time::seconds(fCurrentSubscriptionUpdateRate))
437 return;
438 //TODO remove me !
439// cout << "Updating subscription list with: " << endl;
440
441 fLastSubscriptionUpdate = timeNow;
442
443 //update service !
444 ostringstream output;
445 for (auto serverIt=fServiceSubscriptions.begin();serverIt!=fServiceSubscriptions.end(); serverIt++)
446 {
447 if (serverIt->first == "DATA_LOGGER")
448 continue;
449 for (auto serviceIt=serverIt->second.begin(); serviceIt!=serverIt->second.end(); serviceIt++)
450 {
451 output << serverIt->first << "/" << serviceIt->first << ",";
452 if (serviceIt->second.lastReceivedEvent != Time::None)
453 output << (timeNow - serviceIt->second.lastReceivedEvent).total_seconds();
454 else
455 output << "-1";
456 output << "\n";
457 }
458 }
459//TODO remove me !
460//cout << output.str();
461 fCurrentSubscription->setData(output.str().c_str(), output.str().size()+1);
462 fCurrentSubscription->setQuality(0);
463 fCurrentSubscription->Update();
464}
465int DataLogger::setSubscriptionListUpdateTimeLapse(const Event& evt)
466{
467 fCurrentSubscriptionUpdateRate = evt.GetInt();
468
469 return GetCurrentState();
470}
471vector<Description> DataLogger::GetDescription(const string& server, const string& service)
472{
473 const lock_guard<mutex> guard(fMutex);
474 const auto it = fServiceDescriptionList.find(server+"/"+service);
475 return it==fServiceDescriptionList.end()?vector<Description>():it->second;
476}
477// --------------------------------------------------------------------------
478//
479//! Overwritten write function. This way we directly log the datalogger's messages, without going through dim's dns,
480//! thus increasing robustness.
481//! @param time: see MessageImp class param
482//! @param txt: see MessageImp class param
483//! @param qos: see MessageImp class param
484//! @return see MessageImp class param
485//
486int DataLogger::Write(const Time&time, const std::string& txt, int qos)
487{
488 ostringstream ss;
489 ss << "datalogger: " << txt;
490 if (fNightlyLogFile.is_open())
491 {
492 MessageImp mimp(fNightlyLogFile);
493 mimp.Write(time, ss.str(), qos);
494 }
495 else if (shouldBackLog)
496 {
497 ostringstream str;
498 MessageImp mimp(str);
499 mimp.Write(time, ss.str(), qos);
500 backLogBuffer.push_back(str.str());
501 }
502 return StateMachineDim::Write(time, ss.str(), qos);
503}
504// --------------------------------------------------------------------------
505//
506//! Check if a given path exists
507//! @param path the path to be checked
508//! @return whether or not the creation has been successfull
509//
510bool DataLogger::CreateDirectory(string path)
511{
512 try
513 {
514 DimWriteStatistics::CreateDirectory(path);
515 return true;
516 }
517 catch (const runtime_error &e)
518 {
519 Error(e.what());
520 return false;
521 }
522}
523// --------------------------------------------------------------------------
524//
525//! Check if a given path exists
526//! @param path the path to be checked
527//! @return whether or not the given path exists
528//
529bool DataLogger::DoesPathExist(string path)
530{
531 return DimWriteStatistics::DoesPathExist(path, *this);
532}
533
534
535void 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//
566void 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//
659void 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//
698void 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//
725bool 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
741bool 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
771bool 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//
782bool 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//
808bool 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//
835string 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
851string 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, 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//
881off_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//
891void 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//
910DataLogger::DataLogger(ostream &out) : StateMachineDim(out, "DATA_LOGGER"),
911 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 = 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//
1060DataLogger::~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
1094 for (auto it=fServerDescriptionsList.begin(); it!= fServerDescriptionsList.end(); it++)
1095 delete *it;
1096
1097 if (fDebugIsOn)
1098 Debug("DataLogger desctruction ends");
1099}
1100
1101// --------------------------------------------------------------------------
1102//
1103//! checks if old run numbers should be trimmed and if so, do it
1104//
1105void DataLogger::TrimOldRunNumbers()
1106{
1107 const Time cTime = Time();
1108
1109 if (cTime - fPreviousOldRunNumberCheck < boost::posix_time::milliseconds(fRunNumberTimeout))
1110 return;
1111
1112 while (fRunNumber.size() > 1 && (cTime - fRunNumber.back().time) > boost::posix_time::milliseconds(fRunNumberTimeout))
1113 {
1114 RemoveOldestRunNumber();
1115 }
1116 fPreviousOldRunNumberCheck = cTime;
1117}
1118// --------------------------------------------------------------------------
1119//
1120//! Inherited from DimInfo. Handles all the Infos to which we subscribed, and log them
1121//
1122int DataLogger::infoCallback(const EventImp& evt, unsigned int subIndex)
1123{
1124// if (fDebugIsOn)
1125// {
1126// ostringstream str;
1127// str << "Got infoCallback called with service index= " << subIndex;
1128// Debug(str.str());
1129// }
1130
1131 if ((GetCurrentState() == kSM_Ready) && (!fAutoStarted) && fShouldAutoStart)
1132 {
1133 fAutoStarted = true;
1134 SetCurrentState(Start());
1135 }
1136 else
1137 {
1138 if (GetCurrentState() > kSM_Ready)
1139 fAutoStarted = true;
1140 }
1141
1142
1143 //check if the service pointer corresponds to something that we subscribed to
1144 //this is a fix for a bug that provides bad Infos when a server starts
1145 bool found = false;
1146 SubscriptionsListType::iterator x;
1147 map<string, SubscriptionType>::iterator y;
1148 for (x=fServiceSubscriptions.begin(); x != fServiceSubscriptions.end(); x++)
1149 {//find current service is subscriptions
1150 //Edit: this should be useless now... remove it sometimes ?
1151 for (y=x->second.begin(); y!=x->second.end();y++)
1152 if (y->second.index == subIndex)
1153 {
1154 found = true;
1155 break;
1156 }
1157 if (found)
1158 break;
1159 }
1160
1161 if (!found && fDebugIsOn)
1162 {
1163 ostringstream str;
1164 str << "Service " << evt.GetName() << " not found in subscriptions" << endl;
1165 Debug(str.str());
1166 }
1167 if (!found)
1168 return GetCurrentState();
1169
1170
1171 if (evt.GetSize() == 0 && fDebugIsOn)
1172 {
1173 ostringstream str;
1174 str << "Got 0 size for " << evt.GetName() << endl;
1175 Debug(str.str());
1176 }
1177 if (evt.GetSize() == 0)
1178 return GetCurrentState();
1179
1180 if (evt.GetFormat() == "" && fDebugIsOn)
1181 {
1182 ostringstream str;
1183 str << "Got no format for " << evt.GetName() << endl;
1184 Debug(str.str());
1185 }
1186 if (evt.GetFormat() == "")
1187 return GetCurrentState();
1188
1189// cout.precision(20);
1190// cout << "Orig timestamp: " << Time(I->getTimestamp(), I->getTimestampMillisecs()*1000).Mjd() << endl;
1191 // FIXME: Here we have to check if we have received the
1192 // service with the run-number.
1193 // CheckForRunNumber(I); has been removed because we have to
1194 // subscribe to this service anyway and hence we have the pointer
1195 // (no need to check for the name)
1196 CheckForRunNumber(evt, subIndex);
1197
1198 Report(evt, y->second);
1199
1200 //remove old run numbers
1201 TrimOldRunNumbers();
1202
1203 return GetCurrentState();
1204}
1205
1206// --------------------------------------------------------------------------
1207//
1208//! Add a new active run number
1209//! @param newRun the new run number
1210//! @param time the time at which the new run number was issued
1211//
1212void DataLogger::AddNewRunNumber(int64_t newRun, Time time)
1213{
1214
1215 if (newRun > 0xffffffff)
1216 {
1217 Error("New run number too large, out of range. Ignoring.");
1218 return;
1219 }
1220 for (std::vector<int64_t>::const_iterator it=previousRunNumbers.begin(); it != previousRunNumbers.end(); it++)
1221 {
1222 if (*it == newRun)
1223 {
1224 Error("Newly provided run number has already been used (or is still in use). Going to error state");
1225 SetCurrentState(kSM_BadFolder);
1226 return;
1227 }
1228 }
1229 if (fDebugIsOn)
1230 {
1231 ostringstream str;
1232 str << "Adding new run number " << newRun << " issued at " << time;
1233 Debug(str);
1234 }
1235 //Add new run number to run number list
1236 fRunNumber.push_back(RunNumberType());
1237 fRunNumber.back().runNumber = int32_t(newRun);
1238 fRunNumber.back().time = time;
1239
1240 if (fDebugIsOn)
1241 {
1242 ostringstream str;
1243 str << "The new run number is: " << fRunNumber.back().runNumber;
1244 Debug(str);
1245 }
1246 if (GetCurrentState() != kSM_Logging && GetCurrentState() != kSM_WaitingRun )
1247 return;
1248
1249 if (newRun > 0 && GetCurrentState() == kSM_WaitingRun)
1250 SetCurrentState(kSM_Logging);
1251 if (newRun < 0 && GetCurrentState() == kSM_Logging)
1252 SetCurrentState(kSM_WaitingRun);
1253}
1254// --------------------------------------------------------------------------
1255//
1256//! Checks whether or not the current info is a run number.
1257//! If so, then remember it. A run number is required to open the run-log file
1258//! @param I
1259//! the current DimInfo
1260//
1261void DataLogger::CheckForRunNumber(const EventImp& evt, unsigned int index)
1262{
1263 if (index != fRunNumberService)
1264 return;
1265// int64_t newRun = reinterpret_cast<const uint64_t*>(evt.GetData())[0];
1266 AddNewRunNumber(evt.GetXtra(), evt.GetTime());
1267}
1268// --------------------------------------------------------------------------
1269//
1270//! Get SunRise. Copied from drivectrl.cc
1271//! Used to know when to close and reopen files
1272//!
1273Time DataLogger::GetSunRise(const Time &time)
1274{
1275#ifdef HAVE_LIBNOVA
1276 const double lon = -(17.+53./60+26.525/3600);
1277 const double lat = 28.+45./60+42.462/3600;
1278
1279 ln_lnlat_posn observer;
1280 observer.lng = lon;
1281 observer.lat = lat;
1282
1283 // This caluclates the sun-rise of the next day after 12:00 noon
1284 ln_rst_time sun_day;
1285 if (ln_get_solar_rst(time.JD(), &observer, &sun_day)==1)
1286 {
1287 Fatal("GetSunRise reported the sun to be circumpolar!");
1288 return Time(Time::none);
1289 }
1290
1291 if (Time(sun_day.rise)>=time)
1292 return Time(sun_day.rise);
1293
1294 if (ln_get_solar_rst(time.JD()+0.5, &observer, &sun_day)==1)
1295 {
1296 Fatal("GetSunRise reported the sun to be circumpolar!");
1297 return Time(Time::none);
1298 }
1299
1300 return Time(sun_day.rise);
1301#else
1302 return time;
1303#endif
1304}
1305
1306// --------------------------------------------------------------------------
1307//
1308//! write infos to log files.
1309//! @param I
1310//! The current DimInfo
1311//! @param sub
1312//! The dataLogger's subscription corresponding to this DimInfo
1313//
1314void DataLogger::Report(const EventImp& evt, SubscriptionType& sub)
1315{
1316 const string fmt(evt.GetFormat());
1317
1318 const bool isItaReport = fmt!="C";
1319
1320 if (!fNightlyLogFile.is_open())
1321 return;
1322
1323 if (fDebugIsOn && string(evt.GetName())!="DATA_LOGGER/MESSAGE")
1324 {
1325 ostringstream str;
1326 str << "Logging " << evt.GetName() << " [" << evt.GetFormat() << "] (" << evt.GetSize() << ")";
1327 Debug(str);
1328 }
1329
1330 //
1331 // Check whether we should close and reopen daily text files or not
1332 // calculate time "centered" around noon instead of midnight
1333 // if number of days has changed, then files should be closed and reopenned.
1334 const Time timeNow;
1335// const Time nowMinusTwelve = timeNow-boost::posix_time::hours(12);
1336// int newDayNumber = (int)(nowMinusTwelve.Mjd());
1337
1338 //also check if we should flush the nightly files
1339 if (lastFlush < timeNow-boost::posix_time::minutes(1))
1340 {
1341 lastFlush = timeNow;
1342 SubscriptionsListType::iterator x;
1343 map<string, SubscriptionType>::iterator y;
1344 for (x=fServiceSubscriptions.begin(); x != fServiceSubscriptions.end(); x++)
1345 {//find current service is subscriptions
1346 for (y=x->second.begin(); y!=x->second.end();y++)
1347 if (y->second.nightlyFile.IsOpen())
1348 {
1349 y->second.nightlyFile.Flush();
1350 }
1351 }
1352 if (fDebugIsOn)
1353 Debug("Just flushed nightly fits files to the disk");
1354 }
1355 //check if we should close and reopen the nightly files
1356 if (timeNow > fCurrentDay)//GetSunRise(fCurrentDay)+boost::posix_time::minutes(30)) //if we went past 30 minutes after sunrise
1357 {
1358 //set the next closing time. If we are here, we have passed 30 minutes after sunrise.
1359 fCurrentDay = GetSunRise(timeNow-boost::posix_time::minutes(30))+boost::posix_time::minutes(30);
1360 //crawl through the subcriptions and close any open nightly file
1361 SubscriptionsListType::iterator x;
1362 map<string, SubscriptionType>::iterator y;
1363 for (x=fServiceSubscriptions.begin(); x != fServiceSubscriptions.end(); x++)
1364 {//find current service is subscriptions
1365 for (y=x->second.begin(); y!=x->second.end();y++)
1366 if (y->second.nightlyFile.IsOpen())
1367 {
1368 y->second.nightlyFile.Close();
1369 }
1370 }
1371
1372 if (fDebugIsOn)
1373 Debug("Day have changed! Closing and reopening nightly files");
1374
1375 fNightlyLogFile << endl;
1376 fNightlyLogFile.close();
1377 fNightlyReportFile.close();
1378
1379 Info("Closed: "+fFullNightlyLogFileName);
1380 Info("Closed: "+fFullNightlyReportFileName);
1381
1382 fFullNightlyLogFileName = CompileFileNameWithPath(fFilePath, "", "log");
1383 if (!OpenTextFile(fNightlyLogFile, fFullNightlyLogFileName))
1384 {
1385 GoToReady();
1386 SetCurrentState(kSM_BadFolder);
1387 return;
1388 }
1389 fNightlyLogFile << endl;
1390
1391 fFullNightlyReportFileName = CompileFileNameWithPath(fFilePath, "", "rep");
1392 if (!OpenTextFile(fNightlyReportFile, fFullNightlyReportFileName))
1393 {
1394 GoToReady();
1395 SetCurrentState(kSM_BadFolder);
1396 return;
1397 }
1398 }
1399 //create the converter for that service
1400 if (!sub.fConv)
1401 {
1402 sub.fConv = shared_ptr<Converter>(new Converter(Out(), evt.GetFormat()));
1403 if (!sub.fConv->valid())
1404 {
1405 ostringstream str;
1406 str << "Couldn't properly parse the format... service " << evt.GetName() << " ignored.";
1407 Error(str);
1408 return;
1409 }
1410 }
1411 //construct the header
1412 ostringstream header;
1413 const Time cTime(evt.GetTime());
1414 fQuality = evt.GetQoS();
1415
1416 //update subscription last received time
1417 sub.lastReceivedEvent = cTime;
1418 //update subscription list service if required
1419 updateSubscriptionList();
1420
1421 fMjD = cTime.Mjd() ? cTime.Mjd()-40587 : 0;
1422
1423 if (isItaReport)
1424 {
1425//DISABLED REPORT WRITING BY THOMAS REQUEST
1426 //write text header
1427/* string serviceName = (sub.service == "MESSAGE") ? "" : "_"+sub.service;
1428 header << sub.server << serviceName << " " << fQuality << " ";
1429 header << evt.GetTime() << " ";
1430
1431 string text;
1432 try
1433 {
1434 text = sub.fConv->GetString(evt.GetData(), evt.GetSize());
1435 }
1436 catch (const runtime_error &e)
1437 {
1438 ostringstream str;
1439 str << "Parsing service " << evt.GetName();
1440 str << " failed: " << e.what() << " removing the subscription to " << sub.server << "/" << sub.service;
1441 Warn(str);
1442 //remove this subscription from the list.
1443 //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 !
1444 RemoveService(sub.server, sub.service, false);
1445 return;
1446 }
1447
1448 if (text.empty())
1449 {
1450 ostringstream str;
1451 str << "Service " << evt.GetName() << " sent an empty string";
1452 Info(str);
1453 return;
1454 }
1455 //replace bizarre characters by white space
1456 replace(text.begin(), text.end(), '\n', '\\');
1457 replace_if(text.begin(), text.end(), ptr_fun<int, int>(&iscntrl), ' ');
1458
1459 //write entry to Nightly report
1460 if (fNightlyReportFile.is_open())
1461 {
1462 fNightlyReportFile << header.str() << text << endl;
1463 if (!CheckForOfstreamError(fNightlyReportFile, true))
1464 return;
1465 }
1466*/
1467#ifdef HAVE_FITS
1468 //check if the last received event was before noon and if current one is after noon.
1469 //if so, close the file so that it gets reopened.
1470// sub.lastReceivedEvent = cTime;
1471 if (!sub.nightlyFile.IsOpen())
1472 if (GetCurrentState() != kSM_Ready)
1473 OpenFITSFiles(sub);
1474 WriteToFITS(sub, evt.GetData());
1475#endif
1476 }
1477 else
1478 {//write entry to Nightly log
1479 vector<string> strings;
1480 try
1481 {
1482 strings = sub.fConv->ToStrings(evt.GetData());
1483 }
1484 catch (const runtime_error &e)
1485 {
1486 ostringstream str;
1487 str << "Parsing service " << evt.GetName();
1488 str << " failed: " << e.what() << " removing the subscription for now.";
1489 Error(str);
1490 //remove this subscription from the list.
1491 //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 !
1492 RemoveService(sub.server, sub.service, false);
1493 return;
1494 }
1495 if (strings.size() > 1)
1496 {
1497 ostringstream err;
1498 err << "There was more than one string message in service " << evt.GetName() << " going to fatal error state";
1499 Error(err.str());
1500 }
1501 ostringstream msg;
1502 string serviceName = (sub.service == "MESSAGE") ? "" : "_"+sub.service;
1503 msg << sub.server << serviceName << ": " << strings[0];
1504
1505 if (fNightlyLogFile.is_open())
1506 {
1507 MessageImp(fNightlyLogFile).Write(cTime, msg.str().c_str(), fQuality);
1508 if (!CheckForOfstreamError(fNightlyLogFile, true))
1509 return;
1510 }
1511
1512// sub.lastReceivedEvent = cTime;
1513 if (!sub.nightlyFile.IsOpen())
1514 if (GetCurrentState() != kSM_Ready)
1515 OpenFITSFiles(sub);
1516 WriteToFITS(sub, evt.GetData());
1517 }
1518}
1519
1520// --------------------------------------------------------------------------
1521//
1522//! print the dataLogger's current state. invoked by the PRINT command
1523//! @param evt
1524//! the current event. Not used by the method
1525//! @returns
1526//! the new state. Which, in that case, is the current state
1527//!
1528int DataLogger::PrintState(const Event& )
1529{
1530 Message("------------------------------------------");
1531 Message("------- DATA LOGGER CURRENT STATE --------");
1532 Message("------------------------------------------");
1533
1534 //print the path configuration
1535#if BOOST_VERSION < 104600
1536 Message("File path: " + boost::filesystem::system_complete(boost::filesystem::path(fFilePath)).directory_string());
1537#else
1538 Message("File path: " + boost::filesystem::system_complete(boost::filesystem::path(fFilePath)).parent_path().string());
1539#endif
1540
1541 //print active run numbers
1542 ostringstream str;
1543 //timeout value
1544 str << "Timeout delay for old run numbers: " << fRunNumberTimeout << " ms";
1545 Message(str);
1546 str.str("");
1547 str << "Active Run Numbers:";
1548 for (list<RunNumberType>::const_iterator it=fRunNumber.begin(); it!=fRunNumber.end(); it++)
1549 str << " " << it->runNumber;
1550 if (fRunNumber.size()==0)
1551 str << " <none>";
1552 Message(str);
1553
1554 //print all the open files.
1555 Message("------------ OPEN FILES ----------------");
1556 if (fNightlyLogFile.is_open())
1557 Message("Nightly log-file: "+fFullNightlyLogFileName);
1558
1559 if (fNightlyReportFile.is_open())
1560 Message("Nightly report-file: "+fFullNightlyReportFileName);
1561
1562 const DimWriteStatistics::Stats statVar = fFilesStats.GetTotalSizeWritten();
1563 // /*const bool statWarning =*/ calculateTotalSizeWritten(statVar, true);
1564#ifdef HAVE_FITS
1565 str.str("");
1566 str << "Number of open FITS files: " << fNumSubAndFitsData.numOpenFits;
1567 Message(str);
1568 // FIXME: Print list of open FITS files
1569#else
1570 Message("FITS output disabled at compilation");
1571#endif
1572 Message("----------------- STATS ------------------");
1573 if (fFilesStats.GetUpdateInterval()>0)
1574 {
1575 str.str("");
1576 str << "Statistics are updated every " << fFilesStats.GetUpdateInterval() << " ms";
1577 Message(str);
1578 }
1579 else
1580 Message("Statistics updates are currently disabled.");
1581 str.str("");
1582 str << "Total Size written: " << statVar.sizeWritten/1000 << " kB";
1583 Message(str);
1584 str.str("");
1585 str << "Disk free space: " << statVar.freeSpace/1000000 << " MB";
1586 Message(str);
1587
1588 Message("------------ DIM SUBSCRIPTIONS -----------");
1589 str.str("");
1590 str << "There are " << fNumSubAndFitsData.numSubscriptions << " active DIM subscriptions.";
1591 Message(str);
1592 for (map<const string, map<string, SubscriptionType> >::const_iterator it=fServiceSubscriptions.begin(); it!= fServiceSubscriptions.end();it++)
1593 {
1594 Message("Server "+it->first);
1595 for (map<string, SubscriptionType>::const_iterator it2=it->second.begin(); it2!=it->second.end(); it2++)
1596 Message(" -> "+it2->first);
1597 }
1598 Message("--------------- BLOCK LIST ---------------");
1599 for (set<string>::const_iterator it=fBlackList.begin(); it != fBlackList.end(); it++)
1600 Message(" -> "+*it);
1601 if (fBlackList.size()==0)
1602 Message(" <empty>");
1603
1604 Message("--------------- ALLOW LIST ---------------");
1605 for (set<string>::const_iterator it=fWhiteList.begin(); it != fWhiteList.end(); it++)
1606 Message(" -> "+*it);
1607 if (fWhiteList.size()==0)
1608 Message(" <empty>");
1609
1610 Message("-------------- GROUPING LIST -------------");
1611 Message("The following servers and/or services will");
1612 Message("be grouped into a single fits file:");
1613 for (set<string>::const_iterator it=fGrouping.begin(); it != fGrouping.end(); it++)
1614 Message(" -> "+*it);
1615 if (fGrouping.size()==0)
1616 Message(" <no grouping>");
1617
1618 Message("------------------------------------------");
1619 Message("-------- END OF DATA LOGGER STATE --------");
1620 Message("------------------------------------------");
1621
1622 return GetCurrentState();
1623}
1624
1625// --------------------------------------------------------------------------
1626//
1627//! turn debug mode on and off
1628//! @param evt
1629//! the current event. contains the instruction string: On, Off, on, off, ON, OFF, 0 or 1
1630//! @returns
1631//! the new state. Which, in that case, is the current state
1632//!
1633int DataLogger::SetDebugOnOff(const Event& evt)
1634{
1635 const bool backupDebug = fDebugIsOn;
1636
1637 fDebugIsOn = evt.GetBool();
1638
1639 if (fDebugIsOn == backupDebug)
1640 Message("Debug mode was already in the requested state.");
1641
1642 ostringstream str;
1643 str << "Debug mode is now " << fDebugIsOn;
1644 Message(str);
1645
1646 fFilesStats.SetDebugMode(fDebugIsOn);
1647
1648 return GetCurrentState();
1649}
1650// --------------------------------------------------------------------------
1651//
1652//! set the statistics update period duration. 0 disables the statistics
1653//! @param evt
1654//! the current event. contains the new duration.
1655//! @returns
1656//! the new state. Which, in that case, is the current state
1657//!
1658int DataLogger::SetStatsPeriod(const Event& evt)
1659{
1660 fFilesStats.SetUpdateInterval(evt.GetShort());
1661 return GetCurrentState();
1662}
1663// --------------------------------------------------------------------------
1664//
1665//! set the opened files service on or off.
1666//! @param evt
1667//! the current event. contains the instruction string. similar to setdebugonoff
1668//! @returns
1669//! the new state. Which, in that case, is the current state
1670//!
1671int DataLogger::SetOpenedFilesOnOff(const Event& evt)
1672{
1673 const bool backupOpened = fOpenedFilesIsOn;
1674
1675 fOpenedFilesIsOn = evt.GetBool();
1676
1677 if (fOpenedFilesIsOn == backupOpened)
1678 Message("Opened files service mode was already in the requested state.");
1679
1680 ostringstream str;
1681 str << "Opened files service mode is now " << fOpenedFilesIsOn;
1682 Message(str);
1683
1684 return GetCurrentState();
1685}
1686
1687// --------------------------------------------------------------------------
1688//
1689//! set the number of subscriptions and opened fits on and off
1690//! @param evt
1691//! the current event. contains the instruction string. similar to setdebugonoff
1692//! @returns
1693//! the new state. Which, in that case, is the current state
1694//!
1695int DataLogger::SetNumSubsAndFitsOnOff(const Event& evt)
1696{
1697 const bool backupSubs = fNumSubAndFitsIsOn;
1698
1699 fNumSubAndFitsIsOn = evt.GetBool();
1700
1701 if (fNumSubAndFitsIsOn == backupSubs)
1702 Message("Number of subscriptions service mode was already in the requested state");
1703
1704 ostringstream str;
1705 str << "Number of subscriptions service mode is now " << fNumSubAndFitsIsOn;
1706 Message(str);
1707
1708 return GetCurrentState();
1709}
1710// --------------------------------------------------------------------------
1711//
1712//! set the timeout delay for old run numbers
1713//! @param evt
1714//! the current event. contains the timeout delay long value
1715//! @returns
1716//! the new state. Which, in that case, is the current state
1717//!
1718int DataLogger::SetRunTimeoutDelay(const Event& evt)
1719{
1720 if (evt.GetUInt() == 0)
1721 {
1722 Error("Timeout delays for old run numbers must be greater than 0... ignored.");
1723 return GetCurrentState();
1724 }
1725
1726 if (fRunNumberTimeout == evt.GetUInt())
1727 Message("New timeout for old run numbers is same value as previous one.");
1728
1729 fRunNumberTimeout = evt.GetUInt();
1730
1731 ostringstream str;
1732 str << "Timeout delay for old run numbers is now " << fRunNumberTimeout << " ms";
1733 Message(str);
1734
1735 return GetCurrentState();
1736}
1737
1738// --------------------------------------------------------------------------
1739//
1740//! Notifies the DIM service that a particular file was opened
1741//! @ param name the base name of the opened file, i.e. without path nor extension.
1742//! WARNING: use string instead of string& because I pass values that do not convert to string&.
1743//! this is not a problem though because file are not opened so often.
1744//! @ param type the type of the opened file. 0 = none open, 1 = log, 2 = text, 4 = fits
1745inline void DataLogger::NotifyOpenedFile(const string &name, int type, DimDescribedService* service)
1746{
1747 if (!fOpenedFilesIsOn)
1748 return;
1749
1750 if (fDebugIsOn)
1751 {
1752 ostringstream str;
1753 str << "Updating " << service->getName() << " file '" << name << "' (type=" << type << ")";
1754 Debug(str);
1755
1756 str.str("");
1757 str << "Num subscriptions: " << fNumSubAndFitsData.numSubscriptions << " Num open FITS files: " << fNumSubAndFitsData.numOpenFits;
1758 Debug(str);
1759 }
1760
1761 if (name.size()+1 > FILENAME_MAX)
1762 {
1763 Error("Provided file name '" + name + "' is longer than allowed file name length.");
1764 return;
1765 }
1766
1767 OpenFileToDim fToDim;
1768 fToDim.code = type;
1769 memcpy(fToDim.fileName, name.c_str(), name.size()+1);
1770
1771 service->setData(reinterpret_cast<void*>(&fToDim), name.size()+1+sizeof(uint32_t));
1772 service->setQuality(0);
1773 service->Update();
1774}
1775// --------------------------------------------------------------------------
1776//
1777//! Implements the Start transition.
1778//! Concatenates the given path for the Nightly file and the filename itself (based on the day),
1779//! and tries to open it.
1780//! @returns
1781//! kSM_NightlyOpen if success, kSM_BadFolder if failure
1782int DataLogger::Start()
1783{
1784 if (fDebugIsOn)
1785 {
1786 Debug("Starting...");
1787 }
1788 fFullNightlyLogFileName = CompileFileNameWithPath(fFilePath, "", "log");
1789 bool nightlyLogOpen = fNightlyLogFile.is_open();
1790 if (!OpenTextFile(fNightlyLogFile, fFullNightlyLogFileName))
1791 return kSM_BadFolder;
1792 if (!nightlyLogOpen)
1793 fNightlyLogFile << endl;
1794
1795 fFullNightlyReportFileName = CompileFileNameWithPath(fFilePath, "", "rep");
1796 if (!OpenTextFile(fNightlyReportFile, fFullNightlyReportFileName))
1797 {
1798 fNightlyLogFile.close();
1799 Info("Closed: "+fFullNightlyReportFileName);
1800 return kSM_BadFolder;
1801 }
1802
1803 fFilesStats.FileOpened(fFullNightlyLogFileName);
1804 fFilesStats.FileOpened(fFullNightlyReportFileName);
1805 //notify that a new file has been opened.
1806 const string baseFileName = CompileFileNameWithPath(fFilePath, "", "");
1807 NotifyOpenedFile(baseFileName, 3, fOpenedNightlyFiles);
1808
1809 fOpenedNightlyFits.clear();
1810
1811 return kSM_NightlyOpen;
1812}
1813
1814#ifdef HAVE_FITS
1815// --------------------------------------------------------------------------
1816//
1817//! open if required a the FITS files corresponding to a given subscription
1818//! @param sub
1819//! the current DimInfo subscription being examined
1820void DataLogger::OpenFITSFiles(SubscriptionType& sub)
1821{
1822 string serviceName(sub.server + "_" + sub.service);//evt.GetName());
1823
1824 for (unsigned int i=0;i<serviceName.size(); i++)
1825 {
1826 if (serviceName[i] == '/')
1827 {
1828 serviceName[i] = '_';
1829 break;
1830 }
1831 }
1832 //we open the NightlyFile anyway, otherwise this function shouldn't have been called.
1833 if (!sub.nightlyFile.IsOpen())
1834 {
1835 string incrementedServiceName = serviceName;
1836 if (sub.increment != 0)
1837 {
1838 ostringstream str;
1839 str << "." << sub.increment;
1840 incrementedServiceName += str.str();
1841 }
1842 const string partialName = CompileFileNameWithPath(fFilePath, incrementedServiceName, "fits");
1843
1844 const string fileNameOnly = partialName.substr(partialName.find_last_of('/')+1, partialName.size());
1845 if (!sub.fitsBufferAllocated)
1846 AllocateFITSBuffers(sub);
1847 //get the size of the file we're about to open
1848 if (fFilesStats.FileOpened(partialName))
1849 fOpenedNightlyFits[fileNameOnly].push_back(serviceName);
1850
1851 if (!sub.nightlyFile.Open(partialName, serviceName, &fNumSubAndFitsData.numOpenFits, this, 0))
1852 {
1853 GoToRunWriteErrorState();
1854 return;
1855 }
1856
1857 ostringstream str;
1858 str << "Opened: " << partialName << " (Nfits=" << fNumSubAndFitsData.numOpenFits << ")";
1859 Info(str);
1860
1861 //notify the opening
1862 const string baseFileName = CompileFileNameWithPath(fFilePath, "", "");
1863 NotifyOpenedFile(baseFileName, 7, fOpenedNightlyFiles);
1864 if (fNumSubAndFitsIsOn)
1865 fNumSubAndFits->Update();
1866 }
1867
1868}
1869// --------------------------------------------------------------------------
1870//
1871//! Allocates the required memory for a given pair of fits files (nightly and run)
1872//! @param sub the subscription of interest.
1873//
1874void DataLogger::AllocateFITSBuffers(SubscriptionType& sub)
1875{
1876 //Init the time columns of the file
1877 Description dateDesc(string("Time"), string("Modified Julian Date"), string("MJD"));
1878 sub.nightlyFile.AddStandardColumn(dateDesc, "1D", &fMjD, sizeof(double));
1879
1880 Description QoSDesc("QoS", "Quality of service", "");
1881 sub.nightlyFile.AddStandardColumn(QoSDesc, "1J", &fQuality, sizeof(int));
1882
1883 // Compilation failed
1884 if (!sub.fConv->valid())
1885 {
1886 Error("Compilation of format string failed.");
1887 return;
1888 }
1889
1890 //we've got a nice structure describing the format of this service's messages.
1891 //Let's create the appropriate FITS columns
1892 const vector<string> dataFormatsLocal = sub.fConv->GetFitsFormat();
1893
1894 ostringstream str;
1895 str << "Initializing data columns for service " << sub.server << "/" << sub.service;
1896 Info(str);
1897 sub.nightlyFile.InitDataColumns(GetDescription(sub.server, sub.service), dataFormatsLocal, this);
1898
1899 sub.fitsBufferAllocated = true;
1900}
1901// --------------------------------------------------------------------------
1902//
1903//! write a dimInfo data to its corresponding FITS files
1904//
1905//FIXME: DO I REALLY NEED THE EVENT IMP HERE ???
1906void DataLogger::WriteToFITS(SubscriptionType& sub, const void* data)
1907{
1908 //nightly File status (open or not) already checked
1909 if (sub.nightlyFile.IsOpen())
1910 {
1911 if (!sub.nightlyFile.Write(*sub.fConv.get(), data))
1912 {
1913 RemoveService(sub.server, sub.service, false);
1914 GoToNightlyWriteErrorState();
1915 return;
1916 }
1917 }
1918}
1919#endif //if has_fits
1920// --------------------------------------------------------------------------
1921//
1922//! Go to Run Write Error State
1923// A write error has occurred. Checks what is the current state and take appropriate action
1924void DataLogger::GoToRunWriteErrorState()
1925{
1926 if ((GetCurrentState() != kSM_RunWriteError) &&
1927 (GetCurrentState() != kSM_DailyWriteError))
1928 SetCurrentState(kSM_RunWriteError);
1929}
1930// --------------------------------------------------------------------------
1931//
1932//! Go to Nightly Write Error State
1933// A write error has occurred. Checks what is the current state and take appropriate action
1934void DataLogger::GoToNightlyWriteErrorState()
1935{
1936 if (GetCurrentState() != kSM_DailyWriteError)
1937 SetCurrentState(kSM_DailyWriteError);
1938}
1939
1940
1941#ifdef HAVE_FITS
1942// --------------------------------------------------------------------------
1943//
1944//! Create a fits group file with all the run-fits that were written (either daily or run)
1945//! @param filesToGroup a map of filenames mapping to table names to be grouped (i.e. a
1946//! single file can contain several tables to group
1947//! @param runNumber the run number that should be used for grouping. 0 means nightly group
1948//
1949void DataLogger::CreateFitsGrouping(map<string, vector<string> > & filesToGroup)
1950{
1951 if (fDebugIsOn)
1952 {
1953 ostringstream str;
1954 str << "Creating fits group for nightly files";
1955 Debug(str);
1956 }
1957 //create the FITS group corresponding to the ending run.
1958 CCfits::FITS* groupFile;
1959 unsigned int numFilesToGroup = 0;
1960 unsigned int maxCharLength = 0;
1961 for (map<string, vector<string> >::const_iterator it=filesToGroup.begin(); it != filesToGroup.end(); it++)
1962 {
1963 //add the number of tables in this file to the total number to group
1964 numFilesToGroup += it->second.size();
1965 //check the length of all the strings to be written, to determine the max string length to write
1966 if (it->first.size() > maxCharLength)
1967 maxCharLength = it->first.size();
1968 for (vector<string>::const_iterator jt=it->second.begin(); jt != it->second.end(); jt++)
1969 if (jt->size() > maxCharLength)
1970 maxCharLength = jt->size();
1971 }
1972
1973 if (fDebugIsOn)
1974 {
1975 ostringstream str;
1976 str << "There are " << numFilesToGroup << " tables to group";
1977 Debug(str);
1978 }
1979 if (numFilesToGroup <= 1)
1980 {
1981 filesToGroup.clear();
1982 return;
1983 }
1984 const string groupName = CompileFileNameWithPath(fFilePath, "", "fits");
1985
1986 Info("Creating FITS group in: "+groupName);
1987
1988 CCfits::Table* groupTable;
1989
1990 try
1991 {
1992 groupFile = new CCfits::FITS(groupName, CCfits::RWmode::Write);
1993 //setup the column names
1994 ostringstream pathTypeName;
1995 pathTypeName << maxCharLength << "A";
1996 vector<string> names;
1997 vector<string> dataTypes;
1998 names.push_back("MEMBER_XTENSION");
1999 dataTypes.push_back("8A");
2000 names.push_back("MEMBER_URI_TYPE");
2001 dataTypes.push_back("3A");
2002 names.push_back("MEMBER_LOCATION");
2003 dataTypes.push_back(pathTypeName.str());
2004 names.push_back("MEMBER_NAME");
2005 dataTypes.push_back(pathTypeName.str());
2006 names.push_back("MEMBER_VERSION");
2007 dataTypes.push_back("1J");
2008 names.push_back("MEMBER_POSITION");
2009 dataTypes.push_back("1J");
2010
2011 groupTable = groupFile->addTable("GROUPING", numFilesToGroup, names, dataTypes);
2012//TODO handle the case when the logger was stopped and restarted during the same day, i.e. the grouping file must be updated
2013 }
2014 catch (CCfits::FitsException e)
2015 {
2016 ostringstream str;
2017 str << "Creating FITS table GROUPING in " << groupName << ": " << e.message();
2018 Error(str);
2019 return;
2020 }
2021 try
2022 {
2023 groupTable->addKey("GRPNAME", "FACT_RAW_DATA", "Data from the FACT telescope");
2024 }
2025 catch (CCfits::FitsException e)
2026 {
2027 Error("CCfits::Table::addKey failed for 'GRPNAME' in '"+groupName+"-GROUPING': "+e.message());
2028 return;
2029 }
2030 //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.
2031 //use cfitsio routines instead
2032 groupTable->makeThisCurrent();
2033 //create appropriate buffer.
2034 const unsigned int n = 8 + 3 + 2*maxCharLength + 1 + 8; //+1 for trailling character
2035
2036 vector<char> realBuffer(n);
2037
2038 char *startOfExtension = realBuffer.data();
2039 char *startOfURI = realBuffer.data()+8;
2040 char *startOfLocation = realBuffer.data()+8+3;
2041 char *startOfName = realBuffer.data()+8+3+maxCharLength;
2042
2043 strcpy(startOfExtension, "BINTABLE");
2044 strcpy(startOfURI, "URL");
2045
2046 realBuffer[8+3+2*maxCharLength+3] = 1;
2047 realBuffer[8+3+2*maxCharLength+7] = 1;
2048
2049 int i=1;
2050 for (map<string, vector<string> >::const_iterator it=filesToGroup.begin(); it!=filesToGroup.end(); it++)
2051 for (vector<string>::const_iterator jt=it->second.begin(); jt != it->second.end(); jt++, i++)
2052 {
2053 memset(startOfLocation, 0, 2*maxCharLength+1+8);
2054
2055 strcpy(startOfLocation, it->first.c_str());
2056 strcpy(startOfName, jt->c_str());
2057
2058 if (fDebugIsOn)
2059 {
2060 ostringstream str;
2061 str << "Grouping " << it->first << " " << *jt;
2062 Debug(str);
2063 }
2064
2065 int status = 0;
2066 fits_write_tblbytes(groupFile->fitsPointer(), i, 1, 8+3+2*maxCharLength +8,
2067 reinterpret_cast<unsigned char*>(realBuffer.data()), &status);
2068 if (status)
2069 {
2070 char text[30];//max length of cfitsio error strings (from doc)
2071 fits_get_errstatus(status, text);
2072 ostringstream str;
2073 str << "Writing FITS row " << i << " in " << groupName << ": " << text << " (file_write_tblbytes, rc=" << status << ")";
2074 Error(str);
2075 GoToRunWriteErrorState();
2076 delete groupFile;
2077 return;
2078 }
2079 }
2080
2081 filesToGroup.clear();
2082 delete groupFile;
2083}
2084#endif //HAVE_FITS
2085
2086// --------------------------------------------------------------------------
2087//
2088//! Implements the StopRun transition.
2089//! Attempts to close the run file.
2090//! @returns
2091//! kSM_WaitingRun if success, kSM_FatalError otherwise
2092int DataLogger::StopRunLogging()
2093{
2094
2095 if (fDebugIsOn)
2096 {
2097 Debug("Stopping Run Logging...");
2098 }
2099
2100 if (fNumSubAndFitsIsOn)
2101 fNumSubAndFits->Update();
2102
2103 while (fRunNumber.size() > 0)
2104 {
2105 RemoveOldestRunNumber();
2106 }
2107 return kSM_WaitingRun;
2108}
2109// --------------------------------------------------------------------------
2110//
2111//! Implements the Stop and Reset transitions.
2112//! Attempts to close any openned file.
2113//! @returns
2114//! kSM_Ready
2115int DataLogger::GoToReady()
2116{
2117 if (fDebugIsOn)
2118 {
2119 Debug("Going to the Ready state...");
2120 }
2121 if (GetCurrentState() == kSM_Logging || GetCurrentState() == kSM_WaitingRun)
2122 StopRunLogging();
2123
2124 //it may be that dim tries to write a dimInfo while we're closing files. Prevent that
2125 const string baseFileName = CompileFileNameWithPath(fFilePath, "", "");
2126
2127 if (fNightlyReportFile.is_open())
2128 {
2129 fNightlyReportFile.close();
2130 Info("Closed: "+baseFileName+".rep");
2131 }
2132#ifdef HAVE_FITS
2133 for (SubscriptionsListType::iterator i = fServiceSubscriptions.begin(); i != fServiceSubscriptions.end(); i++)
2134 for (map<string, SubscriptionType>::iterator j = i->second.begin(); j != i->second.end(); j++)
2135 {
2136 if (j->second.nightlyFile.IsOpen())
2137 j->second.nightlyFile.Close();
2138 }
2139#endif
2140 if (GetCurrentState() == kSM_Logging ||
2141 GetCurrentState() == kSM_WaitingRun ||
2142 GetCurrentState() == kSM_NightlyOpen)
2143 {
2144 NotifyOpenedFile("", 0, fOpenedNightlyFiles);
2145 if (fNumSubAndFitsIsOn)
2146 fNumSubAndFits->Update();
2147 }
2148#ifdef HAVE_FITS
2149 CreateFitsGrouping(fOpenedNightlyFits);
2150#endif
2151 return kSM_Ready;
2152}
2153
2154// --------------------------------------------------------------------------
2155//
2156//! Implements the transition towards kSM_WaitingRun
2157//! If current state is kSM_Ready, then tries to go to nightlyOpen state first.
2158//! @returns
2159//! kSM_WaitingRun or kSM_BadFolder
2160int DataLogger::NightlyToWaitRun()
2161{
2162 int cState = GetCurrentState();
2163
2164 if (cState == kSM_Ready)
2165 cState = Start();
2166
2167 if (cState != kSM_NightlyOpen)
2168 return GetCurrentState();
2169
2170 if (fDebugIsOn)
2171 {
2172 Debug("Going to Wait Run Number state...");
2173 }
2174 return kSM_WaitingRun;
2175}
2176// --------------------------------------------------------------------------
2177//
2178//! Implements the transition from wait for run number to nightly open
2179//! Does nothing really.
2180//! @returns
2181//! kSM_WaitingRun
2182int DataLogger::BackToNightlyOpen()
2183{
2184 if (GetCurrentState()==kSM_Logging)
2185 StopRunLogging();
2186
2187 if (fDebugIsOn)
2188 {
2189 Debug("Going to NightlyOpen state...");
2190 }
2191 return kSM_NightlyOpen;
2192}
2193// --------------------------------------------------------------------------
2194//
2195//! Setup Logger's configuration from a Configuration object
2196//! @param conf the configuration object that should be used
2197//!
2198int DataLogger::EvalOptions(Configuration& conf)
2199{
2200 fDebugIsOn = conf.Get<bool>("debug");
2201 fFilesStats.SetDebugMode(fDebugIsOn);
2202
2203 //Set the block or allow list
2204 fBlackList.clear();
2205 fWhiteList.clear();
2206
2207 //Adding entries that should ALWAYS be ignored
2208 fBlackList.insert("DATA_LOGGER/MESSAGE");
2209 fBlackList.insert("DATA_LOGGER/SUBSCRIPTIONS");
2210 fBlackList.insert("/SERVICE_LIST");
2211 fBlackList.insert("DIS_DNS/");
2212
2213 //set the black list, white list and the goruping
2214 const vector<string> vec1 = conf.Vec<string>("block");
2215 const vector<string> vec2 = conf.Vec<string>("allow");
2216 const vector<string> vec3 = conf.Vec<string>("group");
2217
2218 fBlackList.insert(vec1.begin(), vec1.end());
2219 fWhiteList.insert(vec2.begin(), vec2.end());
2220 fGrouping.insert( vec3.begin(), vec3.end());
2221
2222 //set the old run numbers timeout delay
2223 if (conf.Has("run-timeout"))
2224 {
2225 const uint32_t timeout = conf.Get<uint32_t>("run-timeout");
2226 if (timeout == 0)
2227 {
2228 Error("Time out delay for old run numbers must not be 0.");
2229 return 1;
2230 }
2231 fRunNumberTimeout = timeout;
2232 }
2233
2234 //configure the run files directory
2235 if (conf.Has("destination-folder"))
2236 {
2237 const string folder = conf.Get<string>("destination-folder");
2238 if (!fFilesStats.SetCurrentFolder(folder))
2239 return 2;
2240
2241 fFilePath = folder;
2242 fFullNightlyLogFileName = CompileFileNameWithPath(fFilePath, "", "log");
2243 if (!OpenTextFile(fNightlyLogFile, fFullNightlyLogFileName))
2244 return 3;
2245
2246 fNightlyLogFile << endl;
2247 NotifyOpenedFile(fFullNightlyLogFileName, 1, fOpenedNightlyFiles);
2248 for (vector<string>::iterator it=backLogBuffer.begin();it!=backLogBuffer.end();it++)
2249 fNightlyLogFile << *it;
2250 }
2251
2252 shouldBackLog = false;
2253 backLogBuffer.clear();
2254
2255 //configure the interval between statistics updates
2256 if (conf.Has("stats-interval"))
2257 fFilesStats.SetUpdateInterval(conf.Get<int16_t>("stats-interval"));
2258
2259 //configure if the filenames service is on or off
2260 fOpenedFilesIsOn = !conf.Get<bool>("no-filename-service");
2261
2262 //configure if the number of subscriptions and fits files is on or off.
2263 fNumSubAndFitsIsOn = !conf.Get<bool>("no-numsubs-service");
2264 //should we open the daily files at startup ?
2265 if (conf.Has("start-daily-files"))
2266 if (conf.Get<bool>("start-daily-files"))
2267 {
2268 fShouldAutoStart = true;
2269 }
2270 if (conf.Has("service-list-interval"))
2271 fCurrentSubscriptionUpdateRate = conf.Get<int32_t>("service-list-interval");
2272 return -1;
2273}
2274
2275
2276#include "Main.h"
2277
2278// --------------------------------------------------------------------------
2279template<class T>
2280int RunShell(Configuration &conf)
2281{
2282 return Main::execute<T, DataLogger>(conf);//, true);
2283}
2284
2285/*
2286 Extract usage clause(s) [if any] for SYNOPSIS.
2287 Translators: "Usage" and "or" here are patterns (regular expressions) which
2288 are used to match the usage synopsis in program output. An example from cp
2289 (GNU coreutils) which contains both strings:
2290 Usage: cp [OPTION]... [-T] SOURCE DEST
2291 or: cp [OPTION]... SOURCE... DIRECTORY
2292 or: cp [OPTION]... -t DIRECTORY SOURCE...
2293 */
2294void PrintUsage()
2295{
2296 cout << "\n"
2297 "The data logger connects to all available Dim services and "
2298 "writes them to ascii and fits files.\n"
2299 "\n"
2300 "The default is that the program is started without user interaction. "
2301 "All actions are supposed to arrive as DimCommands. Using the -c "
2302 "option, a local shell can be initialized. With h or help a short "
2303 "help message about the usage can be brought to the screen.\n"
2304 "\n"
2305 "Usage: datalogger [-c type] [OPTIONS]\n"
2306 " or: datalogger [OPTIONS]\n";
2307 cout << endl;
2308
2309}
2310// --------------------------------------------------------------------------
2311void PrintHelp()
2312{
2313 /* Additional help text which is printed after the configuration
2314 options goes here */
2315 cout <<
2316 "\n"
2317 "If the allow list has any element, only the servers and/or services "
2318 "specified in the list will be used for subscription. The black list "
2319 "will disable service subscription and has higher priority than the "
2320 "allow list. If the allow list is not present by default all services "
2321 "will be subscribed."
2322 "\n"
2323 "For example, block=DIS_DNS/ will skip all the services offered by "
2324 "the DIS_DNS server, while block=/SERVICE_LIST will skip all the "
2325 "SERVICE_LIST services offered by any server and DIS_DNS/SERVICE_LIST "
2326 "will skip DIS_DNS/SERVICE_LIST.\n"
2327 << endl;
2328
2329 Main::PrintHelp<DataLogger>();
2330}
2331
2332// --------------------------------------------------------------------------
2333void SetupConfiguration(Configuration &conf)
2334{
2335 po::options_description configs("DataLogger options");
2336 configs.add_options()
2337 ("block,b", vars<string>(), "Black-list to block services")
2338 ("allow,a", vars<string>(), "White-list to only allowe certain services")
2339 ("debug,d", po_bool(), "Debug mode. Print clear text of received service reports.")
2340 ("group,g", vars<string>(), "Grouping of services into a single run-Fits")
2341 ("run-timeout", var<uint32_t>(), "Time out delay for old run numbers in milliseconds.")
2342 ("destination-folder", var<string>(), "Base path for the nightly and run files")
2343 ("stats-interval", var<int16_t>(), "Interval in milliseconds for write statistics update")
2344 ("no-filename-service", po_bool(), "Disable update of filename service")
2345 ("no-numsubs-service", po_bool(), "Disable update of number-of-subscriptions service")
2346 ("start-daily-files", po_bool(), "Starts the logger in DailyFileOpen instead of Ready")
2347 ("service-list-interval", var<int32_t>(), "Interval between two updates of the service SUBSCRIPTIONS")
2348 ;
2349
2350 conf.AddOptions(configs);
2351}
2352// --------------------------------------------------------------------------
2353int main(int argc, const char* argv[])
2354{
2355 Configuration conf(argv[0]);
2356 conf.SetPrintUsage(PrintUsage);
2357 Main::SetupConfiguration(conf);
2358 SetupConfiguration(conf);
2359
2360 if (!conf.DoParse(argc, argv, PrintHelp))
2361 return 127;
2362
2363 {
2364 // No console access at all
2365 if (!conf.Has("console"))
2366 return RunShell<LocalStream>(conf);
2367
2368 // Console access w/ and w/o Dim
2369 if (conf.Get<int>("console")==0)
2370 return RunShell<LocalShell>(conf);
2371 else
2372 return RunShell<LocalConsole>(conf);
2373 }
2374
2375
2376 return 0;
2377}
Note: See TracBrowser for help on using the repository browser.