-
Notifications
You must be signed in to change notification settings - Fork 22
/
util.hpp
65 lines (51 loc) · 1.8 KB
/
util.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#pragma once
#include "conf.hpp"
#include "pid/ec/pid.hpp"
#include <phosphor-logging/log.hpp>
#include <sdbusplus/bus.hpp>
#include <cstdint>
#include <limits>
#include <map>
#include <string>
namespace pid_control
{
void tryRestartControlLoops(bool first = true);
/*
* Given a configuration structure, fill out the information we use within the
* PID loop.
*/
void initializePIDStruct(ec::pid_info_t* info, const ec::pidinfo& initial);
void dumpPIDStruct(ec::pid_info_t* info);
struct SensorThresholds
{
double lowerThreshold = std::numeric_limits<double>::quiet_NaN();
double upperThreshold = std::numeric_limits<double>::quiet_NaN();
};
const std::string sensorintf = "xyz.openbmc_project.Sensor.Value";
const std::string criticalThreshInf =
"xyz.openbmc_project.Sensor.Threshold.Critical";
const std::string propertiesintf = "org.freedesktop.DBus.Properties";
/*
* Given a path that optionally has a glob portion, fill it out.
*/
std::string FixupPath(std::string original);
/*
* Splice together two vectors, "Inputs" and "TempToMargin" from JSON,
* into one vector of SensorInput structures containing info from both.
*/
std::vector<conf::SensorInput>
spliceInputs(const std::vector<std::string>& inputNames,
const std::vector<double>& inputTempToMargin,
const std::vector<std::string>& missingAcceptableNames);
/*
* Recovers the original "Inputs" vector from spliceInputs().
*/
std::vector<std::string>
splitNames(const std::vector<conf::SensorInput>& sensorInputs);
/*
* Dump active configuration.
*/
void debugPrint(const std::map<std::string, conf::SensorConfig>& sensorConfig,
const std::map<int64_t, conf::PIDConf>& zoneConfig,
const std::map<int64_t, conf::ZoneConfig>& zoneDetailsConfig);
} // namespace pid_control