]> sigrok.org Git - libsigrokdecode.git/blob - exception.c
exception: Decorate catch function with format attribute
[libsigrokdecode.git] / exception.c
1 /*
2  * This file is part of the libsigrokdecode project.
3  *
4  * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <config.h>
21 #include "libsigrokdecode-internal.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
22 #include "libsigrokdecode.h"
23 #include <stdarg.h>
24 #include <glib.h>
25
26 static char *py_stringify(PyObject *py_obj)
27 {
28         PyObject *py_str, *py_bytes;
29         char *str = NULL;
30
31         if (!py_obj)
32                 return NULL;
33
34         py_str = PyObject_Str(py_obj);
35         if (!py_str || !PyUnicode_Check(py_str))
36                 goto cleanup;
37
38         py_bytes = PyUnicode_AsUTF8String(py_str);
39         if (!py_bytes)
40                 goto cleanup;
41
42         str = g_strdup(PyBytes_AsString(py_bytes));
43         Py_DECREF(py_bytes);
44
45 cleanup:
46         Py_XDECREF(py_str);
47         if (!str) {
48                 PyErr_Clear();
49                 srd_dbg("Failed to stringify object.");
50         }
51         return str;
52 }
53
54 static char *py_get_string_attr(PyObject *py_obj, const char *attr)
55 {
56         PyObject *py_str, *py_bytes;
57         char *str = NULL;
58
59         if (!py_obj)
60                 return NULL;
61
62         py_str = PyObject_GetAttrString(py_obj, attr);
63         if (!py_str || !PyUnicode_Check(py_str))
64                 goto cleanup;
65
66         py_bytes = PyUnicode_AsUTF8String(py_str);
67         if (!py_bytes)
68                 goto cleanup;
69
70         str = g_strdup(PyBytes_AsString(py_bytes));
71         Py_DECREF(py_bytes);
72
73 cleanup:
74         Py_XDECREF(py_str);
75         if (!str) {
76                 PyErr_Clear();
77                 srd_dbg("Failed to get object attribute %s.", attr);
78         }
79         return str;
80 }
81
82 /** @private */
83 SRD_PRIV void srd_exception_catch(const char *format, ...)
84 {
85         va_list args;
86         PyObject *py_etype, *py_evalue, *py_etraceback;
87         PyObject *py_mod, *py_func, *py_tracefmt;
88         char *msg, *etype_name, *evalue_str, *tracefmt_str;
89         const char *etype_name_fallback;
90
91         py_etype = py_evalue = py_etraceback = py_mod = py_func = NULL;
92
93         va_start(args, format);
94         msg = g_strdup_vprintf(format, args);
95         va_end(args);
96
97         PyErr_Fetch(&py_etype, &py_evalue, &py_etraceback);
98         if (!py_etype) {
99                 /* No current exception, so just print the message. */
100                 srd_err("%s.", msg);
101                 goto cleanup;
102         }
103         PyErr_NormalizeException(&py_etype, &py_evalue, &py_etraceback);
104
105         etype_name = py_get_string_attr(py_etype, "__name__");
106         evalue_str = py_stringify(py_evalue);
107         etype_name_fallback = (etype_name) ? etype_name : "(unknown exception)";
108
109         if (evalue_str)
110                 srd_err("%s: %s: %s", etype_name_fallback, msg, evalue_str);
111         else
112                 srd_err("%s: %s.", etype_name_fallback, msg);
113
114         g_free(evalue_str);
115         g_free(etype_name);
116
117         /* If there is no traceback object, we are done. */
118         if (!py_etraceback)
119                 goto cleanup;
120
121         py_mod = py_import_by_name("traceback");
122         if (!py_mod)
123                 goto cleanup;
124
125         py_func = PyObject_GetAttrString(py_mod, "format_exception");
126         if (!py_func || !PyCallable_Check(py_func))
127                 goto cleanup;
128
129         /* Call into Python to format the stack trace. */
130         py_tracefmt = PyObject_CallFunctionObjArgs(py_func,
131                         py_etype, py_evalue, py_etraceback, NULL);
132         if (!py_tracefmt)
133                 goto cleanup;
134
135         tracefmt_str = py_stringify(py_tracefmt);
136         Py_DECREF(py_tracefmt);
137
138         /* Log the detailed stack trace. */
139         if (tracefmt_str) {
140                 srd_dbg("%s", tracefmt_str);
141                 g_free(tracefmt_str);
142         }
143
144 cleanup:
145         Py_XDECREF(py_func);
146         Py_XDECREF(py_mod);
147         Py_XDECREF(py_etraceback);
148         Py_XDECREF(py_evalue);
149         Py_XDECREF(py_etype);
150
151         /* Just in case. */
152         PyErr_Clear();
153
154         g_free(msg);
155 }