From patchwork Thu Feb 11 07:21:17 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 11230 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 74BF7BD160 for ; Thu, 11 Feb 2021 07:21:33 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id E3C7C61657; Thu, 11 Feb 2021 08:21:32 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="WKwBVQnx"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id AAF0061657 for ; Thu, 11 Feb 2021 08:21:30 +0100 (CET) Received: from pyrite.rasen.tech (unknown [IPv6:2400:4051:61:600:2c71:1b79:d06d:5032]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 29A8C41; Thu, 11 Feb 2021 08:21:28 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1613028090; bh=uUSlmV0vwgXvAjqPRfn1gLyfuhOH9T6apgnDeQKgjII=; h=From:To:Cc:Subject:Date:From; b=WKwBVQnxy3CvBXf9sll2OqTS2O8szV8zRsEkERvfU2KIolj2Rlioy+D6o50VrE4vG X8anMlu5M0TBpioKL+nkR4i/P/+k+Lhvsf6bEoVBMoj/3VLgTSgUfP4Yw8ihoJnmqb lFO0hAdR6vgowA8i0+0Orz+y0pN/ymgeLhbYWYts= From: Paul Elder To: libcamera-devel@lists.libcamera.org Date: Thu, 11 Feb 2021 16:21:17 +0900 Message-Id: <20210211072121.35229-1-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v7 0/4] IPA isolation: Part 3: Tests and documentation 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" v7 is split in three parts, core components, conversion + plumbing, and tests + documentation. This is part 3, and adds tests and documentation for IPA isolation. 1/4 tests the IPADataSerializer and 2/4 tests the IPCUnixSocket, both in the same manner as how the generated IPA proxies would use them. 3/4 adds a guide about writing IPAs. 4/4 tests the generated serializer. v7 adds a test to test (de)serialization of a vector of *generated* structs. Changes in v7: - add test to test serdes of a vector of *generated* structs - remove printing values of vectors/maps - use the new sendSync/sendAsync API - update IPA guide Changes in v6: - no longer need to initialize rpi ControlInfoMap, and no longer necessary it pass it to the ControlList serializer - update documentation about the required namespacing, customizable start(), and that {pipeline_name}.h is no longer required - use namespacing in the mojom file and test Paul Elder (4): tests: Add IPADataSerializer test tests: Add test for IPCPipeUnixSocket Documentation: Add IPA writers guide tests: Test IPA serializer generation Documentation/guides/ipa.rst | 474 ++++++++++++++++++ Documentation/index.rst | 1 + Documentation/meson.build | 1 + test/ipc/meson.build | 3 +- test/ipc/unixsocket_ipc.cpp | 233 +++++++++ .../generated_serializer_test.cpp | 156 ++++++ .../generated_serializer/meson.build | 49 ++ .../generated_serializer/vimc.mojom | 33 ++ .../ipa_data_serializer_test.cpp | 378 ++++++++++++++ test/serialization/meson.build | 5 +- 10 files changed, 1331 insertions(+), 2 deletions(-) create mode 100644 Documentation/guides/ipa.rst create mode 100644 test/ipc/unixsocket_ipc.cpp create mode 100644 test/serialization/generated_serializer/generated_serializer_test.cpp create mode 100644 test/serialization/generated_serializer/meson.build create mode 100644 test/serialization/generated_serializer/vimc.mojom create mode 100644 test/serialization/ipa_data_serializer_test.cpp