111 lines
3.3 KiB
C++
111 lines
3.3 KiB
C++
/*
|
|
* nextpnr -- Next Generation Place and Route
|
|
*
|
|
* Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
|
|
* Copyright (C) 2018 David Shah <david@symbioticeda.com>
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#ifndef PYWRAPPERS_H
|
|
#define PYWRAPPERS_H
|
|
|
|
#include <boost/function_types/function_arity.hpp>
|
|
#include <boost/function_types/function_type.hpp>
|
|
#include <boost/function_types/parameter_types.hpp>
|
|
#include <boost/function_types/result_type.hpp>
|
|
#include <boost/python.hpp>
|
|
#include <boost/python/suite/indexing/map_indexing_suite.hpp>
|
|
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
|
|
#include <utility>
|
|
#include "nextpnr.h"
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
using namespace boost::python;
|
|
|
|
namespace PythonConversion {
|
|
template <typename T> struct ContextualWrapper
|
|
{
|
|
Context *ctx;
|
|
T base;
|
|
|
|
ContextualWrapper(Context *c, T &&x) : ctx(c), base(x){};
|
|
|
|
operator T() { return base; };
|
|
typedef T base_type;
|
|
};
|
|
|
|
template <typename T> ContextualWrapper<T> wrap_ctx(Context *ctx, T x) { return ContextualWrapper<T>(ctx, x); }
|
|
|
|
// Dummy class, to be implemented by users
|
|
template <typename T> class string_converter;
|
|
|
|
// Action options
|
|
template <typename T> class do_nothing
|
|
{
|
|
T operator()(Context *ctx, T x) { return x; }
|
|
|
|
using ret_type = T;
|
|
using arg_type = T;
|
|
};
|
|
|
|
template <typename T> class wrap_context
|
|
{
|
|
ContextualWrapper<T> operator()(Context *ctx, T x) { return ContextualWrapper<T>(ctx, x); }
|
|
using arg_type = T;
|
|
using ret_type = ContextualWrapper<T>;
|
|
};
|
|
|
|
template <typename T> class unwrap_context
|
|
{
|
|
T operator()(Context *ctx, ContextualWrapper<T> x) { return x.base; }
|
|
using ret_type = T;
|
|
using arg_type = ContextualWrapper<T>;
|
|
};
|
|
|
|
template <typename T> class conv_from_string
|
|
{
|
|
T operator()(Context *ctx, std::string x) { return string_converter<T>().from_str(ctx, x); }
|
|
using ret_type = T;
|
|
using arg_type = std::string;
|
|
};
|
|
|
|
template <typename T> class conv_to_string
|
|
{
|
|
std::string operator()(Context *ctx, T x) { return string_converter<T>().to_str(ctx, x); }
|
|
using ret_type = std::string;
|
|
using arg_type = T;
|
|
};
|
|
|
|
// Function wrapper
|
|
// Example: one parameter, one return
|
|
template <typename Class, typename FuncT, FuncT fn, typename rv_conv, typename arg1_conv> struct function_wrapper
|
|
{
|
|
using class_type = ContextualWrapper<Class>;
|
|
using conv_result_type = typename rv_conv::ret_type;
|
|
using conv_arg1_type = typename arg1_conv::arg_type;
|
|
|
|
static conv_result_type wrapped_fn(class_type &cls, conv_arg1_type arg1)
|
|
{
|
|
return rv_conv()(cls.ctx, cls.base.*fn(arg1_conv()(cls.ctx, arg1)));
|
|
}
|
|
};
|
|
|
|
} // namespace PythonConversion
|
|
|
|
NEXTPNR_NAMESPACE_END
|
|
|
|
#endif
|