| /* libnih |
| * |
| * dbus_error.c - D-Bus error handling |
| * |
| * Copyright © 2009 Scott James Remnant <scott@netsplit.com>. |
| * |
| * 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 2 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, write to the Free Software |
| * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| */ |
| |
| #ifdef HAVE_CONFIG_H |
| # include <config.h> |
| #endif /* HAVE_CONFIG_H */ |
| |
| |
| #include <stdarg.h> |
| |
| #include <nih/macros.h> |
| #include <nih/alloc.h> |
| #include <nih/string.h> |
| #include <nih/logging.h> |
| #include <nih/error.h> |
| #include <nih/errors.h> |
| |
| #include "dbus_error.h" |
| |
| |
| /** |
| * nih_dbus_error_raise: |
| * @name: D-Bus name for error, |
| * @message: Human-readable error message. |
| * |
| * Raises an error which includes a D-Bus name so that it may be sent as |
| * a reply to a method call, the error type is fixed to NIH_DBUS_ERROR. |
| * |
| * You may use this in D-Bus handlers and return a negative number to |
| * automatically have this error returned as the method reply. It is also |
| * useful when mixing D-Bus and libnih function calls in your own methods |
| * to return consistent error forms, in which case pass the name and message |
| * members of the DBusError structure before freeing it. |
| **/ |
| void |
| nih_dbus_error_raise (const char *name, |
| const char *message) |
| { |
| NihDBusError *err; |
| |
| nih_assert (name != NULL); |
| nih_assert (message != NULL); |
| |
| NIH_MUST (err = nih_new (NULL, NihDBusError)); |
| |
| err->error.number = NIH_DBUS_ERROR; |
| NIH_MUST (err->name = nih_strdup (err, name)); |
| NIH_MUST (err->error.message = nih_strdup (err, message)); |
| |
| nih_error_raise_again (&err->error); |
| } |
| |
| /** |
| * nih_dbus_error_raise_printf: |
| * @name: D-Bus name for error, |
| * @format: format string for human-readable message. |
| * |
| * Raises an error which includes a D-Bus name so that it may be sent as |
| * a reply to a method call, the error type is fixed to NIH_DBUS_ERROR. |
| * |
| * The human-readable message for the error is parsed according to @format, |
| * and allocated as a child of the error object so that it is freed. |
| * |
| * You may use this in D-Bus handlers and return a negative number to |
| * automatically have this error returned as the method reply. It is also |
| * useful when mixing D-Bus and libnih function calls in your own methods |
| * to return consistent error forms, in which case pass the name and message |
| * members of the DBusError structure before freeing it. |
| **/ |
| void |
| nih_dbus_error_raise_printf (const char *name, |
| const char *format, |
| ...) |
| { |
| NihDBusError *err; |
| va_list args; |
| |
| nih_assert (name != NULL); |
| nih_assert (format != NULL); |
| |
| NIH_MUST (err = nih_new (NULL, NihDBusError)); |
| |
| err->error.number = NIH_DBUS_ERROR; |
| |
| NIH_MUST (err->name = nih_strdup (err, name)); |
| |
| va_start (args, format); |
| NIH_MUST (err->error.message = nih_vsprintf (err, format, args)); |
| va_end (args); |
| |
| nih_error_raise_again (&err->error); |
| } |