2015-03-09 14:37:27 +00:00
|
|
|
|
Overview
|
|
|
|
|
========
|
2012-12-18 16:41:59 +00:00
|
|
|
|
|
2016-04-28 13:54:37 +00:00
|
|
|
|
**fmt** (formerly cppformat) is an open-source formatting library.
|
2018-05-21 00:10:34 +00:00
|
|
|
|
It can be used as a fast and safe alternative to printf and IOStreams.
|
2012-12-18 14:49:18 +00:00
|
|
|
|
|
2015-05-23 15:33:55 +00:00
|
|
|
|
.. raw:: html
|
|
|
|
|
|
|
|
|
|
<div class="panel panel-default">
|
|
|
|
|
<div class="panel-heading">What users say:</div>
|
|
|
|
|
<div class="panel-body">
|
2016-07-21 16:00:23 +00:00
|
|
|
|
Thanks for creating this library. It’s been a hole in C++ for a long
|
|
|
|
|
time. I’ve used both boost::format and loki::SPrintf, and neither felt
|
|
|
|
|
like the right answer. This does.
|
2015-05-23 15:33:55 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2018-05-13 15:04:39 +00:00
|
|
|
|
.. _format-api-intro:
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
|
|
|
|
Format API
|
|
|
|
|
----------
|
|
|
|
|
|
|
|
|
|
The replacement-based Format API provides a safe alternative to ``printf``,
|
|
|
|
|
``sprintf`` and friends with comparable or `better performance
|
|
|
|
|
<http://zverovich.net/2013/09/07/integer-to-string-conversion-in-cplusplus.html>`_.
|
2016-06-16 18:18:40 +00:00
|
|
|
|
The `format string syntax <syntax.html>`_ is similar to the one used by
|
2018-02-20 16:54:56 +00:00
|
|
|
|
`str.format <http://docs.python.org/3/library/stdtypes.html#str.format>`_
|
2015-03-09 14:37:27 +00:00
|
|
|
|
in Python:
|
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
2018-05-21 00:10:34 +00:00
|
|
|
|
fmt::format("The answer is {}.", 42);
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
2018-05-21 00:10:34 +00:00
|
|
|
|
The ``fmt::format`` function returns a string "The answer is 42.". You can use
|
2018-05-13 19:42:55 +00:00
|
|
|
|
``fmt::memory_buffer`` to avoid constructing ``std::string``:
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
2018-05-13 19:42:55 +00:00
|
|
|
|
fmt::memory_buffer out;
|
|
|
|
|
format_to(out, "For a moment, {} happened.", "nothing");
|
|
|
|
|
out.data(); // returns a pointer to the formatted data
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
2018-10-08 07:56:10 +00:00
|
|
|
|
The ``fmt::print`` function performs formatting and writes the result to a stream:
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
fmt::print(stderr, "System error code = {}\n", errno);
|
|
|
|
|
|
|
|
|
|
The file argument can be omitted in which case the function prints to
|
|
|
|
|
``stdout``:
|
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
fmt::print("Don't {}\n", "panic");
|
|
|
|
|
|
|
|
|
|
The Format API also supports positional arguments useful for localization:
|
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
fmt::print("I'd rather be {1} than {0}.", "right", "happy");
|
|
|
|
|
|
2015-10-11 00:34:20 +00:00
|
|
|
|
Named arguments can be created with ``fmt::arg``. This makes it easier to track
|
|
|
|
|
what goes where when multiple values are being inserted:
|
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
fmt::print("Hello, {name}! The answer is {number}. Goodbye, {name}.",
|
|
|
|
|
fmt::arg("name", "World"), fmt::arg("number", 42));
|
|
|
|
|
|
|
|
|
|
If your compiler supports C++11 user-defined literals, the suffix ``_a`` offers
|
|
|
|
|
an alternative, slightly terser syntax for named arguments:
|
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
fmt::print("Hello, {name}! The answer is {number}. Goodbye, {name}.",
|
|
|
|
|
"name"_a="World", "number"_a=42);
|
|
|
|
|
|
|
|
|
|
The ``_format`` suffix may be used to format string literals similar to Python:
|
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
std::string message = "{0}{1}{0}"_format("abra", "cad");
|
|
|
|
|
|
|
|
|
|
Other than the placement of the format string on the left of the operator,
|
|
|
|
|
``_format`` is functionally identical to ``fmt::format``. In order to use the
|
|
|
|
|
literal operators, they must be made visible with the directive
|
|
|
|
|
``using namespace fmt::literals;``. Note that this brings in only ``_a`` and
|
|
|
|
|
``_format`` but nothing else from the ``fmt`` namespace.
|
|
|
|
|
|
2015-03-09 14:37:27 +00:00
|
|
|
|
.. _safety:
|
|
|
|
|
|
|
|
|
|
Safety
|
|
|
|
|
------
|
|
|
|
|
|
2016-07-21 16:00:23 +00:00
|
|
|
|
The library is fully type safe, automatic memory management prevents buffer
|
2018-05-21 00:10:34 +00:00
|
|
|
|
overflow, errors in format strings are reported using exceptions or at compile
|
2018-10-08 07:56:10 +00:00
|
|
|
|
time. For example, the code
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
fmt::format("The answer is {:d}", "forty-two");
|
|
|
|
|
|
2018-05-21 00:10:34 +00:00
|
|
|
|
throws a ``format_error`` exception with description "unknown format code 'd' for
|
|
|
|
|
string", because the argument ``"forty-two"`` is a string while the format code
|
|
|
|
|
``d`` only applies to integers, while
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
2018-05-21 00:10:34 +00:00
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
format(fmt("The answer is {:d}"), "forty-two");
|
|
|
|
|
|
|
|
|
|
reports a compile-time error for the same reason on compilers that support
|
2019-04-11 02:22:10 +00:00
|
|
|
|
relaxed ``constexpr``. See `here <api.html#c.fmt>`_ for how to enable
|
|
|
|
|
compile-time checks.
|
2018-05-21 00:10:34 +00:00
|
|
|
|
|
|
|
|
|
The following code
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
fmt::format("Cyrillic letter {}", L'\x42e');
|
|
|
|
|
|
|
|
|
|
produces a compile-time error because wide character ``L'\x42e'`` cannot be
|
|
|
|
|
formatted into a narrow string. You can use a wide format string instead:
|
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
fmt::format(L"Cyrillic letter {}", L'\x42e');
|
|
|
|
|
|
|
|
|
|
For comparison, writing a wide character to ``std::ostream`` results in
|
2016-07-21 16:00:23 +00:00
|
|
|
|
its numeric value being written to the stream (i.e. 1070 instead of letter 'ю'
|
|
|
|
|
which is represented by ``L'\x42e'`` if we use Unicode) which is rarely what is
|
|
|
|
|
needed.
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
2019-05-18 15:56:49 +00:00
|
|
|
|
Compact Binary Code
|
2018-05-13 19:42:55 +00:00
|
|
|
|
-------------------
|
|
|
|
|
|
2018-05-21 00:10:34 +00:00
|
|
|
|
The library is designed to produce compact per-call compiled code. For example
|
2018-05-13 19:42:55 +00:00
|
|
|
|
(`godbolt <https://godbolt.org/g/TZU4KF>`_),
|
|
|
|
|
|
|
|
|
|
.. code:: c++
|
|
|
|
|
|
|
|
|
|
#include <fmt/core.h>
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
fmt::print("The answer is {}.", 42);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compiles to just
|
|
|
|
|
|
|
|
|
|
.. code:: asm
|
|
|
|
|
|
|
|
|
|
main: # @main
|
|
|
|
|
sub rsp, 24
|
|
|
|
|
mov qword ptr [rsp], 42
|
|
|
|
|
mov rcx, rsp
|
|
|
|
|
mov edi, offset .L.str
|
|
|
|
|
mov esi, 17
|
|
|
|
|
mov edx, 2
|
|
|
|
|
call fmt::v5::vprint(fmt::v5::basic_string_view<char>, fmt::v5::format_args)
|
|
|
|
|
xor eax, eax
|
|
|
|
|
add rsp, 24
|
|
|
|
|
ret
|
|
|
|
|
.L.str:
|
|
|
|
|
.asciz "The answer is {}."
|
|
|
|
|
|
2015-03-09 14:37:27 +00:00
|
|
|
|
.. _portability:
|
|
|
|
|
|
|
|
|
|
Portability
|
|
|
|
|
-----------
|
|
|
|
|
|
2018-05-21 00:10:34 +00:00
|
|
|
|
The library is highly portable and relies only on a small set of C++11 features:
|
2015-10-11 00:34:20 +00:00
|
|
|
|
|
2018-05-21 00:10:34 +00:00
|
|
|
|
* variadic templates
|
|
|
|
|
* type traits
|
|
|
|
|
* rvalue references
|
|
|
|
|
* decltype
|
|
|
|
|
* trailing return types
|
|
|
|
|
* deleted functions
|
2015-10-11 00:34:20 +00:00
|
|
|
|
|
2018-05-21 00:10:34 +00:00
|
|
|
|
These are available since GCC 4.4, Clang 2.9 and MSVC 18.0 (2013). For older
|
|
|
|
|
compilers use fmt `version 4.x
|
|
|
|
|
<https://github.com/fmtlib/fmt/releases/tag/4.1.0>`_ which continues to be
|
|
|
|
|
maintained and only requires C++98.
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
2016-07-21 16:00:23 +00:00
|
|
|
|
The output of all formatting functions is consistent across platforms. In
|
|
|
|
|
particular, formatting a floating-point infinity always gives ``inf`` while the
|
|
|
|
|
output of ``printf`` is platform-dependent in this case. For example,
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
|
|
|
|
.. code::
|
|
|
|
|
|
|
|
|
|
fmt::print("{}", std::numeric_limits<double>::infinity());
|
|
|
|
|
|
|
|
|
|
always prints ``inf``.
|
|
|
|
|
|
|
|
|
|
.. _ease-of-use:
|
|
|
|
|
|
|
|
|
|
Ease of Use
|
|
|
|
|
-----------
|
|
|
|
|
|
2016-07-21 16:00:23 +00:00
|
|
|
|
fmt has a small self-contained code base with the core library consisting of
|
2018-05-21 00:10:34 +00:00
|
|
|
|
just three header files and no external dependencies.
|
2016-07-21 16:00:23 +00:00
|
|
|
|
A permissive BSD `license <https://github.com/fmtlib/fmt#license>`_ allows
|
|
|
|
|
using the library both in open-source and commercial projects.
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
|
|
|
|
.. raw:: html
|
|
|
|
|
|
2016-04-27 15:35:59 +00:00
|
|
|
|
<a class="btn btn-success" href="https://github.com/fmtlib/fmt">GitHub Repository</a>
|
2015-03-09 14:37:27 +00:00
|
|
|
|
|
|
|
|
|
<div class="section footer">
|
2016-04-27 15:35:59 +00:00
|
|
|
|
<iframe src="http://ghbtns.com/github-btn.html?user=fmtlib&repo=fmt&type=watch&count=true"
|
2015-03-09 14:37:27 +00:00
|
|
|
|
class="github-btn" width="100" height="20"></iframe>
|
|
|
|
|
</div>
|