| /* |
| // Copyright (c) 2019 Intel Corporation |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| */ |
| |
| #include "PSUSensor.hpp" |
| |
| #include <unistd.h> |
| |
| #include <boost/algorithm/string/predicate.hpp> |
| #include <boost/algorithm/string/replace.hpp> |
| #include <boost/asio/read_until.hpp> |
| #include <boost/date_time/posix_time/posix_time.hpp> |
| #include <sdbusplus/asio/connection.hpp> |
| #include <sdbusplus/asio/object_server.hpp> |
| |
| #include <iostream> |
| #include <istream> |
| #include <limits> |
| #include <memory> |
| #include <string> |
| #include <vector> |
| |
| static constexpr const char* sensorPathPrefix = "/xyz/openbmc_project/sensors/"; |
| |
| static constexpr bool DEBUG = false; |
| |
| PSUSensor::PSUSensor(const std::string& path, const std::string& objectType, |
| sdbusplus::asio::object_server& objectServer, |
| std::shared_ptr<sdbusplus::asio::connection>& conn, |
| boost::asio::io_service& io, const std::string& sensorName, |
| std::vector<thresholds::Threshold>&& _thresholds, |
| const std::string& sensorConfiguration, |
| std::string& sensorTypeName, unsigned int factor, |
| double max, double min, const std::string& label, |
| size_t tSize) : |
| Sensor(boost::replace_all_copy(sensorName, " ", "_"), |
| std::move(_thresholds), sensorConfiguration, objectType, max, min), |
| std::enable_shared_from_this<PSUSensor>(), objServer(objectServer), |
| inputDev(io), waitTimer(io), path(path), sensorFactor(factor) |
| { |
| if constexpr (DEBUG) |
| { |
| std::cerr << "Constructed sensor: path " << path << " type " |
| << objectType << " config " << sensorConfiguration |
| << " typename " << sensorTypeName << " factor " << factor |
| << " min " << min << " max " << max << " name \"" |
| << sensorName << "\"\n"; |
| } |
| |
| fd = open(path.c_str(), O_RDONLY); |
| if (fd < 0) |
| { |
| std::cerr << "PSU sensor failed to open file\n"; |
| return; |
| } |
| inputDev.assign(fd); |
| |
| std::string dbusPath = sensorPathPrefix + sensorTypeName + name; |
| |
| sensorInterface = objectServer.add_interface( |
| dbusPath, "xyz.openbmc_project.Sensor.Value"); |
| |
| if (thresholds::hasWarningInterface(thresholds)) |
| { |
| thresholdInterfaceWarning = objectServer.add_interface( |
| dbusPath, "xyz.openbmc_project.Sensor.Threshold.Warning"); |
| } |
| if (thresholds::hasCriticalInterface(thresholds)) |
| { |
| thresholdInterfaceCritical = objectServer.add_interface( |
| dbusPath, "xyz.openbmc_project.Sensor.Threshold.Critical"); |
| } |
| |
| // This should be called before initializing association. |
| // createInventoryAssoc() does add more associations before doing |
| // register and initialize "Associations" property. |
| if (label.empty() || tSize == _thresholds.size()) |
| { |
| setInitialProperties(conn); |
| } |
| else |
| { |
| setInitialProperties(conn, label, tSize); |
| } |
| |
| association = objectServer.add_interface(dbusPath, association::interface); |
| |
| createInventoryAssoc(conn, association, configurationPath); |
| } |
| |
| PSUSensor::~PSUSensor() |
| { |
| waitTimer.cancel(); |
| inputDev.close(); |
| objServer.remove_interface(sensorInterface); |
| objServer.remove_interface(thresholdInterfaceWarning); |
| objServer.remove_interface(thresholdInterfaceCritical); |
| objServer.remove_interface(association); |
| } |
| |
| void PSUSensor::setupRead(void) |
| { |
| std::shared_ptr<boost::asio::streambuf> buffer = |
| std::make_shared<boost::asio::streambuf>(); |
| std::weak_ptr<PSUSensor> weakRef = weak_from_this(); |
| boost::asio::async_read_until( |
| inputDev, *buffer, '\n', |
| [weakRef, buffer](const boost::system::error_code& ec, |
| std::size_t /*bytes_transfered*/) { |
| std::shared_ptr<PSUSensor> self = weakRef.lock(); |
| if (self) |
| { |
| self->readBuf = buffer; |
| self->handleResponse(ec); |
| } |
| }); |
| } |
| |
| void PSUSensor::handleResponse(const boost::system::error_code& err) |
| { |
| if ((err == boost::system::errc::bad_file_descriptor) || |
| (err == boost::asio::error::misc_errors::not_found)) |
| { |
| std::cerr << "Bad file descriptor from\n"; |
| return; |
| } |
| std::istream responseStream(readBuf.get()); |
| if (!err) |
| { |
| std::string response; |
| try |
| { |
| std::getline(responseStream, response); |
| rawValue = std::stod(response); |
| responseStream.clear(); |
| double nvalue = rawValue / sensorFactor; |
| |
| updateValue(nvalue); |
| } |
| catch (const std::invalid_argument&) |
| { |
| std::cerr << "Could not parse " << response << "\n"; |
| incrementError(); |
| } |
| } |
| else |
| { |
| std::cerr << "System error " << err << "\n"; |
| incrementError(); |
| } |
| |
| lseek(fd, 0, SEEK_SET); |
| waitTimer.expires_from_now(boost::posix_time::milliseconds(sensorPollMs)); |
| |
| std::weak_ptr<PSUSensor> weakRef = weak_from_this(); |
| waitTimer.async_wait([weakRef](const boost::system::error_code& ec) { |
| std::shared_ptr<PSUSensor> self = weakRef.lock(); |
| if (ec == boost::asio::error::operation_aborted) |
| { |
| std::cerr << "Failed to reschedule\n"; |
| return; |
| } |
| if (self) |
| { |
| self->setupRead(); |
| } |
| }); |
| } |
| |
| void PSUSensor::checkThresholds(void) |
| { |
| thresholds::checkThresholds(this); |
| } |