{"id":21933,"url":"https://patchwork.libcamera.org/api/patches/21933/?format=json","web_url":"https://patchwork.libcamera.org/patch/21933/","project":{"id":1,"url":"https://patchwork.libcamera.org/api/projects/1/?format=json","name":"libcamera","link_name":"libcamera","list_id":"libcamera_core","list_email":"libcamera-devel@lists.libcamera.org","web_url":"","scm_url":"","webscm_url":""},"msgid":"<20241117221712.29616-4-laurent.pinchart@ideasonboard.com>","date":"2024-11-17T22:17:04","name":"[RFC,03/11] ipa: libipa: vector: Add copy constructor and assignment operator","commit_ref":null,"pull_url":null,"state":"superseded","archived":false,"hash":"26c41c3a69c64d6f3c713fe9f8f51eb02230423c","submitter":{"id":2,"url":"https://patchwork.libcamera.org/api/people/2/?format=json","name":"Laurent Pinchart","email":"laurent.pinchart@ideasonboard.com"},"delegate":null,"mbox":"https://patchwork.libcamera.org/patch/21933/mbox/","series":[{"id":4795,"url":"https://patchwork.libcamera.org/api/series/4795/?format=json","web_url":"https://patchwork.libcamera.org/project/libcamera/list/?series=4795","date":"2024-11-17T22:17:01","name":"Improve linear algebra helpers in libipa","version":1,"mbox":"https://patchwork.libcamera.org/series/4795/mbox/"}],"comments":"https://patchwork.libcamera.org/api/patches/21933/comments/","check":"pending","checks":"https://patchwork.libcamera.org/api/patches/21933/checks/","tags":{},"headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id B4F36C32DD\n\tfor <parsemail@patchwork.libcamera.org>;\n\tSun, 17 Nov 2024 22:17:35 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 5263C657DA;\n\tSun, 17 Nov 2024 23:17:34 +0100 (CET)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 22820657DA\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tSun, 17 Nov 2024 23:17:26 +0100 (CET)","from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi\n\t[81.175.209.231])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id C2EDD7FE\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tSun, 17 Nov 2024 23:17:09 +0100 (CET)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"kXu9jRq5\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1731881830;\n\tbh=u9dR8L8pQLloFRR66pjmoAU0G54ZdDGmseZUGeLoWa4=;\n\th=From:To:Subject:Date:In-Reply-To:References:From;\n\tb=kXu9jRq5BcRyjmyGdH47GghTwEu6tflxbtMGbxxbuUROAFwFwXyBXpQU2Rbprk5oh\n\tGEIQtTtZJOmbUJSIkvVogYpgkJAhFYLd+XyO7n7+ukTUQ+gHWYB/Qekr0tXMsRmdpy\n\tQxcAPkxcPBhRDtR+c58Rk/MvAGfs0pBvrbSmziO4=","From":"Laurent Pinchart <laurent.pinchart@ideasonboard.com>","To":"libcamera-devel@lists.libcamera.org","Subject":"[RFC PATCH 03/11] ipa: libipa: vector: Add copy constructor and\n\tassignment operator","Date":"Mon, 18 Nov 2024 00:17:04 +0200","Message-ID":"<20241117221712.29616-4-laurent.pinchart@ideasonboard.com>","X-Mailer":"git-send-email 2.45.2","In-Reply-To":"<20241117221712.29616-1-laurent.pinchart@ideasonboard.com>","References":"<20241117221712.29616-1-laurent.pinchart@ideasonboard.com>","MIME-Version":"1.0","Content-Transfer-Encoding":"8bit","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","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>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"},"content":"It is useful to assign a value to an existing vector. Define a copy\nconstructor and a copy assignment operator.\n\nSigned-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n---\n src/ipa/libipa/vector.cpp | 13 +++++++++++++\n src/ipa/libipa/vector.h   | 13 +++++++++++++\n 2 files changed, 26 insertions(+)","diff":"diff --git a/src/ipa/libipa/vector.cpp b/src/ipa/libipa/vector.cpp\nindex f14f155216f3..df089f8aed9f 100644\n--- a/src/ipa/libipa/vector.cpp\n+++ b/src/ipa/libipa/vector.cpp\n@@ -40,6 +40,19 @@ namespace ipa {\n  * The size of \\a data must be equal to the dimension size Rows of the vector.\n  */\n \n+/**\n+ * \\fn Vector::Vector(const Vector &other)\n+ * \\brief Construct a Vector by copying \\a other\n+ * \\param[in] other The other Vector value\n+ */\n+\n+/**\n+ * \\fn Vector &Vector::operator=(const Vector &other)\n+ * \\brief Replace the content of the Vector with a copy of the content of \\a other\n+ * \\param[in] other The other Vector value\n+ * \\return This Vector value\n+ */\n+\n /**\n  * \\fn T Vector::operator[](size_t i) const\n  * \\brief Index to an element in the vector\ndiff --git a/src/ipa/libipa/vector.h b/src/ipa/libipa/vector.h\nindex b72ab9851aa3..50e16250acfd 100644\n--- a/src/ipa/libipa/vector.h\n+++ b/src/ipa/libipa/vector.h\n@@ -6,6 +6,7 @@\n  */\n #pragma once\n \n+#include <algorithm>\n #include <array>\n #include <cmath>\n #include <optional>\n@@ -41,6 +42,18 @@ public:\n \t\t\tdata_[i] = data[i];\n \t}\n \n+\tVector(const Vector &other)\n+\t\t: data_(other.data_)\n+\t{\n+\t}\n+\n+\tVector &operator=(const Vector &other)\n+\t{\n+\t\tdata_ = other.data_;\n+\n+\t\treturn *this;\n+\t}\n+\n \tconst T &operator[](size_t i) const\n \t{\n \t\tASSERT(i < data_.size());\n","prefixes":["RFC","03/11"]}