Convert EALREADY to proper error message
[framework/connectivity/connman.git] / src / error.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2009  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
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, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <errno.h>
27 #include <string.h>
28
29 #include <gdbus.h>
30
31 #include "connman.h"
32
33 DBusMessage *__connman_error_failed(DBusMessage *msg, int errnum)
34 {
35         const char *str = strerror(errnum);
36
37         switch (errnum) {
38         case EACCES:
39                 return __connman_error_permission_denied(msg);
40         case EINVAL:
41                 return __connman_error_invalid_arguments(msg);
42         case EALREADY:
43                 return __connman_error_already_connected(msg);
44         case EINPROGRESS:
45                 return __connman_error_in_progress(msg);
46         }
47
48         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
49                                                         ".Failed", str);
50 }
51
52 DBusMessage *__connman_error_invalid_arguments(DBusMessage *msg)
53 {
54         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
55                                 ".InvalidArguments", "Invalid arguments");
56 }
57
58 DBusMessage *__connman_error_permission_denied(DBusMessage *msg)
59 {
60         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
61                                 ".PermissionDenied", "Permission denied");
62 }
63
64 DBusMessage *__connman_error_not_supported(DBusMessage *msg)
65 {
66         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
67                                         ".NotSupported", "Not supported");
68 }
69
70 DBusMessage *__connman_error_not_implemented(DBusMessage *msg)
71 {
72         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
73                                         ".NotImplemented", "Not implemented");
74 }
75
76 DBusMessage *__connman_error_no_carrier(DBusMessage *msg)
77 {
78         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
79                                                 ".NoCarrier", "No carrier");
80 }
81
82 DBusMessage *__connman_error_in_progress(DBusMessage *msg)
83 {
84         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
85                                                 ".InProgress", "In progress");
86 }
87
88 DBusMessage *__connman_error_already_connected(DBusMessage *msg)
89 {
90         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
91                                 ".AlreadyConnected", "Already connected");
92
93 }
94
95 DBusMessage *__connman_error_operation_aborted(DBusMessage *msg)
96 {
97         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
98                                 "OperationAborted", "Operation aborted");
99 }
100
101 DBusMessage *__connman_error_operation_timeout(DBusMessage *msg)
102 {
103         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
104                                 "OperationTimeout", "Operation timeout");
105 }
106
107 DBusMessage *__connman_error_invalid_service(DBusMessage *msg)
108 {
109         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
110                                         "InvalidService", "Invalid service");
111 }
112
113 DBusMessage *__connman_error_invalid_property(DBusMessage *msg)
114 {
115         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE,
116                                         "InvalidProperty", "Invalid property");
117 }