comedilib/lib/error.c
Frank Mori Hess fb2bf948b2 Changed comedi_set_calibration() to comedi_apply_calibration(), and
made it much faster, it takes <100msec to run instead of >1sec.
It requires linking to libperl now (hope that's
okay).  Renamed DEBUG() and _() in libinternal.h to COMEDILIB_DEBUG()
and GETTEXT() in order to avoid conflicts with perl headers.
2003-03-04 00:41:10 +00:00

131 lines
2.8 KiB
C

/*
lib/error.c
error functions and data
COMEDILIB - Linux Control and Measurement Device Interface Library
Copyright (C) 1997-2001 David A. Schleef <ds@schleef.org>
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, version 2.1
of the License.
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 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 <libinternal.h>
#include <stdio.h>
#include <string.h>
#include <comedi_errno.h>
char *__comedilib_error_strings[]={
_s("No error"),
_s("Unknown error"),
_s("Bad comedi_t structure"),
_s("Invalid subdevice"),
_s("Invalid channel"),
_s("Buffer overflow"),
_s("Buffer underflow"),
_s("Command not supported"),
_s("Not supported"),
};
#define n_errors (sizeof(__comedilib_error_strings)/sizeof(void *))
int __comedi_loglevel=1;
int __comedi_errno=0;
EXPORT_SYMBOL(comedi_loglevel,0.7.18);
int comedi_loglevel(int loglevel)
{
int old_loglevel=__comedi_loglevel;
__comedi_loglevel=loglevel;
return old_loglevel;
}
EXPORT_SYMBOL(comedi_errno,0.7.18);
int comedi_errno(void)
{
return __comedi_errno;
}
EXPORT_SYMBOL(comedi_strerror,0.7.18);
char *comedi_strerror(int errnum)
{
if(errnum<COMEDI_NOERROR || errnum>=COMEDI_NOERROR+n_errors)
return strerror(errnum);
return GETTEXT(__comedilib_error_strings[errnum-COMEDI_NOERROR]);
}
EXPORT_SYMBOL(comedi_perror,0.7.18);
void comedi_perror(const char *s)
{
if(__comedi_loglevel>=3){
fprintf(stderr,"comedi_perror(): __comedi_errno=%d\n",__comedi_errno);
}
if(!s)s="comedilib";
fprintf(stderr,"%s: %s\n",s,comedi_strerror(__comedi_errno));
}
void libc_error(void)
{
__comedi_errno=errno;
if(__comedi_loglevel>=2){
comedi_perror("libc error");
}
}
void internal_error(int err)
{
__comedi_errno=err;
if(__comedi_loglevel>=2){
comedi_perror("internal error");
}
}
int valid_dev(comedi_t *it)
{
if(!it || it->magic!=COMEDILIB_MAGIC){
internal_error(COMEDILIB_BADDEV);
return 0;
}
return 1;
}
int valid_subd(comedi_t *it,unsigned int subd)
{
if(!valid_dev(it))return 0;
if(subd>=it->n_subdevices){
internal_error(COMEDILIB_BADSUBD);
return 0;
}
return 1;
}
int valid_chan(comedi_t *it,unsigned int subd,unsigned int chan)
{
if(!valid_subd(it,subd))return 0;
if(chan>=it->subdevices[subd].n_chan){
internal_error(COMEDILIB_BADCHAN);
return 0;
}
return 1;
}