1 /* Python interface to lazy strings.
3 Copyright (C) 2010-2014 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/>. */
21 #include "python-internal.h"
24 #include "exceptions.h"
30 /* Holds the address of the lazy string. */
33 /* Holds the encoding that will be applied to the string
34 when the string is printed by GDB. If the encoding is set
35 to None then GDB will select the most appropriate
36 encoding when the sting is printed. */
39 /* Holds the length of the string in characters. If the
40 length is -1, then the string will be fetched and encoded up to
41 the first null of appropriate width. */
44 /* This attribute holds the type that is represented by the lazy
49 static PyTypeObject lazy_string_object_type
50 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("lazy_string_object");
53 stpy_get_address (PyObject *self, void *closure)
55 lazy_string_object *self_string = (lazy_string_object *) self;
57 return gdb_py_long_from_ulongest (self_string->address);
61 stpy_get_encoding (PyObject *self, void *closure)
63 lazy_string_object *self_string = (lazy_string_object *) self;
66 /* An encoding can be set to NULL by the user, so check before
67 attempting a Python FromString call. If NULL return Py_None. */
68 if (self_string->encoding)
69 result = PyString_FromString (self_string->encoding);
80 stpy_get_length (PyObject *self, void *closure)
82 lazy_string_object *self_string = (lazy_string_object *) self;
84 return PyLong_FromLong (self_string->length);
88 stpy_get_type (PyObject *self, void *closure)
90 lazy_string_object *str_obj = (lazy_string_object *) self;
92 return type_to_type_object (str_obj->type);
96 stpy_convert_to_value (PyObject *self, PyObject *args)
98 lazy_string_object *self_string = (lazy_string_object *) self;
99 struct value *val = NULL;
100 volatile struct gdb_exception except;
102 if (self_string->address == 0)
104 PyErr_SetString (PyExc_MemoryError,
105 _("Cannot create a value from NULL."));
109 TRY_CATCH (except, RETURN_MASK_ALL)
111 val = value_at_lazy (self_string->type, self_string->address);
113 GDB_PY_HANDLE_EXCEPTION (except);
115 return value_to_value_object (val);
119 stpy_dealloc (PyObject *self)
121 lazy_string_object *self_string = (lazy_string_object *) self;
123 xfree (self_string->encoding);
127 gdbpy_create_lazy_string_object (CORE_ADDR address, long length,
128 const char *encoding, struct type *type)
130 lazy_string_object *str_obj = NULL;
132 if (address == 0 && length != 0)
134 PyErr_SetString (PyExc_MemoryError,
135 _("Cannot create a lazy string with address 0x0, " \
136 "and a non-zero length."));
142 PyErr_SetString (PyExc_RuntimeError,
143 _("A lazy string's type cannot be NULL."));
147 str_obj = PyObject_New (lazy_string_object, &lazy_string_object_type);
151 str_obj->address = address;
152 str_obj->length = length;
153 if (encoding == NULL || !strcmp (encoding, ""))
154 str_obj->encoding = NULL;
156 str_obj->encoding = xstrdup (encoding);
157 str_obj->type = type;
159 return (PyObject *) str_obj;
163 gdbpy_initialize_lazy_string (void)
165 if (PyType_Ready (&lazy_string_object_type) < 0)
168 Py_INCREF (&lazy_string_object_type);
172 /* Determine whether the printer object pointed to by OBJ is a
173 Python lazy string. */
175 gdbpy_is_lazy_string (PyObject *result)
177 return PyObject_TypeCheck (result, &lazy_string_object_type);
180 /* Extract the parameters from the lazy string object STRING.
181 ENCODING will either be set to NULL, or will be allocated with
182 xmalloc, in which case the callers is responsible for freeing
186 gdbpy_extract_lazy_string (PyObject *string, CORE_ADDR *addr,
187 struct type **str_type,
188 long *length, char **encoding)
190 lazy_string_object *lazy;
192 gdb_assert (gdbpy_is_lazy_string (string));
194 lazy = (lazy_string_object *) string;
196 *addr = lazy->address;
197 *str_type = lazy->type;
198 *length = lazy->length;
199 *encoding = lazy->encoding ? xstrdup (lazy->encoding) : NULL;
204 static PyMethodDef lazy_string_object_methods[] = {
205 { "value", stpy_convert_to_value, METH_NOARGS,
206 "Create a (lazy) value that contains a pointer to the string." },
207 {NULL} /* Sentinel */
211 static PyGetSetDef lazy_string_object_getset[] = {
212 { "address", stpy_get_address, NULL, "Address of the string.", NULL },
213 { "encoding", stpy_get_encoding, NULL, "Encoding of the string.", NULL },
214 { "length", stpy_get_length, NULL, "Length of the string.", NULL },
215 { "type", stpy_get_type, NULL, "Type associated with the string.", NULL },
216 { NULL } /* Sentinel */
219 static PyTypeObject lazy_string_object_type = {
220 PyVarObject_HEAD_INIT (NULL, 0)
221 "gdb.LazyString", /*tp_name*/
222 sizeof (lazy_string_object), /*tp_basicsize*/
224 stpy_dealloc, /*tp_dealloc*/
231 0, /*tp_as_sequence*/
239 Py_TPFLAGS_DEFAULT, /*tp_flags*/
240 "GDB lazy string object", /* tp_doc */
243 0, /* tp_richcompare */
244 0, /* tp_weaklistoffset */
247 lazy_string_object_methods, /* tp_methods */
249 lazy_string_object_getset /* tp_getset */