146 lines
6.2 KiB
C++
146 lines
6.2 KiB
C++
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-experience-plugin-energy.
|
|
*
|
|
* nymea-experience-plugin-energy is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* nymea-experience-plugin-energy is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with nymea-experience-plugin-energy. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef ENERGYLOGGER_H
|
|
#define ENERGYLOGGER_H
|
|
|
|
#include "energylogs.h"
|
|
|
|
#include <typeutils.h>
|
|
|
|
#include <QObject>
|
|
#include <QDateTime>
|
|
#include <QSqlDatabase>
|
|
#include <QSqlResult>
|
|
#include <QTimer>
|
|
#include <QMap>
|
|
#include <QSet>
|
|
#include <QThread>
|
|
|
|
class EnergyLogger : public EnergyLogs
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit EnergyLogger(QObject *parent = nullptr);
|
|
~EnergyLogger() override;
|
|
|
|
void logPowerBalance(double consumption, double production, double acquisition, double storage, double totalConsumption, double totalProduction, double totalAcquisition, double totalReturn);
|
|
void logThingPower(const ThingId &thingId, double currentPower, double totalConsumption, double totalProduction);
|
|
|
|
PowerBalanceLogEntries powerBalanceLogs(SampleRate sampleRate, const QDateTime &from = QDateTime(), const QDateTime &to = QDateTime()) const override;
|
|
ThingPowerLogEntries thingPowerLogs(SampleRate sampleRate, const QList<ThingId> &thingIds, const QDateTime &from = QDateTime(), const QDateTime &to = QDateTime()) const override;
|
|
|
|
PowerBalanceLogEntry latestLogEntry(SampleRate sampleRate);
|
|
ThingPowerLogEntry latestLogEntry(SampleRate sampleRate, const ThingId &thingId);
|
|
|
|
void removeThingLogs(const ThingId &thingId);
|
|
QList<ThingId> loggedThings() const;
|
|
|
|
// For internal use, the energymanager needs to cache some values to track things total values
|
|
// This is really only here to have a single storage and not keep a separate cache file. Shouldn't be used for anything else
|
|
// Note that the returned ThingPowerLogEntry will be incomplete. It won't have a timestamp nor a currentPower value!
|
|
void cacheThingEntry(const ThingId &thingId, double totalEnergyConsumed, double totalEnergyProduced);
|
|
ThingPowerLogEntry cachedThingEntry(const ThingId &thingId);
|
|
|
|
private slots:
|
|
void sample();
|
|
|
|
private:
|
|
bool initDB();
|
|
void addConfig(SampleRate sampleRate, SampleRate baseSampleRate, int maxSamples);
|
|
QDateTime getOldestPowerBalanceSampleTimestamp(SampleRate sampleRate);
|
|
QDateTime getNewestPowerBalanceSampleTimestamp(SampleRate sampleRate);
|
|
QDateTime getOldestThingPowerSampleTimestamp(const ThingId &thingId, SampleRate sampleRate);
|
|
QDateTime getNewestThingPowerSampleTimestamp(const ThingId &thingId, SampleRate sampleRate);
|
|
|
|
QDateTime nextSampleTimestamp(SampleRate sampleRate, const QDateTime &dateTime);
|
|
void scheduleNextSample(SampleRate sampleRate);
|
|
QDateTime calculateSampleStart(const QDateTime &sampleEnd, SampleRate sampleRate, int sampleCount = 1);
|
|
|
|
void rectifySamples(SampleRate sampleRate, EnergyLogger::SampleRate baseSampleRate);
|
|
|
|
bool samplePowerBalance(SampleRate sampleRate, SampleRate baseSampleRate, const QDateTime &sampleEnd);
|
|
bool insertPowerBalance(const QDateTime ×tamp, SampleRate sampleRate, double consumption, double production, double acquisition, double storage, double totalConsumption, double totalProduction, double totalAcquisition, double totalReturn);
|
|
bool sampleThingsPower(SampleRate sampleRate, SampleRate baseSampleRate, const QDateTime &sampleEnd);
|
|
bool sampleThingPower(const ThingId &thingId, SampleRate sampleRate, SampleRate baseSampleRate, const QDateTime &sampleEnd);
|
|
bool insertThingPower(const QDateTime ×tamp, SampleRate sampleRate, const ThingId &thingId, double currentPower, double totalConsumption, double totalProduction);
|
|
void trimPowerBalance(SampleRate sampleRate, const QDateTime &beforeTime);
|
|
void trimThingPower(const ThingId &thingId, SampleRate sampleRate, const QDateTime &beforeTime);
|
|
|
|
PowerBalanceLogEntry queryResultToBalanceLogEntry(const QSqlRecord &record) const;
|
|
ThingPowerLogEntry queryResultToThingPowerLogEntry(const QSqlRecord &record) const;
|
|
|
|
private:
|
|
struct PendingPowerBalanceSample {
|
|
QDateTime timestamp;
|
|
SampleRate sampleRate = SampleRateAny;
|
|
double consumption = 0;
|
|
double production = 0;
|
|
double acquisition = 0;
|
|
double storage = 0;
|
|
double totalConsumption = 0;
|
|
double totalProduction = 0;
|
|
double totalAcquisition = 0;
|
|
double totalReturn = 0;
|
|
};
|
|
|
|
struct PendingThingPowerSample {
|
|
QDateTime timestamp;
|
|
SampleRate sampleRate = SampleRateAny;
|
|
ThingId thingId;
|
|
double currentPower = 0;
|
|
double totalConsumption = 0;
|
|
double totalProduction = 0;
|
|
};
|
|
|
|
void startDbMaintenance(const QString &reason, const QDateTime &fillMinuteSamplesUntil = QDateTime());
|
|
void flushPendingDbWrites();
|
|
|
|
struct SampleConfig {
|
|
SampleRate baseSampleRate;
|
|
uint maxSamples = 0;
|
|
};
|
|
|
|
PowerBalanceLogEntries m_balanceLiveLog;
|
|
QHash<ThingId, ThingPowerLogEntries> m_thingsPowerLiveLogs;
|
|
|
|
QTimer m_sampleTimer;
|
|
QHash<SampleRate, QDateTime> m_nextSamples;
|
|
|
|
QSqlDatabase m_db;
|
|
QString m_dbFilePath;
|
|
|
|
int m_maxMinuteSamples = 0;
|
|
QMap<SampleRate, SampleConfig> m_configs;
|
|
|
|
bool m_dbMaintenanceRunning = false;
|
|
QThread *m_dbMaintenanceThread = nullptr;
|
|
QList<PendingPowerBalanceSample> m_pendingPowerBalanceSamples;
|
|
QList<PendingThingPowerSample> m_pendingThingPowerSamples;
|
|
QHash<ThingId, QPair<double, double>> m_pendingThingCacheEntries;
|
|
QSet<ThingId> m_pendingThingLogRemovals;
|
|
};
|
|
|
|
#endif // ENERGYLOGGER_H
|