Blame view

src/Common/OutputFormatTime.hh 1.21 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * OutputFormatTime.hh
 *
 *  Created on: 26 oct. 2012
 *      Author: AKKA IS
 */

#ifndef OUTPUTFORMATTIME_HH_
#define OUTPUTFORMATTIME_HH_

#include <map>
#include <string>

namespace AMDA {

/**
 * Define output down load time format
 */
enum OutputFormatTime {
	FORMAT_OUTPUT_TIME_DD, ///< DD_server style
	FORMAT_OUTPUT_TIME_ISO, ///< ISO STYLE AAAA-MM-JJTHH:MM:ss.msd
b3096d5d   Hacene SI HADJ MOHAND   correcting time i...
22
                    FORMAT_OUTPUT_TIME_ISO_Z, ///< ISO STYLE AAAA-MM-JJTHH:MM:ss.msd
fbe3c2bb   Benjamin Renard   First commit
23
	FORMAT_OUTPUT_TIME_DOUBLE, ///< in second;  stating from 1970
5b387233   Vincent Cephirins   RM7926 - Evol - C...
24
25
        FORMAT_OUTPUT_TIME_SPACES, /// < YYYY MM DD hh mm ss
        FORMAT_OUTPUT_TIME_MS, /// < Double with milliseconds 
fbe3c2bb   Benjamin Renard   First commit
26
27
28
};

static std::map<OutputFormatTime,std::string> ouputFormatTimeToStr = {
44751e8b   Hacene SI HADJ MOHAND   I have changed DD...
29
	{OutputFormatTime::FORMAT_OUTPUT_TIME_DD, "DOY TIME"},
fbe3c2bb   Benjamin Renard   First commit
30
	{OutputFormatTime::FORMAT_OUTPUT_TIME_ISO, "ISO 8601"},
b3096d5d   Hacene SI HADJ MOHAND   correcting time i...
31
                    {OutputFormatTime::FORMAT_OUTPUT_TIME_ISO_Z, "ISO 8601Z"},
31dbec88   Benjamin Renard   date spaces ok
32
33
34
	{OutputFormatTime::FORMAT_OUTPUT_TIME_DOUBLE, "Seconds from 1970"},
                    {OutputFormatTime::FORMAT_OUTPUT_TIME_SPACES, "YYYY MM DD hh mm ss"},
                    {OutputFormatTime::FORMAT_OUTPUT_TIME_MS, "Seconds from 1970, milliseconds"},
fbe3c2bb   Benjamin Renard   First commit
35
36
37
38
};

} /* namespace AMDA */
#endif /* OUTPUTFORMATTIME_HH_ */