summaryrefslogtreecommitdiff
path: root/libgupnp/gupnp-error.c
blob: 743b06f0134be1defc91bdcf8f84fd305edfa842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* 
 * Copyright (C) 2006, 2007 OpenedHand Ltd.
 *
 * Author: Jorn Baayen <jorn@openedhand.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#include "gupnp-error.h"
#include "gupnp-error-private.h"

/**
 * gupnp_server_error_quark
 *
 * Returns a #GQuark uniquely used by GUPnP's server errors.
 **/
GQuark
gupnp_server_error_quark (void)
{
        static GQuark quark = 0;

        if (!quark)
                quark = g_quark_from_static_string ("gupnp-server-error");

        return quark;
}

/**
 * gupnp_eventing_error_quark
 *
 * Returns a #GQuark uniquely used by GUPnP's eventing errors.
 **/
GQuark
gupnp_eventing_error_quark (void)
{
        static GQuark quark = 0;

        if (!quark)
                quark = g_quark_from_static_string ("gupnp-eventing-error");

        return quark;
}

/**
 * gupnp_control_error_quark
 *
 * Returns a #GQuark uniquely used by GUPnP's control errors.
 **/
GQuark
gupnp_control_error_quark (void)
{
        static GQuark quark = 0;

        if (!quark)
                quark = g_quark_from_static_string ("gupnp-control-error");

        return quark;
}

/* Missing g_set_error_literal() */
void
set_error_literal (GError    **error,
                   GQuark      error_quark,
                   int         code,
                   const char *message)
{
        if (error == NULL)
                return;

        if (*error == NULL) {
                *error = g_error_new_literal (error_quark,
                                              code,
                                              message);
        } else
                g_warning ("Error already set.");
}

/* Soup status code => GUPnPServerError */
static int
code_from_status_code (int status_code)
{
        switch (status_code) {
        case SOUP_STATUS_INTERNAL_SERVER_ERROR:
                return GUPNP_SERVER_ERROR_INTERNAL_SERVER_ERROR;
        case SOUP_STATUS_NOT_IMPLEMENTED:
                return GUPNP_SERVER_ERROR_NOT_IMPLEMENTED;
        case SOUP_STATUS_NOT_FOUND:
                return GUPNP_SERVER_ERROR_NOT_FOUND;
        default:
                return GUPNP_SERVER_ERROR_OTHER;
        }
}

/* Set status of @msg to @error */
void
set_server_error (GError     **error,
                  SoupMessage *msg)
{
        set_error_literal (error,
                           GUPNP_SERVER_ERROR,
                           code_from_status_code (msg->status_code),
                           msg->reason_phrase);
}

/* Create a #GError with status of @msg */
GError *
new_server_error (SoupMessage *msg)
{
        return g_error_new_literal (GUPNP_SERVER_ERROR,
                                    code_from_status_code (msg->status_code),
                                    msg->reason_phrase);
}