2007-11-26 17:13:05 +01:00
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2007 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
2014-01-23 12:58:29 +01:00
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Author: Alexander Larsson <alexl@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2008-06-22 17:10:51 +02:00
|
|
|
#include "config.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include "gioerror.h"
|
|
|
|
|
2014-03-25 18:52:45 +01:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
#include <winsock2.h>
|
|
|
|
#endif
|
2007-11-28 13:39:07 +01:00
|
|
|
|
2007-11-27 15:00:13 +01:00
|
|
|
/**
|
|
|
|
* SECTION:gioerror
|
2007-11-28 07:43:33 +01:00
|
|
|
* @short_description: Error helper functions
|
2008-02-21 19:20:17 +01:00
|
|
|
* @include: gio/gio.h
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-12-09 16:51:12 +01:00
|
|
|
* Contains helper functions for reporting errors to the user.
|
2007-11-27 15:00:13 +01:00
|
|
|
**/
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
/**
|
|
|
|
* g_io_error_quark:
|
2012-08-28 05:42:12 +02:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Gets the GIO Error Quark.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2014-02-20 01:35:23 +01:00
|
|
|
* Returns: a #GQuark.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
2012-08-28 19:15:29 +02:00
|
|
|
G_DEFINE_QUARK (g-io-error-quark, g_io_error)
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2007-11-27 15:00:13 +01:00
|
|
|
/**
|
|
|
|
* g_io_error_from_errno:
|
|
|
|
* @err_no: Error number as defined in errno.h.
|
|
|
|
*
|
2014-03-20 14:25:19 +01:00
|
|
|
* Converts errno.h error codes into GIO error codes. The fallback
|
|
|
|
* value %G_IO_ERROR_FAILED is returned for error codes not currently
|
|
|
|
* handled (but note that future GLib releases may return a more
|
|
|
|
* specific value instead).
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* Returns: #GIOErrorEnum value for the given errno.h error number.
|
|
|
|
**/
|
2007-11-26 17:13:05 +01:00
|
|
|
GIOErrorEnum
|
|
|
|
g_io_error_from_errno (gint err_no)
|
|
|
|
{
|
|
|
|
switch (err_no)
|
|
|
|
{
|
|
|
|
#ifdef EEXIST
|
|
|
|
case EEXIST:
|
|
|
|
return G_IO_ERROR_EXISTS;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EISDIR
|
|
|
|
case EISDIR:
|
|
|
|
return G_IO_ERROR_IS_DIRECTORY;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EACCES
|
|
|
|
case EACCES:
|
|
|
|
return G_IO_ERROR_PERMISSION_DENIED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENAMETOOLONG
|
|
|
|
case ENAMETOOLONG:
|
|
|
|
return G_IO_ERROR_FILENAME_TOO_LONG;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENOENT
|
|
|
|
case ENOENT:
|
|
|
|
return G_IO_ERROR_NOT_FOUND;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENOTDIR
|
|
|
|
case ENOTDIR:
|
|
|
|
return G_IO_ERROR_NOT_DIRECTORY;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EROFS
|
|
|
|
case EROFS:
|
|
|
|
return G_IO_ERROR_READ_ONLY;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ELOOP
|
|
|
|
case ELOOP:
|
|
|
|
return G_IO_ERROR_TOO_MANY_LINKS;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENOSPC
|
|
|
|
case ENOSPC:
|
|
|
|
return G_IO_ERROR_NO_SPACE;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENOMEM
|
|
|
|
case ENOMEM:
|
|
|
|
return G_IO_ERROR_NO_SPACE;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EINVAL
|
|
|
|
case EINVAL:
|
|
|
|
return G_IO_ERROR_INVALID_ARGUMENT;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EPERM
|
|
|
|
case EPERM:
|
|
|
|
return G_IO_ERROR_PERMISSION_DENIED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ECANCELED
|
|
|
|
case ECANCELED:
|
|
|
|
return G_IO_ERROR_CANCELLED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2014-03-21 21:54:04 +01:00
|
|
|
/* ENOTEMPTY == EEXIST on AIX for backward compatibility reasons */
|
|
|
|
#if defined (ENOTEMPTY) && (!defined (EEXIST) || (ENOTEMPTY != EEXIST))
|
2007-11-26 17:13:05 +01:00
|
|
|
case ENOTEMPTY:
|
|
|
|
return G_IO_ERROR_NOT_EMPTY;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENOTSUP
|
|
|
|
case ENOTSUP:
|
|
|
|
return G_IO_ERROR_NOT_SUPPORTED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2014-03-21 21:54:04 +01:00
|
|
|
/* EOPNOTSUPP == ENOTSUP on Linux, but POSIX considers them distinct */
|
|
|
|
#if defined (EOPNOTSUPP) && (!defined (ENOTSUP) || (EOPNOTSUPP != ENOTSUP))
|
|
|
|
case EOPNOTSUPP:
|
|
|
|
return G_IO_ERROR_NOT_SUPPORTED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EPROTONOSUPPORT
|
|
|
|
case EPROTONOSUPPORT:
|
|
|
|
return G_IO_ERROR_NOT_SUPPORTED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ESOCKTNOSUPPORT
|
|
|
|
case ESOCKTNOSUPPORT:
|
|
|
|
return G_IO_ERROR_NOT_SUPPORTED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EPFNOSUPPORT
|
|
|
|
case EPFNOSUPPORT:
|
|
|
|
return G_IO_ERROR_NOT_SUPPORTED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EAFNOSUPPORT
|
|
|
|
case EAFNOSUPPORT:
|
|
|
|
return G_IO_ERROR_NOT_SUPPORTED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
#ifdef ETIMEDOUT
|
|
|
|
case ETIMEDOUT:
|
|
|
|
return G_IO_ERROR_TIMED_OUT;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EBUSY
|
|
|
|
case EBUSY:
|
|
|
|
return G_IO_ERROR_BUSY;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2014-03-21 21:54:04 +01:00
|
|
|
#ifdef EWOULDBLOCK
|
|
|
|
case EWOULDBLOCK:
|
2009-01-29 16:55:11 +01:00
|
|
|
return G_IO_ERROR_WOULD_BLOCK;
|
|
|
|
break;
|
2014-03-21 21:54:04 +01:00
|
|
|
#endif
|
2009-01-29 16:55:11 +01:00
|
|
|
|
2014-03-21 21:54:04 +01:00
|
|
|
/* EWOULDBLOCK == EAGAIN on most systems, but POSIX considers them distinct */
|
|
|
|
#if defined (EAGAIN) && (!defined (EWOULDBLOCK) || (EWOULDBLOCK != EAGAIN))
|
|
|
|
case EAGAIN:
|
2007-11-26 17:13:05 +01:00
|
|
|
return G_IO_ERROR_WOULD_BLOCK;
|
|
|
|
break;
|
|
|
|
#endif
|
2009-01-08 02:32:15 +01:00
|
|
|
|
|
|
|
#ifdef EMFILE
|
|
|
|
case EMFILE:
|
|
|
|
return G_IO_ERROR_TOO_MANY_OPEN_FILES;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2009-05-14 15:26:37 +02:00
|
|
|
#ifdef EADDRINUSE
|
|
|
|
case EADDRINUSE:
|
|
|
|
return G_IO_ERROR_ADDRESS_IN_USE;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2010-04-28 21:39:56 +02:00
|
|
|
#ifdef EHOSTUNREACH
|
|
|
|
case EHOSTUNREACH:
|
|
|
|
return G_IO_ERROR_HOST_UNREACHABLE;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENETUNREACH
|
|
|
|
case ENETUNREACH:
|
|
|
|
return G_IO_ERROR_NETWORK_UNREACHABLE;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ECONNREFUSED
|
|
|
|
case ECONNREFUSED:
|
|
|
|
return G_IO_ERROR_CONNECTION_REFUSED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2012-11-29 20:12:25 +01:00
|
|
|
#ifdef EPIPE
|
|
|
|
case EPIPE:
|
|
|
|
return G_IO_ERROR_BROKEN_PIPE;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2011-08-19 16:23:12 +02:00
|
|
|
#ifdef ECONNRESET
|
|
|
|
case ECONNRESET:
|
|
|
|
return G_IO_ERROR_CONNECTION_CLOSED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2014-12-02 14:25:56 +01:00
|
|
|
#ifdef ENOTCONN
|
|
|
|
case ENOTCONN:
|
|
|
|
return G_IO_ERROR_NOT_CONNECTED;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2015-07-02 12:32:34 +02:00
|
|
|
#ifdef EMSGSIZE
|
|
|
|
case EMSGSIZE:
|
|
|
|
return G_IO_ERROR_MESSAGE_TOO_LARGE;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
default:
|
|
|
|
return G_IO_ERROR_FAILED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-11-28 13:39:07 +01:00
|
|
|
|
2010-04-19 10:32:05 +02:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_io_error_from_win32_error:
|
|
|
|
* @error_code: Windows error number.
|
|
|
|
*
|
2014-03-25 18:52:45 +01:00
|
|
|
* Converts some common error codes (as returned from GetLastError()
|
|
|
|
* or WSAGetLastError()) into GIO error codes. The fallback value
|
|
|
|
* %G_IO_ERROR_FAILED is returned for error codes not currently
|
2014-03-20 14:25:19 +01:00
|
|
|
* handled (but note that future GLib releases may return a more
|
|
|
|
* specific value instead).
|
2010-04-19 10:32:05 +02:00
|
|
|
*
|
2014-03-25 18:52:45 +01:00
|
|
|
* You can use g_win32_error_message() to get a localized string
|
|
|
|
* corresponding to @error_code. (But note that unlike g_strerror(),
|
|
|
|
* g_win32_error_message() returns a string that must be freed.)
|
|
|
|
*
|
2010-04-19 10:32:05 +02:00
|
|
|
* Returns: #GIOErrorEnum value for the given error number.
|
|
|
|
*
|
|
|
|
* Since: 2.26
|
|
|
|
**/
|
|
|
|
GIOErrorEnum
|
|
|
|
g_io_error_from_win32_error (gint error_code)
|
|
|
|
{
|
2014-03-25 18:52:45 +01:00
|
|
|
/* Note: Winsock errors are a subset of Win32 error codes as a
|
|
|
|
* whole. (The fact that the Winsock API makes them look like they
|
|
|
|
* aren't is just because the API predates Win32.)
|
|
|
|
*/
|
|
|
|
|
2010-04-19 10:32:05 +02:00
|
|
|
switch (error_code)
|
|
|
|
{
|
2014-03-25 18:52:45 +01:00
|
|
|
case WSAEADDRINUSE:
|
|
|
|
return G_IO_ERROR_ADDRESS_IN_USE;
|
|
|
|
|
|
|
|
case WSAEWOULDBLOCK:
|
|
|
|
return G_IO_ERROR_WOULD_BLOCK;
|
|
|
|
|
|
|
|
case WSAEACCES:
|
|
|
|
return G_IO_ERROR_PERMISSION_DENIED;
|
|
|
|
|
|
|
|
case WSA_INVALID_HANDLE:
|
|
|
|
case WSA_INVALID_PARAMETER:
|
2015-09-04 10:58:57 +02:00
|
|
|
case WSAEINVAL:
|
2014-03-25 18:52:45 +01:00
|
|
|
case WSAEBADF:
|
|
|
|
case WSAENOTSOCK:
|
|
|
|
return G_IO_ERROR_INVALID_ARGUMENT;
|
|
|
|
|
|
|
|
case WSAEPROTONOSUPPORT:
|
|
|
|
return G_IO_ERROR_NOT_SUPPORTED;
|
|
|
|
|
|
|
|
case WSAECANCELLED:
|
|
|
|
return G_IO_ERROR_CANCELLED;
|
|
|
|
|
|
|
|
case WSAESOCKTNOSUPPORT:
|
|
|
|
case WSAEOPNOTSUPP:
|
|
|
|
case WSAEPFNOSUPPORT:
|
|
|
|
case WSAEAFNOSUPPORT:
|
|
|
|
return G_IO_ERROR_NOT_SUPPORTED;
|
|
|
|
|
2011-08-19 16:23:12 +02:00
|
|
|
case WSAECONNRESET:
|
|
|
|
return G_IO_ERROR_CONNECTION_CLOSED;
|
|
|
|
|
2015-09-04 10:58:57 +02:00
|
|
|
case WSAEHOSTUNREACH:
|
|
|
|
return G_IO_ERROR_HOST_UNREACHABLE;
|
|
|
|
|
|
|
|
case WSAENETUNREACH:
|
|
|
|
return G_IO_ERROR_NETWORK_UNREACHABLE;
|
|
|
|
|
|
|
|
case WSAECONNREFUSED:
|
|
|
|
return G_IO_ERROR_CONNECTION_REFUSED;
|
|
|
|
|
|
|
|
case WSAETIMEDOUT:
|
|
|
|
return G_IO_ERROR_TIMED_OUT;
|
|
|
|
|
|
|
|
case WSAENOTCONN:
|
2014-12-02 13:50:51 +01:00
|
|
|
case ERROR_PIPE_LISTENING:
|
|
|
|
return G_IO_ERROR_NOT_CONNECTED;
|
|
|
|
|
2015-07-02 12:32:34 +02:00
|
|
|
case WSAEMSGSIZE:
|
|
|
|
return G_IO_ERROR_MESSAGE_TOO_LARGE;
|
|
|
|
|
2010-04-19 10:32:05 +02:00
|
|
|
default:
|
|
|
|
return G_IO_ERROR_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|