New python events: inferior call, register/memory changed.
[deliverable/binutils-gdb.git] / gdb / python / py-evts.c
CommitLineData
c17a9e46
HZ
1/* Python interface to inferior events.
2
ecd75fc8 3 Copyright (C) 2009-2014 Free Software Foundation, Inc.
c17a9e46
HZ
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
d071a26b 20#include "defs.h"
c17a9e46
HZ
21#include "py-events.h"
22
9a27f2c6
PK
23#ifdef IS_PY3K
24static struct PyModuleDef EventModuleDef =
25{
26 PyModuleDef_HEAD_INIT,
27 "gdb.events",
28 NULL,
256458bc 29 -1,
9a27f2c6
PK
30 NULL,
31 NULL,
32 NULL,
33 NULL,
34 NULL
35};
36#endif
37
c17a9e46
HZ
38/* Initialize python events. */
39
5d153bd1 40static int CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
c17a9e46
HZ
41add_new_registry (eventregistry_object **registryp, char *name)
42{
aa36459a
TT
43 int result;
44
c17a9e46
HZ
45 *registryp = create_eventregistry_object ();
46
47 if (*registryp == NULL)
aa36459a 48 return -1;
c17a9e46 49
aa36459a
TT
50 return gdb_pymodule_addobject (gdb_py_events.module,
51 name,
52 (PyObject *)(*registryp));
c17a9e46
HZ
53}
54
999633ed 55int
eeae04df 56gdbpy_initialize_py_events (void)
c17a9e46 57{
9a27f2c6
PK
58#ifdef IS_PY3K
59 gdb_py_events.module = PyModule_Create (&EventModuleDef);
60#else
c17a9e46 61 gdb_py_events.module = Py_InitModule ("events", NULL);
9a27f2c6 62#endif
c17a9e46
HZ
63
64 if (!gdb_py_events.module)
999633ed 65 return -1;
c17a9e46
HZ
66
67 if (add_new_registry (&gdb_py_events.stop, "stop") < 0)
999633ed 68 return -1;
c17a9e46
HZ
69
70 if (add_new_registry (&gdb_py_events.cont, "cont") < 0)
999633ed 71 return -1;
c17a9e46
HZ
72
73 if (add_new_registry (&gdb_py_events.exited, "exited") < 0)
999633ed 74 return -1;
c17a9e46 75
162078c8
NB
76 if (add_new_registry (&gdb_py_events.inferior_call,
77 "inferior_call") < 0)
78 return -1;
79
80 if (add_new_registry (&gdb_py_events.memory_changed,
81 "memory_changed") < 0)
82 return -1;
83
84 if (add_new_registry (&gdb_py_events.register_changed,
85 "register_changed") < 0)
86 return -1;
87
20c168b5 88 if (add_new_registry (&gdb_py_events.new_objfile, "new_objfile") < 0)
999633ed 89 return -1;
20c168b5 90
4ffbba72
DE
91 if (add_new_registry (&gdb_py_events.clear_objfiles, "clear_objfiles") < 0)
92 return -1;
93
aa36459a
TT
94 if (gdb_pymodule_addobject (gdb_module,
95 "events",
96 (PyObject *) gdb_py_events.module) < 0)
999633ed 97 return -1;
c17a9e46 98
999633ed 99 return 0;
c17a9e46 100}
This page took 0.421108 seconds and 4 git commands to generate.