blob: eff36c6e695f9ab3e084df380aa180c3d8115608 [file] [log] [blame]
Matthew Barth0620be72021-04-14 13:31:12 -05001/**
2 * Copyright © 2021 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 "action.hpp"
19#include "manager.hpp"
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050020#include "signal.hpp"
Matthew Barth93341e02021-04-14 13:56:28 -050021#include "timer.hpp"
Matthew Barth0620be72021-04-14 13:31:12 -050022
23#include <nlohmann/json.hpp>
24
25#include <functional>
26#include <map>
27#include <memory>
28#include <vector>
29
30namespace phosphor::fan::control::json::trigger
31{
32
33using json = nlohmann::json;
34
35// Trigger creation function
36using createTrigger =
37 std::function<void(const json&, const std::string&, Manager*,
38 std::vector<std::unique_ptr<ActionBase>>&)>;
39
40// Mapping of trigger class name to its creation function
Matthew Barth93341e02021-04-14 13:56:28 -050041static const std::map<std::string, createTrigger> triggers = {
Matthew Barthbaeeb8f2021-05-13 16:03:54 -050042 {"timer", timer::triggerTimer}, {"signal", signal::triggerSignal}};
Matthew Barth0620be72021-04-14 13:31:12 -050043
44} // namespace phosphor::fan::control::json::trigger