From patchwork Fri Dec 2 16:41:45 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 17940 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 A92D6C3284 for ; Fri, 2 Dec 2022 16:41:55 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id BEE6A63342; Fri, 2 Dec 2022 17:41:54 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1669999314; bh=CpvkOAi3RnVI942NlfvRwJgcBoRlsmxDztZ20i7M/W8=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=rhOMpQZpNER/8zU4NlqO+5b7hiQCa+AFE7mL/eLjLE4SyNO18eUqWtQ9zWLlwV73t Cdxg14FSTVghhAAdGJ7I4J5rFU0Lkclz0Te5ejcueeUasxnJAcvnIpEFWcSeGwxWmX wpfxgCOivwIlElaeSQSdumpCwwyHsl3o+wqZmGoYjjuZehzihCqtIEcuFPcKBG5EWX cqmCDJofevyERRAR6d5UCtuvzO34i0UK3wCp35vk3nj5zjQSRHX/PtJcG4p7T0p6cV ehBKtublAgp6/bo+HY5qbhgF10xbKVbudx97WzqD2XxelK5AXQj9rfmcIbz3TwlcXj lEA8UdX3FUR+Q== Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [217.70.183.194]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C8B9360483 for ; Fri, 2 Dec 2022 17:41:52 +0100 (CET) Received: (Authenticated sender: jacopo@jmondi.org) by mail.gandi.net (Postfix) with ESMTPSA id 63F8D4000B; Fri, 2 Dec 2022 16:41:52 +0000 (UTC) To: libcamera-devel@lists.libcamera.org Date: Fri, 2 Dec 2022 17:41:45 +0100 Message-Id: <20221202164145.30603-2-jacopo@jmondi.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221202164145.30603-1-jacopo@jmondi.org> References: <20221202164145.30603-1-jacopo@jmondi.org> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 2/2] libcamera: utils: Provide strchrnul() wrapper 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: , X-Patchwork-Original-From: Jacopo Mondi via libcamera-devel From: Jacopo Mondi Reply-To: Jacopo Mondi Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The strchrnul function is a GNU-specific extension to string.h and it's not availalable on all C libraries (in example, Android's Bionic). Provide an implementation of the function based around the generally available strchr() function and use it in the Logger class. Open code the same wrapper in the application's option parser, where we cannot use the internal utils namespace. Signed-off-by: Jacopo Mondi --- include/libcamera/base/utils.h | 1 + src/apps/common/options.cpp | 5 ++++- src/libcamera/base/log.cpp | 2 +- src/libcamera/base/utils.cpp | 19 +++++++++++++++++++ 4 files changed, 25 insertions(+), 2 deletions(-) diff --git a/include/libcamera/base/utils.h b/include/libcamera/base/utils.h index eb7bcdf4c173..b7064ec6253b 100644 --- a/include/libcamera/base/utils.h +++ b/include/libcamera/base/utils.h @@ -36,6 +36,7 @@ namespace libcamera { namespace utils { const char *basename(const char *path); +const char *strchrnul(const char *s, int c); char *secure_getenv(const char *name); std::string dirname(const std::string &path); diff --git a/src/apps/common/options.cpp b/src/apps/common/options.cpp index 4f7e869144c8..1bbbec7fa25c 100644 --- a/src/apps/common/options.cpp +++ b/src/apps/common/options.cpp @@ -363,7 +363,10 @@ KeyValueParser::Options KeyValueParser::parse(const char *arguments) Options options; for (const char *pair = arguments; *arguments != '\0'; pair = arguments) { - const char *comma = strchrnul(arguments, ','); + const char *comma = strchr(arguments, ','); + if (!comma) + comma = &arguments[strlen(arguments)]; + size_t len = comma - pair; /* Skip over the comma. */ diff --git a/src/libcamera/base/log.cpp b/src/libcamera/base/log.cpp index 55fbd7b03438..cc30681fd67f 100644 --- a/src/libcamera/base/log.cpp +++ b/src/libcamera/base/log.cpp @@ -629,7 +629,7 @@ void Logger::parseLogLevels() return; for (const char *pair = debug; *debug != '\0'; pair = debug) { - const char *comma = strchrnul(debug, ','); + const char *comma = utils::strchrnul(debug, ','); size_t len = comma - pair; /* Skip over the comma. */ diff --git a/src/libcamera/base/utils.cpp b/src/libcamera/base/utils.cpp index 6a307940448e..f829a8106b76 100644 --- a/src/libcamera/base/utils.cpp +++ b/src/libcamera/base/utils.cpp @@ -39,6 +39,25 @@ const char *basename(const char *path) return base ? base + 1 : path; } +/** + * \brief Implement strchnul wrapper + * \param[in] s The string to seach on + * \param[in] c The character to search + * + * The strchrnul function is a GNU-specific extension to string.h and it's not + * available on all C libraries (in example, Android's Bionic). This + * implementation realizes strchrnul() on strchr() which is instead more + * generally available. + * + * \return A pointer to the first occurrence of \a c in \a s, or a pointer to + * the null byte at the end of \a s if \a c is not found + */ +const char *strchrnul(const char *s, int c) +{ + const char *p = strchr(s, c); + return p ? : s + strlen(s); +} + /** * \brief Get an environment variable * \param[in] name The name of the variable to return