]> git.lyx.org Git - lyx.git/blob - src/support/lyxtime.cpp
improve language flag for Objective-C compiler call
[lyx.git] / src / support / lyxtime.cpp
1 /**
2  * \file lyxtime.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "support/lyxtime.h"
14
15 #include "support/debug.h"
16 #include "support/environment.h"
17 #include "support/lstrings.h"
18 #include "support/qstring_helpers.h"
19
20 #include <QDateTime>
21 #include <QLocale>
22
23 using namespace std;
24
25 namespace lyx {
26 namespace support {
27
28 time_t current_time()
29 {
30         return time(0);
31 }
32
33
34 string const formatted_time(time_t t, string const & fmt)
35 {
36         struct tm * loc_tm = localtime(&t);
37         char date[50];
38         strftime(date, sizeof(date), fmt.c_str(), loc_tm);
39         return string(date);
40 }
41
42
43 time_t from_asctime_utc(string t)
44 {
45         // Example for the format: "Sun Nov  6 10:39:39 2011\n"
46         // Generously remove trailing '\n' (and other whitespace if needed)
47         t = trim(t, " \t\r\n");
48         // toDateTime() is too stupid to recognize variable amounts of
49         // whitespace (needed because ctime() outputs double spaces before
50         // single digit day numbers and hours)
51         t = subst(t, "  ", " ");
52         QString const format("ddd MMM d H:mm:ss yyyy");
53         QLocale loc("C");
54         QDateTime loc_dt = loc.toDateTime(toqstr(t), format);
55         if (!loc_dt.isValid()) {
56                 LYXERR(Debug::LOCALE, "Could not parse `" << t
57                                 << "ยด (invalid format)");
58                 return static_cast<time_t>(-1);
59         }
60         loc_dt.setTimeSpec(Qt::UTC);
61         return loc_dt.toTime_t();
62 }
63
64 } // namespace support
65 } // namespace lyx