| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- // Filename: interfaceMakerPython.cxx
- // Created by: drose (21Sep01)
- //
- ////////////////////////////////////////////////////////////////////
- //
- // PANDA 3D SOFTWARE
- // Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
- //
- // All use of this software is subject to the terms of the Panda 3d
- // Software license. You should have received a copy of this license
- // along with this source code; you will also find a current copy of
- // the license at http://etc.cmu.edu/panda3d/docs/license/ .
- //
- // To contact the maintainers of this program write to
- // [email protected] .
- //
- ////////////////////////////////////////////////////////////////////
- #include "interfaceMakerPython.h"
- #include "interrogate.h"
- ////////////////////////////////////////////////////////////////////
- // Function: InterfaceMakerPython::Constructor
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- InterfaceMakerPython::
- InterfaceMakerPython(InterrogateModuleDef *def) :
- InterfaceMaker(def)
- {
- }
- ////////////////////////////////////////////////////////////////////
- // Function: InterfaceMakerPython::write_includes
- // Access: Public, Virtual
- // Description: Generates the list of #include ... whatever that's
- // required by this particular interface to the
- // indicated output stream.
- ////////////////////////////////////////////////////////////////////
- void InterfaceMakerPython::
- write_includes(ostream &out) {
- InterfaceMaker::write_includes(out);
- out << "#undef HAVE_LONG_LONG\n"
- << "#undef _POSIX_C_SOURCE\n\n"
- << "#if PYTHON_FRAMEWORK\n"
- << " #include \"Python/Python.h\"\n"
- << "#else\n"
- << " #include \"Python.h\"\n"
- << "#endif\n"
- << "#ifdef HAVE_LONG_LONG\n"
- << "#undef HAVE_LONG_LONG\n"
- << "#endif \n";
- }
- ////////////////////////////////////////////////////////////////////
- // Function: InterfaceMakerPython::test_assert
- // Access: Protected
- // Description: Outputs code to check to see if an assertion has
- // failed while the C++ code was executing, and report
- // this failure back to Python.
- ////////////////////////////////////////////////////////////////////
- void InterfaceMakerPython::
- test_assert(ostream &out, int indent_level) const {
- if (watch_asserts) {
- out << "#ifndef NDEBUG\n";
- indent(out, indent_level)
- << "Notify *notify = Notify::ptr();\n";
- indent(out, indent_level)
- << "if (notify->has_assert_failed()) {\n";
- indent(out, indent_level + 2)
- << "PyErr_SetString(PyExc_AssertionError, notify->get_assert_error_message().c_str());\n";
- indent(out, indent_level + 2)
- << "notify->clear_assert_failed();\n";
- indent(out, indent_level + 2)
- << "return (PyObject *)NULL;\n";
- indent(out, indent_level)
- << "}\n";
- indent(out, indent_level)
- << "if (PyErr_Occurred()) {\n";
- indent(out, indent_level + 2)
- << "return (PyObject *)NULL;\n";
- indent(out, indent_level)
- << "}\n";
- out << "#endif\n";
- }
- }
|