1 /* Gdb/Python header for private use by Python module.
3 Copyright (C) 2008, 2009 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program 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 of the License, or
10 (at your option) any later version.
12 This program 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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #ifndef GDB_PYTHON_INTERNAL_H
21 #define GDB_PYTHON_INTERNAL_H
23 /* Python 2.4 doesn't include stdint.h soon enough to get {u,}intptr_t
24 needed by pyport.h. */
27 /* /usr/include/features.h on linux systems will define _POSIX_C_SOURCE
28 if it sees _GNU_SOURCE (which config.h will define).
29 pyconfig.h defines _POSIX_C_SOURCE to a different value than
30 /usr/include/features.h does causing compilation to fail.
31 To work around this, undef _POSIX_C_SOURCE before we include Python.h. */
32 #undef _POSIX_C_SOURCE
35 #include "python2.4/Python.h"
36 /* Py_ssize_t is not defined until 2.5.
37 Logical type for Py_ssize_t is Py_intptr_t, but that fails in 64-bit
38 compilation due to several apparent mistakes in python2.4 API, so we
40 typedef int Py_ssize_t
;
41 #elif HAVE_LIBPYTHON2_5
42 #include "python2.5/Python.h"
43 #elif HAVE_LIBPYTHON2_6
44 #include "python2.6/Python.h"
46 #error "Unable to find usable Python.h"
49 /* If Python.h does not define WITH_THREAD, then the various
50 GIL-related functions will not be defined. However,
51 PyGILState_STATE will be. */
53 #define PyGILState_Ensure() ((PyGILState_STATE) 0)
54 #define PyGILState_Release(ARG) (ARG)
55 #define PyEval_InitThreads() 0
56 #define PyThreadState_Swap(ARG) (ARG)
57 #define PyEval_InitThreads() 0
58 #define PyEval_ReleaseLock() 0
63 extern PyObject
*gdb_module
;
64 extern PyTypeObject value_object_type
;
66 PyObject
*gdbpy_history (PyObject
*self
, PyObject
*args
);
67 PyObject
*gdbpy_frame_stop_reason_string (PyObject
*, PyObject
*);
68 PyObject
*gdbpy_selected_frame (PyObject
*self
, PyObject
*args
);
70 PyObject
*value_to_value_object (struct value
*v
);
72 struct value
*convert_value_from_python (PyObject
*obj
);
74 void gdbpy_initialize_values (void);
75 void gdbpy_initialize_frames (void);
76 void gdbpy_initialize_commands (void);
77 void gdbpy_initialize_functions (void);
79 struct cleanup
*make_cleanup_py_decref (PyObject
*py
);
80 struct cleanup
*make_cleanup_py_restore_gil (PyGILState_STATE
*state
);
82 /* Use this after a TRY_EXCEPT to throw the appropriate Python
84 #define GDB_PY_HANDLE_EXCEPTION(Exception) \
86 if (Exception.reason < 0) \
87 return PyErr_Format (Exception.reason == RETURN_QUIT \
88 ? PyExc_KeyboardInterrupt : PyExc_RuntimeError, \
89 "%s", Exception.message); \
93 void gdbpy_print_stack (void);
95 PyObject
*python_string_to_unicode (PyObject
*obj
);
96 char *unicode_to_target_string (PyObject
*unicode_str
);
97 char *python_string_to_target_string (PyObject
*obj
);
98 char *python_string_to_host_string (PyObject
*obj
);
99 PyObject
*target_string_to_unicode (const gdb_byte
*str
, int length
);
100 int gdbpy_is_string (PyObject
*obj
);
102 extern PyObject
*gdbpy_doc_cst
;
104 #endif /* GDB_PYTHON_INTERNAL_H */