OpenCPN Partial API docs
Loading...
Searching...
No Matches
datetime.cpp
1/***************************************************************************
2 * Copyright (C) 2023 by David Register *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 **************************************************************************/
19
20#include "model/datetime.h"
21
22#include "ocpn_plugin.h"
23
24#if wxCHECK_VERSION(3, 1, 6)
25#include <wx/uilocale.h>
26#endif
27
28namespace ocpn {
29
30// date/time in the desired time zone format.
31wxString toUsrDateTimeFormat(const wxDateTime date_time,
33 wxDateTime t(date_time);
34 wxString effective_time_zone = options.time_zone;
35 if (effective_time_zone == wxEmptyString) {
36 effective_time_zone = ::g_datetime_format;
37 }
38 if (effective_time_zone == wxEmptyString) {
39 effective_time_zone = "UTC";
40 }
41 // Define a map for custom format specifiers.
42 std::vector<std::pair<wxString, wxString>> formatMap = {
43#if wxCHECK_VERSION(3, 1, 6)
44 // Note: the GetInfo() method may return special unicode characters, such
45 // as
46 // narrow no-break space (U+202F).
47 {"$long_date_time",
48 wxUILocale::GetCurrent().GetInfo(wxLOCALE_LONG_DATE_FMT) + " " +
49 wxUILocale::GetCurrent().GetInfo(wxLOCALE_TIME_FMT)},
50 {"$long_date", wxUILocale::GetCurrent().GetInfo(wxLOCALE_LONG_DATE_FMT)},
51 {"$weekday_short_date_time",
52 "%a " + wxUILocale::GetCurrent().GetInfo(wxLOCALE_SHORT_DATE_FMT) + " " +
53 wxUILocale::GetCurrent().GetInfo(wxLOCALE_TIME_FMT)},
54 {"$weekday_short_date",
55 "%a " + wxUILocale::GetCurrent().GetInfo(wxLOCALE_SHORT_DATE_FMT)},
56 {"short_date_time",
57 wxUILocale::GetCurrent().GetInfo(wxLOCALE_SHORT_DATE_FMT) + " " +
58 wxUILocale::GetCurrent().GetInfo(wxLOCALE_TIME_FMT)},
59 {"$short_date",
60 wxUILocale::GetCurrent().GetInfo(wxLOCALE_SHORT_DATE_FMT)},
61 {"$hour_minutes_seconds",
62 wxUILocale::GetCurrent().GetInfo(wxLOCALE_TIME_FMT)},
63#else
64 {"$long_date_time", "%x %X"},
65 {"$long_date", "%x"}, // There is no descriptor for localized long date.
66 // Fallback to short date.
67 {"$weekday_short_date_time", "%a %x %X"},
68 {"$weekday_short_date", "%a %x"},
69 {"$short_date_time", "%x %X"},
70 {"$short_date", "%x"},
71 {"$hour_minutes_seconds", "%X"},
72#endif
73 {"$hour_minutes", "%H:%M"},
74 };
75 wxString format = options.format_string;
76 if (format == wxEmptyString) {
77 format = "$weekday_short_date_time";
78 }
79 // Replace custom specifiers with actual format strings
80 for (const auto& pair : formatMap) {
81 format.Replace(pair.first, pair.second);
82 }
83 wxString ret;
84 if (effective_time_zone == "Local Time") {
85 wxDateTime now = wxDateTime::Now();
86 if ((now == (now.ToGMT())) &&
87 t.IsDST()) // bug in wxWingets 3.0 for UTC meridien ?
88 t.Add(wxTimeSpan(1, 0, 0, 0));
89 // Get the abbreviated name of the timezone configured in the operating
90 // system. Formatting with the actual timezone (rather than "LOC") makes the
91 // labels unambiguous, even if the user changes the timezone settings in the
92 // operating system. For example "2021-10-31 01:30:00 EDT" is unambiguous,
93 // while "2021-10-31 01:30:00 LOC" is not.
94 wxString tzName = t.Format("%Z");
95 ret = t.Format(format, wxDateTime::Local) + " " + tzName;
96 } else if (effective_time_zone == "UTC") {
97 ret = t.Format(format, wxDateTime::UTC) + " " + _("UTC");
98 } else if (effective_time_zone == "LMT") {
99 // Local mean solar time at the current location.
100 if (std::isnan(options.longitude)) {
101 t = wxInvalidDateTime;
102 } else {
103 t.Add(wxTimeSpan(0, 0, wxLongLong(options.longitude * 3600. / 15.)));
104 }
105 ret = t.Format(format, wxDateTime::UTC) + " " + _("LMT");
106 } else {
107 // Fallback to UTC if the timezone is not recognized.
108 ret = t.Format(format, wxDateTime::UTC) + " " + _("UTC");
109 }
110 return ret;
111}
112
113} // namespace ocpn
Standard, mostly strings utilities.
Definition datetime.cpp:28
PlugIn Object Definition/API.
Configuration options for date and time formatting.