2007-11-14 20:52:04 +05:30
|
|
|
/*
|
|
|
|
* Copyright 2007 Roy Marples
|
|
|
|
* All rights reserved
|
|
|
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2007-09-25 21:08:21 +05:30
|
|
|
*/
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
#ifndef __EINFO_H__
|
|
|
|
#define __EINFO_H__
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
2007-09-26 14:38:07 +05:30
|
|
|
# define __EINFO_PRINTF __attribute__ ((__format__ (__printf__, 1, 2)))
|
|
|
|
# define __EINFO_XPRINTF __attribute__ ((__noreturn__, __format__ (__printf__, 1, 2)))
|
|
|
|
# define __EEND_PRINTF __attribute__ ((__format__ (__printf__, 2, 3)))
|
|
|
|
#else
|
|
|
|
# define __EINFO_PRINTF
|
|
|
|
# define __EINFO_XPRINTF
|
|
|
|
# define __EEND_PRINTF
|
2007-04-05 16:48:42 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2007-09-25 21:08:21 +05:30
|
|
|
/*! @brief Color types to use */
|
2007-04-05 16:48:42 +05:30
|
|
|
typedef enum
|
|
|
|
{
|
2007-09-28 17:59:23 +05:30
|
|
|
ECOLOR_NORMAL = 1,
|
|
|
|
ECOLOR_GOOD = 2,
|
|
|
|
ECOLOR_WARN = 3,
|
|
|
|
ECOLOR_BAD = 4,
|
|
|
|
ECOLOR_HILITE = 5,
|
|
|
|
ECOLOR_BRACKET = 6
|
2007-04-05 16:48:42 +05:30
|
|
|
} einfo_color_t;
|
|
|
|
|
2007-09-25 21:08:21 +05:30
|
|
|
/*! @brief Returns the ASCII code for the color */
|
2007-04-17 15:02:18 +05:30
|
|
|
const char *ecolor (einfo_color_t);
|
2007-09-25 21:08:21 +05:30
|
|
|
|
|
|
|
/*! @brief Writes to syslog. */
|
2007-09-26 14:38:07 +05:30
|
|
|
void elog (int __level, const char *__fmt, ...) __EEND_PRINTF;
|
2007-09-25 21:08:21 +05:30
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief Display informational messages.
|
|
|
|
*
|
|
|
|
* The einfo family of functions display messages in a consistent manner
|
2007-11-14 20:52:04 +05:30
|
|
|
* across applications. Basically they prefix the message with
|
2007-09-25 21:08:21 +05:30
|
|
|
* " * ". If the terminal can handle color then we color the * based on
|
|
|
|
* the command used. Otherwise we are identical to the printf function.
|
|
|
|
*
|
|
|
|
* - einfo - green
|
|
|
|
* - ewarn - yellow
|
|
|
|
* - eerror - red
|
|
|
|
*
|
|
|
|
* The n suffix denotes that no new line should be printed.
|
2007-12-06 16:18:00 +05:30
|
|
|
* The v suffix means only print if EINFO_VERBOSE is yes.
|
2007-09-25 21:08:21 +05:30
|
|
|
*/
|
|
|
|
/*@{*/
|
2007-12-20 20:45:53 +05:30
|
|
|
int einfon (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
int ewarnn (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
int eerrorn (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
int einfo (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
int ewarn (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
void ewarnx (const char * restrict __fmt, ...) __EINFO_XPRINTF;
|
|
|
|
int eerror (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
void eerrorx (const char * restrict __fmt, ...) __EINFO_XPRINTF;
|
2007-09-25 21:08:21 +05:30
|
|
|
|
2007-12-20 20:45:53 +05:30
|
|
|
int einfovn (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
int ewarnvn (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
int ebeginvn (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
int eendvn (int __retval, const char * restrict __fmt, ...) __EEND_PRINTF;
|
|
|
|
int ewendvn (int __retval, const char * restrict __fmt, ...) __EEND_PRINTF;
|
|
|
|
int einfov (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
int ewarnv (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
2007-09-25 21:08:21 +05:30
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
/*! @ingroup ebegin
|
|
|
|
* @brief Display informational messages that may take some time.
|
|
|
|
*
|
|
|
|
* Similar to einfo, but we add ... to the end of the message */
|
|
|
|
/*@{*/
|
2007-12-20 20:45:53 +05:30
|
|
|
int ebeginv (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
|
|
|
int ebegin (const char * restrict __fmt, ...) __EINFO_PRINTF;
|
2007-09-25 21:08:21 +05:30
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
/*! @ingroup eend
|
|
|
|
* @brief End an ebegin.
|
|
|
|
*
|
|
|
|
* If you ebegin, you should eend also.
|
|
|
|
* eend places [ ok ] or [ !! ] at the end of the terminal line depending on
|
|
|
|
* retval (0 or ok, anything else for !!)
|
|
|
|
*
|
|
|
|
* ebracket allows you to specifiy the position, color and message */
|
|
|
|
/*@{*/
|
2007-12-20 20:45:53 +05:30
|
|
|
int eend (int __retval, const char * restrict __fmt, ...) __EEND_PRINTF;
|
|
|
|
int ewend (int __retval, const char * restrict __fmt, ...) __EEND_PRINTF;
|
|
|
|
void ebracket (int __col, einfo_color_t __color, const char * restrict __msg);
|
2007-09-25 21:08:21 +05:30
|
|
|
|
2007-12-20 20:45:53 +05:30
|
|
|
int eendv (int __retval, const char * restrict __fmt, ...) __EEND_PRINTF;
|
|
|
|
int ewendv (int __retval, const char * restrict __fmt, ...) __EEND_PRINTF;
|
2007-09-25 21:08:21 +05:30
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
/*! @ingroup eindent
|
|
|
|
* @brief Indents the einfo lines.
|
|
|
|
*
|
|
|
|
* For each indent you should outdent when done */
|
|
|
|
/*@{*/
|
2007-04-05 16:48:42 +05:30
|
|
|
void eindent (void);
|
|
|
|
void eoutdent (void);
|
2007-04-10 21:41:20 +05:30
|
|
|
void eindentv (void);
|
|
|
|
void eoutdentv (void);
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-09-25 21:08:21 +05:30
|
|
|
/*! @brief Prefix each einfo line with something */
|
2007-12-20 20:45:53 +05:30
|
|
|
void eprefix (const char * restrict __prefix);
|
2007-04-25 18:00:24 +05:30
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
#endif
|