blob: 5428c096cf867b49b0b496bfeb86877bc5fbac63 [file] [log] [blame]
Vishwanatha Subbanna4902a102017-04-04 14:05:09 +05301/**
2 * Copyright © 2016 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
17#include <fcntl.h>
18#include <phosphor-logging/log.hpp>
19#include "monitor.hpp"
20namespace phosphor
21{
22namespace gpio
23{
24
Vishwanatha Subbanna0b956032017-04-04 14:07:25 +053025using namespace phosphor::logging;
26
Vishwanatha Subbanna4902a102017-04-04 14:05:09 +053027// Populate the file descriptor for passed in device
28int Monitor::openDevice()
29{
30 using namespace phosphor::logging;
31
32 int fd = open(path.c_str(), O_RDONLY | O_NONBLOCK);
33 if (fd < 0)
34 {
35 log<level::ERR>("Failed to open device",
36 entry("PATH=%s", path.c_str()));
37 throw std::runtime_error("Failed to open device");
38 }
39 return fd;
40}
41
Vishwanatha Subbanna0b956032017-04-04 14:07:25 +053042// Attaches the FD to event loop and registers the callback handler
43void Monitor::registerCallback()
44{
45 decltype(eventSource.get()) sourcePtr = nullptr;
46 auto r = sd_event_add_io(event.get(), &sourcePtr, (fd)(),
47 EPOLLIN, callbackHandler, this);
48 eventSource.reset(sourcePtr);
49
50 if (r < 0)
51 {
52 log<level::ERR>("Failed to register callback handler",
53 entry("ERROR=%s", strerror(-r)));
54 throw std::runtime_error("Failed to register callback handler");
55 }
56}
57
58// Callback handler when there is an activity on the FD
59int Monitor::processEvents(sd_event_source* es, int fd,
60 uint32_t revents, void* userData)
61{
62 // TODO. This calls into starting configured target
63 log<level::INFO>("Callback handler called");
64 return 0;
65}
66
Vishwanatha Subbanna4902a102017-04-04 14:05:09 +053067} // namespace gpio
68} // namespace phosphor