blob: 1ddb76bf9077b2dd765002b95def1350f56b0290 [file] [log] [blame]
Jason M. Billsb6c92982020-12-04 16:35:02 -08001/*
2// Copyright (c) 2021 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#pragma once
17#include <sdbusplus/asio/object_server.hpp>
18
19#include <iostream>
20
21namespace host_error_monitor::base_monitor
22{
23
24class BaseMonitor
25{
26 public:
27 bool valid;
28 boost::asio::io_service& io;
29 std::shared_ptr<sdbusplus::asio::connection> conn;
30
31 std::string signalName;
32
33 BaseMonitor(boost::asio::io_service& io,
34 std::shared_ptr<sdbusplus::asio::connection> conn,
35 const std::string& signalName) :
36 valid(false),
37 io(io), conn(conn), signalName(signalName)
38
39 {
40 std::cerr << "Initializing " << signalName << " Monitor\n";
41 }
42
43 virtual void hostOn()
44 {}
45
46 bool isValid()
47 {
48 return valid;
49 }
50};
51} // namespace host_error_monitor::base_monitor