Imported Upstream version 3.2.2
[debian/gnuradio] / mblock / src / include / mblock / class_registry.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2007,2008 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 #ifndef INCLUDED_MB_CLASS_REGISTRY_H
22 #define INCLUDED_MB_CLASS_REGISTRY_H
23
24 #include <mblock/common.h>
25
26 //! conceptually, pointer to constructor
27 typedef mb_mblock_sptr (*mb_mblock_maker_t)(mb_runtime *runtime,
28                                             const std::string &instance_name,
29                                             pmt_t user_arg);
30
31 /*
32  * \brief Maintain mapping between mblock class_name and factory (maker)
33  */
34 class mb_class_registry : public boost::noncopyable {
35 public:
36   static bool register_maker(const std::string &name, mb_mblock_maker_t maker);
37   static bool lookup_maker(const std::string &name, mb_mblock_maker_t *maker);
38 };
39
40 template<class mblock>
41 mb_mblock_sptr mb_mblock_maker(mb_runtime *runtime,
42                                const std::string &instance_name,
43                                pmt_t user_arg)
44 {
45   return mb_mblock_sptr(new mblock(runtime, instance_name, user_arg));
46 }
47
48 #define REGISTER_MBLOCK_CLASS(name) \
49   bool __RBC__ ## name = mb_class_registry::register_maker(#name, &mb_mblock_maker<name>)
50
51 #endif /* INCLUDED_MB_CLASS_REGISTRY_H */