Resvent Loader: not loading/restoring some days

This commit is contained in:
LoudSnorer 2024-02-13 09:22:11 -05:00
parent f304e542fc
commit 25123ec16c

View File

@ -72,6 +72,7 @@ constexpr double kTenthGain = 0.1;
constexpr double kNoGain = 1.0; constexpr double kNoGain = 1.0;
constexpr double kDefaultGain = kHundredthGain ; // For Flow (rate) and (mask)Pressure - High Resolutions data. constexpr double kDefaultGain = kHundredthGain ; // For Flow (rate) and (mask)Pressure - High Resolutions data.
const QDate baseDate(2010 , 1, 1); // start of development
bool ResventLoader::Detect(const QString & givenpath) bool ResventLoader::Detect(const QString & givenpath)
{ {
@ -629,17 +630,23 @@ int LoadSession(const QString& dirpath, const QDate& session_date, Machine* mach
const auto session_folder_path = GetSessionFolder(dirpath, session_date); const auto session_folder_path = GetSessionFolder(dirpath, session_date);
const auto different_usage = GetDifferentUsage(session_folder_path); const auto different_usage = GetDifferentUsage(session_folder_path);
//return std::accumulate(different_usage.cbegin(), different_usage.cend(), 0, [&](int base, const UsageData& usage)
// std::accumulate(different_usage.cbegin(), different_usage.cend(), 0, [&](int base, const UsageData& usage)
int base = 0; int base = 0;
// Session ID must be unique.
// SessioId is defined as an unsigned int. Oscar however has a problem .
// if the most signifigant bit is set then Oscat misbehaves.
// typically with signed vs unsigned int issues.
// so sessionID has an implicit limit of a max postive value of of signed int.
// sessionID be must a unique positive ingteger ei. <= (2**31 -1) (2,147,483,647)
//
SessionID sessionId = (baseDate.daysTo(session_date)) * 64; // leave space for N sessions.
for (auto usage : different_usage) for (auto usage : different_usage)
{ {
if (machine->SessionExists(usage.start_time.toMSecsSinceEpoch() + kDateTimeOffset - timezoneOffset())) { if (machine->SessionExists(sessionId)) {
// session alreadt exists // session alreadt exists
//return base; //return base;
continue; continue;
} }
Session* session = new Session(machine, usage.start_time.toMSecsSinceEpoch() + kDateTimeOffset - timezoneOffset()); Session* session = new Session(machine, sessionId++);
session->SetChanged(true); session->SetChanged(true);
session->really_set_first(usage.start_time.toMSecsSinceEpoch() + kDateTimeOffset - timezoneOffset()); session->really_set_first(usage.start_time.toMSecsSinceEpoch() + kDateTimeOffset - timezoneOffset());
session->really_set_last(usage.end_time.toMSecsSinceEpoch() + kDateTimeOffset - timezoneOffset()); session->really_set_last(usage.end_time.toMSecsSinceEpoch() + kDateTimeOffset - timezoneOffset());