Patch Detail
Show a patch.
GET /api/patches/340/?format=api
{ "id": 340, "url": "https://patchwork.libcamera.org/api/patches/340/?format=api", "web_url": "https://patchwork.libcamera.org/patch/340/", "project": { "id": 1, "url": "https://patchwork.libcamera.org/api/projects/1/?format=api", "name": "libcamera", "link_name": "libcamera", "list_id": "libcamera_core", "list_email": "libcamera-devel@lists.libcamera.org", "web_url": "", "scm_url": "", "webscm_url": "" }, "msgid": "<20190122234505.32634-7-niklas.soderlund@ragnatech.se>", "date": "2019-01-22T23:45:03", "name": "[libcamera-devel,6/8] libcamera: camera: Add acquire() and release()", "commit_ref": null, "pull_url": null, "state": "superseded", "archived": false, "hash": "3a83c2e65fa13813505115a0870edc0c46f7d95b", "submitter": { "id": 5, "url": "https://patchwork.libcamera.org/api/people/5/?format=api", "name": "Niklas Söderlund", "email": "niklas.soderlund@ragnatech.se" }, "delegate": null, "mbox": "https://patchwork.libcamera.org/patch/340/mbox/", "series": [ { "id": 118, "url": "https://patchwork.libcamera.org/api/series/118/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=118", "date": "2019-01-22T23:44:57", "name": "libcamera: add basic support for Streams and format configuration", "version": 1, "mbox": "https://patchwork.libcamera.org/series/118/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/patches/340/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/340/checks/", "tags": {}, "headers": { "Return-Path": "<niklas.soderlund@ragnatech.se>", "Received": [ "from vsp-unauthed02.binero.net (vsp-unauthed02.binero.net\n\t[195.74.38.227])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 193A060C7F\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed, 23 Jan 2019 00:46:44 +0100 (CET)", "from bismarck.berto.se (unknown [89.233.230.99])\n\tby bin-vsp-out-03.atm.binero.net (Halon) with ESMTPA\n\tid ebbfdc7c-1e9f-11e9-911a-0050569116f7;\n\tWed, 23 Jan 2019 00:46:21 +0100 (CET)" ], "X-Halon-ID": "ebbfdc7c-1e9f-11e9-911a-0050569116f7", "Authorized-sender": "niklas@soderlund.pp.se", "From": "=?utf-8?q?Niklas_S=C3=B6derlund?= <niklas.soderlund@ragnatech.se>", "To": "libcamera-devel@lists.libcamera.org", "Date": "Wed, 23 Jan 2019 00:45:03 +0100", "Message-Id": "<20190122234505.32634-7-niklas.soderlund@ragnatech.se>", "X-Mailer": "git-send-email 2.20.1", "In-Reply-To": "<20190122234505.32634-1-niklas.soderlund@ragnatech.se>", "References": "<20190122234505.32634-1-niklas.soderlund@ragnatech.se>", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=UTF-8", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH 6/8] libcamera: camera: Add acquire() and\n\trelease()", "X-BeenThere": "libcamera-devel@lists.libcamera.org", "X-Mailman-Version": "2.1.23", "Precedence": "list", "List-Id": "<libcamera-devel.lists.libcamera.org>", "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>", "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>", "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>", "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>", "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>", "X-List-Received-Date": "Tue, 22 Jan 2019 23:46:44 -0000" }, "content": "From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n\nSigned-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>\n---\n include/libcamera/camera.h | 5 +++++\n src/libcamera/camera.cpp | 35 ++++++++++++++++++++++++++++++++++-\n 2 files changed, 39 insertions(+), 1 deletion(-)", "diff": "diff --git a/include/libcamera/camera.h b/include/libcamera/camera.h\nindex b5d4dfe4b1f6a586..3cb1ab62b791ab87 100644\n--- a/include/libcamera/camera.h\n+++ b/include/libcamera/camera.h\n@@ -27,12 +27,17 @@ public:\n \n \tvoid disconnect();\n \n+\tint acquire();\n+\tvoid release();\n+\n private:\n \texplicit Camera(const std::string &name, class PipelineHandler *pipe);\n \t~Camera();\n \n \tstd::string name_;\n \tclass PipelineHandler *pipe_;\n+\n+\tbool acquired_;\n };\n \n } /* namespace libcamera */\ndiff --git a/src/libcamera/camera.cpp b/src/libcamera/camera.cpp\nindex 496fb1021c4fccf0..ee5e6dedb242a1fd 100644\n--- a/src/libcamera/camera.cpp\n+++ b/src/libcamera/camera.cpp\n@@ -103,7 +103,7 @@ void Camera::disconnect()\n }\n \n Camera::Camera(const std::string &name, class PipelineHandler *pipe)\n-\t: name_(name), pipe_(pipe)\n+\t: name_(name), pipe_(pipe), acquired_(false)\n {\n }\n \n@@ -111,4 +111,37 @@ Camera::~Camera()\n {\n }\n \n+/**\n+ * \\brief Acquire the camera device for exclusive access\n+ *\n+ * After opening the device with open(), exclusive access must be obtained\n+ * before performing operations that change the device state. This function is\n+ * not blocking, if the device has already been acquired (by the same or another\n+ * process) the -EBUSY error code is returned.\n+ *\n+ * Once exclusive access isn't needed anymore, the device should be released\n+ * with a call to the release() function.\n+ *\n+ * \\return 0 on success or a negative error code on error.\n+ */\n+int Camera::acquire()\n+{\n+\tif (acquired_)\n+\t\treturn -EBUSY;\n+\n+\tacquired_ = true;\n+\treturn 0;\n+}\n+\n+/**\n+ * \\brief Release exclusive access to the camera device\n+ *\n+ * Releasing the camera device allows other users to acquire exclusive access\n+ * with the acquire() function.\n+ */\n+void Camera::release()\n+{\n+\tacquired_ = false;\n+}\n+\n } /* namespace libcamera */\n", "prefixes": [ "libcamera-devel", "6/8" ] }