mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
103 lines
2.9 KiB
C
103 lines
2.9 KiB
C
/**
|
|
* \file error.c
|
|
* \brief Error code handling routines
|
|
* \author Jaroslav Kysela <perex@suse.cz>
|
|
* \date 1998-2001
|
|
*
|
|
* Error code handling routines.
|
|
*/
|
|
/*
|
|
* Copyright (c) 1998 by Jaroslav Kysela <perex@suse.cz>
|
|
*
|
|
* snd_strerror routine needs to be recoded for the locale support
|
|
*
|
|
*
|
|
* 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.1 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser 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 <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include "local.h"
|
|
|
|
/**
|
|
* Array of error codes in US ASCII.
|
|
*/
|
|
static const char *snd_error_codes[] =
|
|
{
|
|
"Sound protocol is not compatible"
|
|
};
|
|
|
|
/**
|
|
* \brief Get the error string.
|
|
* \param errnum The error code number.
|
|
*
|
|
* Returns the ASCII description of the given numeric error code.
|
|
*/
|
|
const char *snd_strerror(int errnum)
|
|
{
|
|
if (errnum < 0)
|
|
errnum = -errnum;
|
|
if (errnum < SND_ERROR_BEGIN)
|
|
return (const char *) strerror(errnum);
|
|
errnum -= SND_ERROR_BEGIN;
|
|
if ((unsigned int) errnum >= sizeof(snd_error_codes) / sizeof(const char *))
|
|
return "Unknown error";
|
|
return snd_error_codes[errnum];
|
|
}
|
|
|
|
/**
|
|
* \brief The default error handler function.
|
|
* \param file The filename where the error was hit.
|
|
* \param line The line number.
|
|
* \param function The function name.
|
|
* \param err The error number.
|
|
* \param fmt The message (including the format characters).
|
|
* \param ... Optional arguments.
|
|
*
|
|
* Prints the error message including location to stderr.
|
|
*/
|
|
static void snd_lib_error_default(const char *file, int line, const char *function, int err, const char *fmt, ...)
|
|
{
|
|
va_list arg;
|
|
va_start(arg, fmt);
|
|
fprintf(stderr, "ALSA lib %s:%i:(%s) ", file, line, function);
|
|
vfprintf(stderr, fmt, arg);
|
|
if (err)
|
|
fprintf(stderr, ": %s", snd_strerror(err));
|
|
putc('\n', stderr);
|
|
va_end(arg);
|
|
}
|
|
|
|
/**
|
|
* \ingroup Error
|
|
* Pointer to the error handler function.
|
|
*/
|
|
snd_lib_error_handler_t *snd_lib_error = snd_lib_error_default;
|
|
|
|
/**
|
|
* \brief Set the error handler.
|
|
* \param handler The pointer to the new error handler function.
|
|
*
|
|
* This function sets a new error handler or the default one (if the NULL
|
|
* parameter is given) which prints the error messages to stderr.
|
|
*/
|
|
int snd_lib_error_set_handler(snd_lib_error_handler_t *handler)
|
|
{
|
|
snd_lib_error = handler == NULL ? snd_lib_error_default : handler;
|
|
return 0;
|
|
}
|