630 lines
23 KiB
C++
630 lines
23 KiB
C++
//
|
|
// Copyright (c) 2019-2024 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef BOOST_MYSQL_FORMAT_SQL_HPP
|
|
#define BOOST_MYSQL_FORMAT_SQL_HPP
|
|
|
|
#include <boost/mysql/character_set.hpp>
|
|
#include <boost/mysql/constant_string_view.hpp>
|
|
#include <boost/mysql/error_code.hpp>
|
|
#include <boost/mysql/string_view.hpp>
|
|
|
|
#include <boost/mysql/detail/access.hpp>
|
|
#include <boost/mysql/detail/config.hpp>
|
|
#include <boost/mysql/detail/format_sql.hpp>
|
|
#include <boost/mysql/detail/output_string.hpp>
|
|
|
|
#include <boost/config.hpp>
|
|
#include <boost/core/span.hpp>
|
|
#include <boost/system/result.hpp>
|
|
|
|
#include <initializer_list>
|
|
#include <iterator>
|
|
#include <string>
|
|
#include <type_traits>
|
|
#include <utility>
|
|
#ifdef BOOST_MYSQL_HAS_CONCEPTS
|
|
#include <concepts>
|
|
#endif
|
|
|
|
namespace boost {
|
|
namespace mysql {
|
|
|
|
/**
|
|
* \brief (EXPERIMENTAL) An extension point to customize SQL formatting.
|
|
* \details
|
|
* This type can be specialized for custom types to make them formattable.
|
|
* This makes them satisfy the `Formattable` concept, and thus usable in
|
|
* \ref format_sql and similar functions.
|
|
* \n
|
|
* A `formatter` specialization for a type `T` should have the following form:
|
|
* ```
|
|
* template <>
|
|
* struct formatter<T>
|
|
* {
|
|
* const char* parse(const char* begin, const char* end); // parse format specs
|
|
* void format(const T& value, format_context_base& ctx) const; // perform the actual formatting
|
|
* };
|
|
* ```
|
|
* \n
|
|
* When a value with a custom formatter is formatted (using \ref format_sql or a similar
|
|
* function), the library performs the following actions: \n
|
|
* - An instance of `formatter<T>` is default-constructed, where `T` is the type of the
|
|
* value being formatted after removing const and references.
|
|
* - The `parse` function is invoked on the constructed instance,
|
|
* with `[begin, end)` pointing to the format specifier
|
|
* that the current replacement field has. If `parse` finds specifiers it understands, it should
|
|
* remember them, usually setting some flag in the `formatter` instance.
|
|
* `parse` must return an iterator to the first
|
|
* unparsed character in the range (or the `end` iterator, if everything was parsed).
|
|
* Some examples of what would get passed to `parse`:
|
|
* - In `"SELECT {}"`, the range would be empty.
|
|
* - In `"SELECT {:abc}"`, the range would be `"abc"`.
|
|
* - In `"SELECT {0:i}"`, the range would be `"i"`.
|
|
* - If `parse` didn't manage to parse all the passed specifiers (i.e. if it returned an iterator
|
|
* different to the passed's end), a \ref client_errc::format_string_invalid_specifier
|
|
* is emitted and the format operation finishes.
|
|
* - Otherwise, `format` is invoked on the formatter instance, passing the value to be formatted
|
|
* and the \ref format_context_base where format operation is running.
|
|
* This function should perform the actual formatting, usually calling
|
|
* \ref format_sql_to on the passed context.
|
|
*
|
|
* \n
|
|
* Don't specialize `formatter` for built-in types, like `int`, `std::string` or
|
|
* optionals (formally, any type satisfying `WritableField`), as the specializations will be ignored.
|
|
*/
|
|
template <class T>
|
|
struct formatter
|
|
#ifndef BOOST_MYSQL_DOXYGEN
|
|
: detail::formatter_is_unspecialized
|
|
{
|
|
}
|
|
#endif
|
|
;
|
|
|
|
/**
|
|
* \brief (EXPERIMENTAL) A type-erased reference to a `Formattable` value.
|
|
* \details
|
|
* This type can hold references to any value that satisfies the `Formattable`
|
|
* concept. The `formattable_ref` type itself satisfies `Formattable`,
|
|
* and can thus be used as an argument to format functions.
|
|
*
|
|
* \par Object lifetimes
|
|
* This is a non-owning type. It should be only used as a function argument,
|
|
* to avoid lifetime issues.
|
|
*/
|
|
class formattable_ref
|
|
{
|
|
detail::formattable_ref_impl impl_;
|
|
#ifndef BOOST_MYSQL_DOXYGEN
|
|
friend struct detail::access;
|
|
#endif
|
|
public:
|
|
/**
|
|
* \brief Constructor.
|
|
* \details
|
|
* Constructs a type-erased formattable reference from a concrete
|
|
* `Formattable` type.
|
|
* \n
|
|
* This constructor participates in overload resolution only if
|
|
* the passed value meets the `Formattable` concept and
|
|
* is not a `formattable_ref` or a reference to one.
|
|
*
|
|
* \par Exception safety
|
|
* No-throw guarantee.
|
|
*
|
|
* \par Object lifetimes
|
|
* value is potentially stored as a view, although some cheap-to-copy
|
|
* types may be stored as values.
|
|
*/
|
|
template <
|
|
BOOST_MYSQL_FORMATTABLE Formattable
|
|
#ifndef BOOST_MYSQL_DOXYGEN
|
|
,
|
|
class = typename std::enable_if<
|
|
detail::is_formattable_type<Formattable>() &&
|
|
!detail::is_formattable_ref<Formattable>::value>::type
|
|
#endif
|
|
>
|
|
formattable_ref(Formattable&& value) noexcept
|
|
: impl_(detail::make_formattable_ref(std::forward<Formattable>(value)))
|
|
{
|
|
}
|
|
};
|
|
|
|
/**
|
|
* \brief (EXPERIMENTAL) A named format argument, to be used in initializer lists.
|
|
* \details
|
|
* Represents a name, value pair to be passed to a formatting function.
|
|
* This type should only be used in initializer lists, as a function argument.
|
|
*
|
|
* \par Object lifetimes
|
|
* This is a non-owning type. Both the argument name and value are stored
|
|
* as views.
|
|
*/
|
|
class format_arg
|
|
{
|
|
#ifndef BOOST_MYSQL_DOXYGEN
|
|
struct
|
|
{
|
|
string_view name;
|
|
detail::formattable_ref_impl value;
|
|
} impl_;
|
|
|
|
friend struct detail::access;
|
|
#endif
|
|
|
|
public:
|
|
/**
|
|
* \brief Constructor.
|
|
* \details
|
|
* Constructs an argument from a name and a value.
|
|
*
|
|
* \par Exception safety
|
|
* No-throw guarantee.
|
|
*
|
|
* \par Object lifetimes
|
|
* Both `name` and `value` are stored as views.
|
|
*/
|
|
format_arg(string_view name, formattable_ref value) noexcept
|
|
: impl_{name, detail::access::get_impl(value)}
|
|
{
|
|
}
|
|
};
|
|
|
|
/**
|
|
* \brief (EXPERIMENTAL) Base class for concrete format contexts.
|
|
* \details
|
|
* Conceptually, a format context contains: \n
|
|
* \li The result string. Output operations append characters to this output string.
|
|
* `format_context_base` is agnostic to the output string type.
|
|
* \li \ref format_options required to format values.
|
|
* \li An error state (\ref error_state) that is set by output operations when they fail.
|
|
* The error state is propagated to \ref basic_format_context::get.
|
|
* \n
|
|
* References to this class are useful when you need to manipulate
|
|
* a format context without knowing the type of the actual context that will be used,
|
|
* like when specializing \ref formatter.
|
|
* \n
|
|
* This class can't be
|
|
* instantiated directly - use \ref basic_format_context, instead.
|
|
* Do not subclass it, either.
|
|
*/
|
|
class format_context_base
|
|
{
|
|
#ifndef BOOST_MYSQL_DOXYGEN
|
|
struct
|
|
{
|
|
detail::output_string_ref output;
|
|
format_options opts;
|
|
error_code ec;
|
|
} impl_;
|
|
|
|
friend struct detail::access;
|
|
friend class detail::format_state;
|
|
#endif
|
|
|
|
BOOST_MYSQL_DECL void format_arg(detail::formattable_ref_impl arg, string_view format_spec);
|
|
|
|
protected:
|
|
format_context_base(detail::output_string_ref out, format_options opts, error_code ec = {}) noexcept
|
|
: impl_{out, opts, ec}
|
|
{
|
|
}
|
|
|
|
format_context_base(detail::output_string_ref out, const format_context_base& rhs) noexcept
|
|
: impl_{out, rhs.impl_.opts, rhs.impl_.ec}
|
|
{
|
|
}
|
|
|
|
void assign(const format_context_base& rhs) noexcept
|
|
{
|
|
// output never changes, it always points to the derived object's storage
|
|
impl_.opts = rhs.impl_.opts;
|
|
impl_.ec = rhs.impl_.ec;
|
|
}
|
|
|
|
public:
|
|
/**
|
|
* \brief Adds raw SQL to the output string (low level).
|
|
* \details
|
|
* Adds raw, unescaped SQL to the output string. Doesn't alter the error state.
|
|
* \n
|
|
* By default, the passed SQL should be available at compile-time.
|
|
* Use \ref runtime if you need to use runtime values.
|
|
* \n
|
|
* This is a low level function. In general, prefer \ref format_sql_to, instead.
|
|
*
|
|
* \par Exception safety
|
|
* Basic guarantee. Memory allocations may throw.
|
|
*
|
|
* \par Object lifetimes
|
|
* The passed string is copied as required and doesn't need to be kept alive.
|
|
*/
|
|
format_context_base& append_raw(constant_string_view sql)
|
|
{
|
|
impl_.output.append(sql.get());
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* \brief Formats a value and adds it to the output string (low level).
|
|
* \details
|
|
* value is formatted according to its type, applying the passed format specifiers.
|
|
* If formatting generates an error (for instance, a string with invalid encoding is passed),
|
|
* the error state may be set.
|
|
* \n
|
|
* This is a low level function. In general, prefer \ref format_sql_to, instead.
|
|
*
|
|
* \par Exception safety
|
|
* Basic guarantee. Memory allocations may throw.
|
|
*
|
|
* \par Errors
|
|
* The error state may be updated with the following errors: \n
|
|
* \li \ref client_errc::invalid_encoding if a string with byte sequences that can't be decoded
|
|
* with the current character set is passed.
|
|
* \li \ref client_errc::unformattable_value if a NaN or infinity `float` or `double` is passed.
|
|
* \li \ref client_errc::format_string_invalid_specifier if `format_specifiers` includes
|
|
* specifiers not supported by the type being formatted.
|
|
* \li Any other error code that user-supplied formatter specializations may add using \ref add_error.
|
|
*/
|
|
format_context_base& append_value(
|
|
formattable_ref value,
|
|
constant_string_view format_specifiers = string_view()
|
|
)
|
|
{
|
|
format_arg(detail::access::get_impl(value), format_specifiers.get());
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* \brief Adds an error to the current error state.
|
|
* \details
|
|
* This function can be used by custom formatters to report that they
|
|
* received a value that can't be formatted. For instance, it's used by
|
|
* the built-in string formatter when a string with an invalid encoding is supplied.
|
|
* \n
|
|
* If the error state is not set before calling this function, the error
|
|
* state is updated to `ec`. Otherwise, the error is ignored.
|
|
* This implies that once the error state is set, it can't be reset.
|
|
* \n
|
|
* \par Exception safety
|
|
* No-throw guarantee.
|
|
*/
|
|
void add_error(error_code ec) noexcept
|
|
{
|
|
if (!impl_.ec)
|
|
impl_.ec = ec;
|
|
}
|
|
|
|
/**
|
|
* \brief Retrieves the current error state.
|
|
*
|
|
* \par Exception safety
|
|
* No-throw guarantee.
|
|
*/
|
|
error_code error_state() const noexcept { return impl_.ec; }
|
|
|
|
/**
|
|
* \brief Retrieves the format options.
|
|
*
|
|
* \par Exception safety
|
|
* No-throw guarantee.
|
|
*/
|
|
format_options format_opts() const noexcept { return impl_.opts; }
|
|
};
|
|
|
|
/**
|
|
* \brief (EXPERIMENTAL) Format context for incremental SQL formatting.
|
|
* \details
|
|
* The primary interface for incremental SQL formatting. Contrary to \ref format_context_base,
|
|
* this type is aware of the output string's actual type. `basic_format_context` owns
|
|
* an instance of `OutputString`. Format operations will append characters to such string.
|
|
* \n
|
|
* Objects of this type are single-use: once the result has been retrieved using \ref get,
|
|
* they cannot be re-used. This is a move-only type.
|
|
*/
|
|
template <BOOST_MYSQL_OUTPUT_STRING OutputString>
|
|
class basic_format_context : public format_context_base
|
|
{
|
|
OutputString output_{};
|
|
|
|
detail::output_string_ref ref() noexcept { return detail::output_string_ref::create(output_); }
|
|
|
|
public:
|
|
/**
|
|
* \brief Constructor.
|
|
* \details
|
|
* Uses a default-constructed `OutputString` as output string, and an empty
|
|
* error code as error state. This constructor can only be called if `OutputString`
|
|
* is default-constructible.
|
|
*
|
|
* \par Exception safety
|
|
* Strong guarantee: exceptions thrown by default-constructing `OutputString` are propagated.
|
|
*/
|
|
explicit basic_format_context(format_options opts
|
|
) noexcept(std::is_nothrow_default_constructible<OutputString>::value)
|
|
: format_context_base(ref(), opts)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* \brief Constructor.
|
|
* \details
|
|
* Move constructs an `OutputString` using `storage`. After construction,
|
|
* the output string is cleared. Uses an empty
|
|
* error code as error state. This constructor allows re-using existing
|
|
* memory for the output string.
|
|
* \n
|
|
*
|
|
* \par Exception safety
|
|
* Basic guarantee: exceptions thrown by move-constructing `OutputString` are propagated.
|
|
*/
|
|
basic_format_context(format_options opts, OutputString&& storage) noexcept(
|
|
std::is_nothrow_move_constructible<OutputString>::value
|
|
)
|
|
: format_context_base(ref(), opts), output_(std::move(storage))
|
|
{
|
|
output_.clear();
|
|
}
|
|
|
|
#ifndef BOOST_MYSQL_DOXYGEN
|
|
basic_format_context(const basic_format_context&) = delete;
|
|
basic_format_context& operator=(const basic_format_context&) = delete;
|
|
#endif
|
|
|
|
/**
|
|
* \brief Move constructor.
|
|
* \details
|
|
* Move constructs an `OutputString` using `rhs`'s output string.
|
|
* `*this` will have the same format options and error state than `rhs`.
|
|
* `rhs` is left in a valid but unspecified state.
|
|
*
|
|
* \par Exception safety
|
|
* Basic guarantee: exceptions thrown by move-constructing `OutputString` are propagated.
|
|
*/
|
|
basic_format_context(basic_format_context&& rhs
|
|
) noexcept(std::is_nothrow_move_constructible<OutputString>::value)
|
|
: format_context_base(ref(), rhs), output_(std::move(rhs.output_))
|
|
{
|
|
}
|
|
|
|
/**
|
|
* \brief Move assignment.
|
|
* \details
|
|
* Move assigns `rhs`'s output string to `*this` output string.
|
|
* `*this` will have the same format options and error state than `rhs`.
|
|
* `rhs` is left in a valid but unspecified state.
|
|
*
|
|
* \par Exception safety
|
|
* Basic guarantee: exceptions thrown by move-constructing `OutputString` are propagated.
|
|
*/
|
|
basic_format_context& operator=(basic_format_context&& rhs
|
|
) noexcept(std::is_nothrow_move_assignable<OutputString>::value)
|
|
{
|
|
output_ = std::move(rhs.output_);
|
|
assign(rhs);
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* \brief Retrieves the result of the formatting operation.
|
|
* \details
|
|
* After running the relevant formatting operations (using \ref append_raw,
|
|
* \ref append_value or \ref format_sql_to), call this function to retrieve the
|
|
* overall result of the operation.
|
|
* \n
|
|
* If \ref error_state is a non-empty error code, returns it as an error.
|
|
* Otherwise, returns the output string, move-constructing it into the `system::result` object.
|
|
* \n
|
|
* This function is move-only: once called, `*this` is left in a valid but unspecified state.
|
|
*
|
|
* \par Exception safety
|
|
* Basic guarantee: exceptions thrown by move-constructing `OutputString` are propagated.
|
|
*/
|
|
system::result<OutputString> get() && noexcept(std::is_nothrow_move_constructible<OutputString>::value)
|
|
{
|
|
auto ec = error_state();
|
|
if (ec)
|
|
return ec;
|
|
return std::move(output_);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* \brief (EXPERIMENTAL) Format context for incremental SQL formatting.
|
|
* \details
|
|
* Convenience type alias for `basic_format_context`'s most common case.
|
|
*/
|
|
using format_context = basic_format_context<std::string>;
|
|
|
|
/**
|
|
* \brief (EXPERIMENTAL) The return type of \ref sequence.
|
|
* \details
|
|
* Contains a range view (as an interator/sentinel pair), a formatter function, and a glue string.
|
|
* This type satisfies the `Formattable` concept. See \ref sequence for a detailed
|
|
* description of what formatting this class does.
|
|
* \n
|
|
* Don't instantiate this class directly - use \ref sequence, instead.
|
|
* The exact definition may vary between releases.
|
|
*/
|
|
template <class It, class Sentinel, class FormatFn>
|
|
struct format_sequence_view
|
|
#ifndef BOOST_MYSQL_DOXYGEN
|
|
{
|
|
It it;
|
|
Sentinel sentinel;
|
|
FormatFn fn;
|
|
constant_string_view glue;
|
|
}
|
|
#endif
|
|
;
|
|
|
|
/**
|
|
* \brief Makes a range formattable by supplying a per-element formatter function.
|
|
* \details
|
|
* Objects returned by this function satisfy `Formattable`.
|
|
* When formatted, the formatter function `fn` is invoked for each element
|
|
* in the range. The glue string `glue` is output raw (as per \ref format_context_base::append_raw)
|
|
* between consecutive invocations of the formatter function, generating an effect
|
|
* similar to `std::ranges::views::join`.
|
|
* \n
|
|
* \par Type requirements
|
|
* - FormatFn should be move constructible.
|
|
* - Expressions `std::begin(range)` and `std::end(range)` should return an input iterator/sentinel
|
|
* pair that can be compared for (in)equality.
|
|
* - The expression `static_cast<const FormatFn&>(fn)(*std::begin(range), ctx)`
|
|
* should be well formed, with `ctx` begin a `format_context_base&`.
|
|
*
|
|
* \par Object lifetimes
|
|
* The input range is stored in \ref format_sequence_view as a view, using an iterator/sentinel pair,
|
|
* and is never copied. The caller must make sure that the elements pointed by the obtained
|
|
* iterator/sentinel are kept alive until the view is formatted.
|
|
*
|
|
* \par Exception safety
|
|
* Strong-throw guarantee. Throws any exception that `std::begin`, `std::end`
|
|
* or move-constructing `FormatFn` may throw.
|
|
*/
|
|
template <class Range, class FormatFn>
|
|
#if defined(BOOST_MYSQL_HAS_CONCEPTS)
|
|
requires std::move_constructible<FormatFn> && detail::format_fn_for_range<FormatFn, Range>
|
|
#endif
|
|
auto sequence(Range&& range, FormatFn fn, constant_string_view glue = ", ")
|
|
-> format_sequence_view<decltype(std::begin(range)), decltype(std::end(range)), FormatFn>
|
|
{
|
|
return {std::begin(range), std::end(range), std::move(fn), glue};
|
|
}
|
|
|
|
template <class It, class Sentinel, class FormatFn>
|
|
struct formatter<format_sequence_view<It, Sentinel, FormatFn>>
|
|
{
|
|
const char* parse(const char* begin, const char*) { return begin; }
|
|
|
|
void format(const format_sequence_view<It, Sentinel, FormatFn>& value, format_context_base& ctx) const
|
|
{
|
|
bool is_first = true;
|
|
for (auto it = value.it; it != value.sentinel; ++it)
|
|
{
|
|
if (!is_first)
|
|
ctx.append_raw(value.glue);
|
|
is_first = false;
|
|
value.fn(*it, ctx);
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* \brief (EXPERIMENTAL) Composes a SQL query client-side appending it to a format context.
|
|
* \details
|
|
* Parses `format_str` as a format string, substituting replacement fields (like `{}`, `{1}` or `{name}`)
|
|
* by formatted arguments, extracted from `args`.
|
|
* \n
|
|
* Formatting is performed as if \ref format_context_base::append_raw and
|
|
* \ref format_context_base::append_value were called on `ctx`, effectively appending
|
|
* characters to its output string.
|
|
* \n
|
|
* Compared to \ref format_sql, this function is more flexible, allowing the following use cases: \n
|
|
* \li Appending characters to an existing context. Can be used to concatenate the output of successive
|
|
* format operations efficiently.
|
|
* \li Using string types different to `std::string` (works with any \ref basic_format_context).
|
|
* \li Avoiding exceptions (see \ref basic_format_context::get).
|
|
*
|
|
*
|
|
* \par Exception safety
|
|
* Basic guarantee. Memory allocations may throw.
|
|
*
|
|
* \par Errors
|
|
* \li \ref client_errc::invalid_encoding if `args` contains a string with byte sequences
|
|
* that can't be decoded with the current character set.
|
|
* \li \ref client_errc::unformattable_value if `args` contains a floating-point value
|
|
* that is NaN or infinity.
|
|
* \li \ref client_errc::format_string_invalid_specifier if a replacement field includes
|
|
* a specifier not supported by the type being formatted.
|
|
* \li Any other error generated by user-defined \ref formatter specializations.
|
|
* \li \ref client_errc::format_string_invalid_syntax if `format_str` can't be parsed as
|
|
* a format string.
|
|
* \li \ref client_errc::format_string_invalid_encoding if `format_str` contains byte byte sequences
|
|
* that can't be decoded with the current character set.
|
|
* \li \ref client_errc::format_string_manual_auto_mix if `format_str` contains a mix of automatic
|
|
* (`{}`) and manual indexed (`{1}`) replacement fields.
|
|
* \li \ref client_errc::format_arg_not_found if an argument referenced by `format_str` isn't present
|
|
* in `args` (there aren't enough arguments or a named argument is not found).
|
|
*/
|
|
template <BOOST_MYSQL_FORMATTABLE... Formattable>
|
|
void format_sql_to(format_context_base& ctx, constant_string_view format_str, Formattable&&... args);
|
|
|
|
/**
|
|
* \copydoc format_sql_to
|
|
* \details
|
|
* \n
|
|
* This overload allows using named arguments.
|
|
*/
|
|
BOOST_MYSQL_DECL
|
|
void format_sql_to(
|
|
format_context_base& ctx,
|
|
constant_string_view format_str,
|
|
std::initializer_list<format_arg> args
|
|
);
|
|
|
|
/**
|
|
* \brief (EXPERIMENTAL) Composes a SQL query client-side.
|
|
* \details
|
|
* Parses `format_str` as a format string, substituting replacement fields (like `{}`, `{1}` or `{name}`)
|
|
* by formatted arguments, extracted from `args`. `opts` is using to parse the string and format string
|
|
* arguments.
|
|
* \n
|
|
* Formatting is performed as if \ref format_context::append_raw and \ref format_context::append_value
|
|
* were called on a context created by this function.
|
|
* \n
|
|
*
|
|
* \par Exception safety
|
|
* Strong guarantee. Memory allocations may throw. `boost::system::system_error` is thrown if an error
|
|
* is found while formatting. See below for more info.
|
|
*
|
|
* \par Errors
|
|
* \li \ref client_errc::invalid_encoding if `args` contains a string with byte sequences
|
|
* that can't be decoded with the current character set.
|
|
* \li \ref client_errc::unformattable_value if `args` contains a floating-point value
|
|
* that is NaN or infinity.
|
|
* \li \ref client_errc::format_string_invalid_specifier if a replacement field includes
|
|
* a specifier not supported by the type being formatted.
|
|
* \li Any other error generated by user-defined \ref formatter specializations.
|
|
* \li \ref client_errc::format_string_invalid_syntax if `format_str` can't be parsed as
|
|
* a format string.
|
|
* \li \ref client_errc::format_string_invalid_encoding if `format_str` contains byte byte sequences
|
|
* that can't be decoded with the current character set.
|
|
* \li \ref client_errc::format_string_manual_auto_mix if `format_str` contains a mix of automatic
|
|
* (`{}`) and manual indexed (`{1}`) replacement fields.
|
|
* \li \ref client_errc::format_arg_not_found if an argument referenced by `format_str` isn't present
|
|
* in `args` (there aren't enough arguments or a named argument is not found).
|
|
*/
|
|
template <BOOST_MYSQL_FORMATTABLE... Formattable>
|
|
std::string format_sql(format_options opts, constant_string_view format_str, Formattable&&... args);
|
|
|
|
/**
|
|
* \copydoc format_sql
|
|
* \details
|
|
* \n
|
|
* This overload allows using named arguments.
|
|
*/
|
|
BOOST_MYSQL_DECL
|
|
std::string format_sql(
|
|
format_options opts,
|
|
constant_string_view format_str,
|
|
std::initializer_list<format_arg> args
|
|
);
|
|
|
|
} // namespace mysql
|
|
} // namespace boost
|
|
|
|
#include <boost/mysql/impl/format_sql.hpp>
|
|
#ifdef BOOST_MYSQL_HEADER_ONLY
|
|
#include <boost/mysql/impl/format_sql.ipp>
|
|
#endif
|
|
|
|
#endif
|