2013-10-02 16:55:36 +08:00
|
|
|
/*
|
2014-03-27 23:43:36 +08:00
|
|
|
* Copyright (c) 2013-2014, Roland Bock
|
2013-10-02 16:55:36 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-01-18 22:50:16 +08:00
|
|
|
#ifndef SQLPP_IN_H
|
|
|
|
#define SQLPP_IN_H
|
2013-10-02 16:55:36 +08:00
|
|
|
|
|
|
|
#include <sqlpp11/type_traits.h>
|
2014-12-01 02:40:34 +08:00
|
|
|
#include <sqlpp11/char_sequence.h>
|
2014-01-15 14:38:53 +08:00
|
|
|
#include <sqlpp11/boolean.h>
|
2014-06-14 00:51:51 +08:00
|
|
|
#include <sqlpp11/in_fwd.h>
|
2014-02-02 21:58:08 +08:00
|
|
|
#include <sqlpp11/detail/type_set.h>
|
2013-10-02 16:55:36 +08:00
|
|
|
|
|
|
|
namespace sqlpp
|
|
|
|
{
|
2014-12-01 02:40:34 +08:00
|
|
|
template<typename Operand, typename... Args>
|
2014-08-25 14:43:42 +08:00
|
|
|
struct in_t:
|
2014-12-01 02:40:34 +08:00
|
|
|
public expression_operators<in_t<Operand, Args...>, boolean>,
|
|
|
|
public alias_operators<in_t<Operand, Args...>>
|
2014-06-14 13:45:10 +08:00
|
|
|
{
|
2014-09-26 15:03:26 +08:00
|
|
|
using _traits = make_traits<boolean, tag::is_expression, tag::is_selectable>;
|
2014-06-14 13:45:10 +08:00
|
|
|
using _recursive_traits = make_recursive_traits<Operand, Args...>;
|
2014-05-16 05:47:16 +08:00
|
|
|
|
2014-06-14 13:45:10 +08:00
|
|
|
static_assert(sizeof...(Args) > 0, "in() requires at least one argument");
|
2013-10-02 16:55:36 +08:00
|
|
|
|
2014-12-01 02:40:34 +08:00
|
|
|
struct _alias_t
|
2014-06-14 13:45:10 +08:00
|
|
|
{
|
2014-12-01 02:40:34 +08:00
|
|
|
static constexpr const char _literal[] = "in_";
|
|
|
|
using _name_t = sqlpp::make_char_sequence<sizeof(_literal), _literal>;
|
2014-06-14 13:45:10 +08:00
|
|
|
template<typename T>
|
|
|
|
struct _member_t
|
|
|
|
{
|
|
|
|
T in;
|
|
|
|
};
|
|
|
|
};
|
2013-10-02 16:55:36 +08:00
|
|
|
|
2014-06-14 13:45:10 +08:00
|
|
|
in_t(Operand operand, Args... args):
|
|
|
|
_operand(operand),
|
|
|
|
_args(args...)
|
|
|
|
{}
|
2013-10-02 16:55:36 +08:00
|
|
|
|
2014-06-14 13:45:10 +08:00
|
|
|
in_t(const in_t&) = default;
|
|
|
|
in_t(in_t&&) = default;
|
|
|
|
in_t& operator=(const in_t&) = default;
|
|
|
|
in_t& operator=(in_t&&) = default;
|
|
|
|
~in_t() = default;
|
2013-10-02 16:55:36 +08:00
|
|
|
|
2014-06-14 13:45:10 +08:00
|
|
|
Operand _operand;
|
|
|
|
std::tuple<Args...> _args;
|
|
|
|
};
|
2014-01-15 14:38:53 +08:00
|
|
|
|
2014-12-01 02:40:34 +08:00
|
|
|
template<typename Context, typename Operand, typename... Args>
|
|
|
|
struct serializer_t<Context, in_t<Operand, Args...>>
|
2014-06-14 13:45:10 +08:00
|
|
|
{
|
2014-11-26 00:43:55 +08:00
|
|
|
using _serialize_check = serialize_check_of<Context, Args...>;
|
2014-12-01 02:40:34 +08:00
|
|
|
using T = in_t<Operand, Args...>;
|
2014-01-18 22:50:16 +08:00
|
|
|
|
2014-06-14 13:45:10 +08:00
|
|
|
static Context& _(const T& t, Context& context)
|
|
|
|
{
|
|
|
|
serialize(t._operand, context);
|
2014-12-01 02:40:34 +08:00
|
|
|
context << " IN(";
|
2014-10-03 14:51:27 +08:00
|
|
|
if (sizeof...(Args) == 1)
|
2014-12-04 00:21:12 +08:00
|
|
|
serialize(std::get<0>(t._args), context);
|
2014-10-03 14:51:27 +08:00
|
|
|
else
|
|
|
|
interpret_tuple(t._args, ',', context);
|
2014-06-14 13:45:10 +08:00
|
|
|
context << ')';
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
};
|
2014-01-15 14:38:53 +08:00
|
|
|
|
2013-10-02 16:55:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|