From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ej1-x62c.google.com (mail-ej1-x62c.google.com [IPv6:2a00:1450:4864:20::62c]) by sourceware.org (Postfix) with ESMTPS id 253343858C52 for ; Fri, 9 Sep 2022 20:05:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 253343858C52 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-ej1-x62c.google.com with SMTP id y17so1427584ejo.6 for ; Fri, 09 Sep 2022 13:05:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date; bh=mdkJbOS2EZ1a3l4t0mhM7PrmIpPre2xqbxQ2e1xmOyY=; b=BNtbzRlViFK2uhRUTnkNomfZ2TPEXbGqIKlEeSXYjIed9cyYrlaQQO18CfYxj72ty1 7dhKgIsNDAWgLAXrJIKIwJ6JnzbZs1rjSHU1NrTiUod7ySHhtwXu8jAB7YU2zssDqrii 12b1AESjykBS5GDEtqDbh9apvtIEj4r47mz7GaFkPrxoVlcqvlSr0v26MjAqI2ZlYc8B 3ie9EwR8BG7nB/xWmIuZ3rT08X501J/b8g/Mh8JYQYHyG5GbqtzYB/QVqcPg9sQE8rqU bIYNF28UHS7zTYvtFvl+yVhBEYAMtZarUoO/9GDhINa4/5n/5PBJH1v1+4d4E4PgHmzt qoSQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date; bh=mdkJbOS2EZ1a3l4t0mhM7PrmIpPre2xqbxQ2e1xmOyY=; b=D34rTW/srzqYfrd9Zbycum1IHsaaM7egifhfaCXP33f2RMkvT4tb8Y6XFlxjCNbno2 uhyVSuGp8SrkgyjjA/5nraRF+6wiElh0bQh8PvRWL+zcWB8cfUAB+mmqI76Qlt2z4efi E3xT3EkjtVIooFuHvFiycfjhknUoD90Bv0XX2ydnnxhtxO46H0xBRXYEK/TPUidL0s0d wYLjZtHJVJBdk/pVSeKD/ejoaHc2NYT2Nr5ImrMr1h4I+81WoT8Yn1vo2lMuOT7Juz99 dFPeVRlWkPdR63xjOHd4gZ44hI0j46FR5kRJKXwTdYAglwniVLRn360jyG+6H6YTeEI+ AYFg== X-Gm-Message-State: ACgBeo2kjcwdbUFt2NV/dsoD6iHP9ubBxJyNR+1RzZhkpxgVz9jre97V 6wACLQooUE11U7QoXQWyFbEbCG9VBpudB3hybH8= X-Google-Smtp-Source: AA6agR5tpgmnhXoFxIj+cUIPC0YG0CQq15MhjkTFdjPFXn5nrJ262t7YVzpPVXNSxGIY/7++hepe52m7arlZ9oSwOiI= X-Received: by 2002:a17:907:2e19:b0:730:acf0:4921 with SMTP id ig25-20020a1709072e1900b00730acf04921mr10306187ejc.416.1662753952605; Fri, 09 Sep 2022 13:05:52 -0700 (PDT) MIME-Version: 1.0 References: <20220909164140.41729.qmail@s810.sureserver.com> <20220909184052.45384.qmail@s810.sureserver.com> In-Reply-To: <20220909184052.45384.qmail@s810.sureserver.com> From: Jonathan Wakely Date: Fri, 9 Sep 2022 21:05:41 +0100 Message-ID: Subject: Re: [RFC] database with API information To: SAIFI Cc: "gcc@gcc.gnu.org" Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-0.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Fri, 9 Sept 2022 at 19:41, SAIFI wrote: > > > -------Original Message------- > > From: Jonathan Wakely > > > > > Would any of the C++11 compliant CSV parsing libraries make the cut > > > in your analysis ? > > > > I'm not going to waste my time looking. > > > > > Vince CSV parser (RFC4180 + flavours) > > > https://github.com/vincentlaucsb/csv-parser > > > > > > C++11 header only (MT can be turned on/off). > > > https://github.com/ben-strasser/fast-cpp-csv-parser > > > > > > If not, Is there is something else that is needed for the CSV > > > parsers to qualify ? > > > > Why add an extra dependency that would have to be included in the GCC > > sources, when Python already has what's needed to do this. > > > > Somebody has written a new tool, and you seem to be asking them to > > rewrite it for your preferences. If you want to rewrite the script in > > C++ feel free to proposed a patch, but this digression for your > > curiousity doesn't seem productive to me. > > Well, it seems then the 'innocent CSV' proposed by Ulrich is the strawman that leads to meson ! > > Please feel free to correct me if that is not the 'unstated' intent. I have no idea what you're even talking about.