Matthew Barth | 0c4b157 | 2020-10-22 14:39:46 -0500 | [diff] [blame] | 1 | /** |
Matthew Barth | 41a3408 | 2021-01-27 15:31:48 -0600 | [diff] [blame] | 2 | * Copyright © 2021 IBM Corporation |
Matthew Barth | 0c4b157 | 2020-10-22 14:39:46 -0500 | [diff] [blame] | 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 | #include "default_floor.hpp" |
| 17 | |
Matthew Barth | 12cb125 | 2021-03-08 16:47:30 -0600 | [diff] [blame^] | 18 | #include "../manager.hpp" |
| 19 | #include "../zone.hpp" |
| 20 | #include "group.hpp" |
Matthew Barth | 0c4b157 | 2020-10-22 14:39:46 -0500 | [diff] [blame] | 21 | |
| 22 | #include <nlohmann/json.hpp> |
| 23 | |
Matthew Barth | 41a3408 | 2021-01-27 15:31:48 -0600 | [diff] [blame] | 24 | #include <algorithm> |
| 25 | #include <tuple> |
| 26 | |
Matthew Barth | 0c4b157 | 2020-10-22 14:39:46 -0500 | [diff] [blame] | 27 | namespace phosphor::fan::control::json |
| 28 | { |
| 29 | |
| 30 | using json = nlohmann::json; |
| 31 | |
| 32 | DefaultFloor::DefaultFloor(const json&) : ActionBase(DefaultFloor::name) |
| 33 | { |
Matthew Barth | 41a3408 | 2021-01-27 15:31:48 -0600 | [diff] [blame] | 34 | // There are no JSON configuration parameters for this action |
Matthew Barth | 0c4b157 | 2020-10-22 14:39:46 -0500 | [diff] [blame] | 35 | } |
| 36 | |
Matthew Barth | 41a3408 | 2021-01-27 15:31:48 -0600 | [diff] [blame] | 37 | void DefaultFloor::run(Zone& zone, const Group& group) |
Matthew Barth | 0c4b157 | 2020-10-22 14:39:46 -0500 | [diff] [blame] | 38 | { |
Matthew Barth | 12cb125 | 2021-03-08 16:47:30 -0600 | [diff] [blame^] | 39 | const auto& members = group.getMembers(); |
| 40 | auto isMissingOwner = |
| 41 | std::any_of(members.begin(), members.end(), |
| 42 | [&intf = group.getInterface()](const auto& member) { |
| 43 | return !Manager::hasOwner(member, intf); |
| 44 | }); |
| 45 | if (isMissingOwner) |
Matthew Barth | 41a3408 | 2021-01-27 15:31:48 -0600 | [diff] [blame] | 46 | { |
Matthew Barth | 12cb125 | 2021-03-08 16:47:30 -0600 | [diff] [blame^] | 47 | zone.setFloor(zone.getDefaultFloor()); |
Matthew Barth | 41a3408 | 2021-01-27 15:31:48 -0600 | [diff] [blame] | 48 | } |
| 49 | // Update fan control floor change allowed |
Matthew Barth | 12cb125 | 2021-03-08 16:47:30 -0600 | [diff] [blame^] | 50 | zone.setFloorChangeAllow(group.getName(), !isMissingOwner); |
Matthew Barth | 0c4b157 | 2020-10-22 14:39:46 -0500 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | } // namespace phosphor::fan::control::json |