2011-02-05 06:27:23 +01:00
|
|
|
/* Python interface to inferior exit events.
|
|
|
|
|
2014-01-01 04:54:24 +01:00
|
|
|
Copyright (C) 2009-2014 Free Software Foundation, Inc.
|
2011-02-05 06:27:23 +01:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
2012-11-08 20:38:43 +01:00
|
|
|
#include "defs.h"
|
2011-02-05 06:27:23 +01:00
|
|
|
#include "py-event.h"
|
|
|
|
|
2013-05-20 22:09:01 +02:00
|
|
|
static PyTypeObject exited_event_object_type
|
|
|
|
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("event_object");
|
2011-02-05 06:27:23 +01:00
|
|
|
|
2011-06-03 17:32:44 +02:00
|
|
|
static PyObject *
|
2011-10-04 10:04:13 +02:00
|
|
|
create_exited_event_object (const LONGEST *exit_code, struct inferior *inf)
|
2011-02-05 06:27:23 +01:00
|
|
|
{
|
|
|
|
PyObject *exited_event;
|
2012-08-15 16:22:02 +02:00
|
|
|
PyObject *inf_obj = NULL;
|
2011-02-05 06:27:23 +01:00
|
|
|
|
|
|
|
exited_event = create_event_object (&exited_event_object_type);
|
|
|
|
|
|
|
|
if (!exited_event)
|
|
|
|
goto fail;
|
|
|
|
|
2012-08-15 16:22:02 +02:00
|
|
|
if (exit_code)
|
|
|
|
{
|
|
|
|
PyObject *exit_code_obj = PyLong_FromLongLong (*exit_code);
|
|
|
|
int failed;
|
|
|
|
|
|
|
|
if (exit_code_obj == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
failed = evpy_add_attribute (exited_event, "exit_code",
|
|
|
|
exit_code_obj) < 0;
|
|
|
|
Py_DECREF (exit_code_obj);
|
|
|
|
if (failed)
|
|
|
|
goto fail;
|
|
|
|
}
|
2011-02-05 06:27:23 +01:00
|
|
|
|
2011-10-04 10:04:13 +02:00
|
|
|
inf_obj = inferior_to_inferior_object (inf);
|
|
|
|
if (!inf_obj || evpy_add_attribute (exited_event,
|
|
|
|
"inferior",
|
|
|
|
inf_obj) < 0)
|
|
|
|
goto fail;
|
2012-08-15 16:22:02 +02:00
|
|
|
Py_DECREF (inf_obj);
|
2011-10-04 10:04:13 +02:00
|
|
|
|
2011-02-05 06:27:23 +01:00
|
|
|
return exited_event;
|
|
|
|
|
2012-08-15 16:22:02 +02:00
|
|
|
fail:
|
|
|
|
Py_XDECREF (inf_obj);
|
|
|
|
Py_XDECREF (exited_event);
|
|
|
|
return NULL;
|
2011-02-05 06:27:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Callback that is used when an exit event occurs. This function
|
|
|
|
will create a new Python exited event object. */
|
|
|
|
|
|
|
|
int
|
2011-10-04 10:04:13 +02:00
|
|
|
emit_exited_event (const LONGEST *exit_code, struct inferior *inf)
|
2011-02-05 06:27:23 +01:00
|
|
|
{
|
|
|
|
PyObject *event;
|
|
|
|
|
|
|
|
if (evregpy_no_listeners_p (gdb_py_events.exited))
|
|
|
|
return 0;
|
|
|
|
|
2011-10-04 10:04:13 +02:00
|
|
|
event = create_exited_event_object (exit_code, inf);
|
2011-02-05 06:27:23 +01:00
|
|
|
|
|
|
|
if (event)
|
|
|
|
return evpy_emit_event (event, gdb_py_events.exited);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GDBPY_NEW_EVENT_TYPE (exited,
|
|
|
|
"gdb.ExitedEvent",
|
|
|
|
"ExitedEvent",
|
|
|
|
"GDB exited event object",
|
|
|
|
event_object_type,
|
|
|
|
static);
|