From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id B0588385773C; Tue, 18 Jul 2023 14:43:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B0588385773C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1689691425; bh=PO+EpAb+AWNzpx8WlH/HHBawzKEp/7AFZahTp5DRXiw=; h=From:To:Subject:Date:From; b=fvwTuCzpXc1/17JYtr4wkOyRpSFrWJ3g9vQ31n/u2ndYo6jAoZIFTep2MNcX/IlgC W+fFTwWhqjOmNL/7raikcoLFwdjQ6zK6eqIS+4d4WDfnZ16TVrCZ4b9e5rnCnFcmBf u+TmgPjeVHc6d6YF43YqoVZFH9SpgH0fSpmQ9Sy8= From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/110719] New: Should chrono formatters always use std::time_put for locale's representation? Date: Tue, 18 Jul 2023 14:43:45 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 13.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D110719 Bug ID: 110719 Summary: Should chrono formatters always use std::time_put for locale's representation? Product: gcc Version: 13.1.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: redi at gcc dot gnu.org Target Milestone: --- auto t =3D std::chrono::system_clock::now(); auto loc =3D std::locale::classic(); std::cout << std::format(loc, "{:%EX %OS}\n", t); This prints something like: 14:30:46.809059031 46 The %EX output is produced by calling std::format again with a format string based on the locale's D_FMT, which for the C locale is something like: %H:%M:%S. And using std::format("{:%H:%M:%S}", t) prints fractional seconds= for the %S part. The %OS output is produced by calling std::time_put::put with the %OS format string and a struct tm with tm_sec set to the integer number of seconds. Th= is doesn't print the fractional part. If chrono::parse("%EX", t) uses std::time_get then this presents a problem = for round-tripping, as the formatted output will have fractional seconds, but t= he parsed input will not consume that fractional part. Should we consistently use std::time_put for all locale-specific output? Alternatively, we could use time_point_cast and duration_cast to round to seconds. None of the locale-specific formats print fractional seconds. It would be useful to profile std::format with and without std::time_get, to see if reusing std::format performs better. If it doesn't, using std::time_= put might be simpler.=