drgn/libdrgn/python/language.c
Omar Sandoval 87b7292aa5 Relicense drgn from GPLv3+ to LGPLv2.1+
drgn is currently licensed as GPLv3+. Part of the long term vision for
drgn is that other projects can use it as a library providing
programmatic interfaces for debugger functionality. A more permissive
license is better suited to this goal. We decided on LGPLv2.1+ as a good
balance between software freedom and permissiveness.

All contributors not employed by Meta were contacted via email and
consented to the license change. The only exception was the author of
commit c4fbf7e589 ("libdrgn: fix for compilation error"), who did not
respond. That commit reverted a single line of code to one originally
written by me in commit 640b1c011d ("libdrgn: embed DWARF index in
DWARF info cache").

Signed-off-by: Omar Sandoval <osandov@osandov.com>
2022-11-01 17:05:16 -07:00

83 lines
2.0 KiB
C

// Copyright (c) Meta Platforms, Inc. and affiliates.
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "drgnpy.h"
#include "../array.h"
#include "../language.h"
static PyObject *Language_repr(Language *self)
{
return PyUnicode_FromFormat("Language.%s", self->attr_name);
}
static PyObject *Language_get_name(Language *self, void *arg)
{
return PyUnicode_FromString(self->language->name);
}
static PyGetSetDef Language_getset[] = {
{"name", (getter)Language_get_name, NULL, drgn_Language_name_DOC, NULL},
{},
};
PyTypeObject Language_type = {
PyVarObject_HEAD_INIT(NULL, 0)
.tp_name = "_drgn.Language",
.tp_basicsize = sizeof(Language),
.tp_repr = (reprfunc)Language_repr,
.tp_flags = Py_TPFLAGS_DEFAULT,
.tp_doc = drgn_Language_DOC,
.tp_getset = Language_getset,
};
static PyObject *languages_py[DRGN_NUM_LANGUAGES];
PyObject *Language_wrap(const struct drgn_language *language)
{
PyObject *obj = languages_py[language->number];
Py_INCREF(obj);
return obj;
}
int language_converter(PyObject *o, void *p)
{
const struct drgn_language **ret = p;
if (o == Py_None) {
*ret = NULL;
return 1;
} else if (PyObject_TypeCheck(o, &Language_type)) {
*ret = ((Language *)o)->language;
return 1;
} else {
PyErr_Format(PyExc_TypeError,
"expected Language, not %s",
Py_TYPE(o)->tp_name);
return 0;
}
}
int add_languages(void)
{
static const char * const attr_names[] = {
[DRGN_LANGUAGE_C] = "C",
[DRGN_LANGUAGE_CPP] = "CPP",
};
static_assert(array_size(attr_names) == DRGN_NUM_LANGUAGES,
"missing language in attr_names");
for (size_t i = 0; i < DRGN_NUM_LANGUAGES; i++) {
Language *language_obj = call_tp_alloc(Language);
if (!language_obj)
return -1;
language_obj->attr_name = attr_names[i];
language_obj->language = drgn_languages[i];
languages_py[i] = (PyObject *)language_obj;
int ret = PyDict_SetItemString(Language_type.tp_dict,
attr_names[i],
(PyObject *)language_obj);
if (ret)
return ret;
}
return 0;
}