From patchwork Sat Dec 22 23:00:32 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Niklas_S=C3=B6derlund?= X-Patchwork-Id: 79 Return-Path: Received: from bin-mail-out-06.binero.net (bin-mail-out-06.binero.net [195.74.38.229]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 582E360B2D for ; Sun, 23 Dec 2018 00:02:21 +0100 (CET) X-Halon-ID: 92559c6b-063d-11e9-9adf-005056917a89 Authorized-sender: niklas@soderlund.pp.se Received: from wyvern.dyn.berto.se (unknown [217.31.177.236]) by bin-vsp-out-01.atm.binero.net (Halon) with ESMTPA id 92559c6b-063d-11e9-9adf-005056917a89; Sun, 23 Dec 2018 00:01:54 +0100 (CET) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: libcamera-devel@lists.libcamera.org Date: Sun, 23 Dec 2018 00:00:32 +0100 Message-Id: <20181222230041.29999-4-niklas.soderlund@ragnatech.se> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20181222230041.29999-1-niklas.soderlund@ragnatech.se> References: <20181222230041.29999-1-niklas.soderlund@ragnatech.se> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 03/12] libcamera: deviceenumerator: add DeviceInfo class X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Dec 2018 23:02:21 -0000 Provide a DeviceInfo class which holds all information from the initial enumeration of a media device. Not all information available at a media device is stored, only the information needed for a pipeline handler to find a specific device. Signed-off-by: Niklas Söderlund Reviewed-by: Laurent Pinchart --- src/libcamera/deviceenumerator.cpp | 78 ++++++++++++++++++++++++ src/libcamera/include/deviceenumerator.h | 44 +++++++++++++ src/libcamera/meson.build | 2 + 3 files changed, 124 insertions(+) create mode 100644 src/libcamera/deviceenumerator.cpp create mode 100644 src/libcamera/include/deviceenumerator.h diff --git a/src/libcamera/deviceenumerator.cpp b/src/libcamera/deviceenumerator.cpp new file mode 100644 index 0000000000000000..7c44a65b45472ef3 --- /dev/null +++ b/src/libcamera/deviceenumerator.cpp @@ -0,0 +1,78 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +/* + * Copyright (C) 2018, Google Inc. + * + * deviceenumerator.cpp - Enumeration and matching + */ + +#include "deviceenumerator.h" +#include "log.h" + +namespace libcamera { + +/* ----------------------------------------------------------------------------- + * DeviceInfo + */ + +DeviceInfo::DeviceInfo(const std::string &devnode, const struct media_device_info &info, + const std::map &entities) + : acquired_(false), devnode_(devnode), info_(info), entities_(entities) +{ + for (const auto &entity : entities_) + LOG(Info) << "Device: " << devnode_ << " Entity: '" << entity.first << "' -> " << entity.second; +} + +int DeviceInfo::acquire() +{ + if (acquired_) + return -EBUSY; + + acquired_ = true; + + return 0; +} + +void DeviceInfo::release() +{ + acquired_ = false; +} + +bool DeviceInfo::busy() const +{ + return acquired_; +} + +const std::string &DeviceInfo::devnode() const +{ + return devnode_; +} + +const struct media_device_info &DeviceInfo::info() const +{ + return info_; +} + +std::vector DeviceInfo::entities() const +{ + std::vector entities; + + for (const auto &entity : entities_) + entities.push_back(entity.first); + + return entities; +} + +bool DeviceInfo::lookup(const std::string &name, std::string &devnode) const +{ + auto it = entities_.find(name); + + if (it == entities_.end()) { + LOG(Error) << "Trying to lookup entity '" << name << "' which do not exist"; + return false; + } + + devnode = it->second; + return true; +} + +} /* namespace libcamera */ diff --git a/src/libcamera/include/deviceenumerator.h b/src/libcamera/include/deviceenumerator.h new file mode 100644 index 0000000000000000..0136ed6ea23bf65e --- /dev/null +++ b/src/libcamera/include/deviceenumerator.h @@ -0,0 +1,44 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +/* + * Copyright (C) 2018, Google Inc. + * + * deviceenumerator.h - API to enumerate and find media devices + */ +#ifndef __LIBCAMERA_DEVICEENUMERATE_H__ +#define __LIBCAMERA_DEVICEENUMERATE_H__ + +#include +#include +#include + +#include + +namespace libcamera { + +class DeviceInfo +{ +public: + DeviceInfo(const std::string &devnode, const struct media_device_info &info, + const std::map &entities); + + int acquire(); + void release(); + bool busy() const; + + const std::string &devnode() const; + const struct media_device_info &info() const; + std::vector entities() const; + + bool lookup(const std::string &name, std::string &devnode) const; + +private: + bool acquired_; + + std::string devnode_; + struct media_device_info info_; + std::map entities_; +}; + +} /* namespace libcamera */ + +#endif /* __LIBCAMERA_DEVICEENUMERATE_H__ */ diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index 52b556a8ed4050cb..17cdf06dd2bedfb3 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -1,10 +1,12 @@ libcamera_sources = files([ 'camera.cpp', + 'deviceenumerator.cpp', 'log.cpp', 'main.cpp', ]) libcamera_headers = files([ + 'include/deviceenumerator.h', 'include/log.h', 'include/utils.h', ])