2025-08-20 19:00:22 +08:00
|
|
|
|
#include "Station.h"
|
2025-08-26 18:36:25 +08:00
|
|
|
|
#include "database/DAO.h"
|
|
|
|
|
|
#include "database/SQL.h"
|
2025-08-28 18:42:37 +08:00
|
|
|
|
#include "common/fields.h"
|
|
|
|
|
|
#include "app/Device.h"
|
2025-09-01 20:08:40 +08:00
|
|
|
|
#include "common/Spdlogger.h"
|
2025-09-04 19:31:04 +08:00
|
|
|
|
#include "common/Utils.h"
|
|
|
|
|
|
#include "protocol/MqttEntity.h"
|
2025-09-09 19:26:05 +08:00
|
|
|
|
#include "common/JsonN.h"
|
2025-09-13 17:28:35 +08:00
|
|
|
|
#include "app/Config.h"
|
2025-08-28 18:42:37 +08:00
|
|
|
|
|
2025-09-09 19:26:05 +08:00
|
|
|
|
Station::Station() : stationId(0)
|
2025-08-20 19:00:22 +08:00
|
|
|
|
{
|
2025-09-04 19:31:04 +08:00
|
|
|
|
mqttCli = std::make_shared<MqttClient>();
|
2025-08-20 19:00:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-28 18:42:37 +08:00
|
|
|
|
void Station::setFields(Fields& fields)
|
|
|
|
|
|
{
|
2025-09-09 19:26:05 +08:00
|
|
|
|
this->stationId = fields.get<int>(DMStation::STATION_ID);
|
2025-08-28 18:42:37 +08:00
|
|
|
|
this->name = fields.value(DMStation::NAME);
|
2025-09-12 18:44:34 +08:00
|
|
|
|
this->capacity = fields.get<double>(DMStation::CAPACITY);
|
2025-09-17 19:55:59 +08:00
|
|
|
|
this->workMode = fields.get<int>(DMStation::WORK_MODE);
|
2025-09-04 19:31:04 +08:00
|
|
|
|
this->code = fields.value(DMStation::CODE);
|
2025-09-10 20:10:51 +08:00
|
|
|
|
this->status = fields.get<int>(DMStation::STATUS);
|
2025-09-14 16:00:30 +08:00
|
|
|
|
this->operationDate = fields.value(DMStation::OPERATION_DATE);
|
2025-09-16 19:38:46 +08:00
|
|
|
|
this->isOpen = fields.get<int>(DMStation::STATUS);
|
2025-09-17 19:55:59 +08:00
|
|
|
|
this->launchDate = fields.value("operation_date");
|
2025-09-14 16:00:30 +08:00
|
|
|
|
this->policy.setFields(fields);
|
2025-08-28 18:42:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-20 19:00:22 +08:00
|
|
|
|
void Station::addDevice(int deviceId, std::shared_ptr<Device> device)
|
|
|
|
|
|
{
|
2025-08-28 18:42:37 +08:00
|
|
|
|
mapDevice[deviceId] = device;
|
2025-08-20 19:00:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-12 18:44:34 +08:00
|
|
|
|
void Station::addDevice(Fields& fields)
|
|
|
|
|
|
{
|
|
|
|
|
|
int deviceId = fields.get<int>(DMDevice::DEVICE_ID);
|
|
|
|
|
|
int stationId = fields.get<int>(DMDevice::STATION_ID);
|
|
|
|
|
|
if (mapDevice.find(deviceId) != mapDevice.end())
|
|
|
|
|
|
{
|
|
|
|
|
|
mapDevice[deviceId]->setFields(fields);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
auto device = Device::create(fields);
|
|
|
|
|
|
mapDevice[deviceId] = device;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-20 19:00:22 +08:00
|
|
|
|
std::shared_ptr<Device> Station::getDevice(int deviceId)
|
|
|
|
|
|
{
|
2025-08-28 18:42:37 +08:00
|
|
|
|
auto iter = mapDevice.find(deviceId);
|
|
|
|
|
|
if (iter!=mapDevice.end())
|
2025-08-20 19:00:22 +08:00
|
|
|
|
{
|
|
|
|
|
|
return iter->second;
|
|
|
|
|
|
}
|
|
|
|
|
|
return nullptr;
|
2025-08-26 18:36:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-16 19:38:46 +08:00
|
|
|
|
void Station::groupDevice()
|
|
|
|
|
|
{
|
|
|
|
|
|
for (auto iter = mapDevice.begin(); iter!=mapDevice.end(); ++iter)
|
|
|
|
|
|
{
|
|
|
|
|
|
auto& device = iter->second;
|
|
|
|
|
|
char key[20] = {};
|
|
|
|
|
|
sprintf(key, "%03d_%03d_%04d", device->stationId, device->sortNo, device->deviceId);
|
|
|
|
|
|
mapDeviceGroup[device->category][key] = device;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-08 19:34:12 +08:00
|
|
|
|
std::shared_ptr<Device> Station::getDeviceByType(int deviceType, std::string code)
|
2025-08-28 18:42:37 +08:00
|
|
|
|
{
|
|
|
|
|
|
for (auto iter = mapDevice.begin(); iter!=mapDevice.end(); ++iter)
|
|
|
|
|
|
{
|
|
|
|
|
|
auto device = iter->second;
|
2025-09-08 19:34:12 +08:00
|
|
|
|
if (device->type == deviceType && device->code == code)
|
|
|
|
|
|
{
|
|
|
|
|
|
return device;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return nullptr;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Station::getDeviceByType(int deviceType, std::vector<std::shared_ptr<Device>>& res)
|
|
|
|
|
|
{
|
|
|
|
|
|
for (auto iter = mapDevice.begin(); iter!=mapDevice.end(); ++iter)
|
|
|
|
|
|
{
|
|
|
|
|
|
auto device = iter->second;
|
|
|
|
|
|
if (device->type == deviceType)
|
2025-08-28 18:42:37 +08:00
|
|
|
|
{
|
|
|
|
|
|
res.push_back(device);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-12 18:44:34 +08:00
|
|
|
|
int Station::getDeviceCount(int category)
|
2025-08-28 18:42:37 +08:00
|
|
|
|
{
|
2025-09-12 18:44:34 +08:00
|
|
|
|
auto iter = mapDeviceGroup.find(category);
|
|
|
|
|
|
if (iter != mapDeviceGroup.end())
|
|
|
|
|
|
{
|
|
|
|
|
|
return iter->second.size();
|
|
|
|
|
|
}
|
2025-09-06 15:23:07 +08:00
|
|
|
|
return 0;
|
2025-08-28 18:42:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-16 19:38:46 +08:00
|
|
|
|
void Station::getDeviceByCategory(int category, std::vector<std::shared_ptr<Device>>& res)
|
2025-08-28 18:42:37 +08:00
|
|
|
|
{
|
2025-09-06 15:23:07 +08:00
|
|
|
|
auto iter = mapDeviceGroup.find(category);
|
|
|
|
|
|
if (iter != mapDeviceGroup.end())
|
2025-08-28 18:42:37 +08:00
|
|
|
|
{
|
2025-09-16 19:38:46 +08:00
|
|
|
|
res.resize(iter->second.size());
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
for (auto& item: iter->second)
|
|
|
|
|
|
{
|
|
|
|
|
|
res[i++] = item.second;
|
|
|
|
|
|
}
|
2025-08-28 18:42:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 18:36:25 +08:00
|
|
|
|
void Station::setWorkMode(int modeId)
|
|
|
|
|
|
{
|
2025-09-17 19:55:59 +08:00
|
|
|
|
this->workMode = modeId;
|
2025-08-26 18:36:25 +08:00
|
|
|
|
std::string sql = SQL(SQL::TYPE::update).table(DMStation::TABLENAME)
|
2025-09-04 19:31:04 +08:00
|
|
|
|
.update(DMStation::WORK_MODE, std::to_string(modeId))
|
2025-09-09 19:26:05 +08:00
|
|
|
|
.where(DMStation::STATION_ID + "=" + std::to_string(stationId)).str();
|
2025-08-26 18:36:25 +08:00
|
|
|
|
Errcode err = DAO::exec(NULL, sql);
|
|
|
|
|
|
if (err != Errcode::OK)
|
|
|
|
|
|
{
|
2025-09-01 20:08:40 +08:00
|
|
|
|
spdlog::error("set station work mode failed.");
|
2025-08-26 18:36:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Station::setPolicy(int policyId)
|
|
|
|
|
|
{
|
|
|
|
|
|
std::string sql = SQL(SQL::TYPE::update).table(DMStation::TABLENAME)
|
|
|
|
|
|
.update(DMStation::POLICY_ID, std::to_string(policyId))
|
2025-09-09 19:26:05 +08:00
|
|
|
|
.where(DMStation::STATION_ID + "=" + std::to_string(stationId)).str();
|
2025-08-26 18:36:25 +08:00
|
|
|
|
Errcode err = DAO::exec(NULL, sql);
|
|
|
|
|
|
if (err != Errcode::OK)
|
|
|
|
|
|
{
|
2025-09-01 20:08:40 +08:00
|
|
|
|
spdlog::error("set station policy failed.");
|
2025-08-26 18:36:25 +08:00
|
|
|
|
}
|
2025-08-28 18:42:37 +08:00
|
|
|
|
}
|
2025-09-09 19:26:05 +08:00
|
|
|
|
|
2025-09-13 17:28:35 +08:00
|
|
|
|
void Station::initMqtt()
|
|
|
|
|
|
{
|
|
|
|
|
|
if (status!=0 && mqttCli)
|
|
|
|
|
|
{
|
|
|
|
|
|
auto& optionMqtt = Config::option.mqtt;
|
|
|
|
|
|
mqttCli->init(optionMqtt.host, code, optionMqtt.username, optionMqtt.password);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-09-12 18:44:34 +08:00
|
|
|
|
|
|
|
|
|
|
void Station::polling()
|
|
|
|
|
|
{
|
|
|
|
|
|
if (mqttCli)
|
|
|
|
|
|
{
|
|
|
|
|
|
mqttCli->polling();
|
|
|
|
|
|
}
|
2025-09-13 17:28:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Station::setGarewayWorkMode()
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!mqttCli)
|
|
|
|
|
|
{
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
njson json;
|
|
|
|
|
|
json["ts"] = Utils::time();
|
|
|
|
|
|
json["no"] = 1; // 设备编号
|
2025-09-17 19:55:59 +08:00
|
|
|
|
json["40001"] = this->workMode;
|
2025-09-14 16:00:30 +08:00
|
|
|
|
|
|
|
|
|
|
if (policy.type == 1)
|
|
|
|
|
|
{
|
|
|
|
|
|
json["40002"] = njson::array(); // 峰谷套利
|
|
|
|
|
|
policy.getGatewayJsonPeriods(json["40002"]);
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (policy.type == 5)
|
|
|
|
|
|
{
|
|
|
|
|
|
json["40021"] = njson::array(); // 自定时段
|
|
|
|
|
|
policy.getGatewayJsonPeriods(json["40021"]);
|
|
|
|
|
|
}
|
2025-09-13 17:28:35 +08:00
|
|
|
|
|
|
|
|
|
|
std::string text = json.dump();
|
2025-09-14 16:00:30 +08:00
|
|
|
|
spdlog::info(text);
|
2025-09-13 17:28:35 +08:00
|
|
|
|
mqttCli->publish("Gateway_YT", text);
|
2025-09-14 16:00:30 +08:00
|
|
|
|
}
|
2025-09-16 19:38:46 +08:00
|
|
|
|
|
2025-09-17 19:55:59 +08:00
|
|
|
|
void Station::checkDevice()
|
|
|
|
|
|
{
|
|
|
|
|
|
for (auto& item: mapDevice)
|
|
|
|
|
|
{
|
|
|
|
|
|
auto& device = item.second;
|
|
|
|
|
|
if (device)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (Utils::time() - device->ts > 60*6)
|
|
|
|
|
|
{
|
|
|
|
|
|
device->online = 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-09-16 19:38:46 +08:00
|
|
|
|
|
2025-09-17 19:55:59 +08:00
|
|
|
|
void Station::setRuntimeData(int deviceNo, string addr, int val)
|
2025-09-16 19:38:46 +08:00
|
|
|
|
{
|
2025-09-17 19:55:59 +08:00
|
|
|
|
if (deviceNo == 1)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (addr == "0x000B") { this->voltage = val; } // A相电压 R uint32 1V 0x000B
|
|
|
|
|
|
if (addr == "0x0011") { this->current = val; } // A相电流 R int32 1A 0x0011
|
|
|
|
|
|
if (addr == "0x0011") { this->power = val; } // 三相总有功 R int32 1kW 0x0023
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (deviceNo == 2)
|
|
|
|
|
|
{
|
|
|
|
|
|
statData.ts = Utils::time();
|
|
|
|
|
|
if (addr == "0x002F") { statData.dayElectIn = val; } //日充电电量 R uint32 1kWh 0x002F
|
|
|
|
|
|
else if (addr == "0x0031") { statData.dayElectOut = val; } //日放电电量 R uint32 1kWh 0x0031
|
|
|
|
|
|
else if (addr == "0x0033") { statData.dayIncomeIn = val; } //日充电费用 R uint32 1RMB 0x0033
|
|
|
|
|
|
else if (addr == "0x0035") { statData.dayIncomeOut = val; } //日放电费用 R uint32 1RMB 0x0035
|
|
|
|
|
|
else if (addr == "0x0037") { statData.dayIncome = val; } //日收益 R int32 1RMB 0x0037
|
|
|
|
|
|
else if (addr == "0x004D") { statData.totalElectIn = val; } //总充电电量 R uint32 1kWh 0x004D
|
|
|
|
|
|
else if (addr == "0x004F") { statData.totalElectOut = val; } //总放电电量 R uint32 1kWh 0x004F
|
|
|
|
|
|
else if (addr == "0x0051") { statData.totalIncomeIn = val; } //总充电费用 R uint32 1RMB 0x0051
|
|
|
|
|
|
else if (addr == "0x0053") { statData.totalIncomeOut = val; } //总放电费用 R uint32 1RMB 0x0053
|
|
|
|
|
|
else if (addr == "0x0055") { statData.totalIncome = val; } //总收益 R int32 1RMB 0x0055
|
|
|
|
|
|
}
|
2025-09-16 19:38:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Station::setTHData(int deviceNo, string addr, int val)
|
|
|
|
|
|
{
|
|
|
|
|
|
auto& unit = mapTempHumUnit[deviceNo];
|
|
|
|
|
|
if (addr == "0x0001") { ; } //所属通道号 R uint16 1 0x0001
|
|
|
|
|
|
else if (addr == "0x0002") { ; } //所属温湿度号 R uint16 1~10 0x0002
|
2025-09-17 19:55:59 +08:00
|
|
|
|
else if (addr == "0x0003") //温度 R int16 0.1℃ 0x0003
|
|
|
|
|
|
{
|
|
|
|
|
|
unit.temp = float(val) * 0.1;
|
|
|
|
|
|
if (deviceNo == 1) temperature = unit.temp;
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (addr == "0x0004") //湿度 R int16 0.1℃ 0x0004
|
|
|
|
|
|
{
|
|
|
|
|
|
unit.hum = float(val) * 0.1;
|
|
|
|
|
|
if (deviceNo == 1) humidity = unit.hum;
|
|
|
|
|
|
}
|
2025-09-16 19:38:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Station::setFire40Data(int deviceNo, string addr, int val)
|
|
|
|
|
|
{
|
|
|
|
|
|
auto& unit = mapFire40Unit[deviceNo];
|
|
|
|
|
|
|
|
|
|
|
|
if (addr == "0x0001") { ; } //所属通道号 R uint16 1~10 0x0001
|
|
|
|
|
|
else if (addr == "0x0002") { ; } //主控数量 R uint16 1 0x0002
|
|
|
|
|
|
else if (addr == "0x0003") { ; } //主控ID R uint16 1 0x0003
|
|
|
|
|
|
else if (addr == "0x0004") { unit.statusMain = val; } //主控状态 R uint16 0:正常 1:预警 2:火警 0x0004
|
|
|
|
|
|
else if (addr == "0x0005") { ; } //主控硬件版本 R uint16[2] 主控硬件版本 0x0005
|
|
|
|
|
|
else if (addr == "0x0007") { ; } //主控软件版本 R uint16[2] 主控软件版本 0x0007
|
|
|
|
|
|
else if (addr == "0x0009") { ; } //主电状态 R uint16 0:使用市电 1:使用备电 0x0009
|
|
|
|
|
|
else if (addr == "0x000A") { ; } //备电电流 R uint32 0.1A 0x000A
|
|
|
|
|
|
else if (addr == "0x000C") { ; } //备电电压 R uint32 0.1V 0x000C
|
|
|
|
|
|
else if (addr == "0x000E") { ; } //可用容量 R uint32 0.01Ah 0x000E
|
|
|
|
|
|
else if (addr == "0x0010") { ; } //可充放容量 R uint32 0.01Ah 0x0010
|
|
|
|
|
|
else if (addr == "0x0012") { unit.usedAlarm = val; } //警铃是否使用 R uint16 0x0012
|
|
|
|
|
|
else if (addr == "0x0013") { unit.statusAlarm = val; } //警铃状态 R uint16 0:无效 1:掉线 2:正常 3:启动 0x0013
|
|
|
|
|
|
else if (addr == "0x0014") { unit.usedValve = val; } //瓶头阀是否使用 R uint16 0x0014
|
|
|
|
|
|
else if (addr == "0x0015") { unit.statusValve = val; } //瓶头阀状态 R uint16 0:无效 1:掉线 2:正常 3:启动 0x0015
|
|
|
|
|
|
else if (addr == "0x0016") { unit.usedMCP = val; } //手报是否使用 R uint16 0x0016
|
|
|
|
|
|
else if (addr == "0x0017") { unit.statusMCP = val; } //手报状态 R uint16 0:无效 1:掉线 2:正常 3:启动 0x0017
|
|
|
|
|
|
else if (addr == "0x0018") { ; } //簇控制器数量 R uint16 0x0018
|
|
|
|
|
|
else if (addr == "0x0019") { ; } //复合探测器总数量 R uint16 0x0019
|
|
|
|
|
|
else if (addr == "0x001A") { ; } //烟雾探测器总数量 R uint16 0x001A
|
|
|
|
|
|
else if (addr == "0x001B") { ; } //压力探测器总数量 R uint16 0x001B
|
|
|
|
|
|
else if (addr == "0x001C") { ; } //吸气式探测器总数量 R uint16 0x001C
|
|
|
|
|
|
else if (addr == "0x001D") { ; } //PACK探测器总数量 R uint16 0x001D
|
|
|
|
|
|
else if (addr == "0x001E") { ; } //电池总数量 R uint16 0x001E
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Station::setCoolingData(int deviceNo, string addr, int val)
|
|
|
|
|
|
{
|
|
|
|
|
|
auto& unit = mapCoolingUnit[deviceNo];
|
|
|
|
|
|
|
|
|
|
|
|
if (addr == "0x1001") { ; } //所属通道号 R uint16 1 0x1001
|
|
|
|
|
|
else if (addr == "0x1002") { ; }// 所属冷机号 R uint16 1~10 0x1002
|
2025-09-17 19:55:59 +08:00
|
|
|
|
else if (addr == "0x1003") { coolingStatus = unit.powerOn = val; }// 开关 R uint16 0:关机,1:开机 0x1003
|
|
|
|
|
|
else if (addr == "0x1004") { unit.mode = val; }// 采样模式 R uint16 0-出水温度 1-电芯温度 0x1004
|
2025-09-16 19:38:46 +08:00
|
|
|
|
else if (addr == "0x1005") { unit.cooling = val; }// 制冷状态 R uint16 0:关闭, 1:启动 0x1005
|
|
|
|
|
|
else if (addr == "0x1006") { unit.heating = val; }// 制热状态 R uint16 0:关闭, 1:启动 0x1006
|
|
|
|
|
|
else if (addr == "0x1007") { unit.highTemp = val; }// 高温告警 R uint16 0:正常,1:告警 0x1007
|
|
|
|
|
|
else if (addr == "0x1008") { unit.lowTemp = val; }// 低温告警 R uint16 0:正常,1:告警 0x1008
|
|
|
|
|
|
else if (addr == "0x1009") { unit.highPressure = val; }// 高压告警 R uint16 0:正常,1:告警 0x1009
|
|
|
|
|
|
else if (addr == "0x100A") { unit.lowPressure = val; }// 低压告警 R uint16 0:正常,1:告警 0x100A
|
|
|
|
|
|
else if (addr == "0x100B") { ; }// 进水温度传感器 R uint16 0:正常,1:告警 0x100B
|
|
|
|
|
|
else if (addr == "0x100C") { ; }// 出水温度传感器 R uint16 0:正常,1:告警 0x100C
|
|
|
|
|
|
else if (addr == "0x100D") { ; }// 进水压力传感器 R uint16 0:正常,1:告警 0x100D
|
|
|
|
|
|
else if (addr == "0x100E") { ; }// 出水压力传感器 R uint16 0:正常,1:告警 0x100E
|
2025-09-17 19:55:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Station::setWorkModeFromGateway(int mode)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (mode != this->workMode)
|
|
|
|
|
|
{
|
|
|
|
|
|
//std::string sql = "update station set work_mode='" + std::to_string(mode) + "'";
|
|
|
|
|
|
//auto ret = DaoEntity::execOnce(sql);
|
|
|
|
|
|
//if (ret)
|
|
|
|
|
|
//{
|
|
|
|
|
|
// spdlog::info("[station] wrok_mode is diffent with gateway, update success.[{}]-[{}]", workMode, mode);
|
|
|
|
|
|
// this->workMode = mode;
|
|
|
|
|
|
//}
|
|
|
|
|
|
//else
|
|
|
|
|
|
//{
|
|
|
|
|
|
// spdlog::error("[station] wrok_mode is diffent with gateway, update failed.[{}]-[{}]", workMode, mode);
|
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
|
|
//this->setGarewayWorkMode();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static std::string MapValueToJson(int npos, std::map<int, double>& mapV)
|
|
|
|
|
|
{
|
|
|
|
|
|
njson jsonarray = njson::array();
|
|
|
|
|
|
for (int i = 0; i<=npos; i++)
|
|
|
|
|
|
{
|
|
|
|
|
|
jsonarray.push_back(mapV[i]);
|
|
|
|
|
|
}
|
|
|
|
|
|
return jsonarray.dump();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Station::writeStatistic()
|
|
|
|
|
|
{
|
|
|
|
|
|
auto dao = DaoEntity::create("history_day");
|
|
|
|
|
|
|
|
|
|
|
|
std::string dt = Utils::dateStr();
|
|
|
|
|
|
int64_t tTime = Utils::time();
|
|
|
|
|
|
int64_t tDate = Utils::date();
|
|
|
|
|
|
int npos = (tTime-tDate) / 600;
|
|
|
|
|
|
|
|
|
|
|
|
for (auto iter = mapDevice.begin(); iter!=mapDevice.end(); ++iter)
|
|
|
|
|
|
{
|
|
|
|
|
|
auto device = iter->second;
|
|
|
|
|
|
if (device->cache(npos))
|
|
|
|
|
|
{
|
|
|
|
|
|
Fields fields;
|
|
|
|
|
|
fields.set("dt", dt);
|
|
|
|
|
|
fields.set("station_id", this->stationId);
|
|
|
|
|
|
fields.set("device_id", device->deviceId);
|
|
|
|
|
|
fields.set("datatype", 1);
|
|
|
|
|
|
fields.set("value", MapValueToJson(npos, device->mapCacheVoltage));
|
|
|
|
|
|
DAO::insertRuntimeData(dao, fields);
|
|
|
|
|
|
|
|
|
|
|
|
fields.set("datatype", 2);
|
|
|
|
|
|
fields.set("value", MapValueToJson(npos, device->mapCacheCurrent));
|
|
|
|
|
|
DAO::insertRuntimeData(dao, fields);
|
|
|
|
|
|
|
|
|
|
|
|
fields.set("datatype", 3);
|
|
|
|
|
|
fields.set("value", MapValueToJson(npos, device->mapCachePower));
|
|
|
|
|
|
DAO::insertRuntimeData(dao, fields);
|
|
|
|
|
|
//spdlog::info("[device] write runtime date to database, deviceId={}", device->deviceId);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (statData.ts != 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
Fields fields;
|
|
|
|
|
|
fields.set("dt", Utils::dateStr(statData.ts));
|
|
|
|
|
|
fields.set("station_id", this->stationId);
|
|
|
|
|
|
fields.set("device_id", 0);
|
|
|
|
|
|
fields.set("elect_in", statData.dayElectIn);
|
|
|
|
|
|
fields.set("elect_out", statData.dayElectOut);
|
|
|
|
|
|
fields.set("income_in", statData.dayIncomeIn);
|
|
|
|
|
|
fields.set("income_out", statData.dayIncomeOut);
|
|
|
|
|
|
fields.set("income", statData.dayIncome);
|
|
|
|
|
|
//fields.set("num_in", "");
|
|
|
|
|
|
//fields.set("num_out", "");
|
|
|
|
|
|
//fields.set("num_err", "");
|
|
|
|
|
|
//fields.set("t_in", "");
|
|
|
|
|
|
//fields.set("t_out", "");
|
|
|
|
|
|
//fields.set("usage_rate", "");
|
|
|
|
|
|
fields.set("elect_in_total", statData.totalElectIn);
|
|
|
|
|
|
fields.set("elect_out_total", statData.totalElectOut);
|
|
|
|
|
|
fields.set("income_in_total", statData.totalIncomeIn);
|
|
|
|
|
|
fields.set("income_out_total", statData.totalIncomeOut);
|
|
|
|
|
|
fields.set("income_total", statData.totalIncome);
|
|
|
|
|
|
|
|
|
|
|
|
dao->setTableName("stat_storage");
|
|
|
|
|
|
std::vector<std::string> vecKeys = {
|
|
|
|
|
|
"elect_in", "elect_out", "num_in", "num_out", "num_err", "t_in", "t_out", "usage_rate", "income_in", "income_out",
|
|
|
|
|
|
"elect_in_total", "elect_out_total", "income_in_total", "income_out_total"
|
|
|
|
|
|
};
|
|
|
|
|
|
dao->duplicateUpdate(fields, vecKeys);
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
Fields fields;
|
|
|
|
|
|
fields.set("dt", Utils::dateStr(statData.ts));
|
|
|
|
|
|
fields.set("station_id", this->stationId);
|
|
|
|
|
|
fields.set("device_id", 0);
|
|
|
|
|
|
fields.set("storage_elect_in", statData.dayElectIn);
|
|
|
|
|
|
fields.set("storage_elect_out", statData.dayElectOut);
|
|
|
|
|
|
fields.set("income_elect", statData.dayIncome);
|
|
|
|
|
|
DAO::insertStatStation(dao, fields);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|