From patchwork Mon Mar 31 15:09:00 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= X-Patchwork-Id: 23084 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 19858C3213 for ; Mon, 31 Mar 2025 15:09:08 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 0AAE368986; Mon, 31 Mar 2025 17:09:07 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="wTzDQgeX"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 0F79368967 for ; Mon, 31 Mar 2025 17:09:06 +0200 (CEST) Received: from pb-laptop.local (185.221.143.221.nat.pool.zt.hu [185.221.143.221]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 68F3E703 for ; Mon, 31 Mar 2025 17:07:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1743433634; bh=OFfsDA8WNntZi6EsXcENBm8TQ9sioC6iJYG3jT0zen0=; h=From:To:Subject:Date:From; b=wTzDQgeXgnokO0c1q/z9bAJcPNpi+/Frd2xGW8Hxch3Br8THOoBAl6S08Q1vdOkHk wuIUSDP27kVZLAAngO87tzMhMTJnCoXkvoX0dOKfDddr5rDkGM0sIeOP/nQPHrKSeQ 8VIVP2oNOwIkgP4lXqEMC3SZGkGTJj3FMBtwuaJ4= From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= To: libcamera-devel@lists.libcamera.org Subject: [PATCH v1] libcamera: camera_manager: Take camera id in `std::string_view` Date: Mon, 31 Mar 2025 17:09:00 +0200 Message-ID: <20250331150900.523485-1-barnabas.pocze@ideasonboard.com> X-Mailer: git-send-email 2.49.0 MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Do not force the caller to have an `std::string` object as a simple string view is sufficient to do the lookup. Signed-off-by: Barnabás Pőcze Reviewed-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- include/libcamera/camera_manager.h | 3 ++- src/libcamera/camera_manager.cpp | 2 +- src/py/libcamera/py_camera_manager.h | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/include/libcamera/camera_manager.h b/include/libcamera/camera_manager.h index b50df7825..27835500f 100644 --- a/include/libcamera/camera_manager.h +++ b/include/libcamera/camera_manager.h @@ -9,6 +9,7 @@ #include #include +#include #include #include @@ -31,7 +32,7 @@ public: void stop(); std::vector> cameras() const; - std::shared_ptr get(const std::string &id); + std::shared_ptr get(std::string_view id); static const std::string &version() { return version_; } diff --git a/src/libcamera/camera_manager.cpp b/src/libcamera/camera_manager.cpp index b28bd0bd2..e62e7193c 100644 --- a/src/libcamera/camera_manager.cpp +++ b/src/libcamera/camera_manager.cpp @@ -381,7 +381,7 @@ std::vector> CameraManager::cameras() const * * \return Shared pointer to Camera object or nullptr if camera not found */ -std::shared_ptr CameraManager::get(const std::string &id) +std::shared_ptr CameraManager::get(std::string_view id) { Private *const d = _d(); diff --git a/src/py/libcamera/py_camera_manager.h b/src/py/libcamera/py_camera_manager.h index 3574db236..af69b915e 100644 --- a/src/py/libcamera/py_camera_manager.h +++ b/src/py/libcamera/py_camera_manager.h @@ -20,7 +20,7 @@ public: ~PyCameraManager(); pybind11::list cameras(); - std::shared_ptr get(const std::string &name) { return cameraManager_->get(name); } + std::shared_ptr get(std::string_view name) { return cameraManager_->get(name); } static const std::string &version() { return CameraManager::version(); }