// (C) Copyright David Abrahams 2000. Permission to copy, use, modify, sell and // distribute this software is granted provided this copyright notice appears // in all copies. This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. // // The author gratefully acknowleges the support of Dragon Systems, Inc., in // producing this work. #define BOOST_PYTHON_SOURCE #include namespace boost { namespace python { namespace { ref name_holder; } bool module_builder_base::initializing() { return name_holder.get() != 0; } string module_builder_base::name() { // If this fails, you haven't created a module_builder object assert(initializing()); return string(name_holder); } module_builder_base::module_builder_base(const char* name) : m_module(Py_InitModule(const_cast(name), initial_methods)) { // If this fails, you've created more than 1 module_builder object in your module assert(name_holder.get() == 0); name_holder = ref(PyObject_GetAttrString(m_module, const_cast("__name__"))); } module_builder_base::~module_builder_base() { name_holder.reset(); } void module_builder_base::add(detail::function* x, const char* name) { reference f(x); // First take possession of the object. detail::function::add_to_namespace(f, name, PyModule_GetDict(m_module)); } void module_builder_base::add(ref x, const char* name) { PyObject* dictionary = PyModule_GetDict(m_module); PyDict_SetItemString(dictionary, const_cast(name), x.get()); } void module_builder_base::add(PyTypeObject* x, const char* name /*= 0*/) { this->add(ref(as_object(x)), name ? name : x->tp_name); } PyMethodDef module_builder_base::initial_methods[] = { { 0, 0, 0, 0 } }; }} // namespace boost::python