avoid ctime, use UTC ISO 8601 for CMD_DATE format (#4764)

* java_console: use UTC ISO 8601 for CMD_DATE format

* ChibiOS RTC avoids ctime

* firmware: controller sets time via ISO 8601

* avoid ctime in CAN dash
This commit is contained in:
Nathan Schulte 2022-11-23 14:53:16 -06:00 committed by GitHub
parent 8eaa901595
commit 59406e83f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 151 additions and 137 deletions

View File

@ -15,6 +15,7 @@
#include "can_bmw.h" #include "can_bmw.h"
#include "can_vag.h" #include "can_vag.h"
#include "rusefi_types.h"
#include "rtc_helper.h" #include "rtc_helper.h"
#include "fuel_math.h" #include "fuel_math.h"
@ -554,16 +555,22 @@ void canDashboardBMWE90(CanCycle cycle)
{ {
if (!cluster_time_set) { if (!cluster_time_set) {
struct tm timp; #if EFI_RTC
date_get_tm(&timp); efidatetime_t dateTime = getRtcDateTime();
#else // EFI_RTC
efidatetime_t dateTime = {
.year = 0, .month = 0, .day = 0,
.hour = 0, .minute = 0, .second = 0,
};
#endif // EFI_RTC
CanTxMessage msg(CanCategory::NBC, E90_TIME, 8); CanTxMessage msg(CanCategory::NBC, E90_TIME, 8);
msg[0] = timp.tm_hour; msg[0] = dateTime.hour;
msg[1] = timp.tm_min; msg[1] = dateTime.minute;
msg[2] = timp.tm_sec; msg[2] = dateTime.second;
msg[3] = timp.tm_mday; msg[3] = dateTime.day;
msg[4] = (((timp.tm_mon + 1) << 4) | 0x0F); msg[4] = (dateTime.month << 4) | 0x0F;
msg[5] = (timp.tm_year + 1900) & 0xFF; msg[5] = dateTime.year & 0xFF;
msg[6] = ((timp.tm_year + 1900) >> 8) | 0xF0; msg[6] = (dateTime.year >> 8) | 0xF0; // collides CAN dash at 4096!
msg[7] = 0xF2; msg[7] = 0xF2;
cluster_time_set = 1; cluster_time_set = 1;
} }

View File

@ -17,9 +17,11 @@
#include "alternator_controller.h" #include "alternator_controller.h"
#include "trigger_emulator_algo.h" #include "trigger_emulator_algo.h"
#include "value_lookup.h" #include "value_lookup.h"
#if EFI_RTC
#include "rtc_helper.h"
#endif // EFI_RTC
#if EFI_PROD_CODE #if EFI_PROD_CODE
#include "rtc_helper.h"
#include "can_hw.h" #include "can_hw.h"
#include "rusefi.h" #include "rusefi.h"
#include "hardware.h" #include "hardware.h"
@ -874,14 +876,9 @@ static void getValue(const char *paramStr) {
efiPrintf("invertCamVVTSignal=%s", boolToString(engineConfiguration->invertCamVVTSignal)); efiPrintf("invertCamVVTSignal=%s", boolToString(engineConfiguration->invertCamVVTSignal));
} else if (strEqualCaseInsensitive(paramStr, "isHip9011Enabled")) { } else if (strEqualCaseInsensitive(paramStr, "isHip9011Enabled")) {
efiPrintf("isHip9011Enabled=%d", engineConfiguration->isHip9011Enabled); efiPrintf("isHip9011Enabled=%d", engineConfiguration->isHip9011Enabled);
} } else if (strEqualCaseInsensitive(paramStr, CMD_DATE)) {
#if EFI_RTC
else if (strEqualCaseInsensitive(paramStr, CMD_DATE)) {
printDateTime(); printDateTime();
} } else {
#endif
else {
efiPrintf("Invalid Parameter: %s", paramStr); efiPrintf("Invalid Parameter: %s", paramStr);
} }
} }
@ -1069,11 +1066,9 @@ static void setValue(const char *paramStr, const char *valueStr) {
#endif // EFI_PROD_CODE #endif // EFI_PROD_CODE
} else if (strEqualCaseInsensitive(paramStr, "targetvbatt")) { } else if (strEqualCaseInsensitive(paramStr, "targetvbatt")) {
engineConfiguration->targetVBatt = valueF; engineConfiguration->targetVBatt = valueF;
#if EFI_RTC
} else if (strEqualCaseInsensitive(paramStr, CMD_DATE)) { } else if (strEqualCaseInsensitive(paramStr, CMD_DATE)) {
// rusEfi console invokes this method with timestamp in local timezone // rusEfi console invokes this method with timestamp in local timezone
setDateTime(valueStr); setDateTime(valueStr);
#endif
} }
engine->resetEngineSnifferIfInTestMode(); engine->resetEngineSnifferIfInTestMode();
} }
@ -1155,6 +1150,32 @@ void initSettings(void) {
#endif // EFI_PROD_CODE #endif // EFI_PROD_CODE
} }
void printDateTime() {
#if EFI_RTC
printRtcDateTime();
#else // EFI_RTC
efiPrintf("Cannot print time: RTC not supported");
#endif // EFI_RTC
}
void setDateTime(const char * const isoDateTime) {
#if EFI_RTC
if (strlen(isoDateTime) > 0) {
efidatetime_t dateTime;
if (sscanf("%04u-%02u-%02uT%02u:%02u:%02u", isoDateTime,
&dateTime.year, &dateTime.month, &dateTime.day,
&dateTime.hour, &dateTime.minute, &dateTime.second)
== 6) { // 6 fields to properly scan
setRtcDateTime(&dateTime);
return;
}
}
efiPrintf("date_set Date parameter %s is wrong", isoDateTime);
#else // EFI_RTC
efiPrintf("Cannot set time: RTC not supported");
#endif // EFI_RTC
}
#endif // ! EFI_UNIT_TEST #endif // ! EFI_UNIT_TEST
void setEngineType(int value) { void setEngineType(int value) {

View File

@ -18,3 +18,6 @@ void scheduleStopEngine(void);
void printTPSInfo(void); void printTPSInfo(void);
void setEngineType(int value); void setEngineType(int value);
void readPin(const char *pinName); void readPin(const char *pinName);
void printDateTime();
void setDateTime(const char * const isoDateTime);

View File

@ -9,10 +9,13 @@
#include "pch.h" #include "pch.h"
#include <string.h> #include <string.h>
#include <time.h>
#include "rtc_helper.h" #include "rtc_helper.h"
#if EFI_RTC
#include "rusefi_types.h"
#endif // EFI_RTC
#if EFI_PROD_CODE #if EFI_PROD_CODE
#include <sys/time.h> #include <sys/time.h>
@ -23,55 +26,69 @@ extern "C" int _gettimeofday(timeval* tv, void* tzvp) {
} }
#endif // EFI_PROD_CODE #endif // EFI_PROD_CODE
void date_set_tm(tm *timp) {
(void)timp;
#if EFI_RTC #if EFI_RTC
RTCDateTime timespec; void initRtc() {
rtcConvertStructTmToDateTime(timp, 0, &timespec); efiPrintf("initRtc()");
rtcSetTime(&RTCD1, &timespec); printDateTime(); // this would test RTC, see 'rtcWorks' variable, see #311
#endif // EFI_RTC
} }
void date_get_tm(tm *timp) { static const char * const monthAbbrs[] = {
(void)timp; "Jan", "Feb", "Mar",
#if EFI_RTC "Apr", "May", "Jun",
RTCDateTime timespec; "Jul", "Aug", "Sep",
rtcGetTime(&RTCD1, &timespec); "Oct", "Nov", "Dec"
rtcConvertDateTimeToStructTm(&timespec, timp, NULL); };
#endif // EFI_RTC
void printRtcDateTime() {
efidatetime_t dateTime = getRtcDateTime();
// prints the date like: 19 sep 2022 21:19:55
efiPrintf("Current RTC time: %02u %s %04u %02u:%02u:%02u",
dateTime.day, monthAbbrs[dateTime.month - 1], dateTime.year,
dateTime.hour, dateTime.minute, dateTime.second);
} }
#if EFI_RTC void setRtcDateTime(efidatetime_t const * const dateTime) {
static time_t GetTimeUnixSec() { RTCDateTime timespec = convertRtcDateTimeFromEfi(dateTime);
tm tim;
RTCDateTime timespec;
rtcGetTime(&RTCD1, &timespec);
rtcConvertDateTimeToStructTm(&timespec, &tim, NULL);
time_t result = mktime(&tim);
return result;
}
static void SetTimeUnixSec(time_t unix_time) {
tm tim;
#if defined __GNUC__
tm *canary;
/* If the conversion is successful the function returns a pointer
to the object the result was written into.*/
canary = localtime_r(&unix_time, &tim);
osalDbgCheck(&tim == canary);
#else // defined __GNUC__
tm *t = localtime(&unix_time);
memcpy(&tim, t, sizeof(tm));
#endif // defined __GNUC__
RTCDateTime timespec;
rtcConvertStructTmToDateTime(&tim, 0, &timespec);
rtcSetTime(&RTCD1, &timespec); rtcSetTime(&RTCD1, &timespec);
} }
efidatetime_t getRtcDateTime() {
RTCDateTime timespec;
rtcGetTime(&RTCD1, &timespec);
return convertRtcDateTimeToEfi(&timespec);
}
efidatetime_t convertRtcDateTimeToEfi(RTCDateTime const * const timespec) {
uint32_t second = timespec->millisecond / 1000;
uint16_t minute = second / 60;
second -= minute * 60;
uint8_t hour = minute / 60;
minute -= hour * 60;
efidatetime_t const dateTime = {
.year = timespec->year + RTC_BASE_YEAR,
.month = (uint8_t)timespec->month,
.day = (uint8_t)timespec->day,
.hour = hour,
.minute = (uint8_t)minute,
.second = (uint8_t)second,
};
return dateTime;
}
RTCDateTime convertRtcDateTimeFromEfi(efidatetime_t const * const dateTime) {
RTCDateTime timespec;
timespec.year = dateTime->year - RTC_BASE_YEAR; // ChibiOS year origin is e.g. 1980
timespec.month = dateTime->month; // [1..12]
timespec.day = dateTime->day; // [1..31]
timespec.millisecond = (((dateTime->hour * 60) + dateTime->minute) * 60 + dateTime->second) * 1000; // ms since midnight
timespec.dayofweek = RTC_DAY_CATURDAY; // CATURDAY: 0 ... ?
timespec.dstflag = 0; // 0 ... ?
return timespec;
}
// TODO(nms): move to e.g. efitime ?
static void put2(int offset, char *lcd_str, int value) { static void put2(int offset, char *lcd_str, int value) {
static char buff[_MAX_FILLER]; static char buff[_MAX_FILLER];
efiAssertVoid(CUSTOM_ERR_6666, value >=0 && value <100, "value"); efiAssertVoid(CUSTOM_ERR_6666, value >=0 && value <100, "value");
@ -84,97 +101,53 @@ static void put2(int offset, char *lcd_str, int value) {
lcd_str[offset + 1] = buff[1]; lcd_str[offset + 1] = buff[1];
} }
} }
#endif // EFI_RTC
/** /**
* @return true if we seem to know current date, false if no valid RTC state * @return true if we seem to know current date, false if no valid RTC state
*/ */
bool dateToStringShort(char *lcd_str) { bool dateToStringShort(char *lcd_str) {
#if EFI_RTC
strcpy(lcd_str, "000000_000000\0"); strcpy(lcd_str, "000000_000000\0");
tm timp; efidatetime_t dateTime = getRtcDateTime();
date_get_tm(&timp); if (dateTime.year < 2016 || dateTime.year > 2030) {
if (timp.tm_year < 116 || timp.tm_year > 130) {
// 2016 to 2030 is the valid range // 2016 to 2030 is the valid range
lcd_str[0] = 0; lcd_str[0] = 0;
return false; return false;
} }
put2(0, lcd_str, timp.tm_year % 100); // Years since 1900 - format as just the last two digits put2(0, lcd_str, dateTime.year % 100); // year, format as just the last two digits
put2(2, lcd_str, timp.tm_mon + 1); // months since January 0-11 put2(2, lcd_str, dateTime.month); // month 1-12
put2(4, lcd_str, timp.tm_mday); // day of the month 1-31 put2(4, lcd_str, dateTime.day); // day of the month 1-31
put2(7, lcd_str, timp.tm_hour); // hours since midnight 0-23 put2(7, lcd_str, dateTime.hour); // hours since midnight 0-23
put2(9, lcd_str, timp.tm_min); // Minutes put2(9, lcd_str, dateTime.minute); // minutes
put2(11, lcd_str, timp.tm_sec); // seconds put2(11, lcd_str, dateTime.second); // seconds
return true; return true;
#else // EFI_RTC
lcd_str[0] = 0;
return false;
#endif // EFI_RTC
} }
void dateToString(char *lcd_str) { void dateToString(char *lcd_str) {
#if EFI_RTC
// todo: // todo:
// re-implement this along the lines of chvprintf("%04u-%02u-%02u %02u:%02u:%02u\r\n", timp.tm_year + 1900, timp.tm_mon + 1, timp.tm_mday, timp.tm_hour, // re-implement this along the lines of chvprintf("%04u-%02u-%02u %02u:%02u:%02u\r\n", timp.tm_year + 1900, timp.tm_mon + 1, timp.tm_mday, timp.tm_hour,
// timp.tm_min, timp.tm_sec); // timp.tm_min, timp.tm_sec);
// this would require a temporary mem stream - see datalogging and other existing usages // this would require a temporary mem stream - see datalogging and other existing usages
strcpy(lcd_str, "00/00 00:00:00\0"); strcpy(lcd_str, "00/00 00:00:00\0");
tm timp; efidatetime_t dateTime = getRtcDateTime();
date_get_tm(&timp); // get RTC date/time
put2(0, lcd_str, timp.tm_mon + 1);
put2(3, lcd_str, timp.tm_mday);
put2(6, lcd_str, timp.tm_hour);
put2(9, lcd_str, timp.tm_min);
put2(12, lcd_str, timp.tm_sec);
}
static const char* const months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
void printDateTime() {
tm timp;
time_t unix_time = GetTimeUnixSec();
if (unix_time == -1) {
efiPrintf("invalid time in RTC cell");
} else {
efiPrintf("Current Unix time: %d", unix_time);
date_get_tm(&timp);
auto month = months[timp.tm_mon];
// Prints something like "19 Sep 2022 21:19:55"
efiPrintf("Current RTC time is: %02u %s %04u %02u:%02u:%02u", timp.tm_mday, month, timp.tm_year + 1900, timp.tm_hour, timp.tm_min, timp.tm_sec);
}
}
void setDateTime(const char *strDate) {
if (strlen(strDate) > 0) {
time_t unix_time = atoi(strDate);
if (unix_time > 0) {
SetTimeUnixSec(unix_time);
printDateTime();
return;
}
}
efiPrintf("date_set Date parameter %s is wrong", strDate);
}
put2(0, lcd_str, dateTime.month);
put2(3, lcd_str, dateTime.day);
put2(6, lcd_str, dateTime.hour);
put2(9, lcd_str, dateTime.minute);
put2(12, lcd_str, dateTime.second);
#else // EFI_RTC #else // EFI_RTC
bool dateToStringShort(char *lcd_str) {
lcd_str[0] = 0; lcd_str[0] = 0;
return false;
}
void dateToString(char *lcd_str) {
lcd_str[0] = 0;
}
#endif // EFI_RTC
void initRtc() {
#if EFI_RTC
GetTimeUnixSec(); // this would test RTC, see 'rtcWorks' variable, see #311
efiPrintf("initRtc()");
printDateTime();
#endif // EFI_RTC #endif // EFI_RTC
} }

