blob: 3d42aeb70bf30b1fe320412ce2788110450b3296 [file] [log] [blame]
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001/*
2// Copyright (c) 2017 2018 Intel 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
17#pragma once
18#include <iostream>
James Feist2a265d52019-04-08 11:16:27 -070019#include <ipmid/api.hpp>
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070020#include <sdbusplus/bus.hpp>
21
22static constexpr bool debug = false;
23
24inline static void printRegistration(unsigned int netfn, unsigned int cmd)
25{
26 if constexpr (debug)
27 {
28 std::cout << "Registering NetFn:[0x" << std::hex << std::uppercase
29 << netfn << "], Cmd:[0x" << cmd << "]\n";
30 }
31}
32
33inline static void ipmiPrintAndRegister(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
34 ipmi_context_t context,
35 ipmid_callback_t handler,
36 ipmi_cmd_privilege_t priv)
37{
38 printRegistration(netfn, cmd);
39 ipmi_register_callback(netfn, cmd, context, handler, priv);
40}
41
42inline static void printCommand(unsigned int netfn, unsigned int cmd)
43{
44 if constexpr (debug)
45 {
46 std::cout << "Executing NetFn:[0x" << std::hex << std::uppercase
47 << netfn << "], Cmd:[0x" << cmd << "]\n";
48 }
49}
50
51namespace ipmi
52{
53using DbusVariant =
54 sdbusplus::message::variant<std::string, bool, uint8_t, uint16_t, int16_t,
55 uint32_t, int32_t, uint64_t, int64_t, double>;
James Feistfaa4f222019-03-21 16:21:55 -070056using GetSubTreeType = std::vector<
57 std::pair<std::string,
58 std::vector<std::pair<std::string, std::vector<std::string>>>>>;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070059} // namespace ipmi