/** \ingroup rpmio * \file rpmio/rpmlog.c */ #include "system.h" #include #include #include "debug.h" static int nrecs = 0; static rpmlogRec recs = NULL; struct rpmlogRec_s { int code; /* unused */ rpmlogLvl pri; /* priority */ char * message; /* log message string */ }; int rpmlogGetNrecs(void) { return nrecs; } int rpmlogCode(void) { if (recs != NULL && nrecs > 0) return recs[nrecs-1].code; return -1; } const char * rpmlogMessage(void) { if (recs != NULL && nrecs > 0) return recs[nrecs-1].message; return _("(no error)"); } const char * rpmlogRecMessage(rpmlogRec rec) { assert(rec != NULL); return (rec->message); } rpmlogLvl rpmlogRecPriority(rpmlogRec rec) { assert(rec != NULL); return (rec->pri); } void rpmlogPrint(FILE *f) { int i; if (f == NULL) f = stderr; if (recs) for (i = 0; i < nrecs; i++) { rpmlogRec rec = recs + i; if (rec->message && *rec->message) fprintf(f, " %s", rec->message); } } void rpmlogClose (void) { int i; if (recs) for (i = 0; i < nrecs; i++) { rpmlogRec rec = recs + i; rec->message = _free(rec->message); } recs = _free(recs); nrecs = 0; } void rpmlogOpen (const char *ident, int option, int facility) { } static unsigned rpmlogMask = RPMLOG_UPTO( RPMLOG_NOTICE ); #ifdef NOTYET static unsigned rpmlogFacility = RPMLOG_USER; #endif int rpmlogSetMask (int mask) { int omask = rpmlogMask; if (mask) rpmlogMask = mask; return omask; } static rpmlogCallback _rpmlogCallback = NULL; static rpmlogCallbackData _rpmlogCallbackData = NULL; rpmlogCallback rpmlogSetCallback(rpmlogCallback cb, rpmlogCallbackData data) { rpmlogCallback ocb = _rpmlogCallback; _rpmlogCallback = cb; _rpmlogCallbackData = data; return ocb; } static FILE * _stdlog = NULL; static int rpmlogDefault(rpmlogRec rec) { FILE *msgout = (_stdlog ? _stdlog : stderr); switch (rec->pri) { case RPMLOG_INFO: case RPMLOG_NOTICE: msgout = (_stdlog ? _stdlog : stdout); break; case RPMLOG_EMERG: case RPMLOG_ALERT: case RPMLOG_CRIT: case RPMLOG_ERR: case RPMLOG_WARNING: case RPMLOG_DEBUG: default: break; } (void) fputs(rpmlogLevelPrefix(rec->pri), msgout); (void) fputs(rec->message, msgout); (void) fflush(msgout); return (rec->pri <= RPMLOG_CRIT ? RPMLOG_EXIT : 0); } FILE * rpmlogSetFile(FILE * fp) { FILE * ofp = _stdlog; _stdlog = fp; return ofp; } static const char *rpmlogMsgPrefix[] = { N_("fatal error: "),/*!< RPMLOG_EMERG */ N_("fatal error: "),/*!< RPMLOG_ALERT */ N_("fatal error: "),/*!< RPMLOG_CRIT */ N_("error: "), /*!< RPMLOG_ERR */ N_("warning: "), /*!< RPMLOG_WARNING */ "", /*!< RPMLOG_NOTICE */ "", /*!< RPMLOG_INFO */ "D: ", /*!< RPMLOG_DEBUG */ }; const char * rpmlogLevelPrefix(rpmlogLvl pri) { const char * prefix = ""; if (rpmlogMsgPrefix[pri] && *rpmlogMsgPrefix[pri]) prefix = _(rpmlogMsgPrefix[pri]); return prefix; } #if !defined(HAVE_VSNPRINTF) static inline int vsnprintf(char * buf, int nb, const char * fmt, va_list ap) { return vsprintf(buf, fmt, ap); } #endif /* FIX: rpmlogMsgPrefix[] dependent, not unqualified */ /* FIX: rpmlogMsgPrefix[] may be NULL */ static void vrpmlog (unsigned code, const char *fmt, va_list ap) { unsigned pri = RPMLOG_PRI(code); unsigned mask = RPMLOG_MASK(pri); #ifdef NOTYET unsigned fac = RPMLOG_FAC(code); #endif char *msgbuf, *msg; int msgnb = BUFSIZ, nb; int cbrc = RPMLOG_DEFAULT; int needexit = 0; struct rpmlogRec_s rec; if ((mask & rpmlogMask) == 0) return; msgbuf = xmalloc(msgnb); *msgbuf = '\0'; /* Allocate a sufficently large buffer for output. */ while (1) { va_list apc; va_copy(apc, ap); nb = vsnprintf(msgbuf, msgnb, fmt, apc); if (nb > -1 && nb < msgnb) break; if (nb > -1) /* glibc 2.1 (and later) */ msgnb = nb+1; else /* glibc 2.0 */ msgnb *= 2; msgbuf = xrealloc(msgbuf, msgnb); va_end(apc); } msgbuf[msgnb - 1] = '\0'; msg = msgbuf; rec.code = code; rec.message = msg; rec.pri = pri; /* Save copy of all messages at warning (or below == "more important"). */ if (pri <= RPMLOG_WARNING) { if (recs == NULL) recs = xmalloc((nrecs+2) * sizeof(*recs)); else recs = xrealloc(recs, (nrecs+2) * sizeof(*recs)); recs[nrecs].code = rec.code; recs[nrecs].pri = rec.pri; recs[nrecs].message = msg = xrealloc(msgbuf, strlen(msgbuf)+1); msgbuf = NULL; /* XXX don't free at exit. */ recs[nrecs+1].code = 0; recs[nrecs+1].message = NULL; ++nrecs; } if (_rpmlogCallback) { cbrc = _rpmlogCallback(&rec, _rpmlogCallbackData); needexit += cbrc & RPMLOG_EXIT; } if (cbrc & RPMLOG_DEFAULT) { cbrc = rpmlogDefault(&rec); needexit += cbrc & RPMLOG_EXIT; } msgbuf = _free(msgbuf); if (needexit) exit(EXIT_FAILURE); } void rpmlog (int code, const char *fmt, ...) { va_list ap; va_start(ap, fmt); /* FIX: shrug */ vrpmlog(code, fmt, ap); va_end(ap); }