View File

@ -4,14 +4,22 @@
* *
* @date Feb 5, 2014 * @date Feb 5, 2014
* @author Andrey Belomutskiy, (c) 2012-2020 * @author Andrey Belomutskiy, (c) 2012-2020
* @author Nathan Schulte, (c) 2022
*/ */
#pragma once #pragma once
void printDateTime(); #include "rusefi_types.h"
void setDateTime(const char *strDate);
#if EFI_RTC
void initRtc(); void initRtc();
void date_set_tm(struct tm *); void printRtcDateTime();
void date_get_tm(struct tm *); efidatetime_t getRtcDateTime();
void setRtcDateTime(const efidatetime_t * const dateTime);
efidatetime_t convertRtcDateTimeToEfi(const RTCDateTime * const timespec);
RTCDateTime convertRtcDateTimeFromEfi(const efidatetime_t * const dateTime);
#endif // EFI_RTC
void dateToString(char *buffer); void dateToString(char *buffer);
bool dateToStringShort(char *lcd_str); bool dateToStringShort(char *lcd_str);

View File

@ -16,7 +16,9 @@ import org.jetbrains.annotations.NotNull;
import javax.swing.*; import javax.swing.*;
import java.util.Objects; import java.util.Objects;
import java.util.TimeZone; import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.time.ZoneOffset;
import static com.devexperts.logging.Logging.getLogging; import static com.devexperts.logging.Logging.getLogging;
import static com.rusefi.core.preferences.storage.PersistentConfiguration.getConfig; import static com.rusefi.core.preferences.storage.PersistentConfiguration.getConfig;
@ -27,6 +29,7 @@ public class MainFrame {
@NotNull @NotNull
private final ConsoleUI consoleUI; private final ConsoleUI consoleUI;
private final TabbedPanel tabbedPane; private final TabbedPanel tabbedPane;
/** /**
* @see StartupFrame * @see StartupFrame
*/ */
@ -55,7 +58,6 @@ public class MainFrame {
public MainFrame(ConsoleUI consoleUI, TabbedPanel tabbedPane) { public MainFrame(ConsoleUI consoleUI, TabbedPanel tabbedPane) {
this.consoleUI = Objects.requireNonNull(consoleUI); this.consoleUI = Objects.requireNonNull(consoleUI);
this.tabbedPane = tabbedPane; this.tabbedPane = tabbedPane;
listener = (String s) -> { listener = (String s) -> {
}; };
@ -67,10 +69,10 @@ public class MainFrame {
setTitle(); setTitle();
UiUtils.trueRepaint(tabbedPane.tabbedPane); // this would repaint status label UiUtils.trueRepaint(tabbedPane.tabbedPane); // this would repaint status label
if (ConnectionStatusLogic.INSTANCE.getValue() == ConnectionStatusValue.CONNECTED) { if (ConnectionStatusLogic.INSTANCE.getValue() == ConnectionStatusValue.CONNECTED) {
long unixGmtTime = System.currentTimeMillis() / 1000L; LocalDateTime dateTime = LocalDateTime.now(ZoneOffset.systemDefault());
long withOffset = unixGmtTime + TimeZone.getDefault().getOffset(System.currentTimeMillis()) / 1000; String isoDateTime = dateTime.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME);
consoleUI.uiContext.getLinkManager().execute(() -> consoleUI.uiContext.getCommandQueue().write(IoUtil.getSetCommand(Fields.CMD_DATE) + consoleUI.uiContext.getLinkManager().execute(() -> consoleUI.uiContext.getCommandQueue().write(IoUtil.getSetCommand(Fields.CMD_DATE) +
" " + withOffset, CommandQueue.DEFAULT_TIMEOUT, " " + isoDateTime, CommandQueue.DEFAULT_TIMEOUT,
InvocationConfirmationListener.VOID, false)); InvocationConfirmationListener.VOID, false));
} }
})); }));