blob: 2a83f3fb441cddfbcc56585314bef55529b73062 [file] [log] [blame]
Patrick Venture5c7cc542018-06-11 14:29:38 -07001#pragma once
2
Patrick Ventureda4a5dd2018-08-31 09:42:48 -07003#include "pid/zone.hpp"
4#include "sensors/manager.hpp"
5
Patrick Venture5c7cc542018-06-11 14:29:38 -07006#include <memory>
7#include <sdbusplus/bus.hpp>
8#include <unordered_map>
9
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070010std::unordered_map<int64_t, std::unique_ptr<PIDZone>>
Patrick Venture7e3f8ab2020-08-03 11:10:43 -070011 buildZones(const std::map<int64_t, conf::PIDConf>& zonePids,
James Feistf81f2882019-02-26 11:26:36 -080012 std::map<int64_t, struct conf::ZoneConfig>& zoneConfigs,
Patrick Venturef3252312018-10-30 08:42:53 -070013 SensorManager& mgr, sdbusplus::bus::bus& modeControlBus);