mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 21:04:15 +08:00
827c8dbf61
Found this via build-system tests of static asserts through MSVC.
263 lines
8.4 KiB
C++
263 lines
8.4 KiB
C++
/*
|
|
* Copyright (c) 2013-2015, Roland Bock
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted provided that the following conditions are met:
|
|
*
|
|
* Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
*
|
|
* Redistributions in binary form must reproduce the above copyright notice, this
|
|
* list of conditions and the following disclaimer in the documentation and/or
|
|
* other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef SQLPP_USING_H
|
|
#define SQLPP_USING_H
|
|
|
|
#include <sqlpp11/detail/type_set.h>
|
|
#include <sqlpp11/interpret_tuple.h>
|
|
#include <sqlpp11/interpretable_list.h>
|
|
#include <sqlpp11/policy_update.h>
|
|
#include <sqlpp11/type_traits.h>
|
|
|
|
namespace sqlpp
|
|
{
|
|
// USING DATA
|
|
template <typename Database, typename... Tables>
|
|
struct using_data_t
|
|
{
|
|
using_data_t(Tables... tables) : _tables(tables...)
|
|
{
|
|
}
|
|
|
|
using_data_t(const using_data_t&) = default;
|
|
using_data_t(using_data_t&&) = default;
|
|
using_data_t& operator=(const using_data_t&) = default;
|
|
using_data_t& operator=(using_data_t&&) = default;
|
|
~using_data_t() = default;
|
|
|
|
std::tuple<Tables...> _tables;
|
|
interpretable_list_t<Database> _dynamic_tables;
|
|
};
|
|
|
|
// USING
|
|
template <typename Database, typename... Tables>
|
|
struct using_t
|
|
{
|
|
using _traits = make_traits<no_value_t, tag::is_using_>;
|
|
using _nodes = detail::type_vector<Tables...>;
|
|
|
|
using _is_dynamic = is_database<Database>;
|
|
|
|
// Data
|
|
using _data_t = using_data_t<Database, Tables...>;
|
|
|
|
// Member implementation with data and methods
|
|
template <typename Policies>
|
|
struct _impl_t
|
|
{
|
|
// workaround for msvc bug https://connect.microsoft.com/VisualStudio/Feedback/Details/2173269
|
|
_impl_t() = default;
|
|
_impl_t(const _data_t& data) : _data(data)
|
|
{
|
|
}
|
|
|
|
template <typename Table>
|
|
void add(Table table)
|
|
{
|
|
static_assert(_is_dynamic::value, "add must not be called for static using()");
|
|
static_assert(is_table_t<Table>::value, "invalid table argument in add()");
|
|
using _serialize_check = sqlpp::serialize_check_t<typename Database::_serializer_context_t, Table>;
|
|
_serialize_check{};
|
|
|
|
using ok = logic::all_t<_is_dynamic::value, is_table_t<Table>::value, _serialize_check::type::value>;
|
|
|
|
_add_impl(table, ok()); // dispatch to prevent compile messages after the static_assert
|
|
}
|
|
|
|
private:
|
|
template <typename Table>
|
|
void _add_impl(Table table, const std::true_type&)
|
|
{
|
|
return _data._dynamic_tables.emplace_back(table);
|
|
}
|
|
|
|
template <typename Table>
|
|
void _add_impl(Table table, const std::false_type&);
|
|
|
|
public:
|
|
_data_t _data;
|
|
};
|
|
|
|
// Base template to be inherited by the statement
|
|
template <typename Policies>
|
|
struct _base_t
|
|
{
|
|
using _data_t = using_data_t<Database, Tables...>;
|
|
|
|
// workaround for msvc bug https://connect.microsoft.com/VisualStudio/Feedback/Details/2173269
|
|
template <typename... Args>
|
|
_base_t(Args&&... args) : using_{std::forward<Args>(args)...}
|
|
{
|
|
}
|
|
|
|
_impl_t<Policies> using_;
|
|
_impl_t<Policies>& operator()()
|
|
{
|
|
return using_;
|
|
}
|
|
const _impl_t<Policies>& operator()() const
|
|
{
|
|
return using_;
|
|
}
|
|
|
|
template <typename T>
|
|
static auto _get_member(T t) -> decltype(t.using_)
|
|
{
|
|
return t.using_;
|
|
}
|
|
|
|
// FIXME: Maybe check for unused tables, similar to from
|
|
using _consistency_check = consistent_t;
|
|
};
|
|
};
|
|
|
|
SQLPP_PORTABLE_STATIC_ASSERT(assert_using_args_are_tables_t, "arguments for using() must be tables");
|
|
template <typename... Tables>
|
|
struct check_using
|
|
{
|
|
using type = static_combined_check_t<
|
|
static_check_t<logic::all_t<is_table_t<Tables>::value...>::value, assert_using_args_are_tables_t>>;
|
|
};
|
|
template <typename... Tables>
|
|
using check_using_t = typename check_using<Tables...>::type;
|
|
|
|
// NO USING YET
|
|
struct no_using_t
|
|
{
|
|
using _traits = make_traits<no_value_t, tag::is_where>;
|
|
using _nodes = detail::type_vector<>;
|
|
|
|
// Data
|
|
using _data_t = no_data_t;
|
|
|
|
// Member implementation with data and methods
|
|
template <typename Policies>
|
|
struct _impl_t
|
|
{
|
|
// workaround for msvc bug https://connect.microsoft.com/VisualStudio/Feedback/Details/2173269
|
|
_impl_t() = default;
|
|
_impl_t(const _data_t& data) : _data(data)
|
|
{
|
|
}
|
|
|
|
_data_t _data;
|
|
};
|
|
|
|
// Base template to be inherited by the statement
|
|
template <typename Policies>
|
|
struct _base_t
|
|
{
|
|
using _data_t = no_data_t;
|
|
|
|
// workaround for msvc bug https://connect.microsoft.com/VisualStudio/Feedback/Details/2173269
|
|
template <typename... Args>
|
|
_base_t(Args&&... args) : no_using{std::forward<Args>(args)...}
|
|
{
|
|
}
|
|
|
|
_impl_t<Policies> no_using;
|
|
_impl_t<Policies>& operator()()
|
|
{
|
|
return no_using;
|
|
}
|
|
const _impl_t<Policies>& operator()() const
|
|
{
|
|
return no_using;
|
|
}
|
|
|
|
template <typename T>
|
|
static auto _get_member(T t) -> decltype(t.no_using)
|
|
{
|
|
return t.no_using;
|
|
}
|
|
|
|
using _database_t = typename Policies::_database_t;
|
|
|
|
template <typename Check, typename T>
|
|
using _new_statement_t = new_statement_t<Check, Policies, no_using_t, T>;
|
|
|
|
using _consistency_check = consistent_t;
|
|
|
|
template <typename... Tables>
|
|
auto using_(Tables... tables) const -> _new_statement_t<check_using_t<Tables...>, using_t<void, Tables...>>
|
|
{
|
|
static_assert(not detail::has_duplicates<Tables...>::value,
|
|
"at least one duplicate argument detected in using()");
|
|
static_assert(sizeof...(Tables), "at least one table required in using()");
|
|
|
|
return {_using_impl<void>(check_using_t<Tables...>{}, tables...)};
|
|
}
|
|
|
|
template <typename... Tables>
|
|
auto dynamic_using(Tables... tables) const
|
|
-> _new_statement_t<check_using_t<Tables...>, using_t<_database_t, Tables...>>
|
|
{
|
|
static_assert(not std::is_same<_database_t, void>::value,
|
|
"dynamic_using must not be called in a static statement");
|
|
|
|
return {_using_impl<_database_t>(check_using_t<Tables...>{}, tables...)};
|
|
}
|
|
|
|
private:
|
|
template <typename Database, typename Check, typename... Tables>
|
|
auto _using_impl(Check, Tables... tables) const -> inconsistent<Check>;
|
|
|
|
template <typename Database, typename... Tables>
|
|
auto _using_impl(consistent_t, Tables... tables) const
|
|
-> _new_statement_t<consistent_t, using_t<_database_t, Tables...>>
|
|
{
|
|
static_assert(not detail::has_duplicates<Tables...>::value,
|
|
"at least one duplicate argument detected in using()");
|
|
|
|
return {static_cast<const derived_statement_t<Policies>&>(*this), using_data_t<Database, Tables...>{tables...}};
|
|
}
|
|
};
|
|
};
|
|
|
|
// Interpreters
|
|
template <typename Context, typename Database, typename... Tables>
|
|
struct serializer_t<Context, using_data_t<Database, Tables...>>
|
|
{
|
|
using _serialize_check = serialize_check_of<Context, Tables...>;
|
|
using T = using_data_t<Database, Tables...>;
|
|
|
|
static Context& _(const T& t, Context& context)
|
|
{
|
|
if (sizeof...(Tables) == 0 and t._dynamic_tables.empty())
|
|
return context;
|
|
context << " USING ";
|
|
interpret_tuple(t._tables, ',', context);
|
|
if (sizeof...(Tables) and not t._dynamic_tables.empty())
|
|
context << ',';
|
|
interpret_list(t._dynamic_tables, ',', context);
|
|
return context;
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif
|