1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// Copyright (C) by Josh Blum. See LICENSE.txt for licensing information.
#ifndef INCLUDED_GRAS_FACTORY_HPP
#define INCLUDED_GRAS_FACTORY_HPP
#include <gras/gras.hpp>
#include <gras/element.hpp>
#include <PMC/PMC.hpp>
#include <vector>
#include <string>
namespace gras
{
/*!
* The just in time factory:
* Compile a C++ source and load it into the element factory.
*
* Flags are an optional list of compiler flags.
* See the man page for clang for possible options.
* Example: flags.push_back("-O3")
*
* Include directories control the header file search path.
* Users may leave this empty unless headers
* are installed into non-standard directories.
*
* \param source C++ source code in a string
* \param flags optional compiler flags
*/
GRAS_API void jit_factory(const std::string &source, const std::vector<std::string> &flags);
/***********************************************************************
* Register API - don't look here, template magic, not helpful
* Example register a factory function:
* gras::register_factory("/proj/my_block", &make_my_block);
**********************************************************************/
#for $NARGS in range($MAX_ARGS)
template <typename ReturnType, $expand('typename A%d', $NARGS)>
static void register_factory(const std::string &path, ReturnType(*fcn)($expand('const A%d &', $NARGS)));
#end for
/***********************************************************************
* Make API - don't look here, template magic, not helpful
* Example call into the factory:
* gras::Element *my_block = gras::make("/proj/my_block", arg0, arg1);
**********************************************************************/
#for $NARGS in range($MAX_ARGS)
template <$expand('typename A%d', $NARGS)>
static Element *make(const std::string &path, $expand('const A%d &', $NARGS));
#end for
//! Register factory functions into the global factory.
GRAS_API void _register_factory(const std::string &, void *);
//! Call make() to create element from global factory.
GRAS_API Element *_handle_make(const std::string &, const PMCC &);
}
/*!
* Register a block's factory function:
* Declare this macro at the global scope in a cpp file.
* The block will register at static initialization time.
*/
#define GRAS_REGISTER_FACTORY(path, fcn) \
GRAS_STATIC_BLOCK(fcn) \
{gras::register_factory(path, &fcn);}
#for $NARGS in range($MAX_ARGS)
/*!
* Register a block's constructor into the factory:
* The arguments to this macro must be the types of each constructor argument.
* Example: GRAS_REGISTER_FACTORY2("/proj/my_block", MyBlock, std::string, size_t)
* Declare this macro at the global scope in a cpp file.
* The block will register at static initialization time.
*/
#define GRAS_REGISTER_FACTORY$(NARGS)(path, type, $expand('A%d', $NARGS)) \
static gras::Element *make_ $('##') type($expand('const A%d &a%d', $NARGS)) \
{ return new type($expand('a%d', $NARGS)); } \
GRAS_REGISTER_FACTORY(path, make_$('##')type)
#end for
#include <gras/detail/factory.hpp>
#endif /*INCLUDED_GRAS_FACTORY_HPP*/
|