openalbridge/errlib.c
author smxx
Thu, 04 Feb 2010 20:45:03 +0000
changeset 2747 7889a3a9724f
parent 2529 51e5df1c8462
permissions -rw-r--r--
Server: * Added support for flags (this still needs further adjustments to restore compatibility with older versions (team datasets)!) Engine: * Added support for flags * Added weapon tooltips * Moved SplitBySpace to uMisc * Set file operations to readonly to avoid conflicts running multiple copies networked and synced on one (fast) machine * Flash active team while green arrow is shown (waiting for input or camera centered on active hog) * Updated English locale Frontend: * Added support for flags * Added flag selection to edit team page * Added checkbox for weapon tooltips in options * "Random team" button may now be translated * Disabled "official server" button till protocol is handled for all versions (see above; nemo's server is updated to new protocol) Graphics: * Added basic set of example flags

/*
 
 module: errlib.c
 
 purpose: library of error functions
 
 reference: Stevens, Unix network programming (2ed), p.922
 
 */

#include "errlib.h"


#define MAXLINE 4095

#ifdef __CPLUSPLUS
extern "C" {
#endif 
        
        int daemon_proc = 0; /* set to 0 if stdout/stderr available, else set to 1 */
        
        static void err_doit (int errnoflag, int level, const char *fmt, va_list ap)
        {
                int errno_save = errno, n;
                char buf[MAXLINE+1];
                
                vsnprintf (buf, MAXLINE, fmt, ap);
                n = strlen(buf);
                if (errnoflag)
                        snprintf (buf+n, MAXLINE-n, ": %s", strerror(errno_save));
                strcat (buf, "\n");
                
                if (daemon_proc)
                        syslog (level, buf);
                else {
                        fflush (stdout);
                        fprintf (stderr, buf);
                        fflush (stderr);
                }
                
                return;
        }
        
        void err_ret (const char *fmt, ...)
        {
                va_list ap;
                
                va_start (ap, fmt);
                err_doit (1, LOG_INFO, fmt, ap);
                va_end (ap);
                return;
        }
        
        void err_sys (const char *fmt, ...)
        {
                va_list ap;
                
                va_start (ap, fmt);
                err_doit (1, LOG_ERR, fmt, ap);
                va_end (ap);
                exit (1);
        }
        
        void err_msg (const char *fmt, ...)
        {
                va_list ap;
                
                va_start (ap, fmt);
                err_doit (0, LOG_INFO, fmt, ap);
                va_end (ap);
                return;
        }
        
        void err_quit (const char *fmt, ...)
        {
                va_list ap;
                
                va_start (ap, fmt);
                err_doit (0, LOG_ERR, fmt, ap);
                va_end (ap);
                exit (1);
        }
        
        void err_dump (const char *fmt, ...)
        {
                va_list ap;
                
                va_start (ap, fmt);
                err_doit (1, LOG_ERR, fmt, ap);
                va_end (ap);
                abort();
        }
        
#ifdef __CPLUSPLUS
}
#endif