powersync-energy-plugin-etm/tests/auto/simulation/experience/energymanagermock.h

82 lines
2.5 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-energy-plugin-nymea.
*
* nymea-energy-plugin-nymea.s 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-energy-plugin-nymea.s 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-energy-plugin-nymea. If not, see <https://www.gnu.org/licenses/>.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef ENERGYMANAGERMOCK_H
#define ENERGYMANAGERMOCK_H
#include <QObject>
#include <QHash>
#include <QTimer>
#include "integrations/thingmanager.h"
#include "energymanager.h"
class EnergyLogger;
class EnergyManagerMock : public EnergyManager
{
Q_OBJECT
public:
explicit EnergyManagerMock(ThingManager *thingManager, const QString &energyLogDbFilePath, QObject *parent = nullptr);
Thing *rootMeter() const override;
EnergyError setRootMeter(const ThingId &rootMeterId) override;
double currentPowerConsumption() const override;
double currentPowerProduction() const override;
double currentPowerAcquisition() const override;
double currentPowerStorage() const override;
double totalConsumption() const override;
double totalProduction() const override;
double totalAcquisition() const override;
double totalReturn() const override;
EnergyLogs* logs() const override;
private:
void updatePowerBalance();
private slots:
void logDumpConsumers();
private:
ThingManager *m_thingManager = nullptr;
Thing *m_rootMeter = nullptr;
QTimer m_balanceUpdateTimer;
double m_currentPowerConsumption = 0;
double m_currentPowerProduction = 0;
double m_currentPowerAcquisition = 0;
double m_currentPowerStorage = 0;
double m_totalConsumption = 0;
double m_totalProduction = 0;
double m_totalAcquisition = 0;
double m_totalReturn = 0;
EnergyLogger *m_logger = nullptr;
};
#endif // ENERGYMANAGERMOCK_H