From patchwork Tue Jan 15 15:18:41 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 232 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C575F60C78 for ; Tue, 15 Jan 2019 16:18:52 +0100 (CET) Received: from pendragon.bb.dnainternet.fi (dfj612yhrgyx302h3jwwy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:ce28:277f:58d7:3ca4]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 307784F8 for ; Tue, 15 Jan 2019 16:18:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1547565532; bh=HWY5vcdWOov8cNbPZThqszVaOuQexNjq6axeIQLHpJI=; h=From:To:Subject:Date:From; b=Hy5yGmogs0s0KwZs8AHA9jZWnzCJXFofyQF0wr3nU+/jtdN+l/tUpV6G/IuKtNQ3a 0SOcBzwZFoPxIA6irhtll2odtmDRS+5D9ob9KuYaq0mLwGzM8ztmLKJ/zlHyUYjvU9 c+lVTXO+e7jP7XYwrlMiOyWbtYq5O2kqRbK2U1Ro= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Tue, 15 Jan 2019 17:18:41 +0200 Message-Id: <20190115151849.1547-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 0/8] Pipeline handler refactoring and assorted improvements 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: Tue, 15 Jan 2019 15:18:52 -0000 Hello, This series extends the "[PATCH 0/3] Pipeline handler refactoring and documentation improvements" series with changes that incorporate the review comments. In particular patch 4/8 renames a function as proposed by Jacopo, and patches 5/8 to 8/8 implement the changes resulting from the unique_ptr<> discussion. Laurent Pinchart (8): libcamera: pipeline_handler: Don't index factories by name libcamera: camera_manager: Improve class documentation Documentation: Exclude pipeline handlers directory libcamera: pipeline_handler: Rename handlers() method to factories() libcamera: event_dispatcher_poll: Constify argument to processNotifiers libcamera: device_enumerator: Don't mark the search() function as const libcamera: utils: Implement C++14 make_unique<>() libcamera: camera_manager: Turn enumerator into a unique_ptr<> Documentation/Doxyfile.in | 2 +- include/libcamera/camera_manager.h | 3 +- src/libcamera/camera_manager.cpp | 84 +++++++++------- src/libcamera/device_enumerator.cpp | 11 +-- src/libcamera/event_dispatcher_poll.cpp | 2 +- src/libcamera/include/device_enumerator.h | 5 +- src/libcamera/include/event_dispatcher_poll.h | 2 +- src/libcamera/include/pipeline_handler.h | 29 +++--- src/libcamera/include/utils.h | 13 +++ src/libcamera/pipeline_handler.cpp | 95 ++++++------------- 10 files changed, 118 insertions(+), 128 deletions(-)