blob: ddc17c14627d75b18038334524a87054bd15f0ef [file] [log] [blame]
Matthew Barth4f0d3b72020-08-27 14:32:15 -05001/**
2 * Copyright © 2020 IBM Corporation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#pragma once
17
18#include "config_base.hpp"
Matthew Barthbc89a8a2021-05-25 15:42:58 -050019#include "dbus_zone.hpp"
Matthew Barthde90fb42021-03-04 16:34:28 -060020#include "fan.hpp"
Matthew Barth4f0d3b72020-08-27 14:32:15 -050021
22#include <nlohmann/json.hpp>
Matthew Barth603ef162021-03-24 15:34:53 -050023#include <sdeventplus/event.hpp>
Matthew Barth007de092021-03-25 13:56:04 -050024#include <sdeventplus/utility/timer.hpp>
Matthew Barth4f0d3b72020-08-27 14:32:15 -050025
Matthew Barth651f03a2020-08-27 16:15:11 -050026#include <any>
Matthew Barth007de092021-03-25 13:56:04 -050027#include <chrono>
Matthew Barth651f03a2020-08-27 16:15:11 -050028#include <functional>
29#include <map>
Matthew Barthbc89a8a2021-05-25 15:42:58 -050030#include <memory>
Matthew Barth651f03a2020-08-27 16:15:11 -050031#include <tuple>
32
Matthew Barth4f0d3b72020-08-27 14:32:15 -050033namespace phosphor::fan::control::json
34{
35
Matthew Barth603ef162021-03-24 15:34:53 -050036class Manager;
37
Matthew Barth4f0d3b72020-08-27 14:32:15 -050038using json = nlohmann::json;
39
Matthew Barth007de092021-03-25 13:56:04 -050040/* Dbus event timer */
41using Timer = sdeventplus::utility::Timer<sdeventplus::ClockId::Monotonic>;
42
Matthew Barth4f0d3b72020-08-27 14:32:15 -050043/**
44 * @class Zone - Represents a configured fan control zone
45 *
46 * A zone object contains the configured attributes for a zone that groups
Matthew Barthe47c9582021-03-09 14:24:02 -060047 * a number of fans together to be under the same target control. These
48 * configuration attributes include, but are not limited to, the default ceiling
49 * of the fans within the zone, a default floor, the delay between increases, a
50 * decrease interval, and any profiles(OPTIONAL) the zone should be included in.
Matthew Barth4f0d3b72020-08-27 14:32:15 -050051 *
52 * (When no profile for a zone is given, the zone defaults to always exist)
53 *
54 */
Matthew Barthbc89a8a2021-05-25 15:42:58 -050055class Zone : public ConfigBase
Matthew Barth4f0d3b72020-08-27 14:32:15 -050056{
57 public:
58 /* JSON file name for zones */
59 static constexpr auto confFileName = "zones.json";
Matthew Barth651f03a2020-08-27 16:15:11 -050060
Matthew Barth4f0d3b72020-08-27 14:32:15 -050061 Zone() = delete;
62 Zone(const Zone&) = delete;
63 Zone(Zone&&) = delete;
64 Zone& operator=(const Zone&) = delete;
65 Zone& operator=(Zone&&) = delete;
66 ~Zone() = default;
67
68 /**
69 * Constructor
70 * Parses and populates a zone from JSON object data
71 *
Matthew Barth4f0d3b72020-08-27 14:32:15 -050072 * @param[in] jsonObj - JSON object
Matthew Barth603ef162021-03-24 15:34:53 -050073 * @param[in] event - sdeventplus event loop
74 * @param[in] mgr - Manager of this zone
Matthew Barth4f0d3b72020-08-27 14:32:15 -050075 */
Matthew Barth9403a212021-05-17 09:31:50 -050076 Zone(const json& jsonObj, const sdeventplus::Event& event, Manager* mgr);
Matthew Barth4f0d3b72020-08-27 14:32:15 -050077
78 /**
Matthew Barth48f44da2021-05-27 15:43:34 -050079 * @brief Get the poweron target
80 *
81 * Poweron target is the target the fans within this zone should be set to
82 * when the system is powered on.
83 *
84 * @return Poweron target of this zone
85 */
86 inline const auto& getPoweronTarget() const
87 {
88 return _poweronTarget;
89 }
90
91 /**
Matthew Barthe47c9582021-03-09 14:24:02 -060092 * @brief Get the default ceiling
Matthew Barth4f0d3b72020-08-27 14:32:15 -050093 *
Matthew Barthe47c9582021-03-09 14:24:02 -060094 * Default ceiling is the highest target the fans within this zone is
95 * allowed to increase to. The zone's ceiling defaults to this unless
96 * changed by some configured event.
Matthew Barth4f0d3b72020-08-27 14:32:15 -050097 *
Matthew Barthe47c9582021-03-09 14:24:02 -060098 * @return Default ceiling of this zone
Matthew Barth4f0d3b72020-08-27 14:32:15 -050099 */
Matthew Barthe47c9582021-03-09 14:24:02 -0600100 inline const auto& getDefaultCeiling() const
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500101 {
Matthew Barthe47c9582021-03-09 14:24:02 -0600102 return _defaultCeiling;
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500103 }
104
105 /**
Matthew Barthe47c9582021-03-09 14:24:02 -0600106 * @brief Get the default floor
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500107 *
Matthew Barthe47c9582021-03-09 14:24:02 -0600108 * The default floor is the lowest target the fans within this zone
109 * are allowed to decrease to. The zone's floor defaults to this
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500110 * unless changed by some configured event.
111 *
Matthew Barthe47c9582021-03-09 14:24:02 -0600112 * @return Default floor
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500113 */
114 inline const auto& getDefaultFloor() const
115 {
116 return _defaultFloor;
117 }
118
119 /**
Matthew Barthe47c9582021-03-09 14:24:02 -0600120 * @brief Get the increase delay(OPTIONAL)
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500121 *
Matthew Barthe47c9582021-03-09 14:24:02 -0600122 * The increase delay is the amount of time(in seconds) increases
123 * to a target are delayed before being made. The default is 0, which
124 * results in immediate increase requests when any events result in
125 * a change to the target.
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500126 *
127 * It is recommend a value other than 0 is configured, but that inherently
Matthew Barthe47c9582021-03-09 14:24:02 -0600128 * depends on the fan controller and configured increases.
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500129 *
Matthew Barthe47c9582021-03-09 14:24:02 -0600130 * @return Increase delay(in seconds)
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500131 */
132 inline const auto& getIncDelay() const
133 {
134 return _incDelay;
135 }
136
137 /**
Matthew Barthe47c9582021-03-09 14:24:02 -0600138 * @brief Get the decrease interval
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500139 *
Matthew Barthe47c9582021-03-09 14:24:02 -0600140 * Decreases happen on a set interval when no requests for an increase
141 * in fan targets exists. This is the interval(in seconds) at which the fans
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500142 * within the zone are decreased if events exist that result in a target
Matthew Barthe47c9582021-03-09 14:24:02 -0600143 * decrease.
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500144 *
Matthew Barthe47c9582021-03-09 14:24:02 -0600145 * @return Decrease interval(in seconds)
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500146 */
147 inline const auto& getDecInterval() const
148 {
149 return _decInterval;
150 }
151
Matthew Barth651f03a2020-08-27 16:15:11 -0500152 /**
Matthew Barth6f787302021-03-25 15:01:01 -0500153 * @brief Get the current target of the zone
154 *
155 * @return - The current target of the zone
156 */
157 inline const auto& getTarget() const
158 {
159 return _target;
160 }
161
162 /**
Matthew Barthdc776c82021-02-25 16:06:16 -0600163 * @brief Get the target increase delta
164 *
165 * @return - The current target increase delta
166 */
167 inline auto& getIncDelta() const
168 {
169 return _incDelta;
170 };
171
172 /**
Matthew Barth45c44ea2021-03-03 13:16:14 -0600173 * @brief Get the target decrease delta
174 *
175 * @return - The current target decrease delta
176 */
177 inline auto& getDecDelta() const
178 {
179 return _decDelta;
180 };
181
182 /**
Matthew Barth603ef162021-03-24 15:34:53 -0500183 * @brief Get the manager of the zone
184 *
185 * @return - The manager of the zone
186 */
187 inline auto* getManager() const
188 {
189 return _manager;
190 }
191
192 /**
Matthew Barth14303a42021-05-21 13:04:08 -0500193 * @brief Enable the zone
194 *
195 * Performs the necessary tasks to enable the zone such as restoring any
196 * dbus property states(if persisted), starting the decrement timer, etc...
197 */
198 void enable();
199
200 /**
Matthew Barthde90fb42021-03-04 16:34:28 -0600201 * @brief Add a fan object to the zone
202 *
203 * @param[in] fan - Unique pointer to a fan object that will be moved into
204 * the zone
205 *
206 * Adds a fan object to the list of fans that make up the zone by moving the
207 * fan object into the list.
208 */
209 void addFan(std::unique_ptr<Fan> fan);
210
Matthew Barth12cb1252021-03-08 16:47:30 -0600211 /**
Matthew Barth8ba715e2021-03-05 09:00:05 -0600212 * Sets all fans in the zone to the target given when the zone is active
213 *
214 * @param[in] target - Target for fans
215 */
216 void setTarget(uint64_t target);
217
218 /**
Matthew Barth53680112021-09-23 11:20:41 -0500219 * Sets and holds all fans in the zone to the target given or releases a
220 * target hold resulting in the fans being held at the highest remaining
221 * hold target if other hold targets had been requested. When no hold
222 * targets exist, the zone returns to being active.
223 *
224 * @param[in] ident - Unique identifier for a target hold
225 * @param[in] target - Target to hold fans at
226 * @param[in] hold - Whether to hold(true) or release(false) a target hold
227 */
228 void setTargetHold(const std::string& ident, uint64_t target, bool hold);
229
230 /**
Matthew Barth12cb1252021-03-08 16:47:30 -0600231 * @brief Set the floor to the given target and increase target to the floor
232 * when the target is below the floor value when floor changes are allowed.
233 *
234 * @param[in] target - Target to set the floor to
235 */
236 void setFloor(uint64_t target);
237
238 /**
Matthew Barth9d763882021-06-30 15:55:26 -0500239 * @brief Set the default floor to the given value
240 *
241 * @param[in] value - Value to set the default floor to
242 */
243 inline void setDefaultFloor(uint64_t value)
244 {
245 _defaultFloor = value;
246 }
247
248 /**
Matthew Barth12cb1252021-03-08 16:47:30 -0600249 * @brief Sets the floor change allowed state
250 *
251 * @param[in] ident - An identifier that affects floor changes
252 * @param[in] isAllow - Allow state according to the identifier
253 */
254 inline void setFloorChangeAllow(const std::string& ident, bool isAllow)
255 {
256 _floorChange[ident] = isAllow;
257 }
258
259 /**
Matthew Barth45c44ea2021-03-03 13:16:14 -0600260 * @brief Sets the decrease allowed state of a group
261 *
262 * @param[in] ident - An identifier that affects speed decreases
263 * @param[in] isAllow - Allow state according to the identifier
264 */
265 inline void setDecreaseAllow(const std::string& ident, bool isAllow)
266 {
267 _decAllowed[ident] = isAllow;
268 }
269
270 /**
Matthew Barth12cb1252021-03-08 16:47:30 -0600271 * @brief Calculate the requested target from the given delta and increases
272 * the fans, not going above the ceiling.
273 *
274 * @param[in] targetDelta - The delta to increase the target by
275 */
276 void requestIncrease(uint64_t targetDelta);
277
Matthew Bartha0dd1352021-03-09 11:10:49 -0600278 /**
Matthew Barth007de092021-03-25 13:56:04 -0500279 * @brief Callback function for the increase timer that delays
280 * processing of requested target increases while fans are increasing
281 */
282 void incTimerExpired();
283
284 /**
Matthew Barth45c44ea2021-03-03 13:16:14 -0600285 * @brief Calculate the lowest requested decrease target from the given
286 * delta within a decrease interval.
287 *
288 * @param[in] targetDelta - The delta to decrease the target by
289 */
290 void requestDecrease(uint64_t targetDelta);
291
292 /**
Matthew Barth007de092021-03-25 13:56:04 -0500293 * @brief Callback function for the decrease timer that processes any
294 * requested target decreases if allowed
295 */
296 void decTimerExpired();
297
298 /**
Matthew Barth07fecfc2021-01-29 09:04:43 -0600299 * @brief Set the requested target base to be used as the target to base a
300 * new requested target from
301 *
302 * @param[in] targetBase - Base target value to use
303 */
304 inline void setRequestTargetBase(uint64_t targetBase)
305 {
306 _requestTargetBase = targetBase;
307 };
308
309 /**
Matthew Bartha0dd1352021-03-09 11:10:49 -0600310 * @brief Set a property to be persisted
311 *
312 * @param[in] intf - Interface containing property
313 * @param[in] prop - Property to be persisted
314 */
315 void setPersisted(const std::string& intf, const std::string& prop);
316
317 /**
Matthew Barth279183f2021-05-25 10:19:43 -0500318 * @brief Is the property persisted
319 *
320 * @param[in] intf - Interface containing property
321 * @param[in] prop - Property to check if persisted
322 *
323 * @return - True if property is to be persisted, false otherwise
324 */
325 bool isPersisted(const std::string& intf, const std::string& prop) const;
326
327 /**
Matthew Barthb584d812021-03-11 15:55:04 -0600328 * @brief A handler function to set/update a property on a zone
329 * @details Sets or updates a zone's dbus property to the given value using
330 * the provided base dbus object's set property function
331 *
332 * @param[in] intf - Interface on zone object
333 * @param[in] prop - Property on interface
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500334 * @param[in] func - Zone dbus object's set property function pointer
Matthew Barthb584d812021-03-11 15:55:04 -0600335 * @param[in] value - Value to set property to
336 * @param[in] persist - Persist property value or not
337 *
338 * @return Lambda function
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500339 * A lambda function to set/update the zone dbus object's property
Matthew Barthb584d812021-03-11 15:55:04 -0600340 */
341 template <typename T>
342 static auto setProperty(const char* intf, const char* prop,
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500343 T (DBusZone::*func)(T), T&& value, bool persist)
Matthew Barthb584d812021-03-11 15:55:04 -0600344 {
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500345 return [=, value = std::forward<T>(value)](DBusZone& dbusZone,
346 Zone& zone) {
347 (dbusZone.*func)(value);
Matthew Barthb584d812021-03-11 15:55:04 -0600348 if (persist)
349 {
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500350 zone.setPersisted(intf, prop);
Matthew Barthb584d812021-03-11 15:55:04 -0600351 }
352 };
353 }
354
355 /**
356 * @brief A handler function to set/update a zone's dbus property's persist
357 * state
358 * @details Sets or updates a zone's dbus property's persist state where the
359 * value of the property is to be left unchanged
360 *
361 * @param[in] intf - Interface on zone object
362 * @param[in] prop - Property on interface
363 * @param[in] persist - Persist property value or not
364 *
365 * @return Lambda function
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500366 * A lambda function to set/update the zone's dbus object's property's
367 * persist state
Matthew Barthb584d812021-03-11 15:55:04 -0600368 */
369 static auto setPropertyPersist(const char* intf, const char* prop,
370 bool persist)
371 {
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500372 return [=](DBusZone&, Zone& zone) {
Matthew Barthb584d812021-03-11 15:55:04 -0600373 if (persist)
374 {
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500375 zone.setPersisted(intf, prop);
Matthew Barthb584d812021-03-11 15:55:04 -0600376 }
377 };
378 }
379
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500380 private:
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500381 /* The zone's associated dbus object */
382 std::unique_ptr<DBusZone> _dbusZone;
383
Matthew Barth603ef162021-03-24 15:34:53 -0500384 /* The zone's manager */
385 Manager* _manager;
386
Matthew Barthab8e4b82021-05-27 13:25:46 -0500387 /* The zone's poweron target value for fans */
388 uint64_t _poweronTarget;
389
Matthew Barthe47c9582021-03-09 14:24:02 -0600390 /* The zone's default ceiling value for fans */
391 uint64_t _defaultCeiling;
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500392
Matthew Barthe47c9582021-03-09 14:24:02 -0600393 /* The zone's default floor value for fans */
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500394 uint64_t _defaultFloor;
395
Matthew Barthe47c9582021-03-09 14:24:02 -0600396 /* Zone's increase delay(in seconds) (OPTIONAL) */
Matthew Barth007de092021-03-25 13:56:04 -0500397 std::chrono::seconds _incDelay;
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500398
Matthew Barth2504c772021-05-27 14:02:31 -0500399 /* Zone's decrease interval(in seconds) (OPTIONAL) */
Matthew Barth007de092021-03-25 13:56:04 -0500400 std::chrono::seconds _decInterval;
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500401
Matthew Barth12cb1252021-03-08 16:47:30 -0600402 /* The floor target to not go below */
403 uint64_t _floor;
404
405 /* Target for this zone */
406 uint64_t _target;
407
Matthew Barth2b3253e2021-03-09 14:51:16 -0600408 /* Zone increase delta */
409 uint64_t _incDelta;
410
Matthew Barth45c44ea2021-03-03 13:16:14 -0600411 /* Zone decrease delta */
412 uint64_t _decDelta;
413
Matthew Barth2b3253e2021-03-09 14:51:16 -0600414 /* The ceiling target to not go above */
415 uint64_t _ceiling;
416
417 /* Requested target base */
418 uint64_t _requestTargetBase;
419
Matthew Barth12cb1252021-03-08 16:47:30 -0600420 /* Map of whether floor changes are allowed by a string identifier */
421 std::map<std::string, bool> _floorChange;
422
Matthew Barth45c44ea2021-03-03 13:16:14 -0600423 /* Map of controlling decreases allowed by a string identifer */
424 std::map<std::string, bool> _decAllowed;
425
Matthew Bartha0dd1352021-03-09 11:10:49 -0600426 /* Map of interfaces to persisted properties the zone hosts*/
427 std::map<std::string, std::vector<std::string>> _propsPersisted;
428
Matthew Barth8ba715e2021-03-05 09:00:05 -0600429 /* Automatic fan control active state */
430 bool _isActive;
431
Matthew Barth007de092021-03-25 13:56:04 -0500432 /* The target increase timer object */
433 Timer _incTimer;
434
435 /* The target decrease timer object */
436 Timer _decTimer;
437
Matthew Barth53680112021-09-23 11:20:41 -0500438 /* Map of target holds by a string identifier */
439 std::unordered_map<std::string, uint64_t> _holds;
440
Matthew Barthb584d812021-03-11 15:55:04 -0600441 /* Interface to property mapping of their associated set property handler
442 * function */
443 static const std::map<
444 std::string,
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500445 std::map<std::string, std::function<std::function<void(
446 DBusZone&, Zone&)>(const json&, bool)>>>
Matthew Barth216229c2020-09-24 13:47:33 -0500447 _intfPropHandlers;
Matthew Barth651f03a2020-08-27 16:15:11 -0500448
Matthew Barthde90fb42021-03-04 16:34:28 -0600449 /* List of fans included in this zone */
450 std::vector<std::unique_ptr<Fan>> _fans;
451
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500452 /* List of configured interface set property functions */
453 std::vector<std::function<void(DBusZone&, Zone&)>> _propInitFunctions;
454
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500455 /**
Matthew Barthab8e4b82021-05-27 13:25:46 -0500456 * @brief Parse and set the zone's poweron target value
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500457 *
458 * @param[in] jsonObj - JSON object for the zone
459 *
Matthew Barthab8e4b82021-05-27 13:25:46 -0500460 * Sets the poweron target value for the zone from the JSON configuration
Matthew Barthe47c9582021-03-09 14:24:02 -0600461 * object
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500462 */
Matthew Barthab8e4b82021-05-27 13:25:46 -0500463 void setPowerOnTarget(const json& jsonObj);
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500464
465 /**
Matthew Barth216229c2020-09-24 13:47:33 -0500466 * @brief Parse and set the interfaces served by the zone(OPTIONAL)
Matthew Barth651f03a2020-08-27 16:15:11 -0500467 *
468 * @param[in] jsonObj - JSON object for the zone
469 *
Matthew Barth216229c2020-09-24 13:47:33 -0500470 * Constructs any zone interface handler functions for interfaces that the
471 * zone serves which contains the interface's property's value and
472 * persistency state (OPTIONAL). A property's "persist" state is defaulted
473 * to not be persisted when not given.
Matthew Barth651f03a2020-08-27 16:15:11 -0500474 */
475 void setInterfaces(const json& jsonObj);
Matthew Bartha0dd1352021-03-09 11:10:49 -0600476
477 /**
Matthew Barth2b3253e2021-03-09 14:51:16 -0600478 * @brief Get the request target base if defined, otherwise the the current
479 * target is returned
480 *
481 * @return - The request target base or current target
482 */
483 inline auto getRequestTargetBase() const
484 {
485 return (_requestTargetBase != 0) ? _requestTargetBase : _target;
486 };
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500487};
488
Matthew Barth651f03a2020-08-27 16:15:11 -0500489/**
490 * Properties of interfaces supported by the zone configuration
491 */
492namespace zone::property
493{
494
495/**
Matthew Barth216229c2020-09-24 13:47:33 -0500496 * @brief "Supported" property on the "xyz.openbmc_project.Control.ThermalMode"
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500497 * interface parser. Also creates the handler function for the Zone dbus object
498 * to initialize the property according to what's parsed from the configuration.
Matthew Barth651f03a2020-08-27 16:15:11 -0500499 *
500 * @param[in] jsonObj - JSON object for the "Supported" property
Matthew Barth216229c2020-09-24 13:47:33 -0500501 * @param[in] persist - Whether to persist the value or not
Matthew Barth651f03a2020-08-27 16:15:11 -0500502 *
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500503 * @return Zone dbus object's set property function for the "Supported" property
Matthew Barth651f03a2020-08-27 16:15:11 -0500504 */
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500505std::function<void(DBusZone&, Zone&)> supported(const json& jsonObj,
506 bool persist);
Matthew Barth651f03a2020-08-27 16:15:11 -0500507
508/**
Matthew Barth216229c2020-09-24 13:47:33 -0500509 * @brief "Current" property on the "xyz.openbmc_project.Control.ThermalMode"
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500510 * interface parser. Also creates the handler function for the Zone dbus object
511 * to initialize the property according to what's parsed from the configuration.
Matthew Barth651f03a2020-08-27 16:15:11 -0500512 *
513 * @param[in] jsonObj - JSON object for the "Current" property
Matthew Barth216229c2020-09-24 13:47:33 -0500514 * @param[in] persist - Whether to persist the value or not
Matthew Barth651f03a2020-08-27 16:15:11 -0500515 *
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500516 * @return Zone dbus object's set property function for the "Current" property
Matthew Barth651f03a2020-08-27 16:15:11 -0500517 */
Matthew Barthbc89a8a2021-05-25 15:42:58 -0500518std::function<void(DBusZone&, Zone&)> current(const json& jsonObj,
519 bool persist);
Matthew Barth651f03a2020-08-27 16:15:11 -0500520
521} // namespace zone::property
522
Matthew Barth4f0d3b72020-08-27 14:32:15 -0500523} // namespace phosphor::fan::control::json