📄 log_output.c
字号:
/*
* TOPPERS/JSP Kernel
* Toyohashi Open Platform for Embedded Real-Time Systems/
* Just Standard Profile Kernel
*
* Copyright (C) 2000-2003 by Embedded and Real-Time Systems Laboratory
* Toyohashi Univ. of Technology, JAPAN
* Copyright (C) 2004-2005 by Embedded and Real-Time Systems Laboratory
* Graduate School of Information Science, Nagoya Univ., JAPAN
*
* 忋婰挊嶌尃幰偼丆埲壓偺 (1)乣(4) 偺忦審偐丆Free Software Foundation
* 偵傛偭偰岞昞偝傟偰偄傞 GNU General Public License 偺 Version 2 偵婰
* 弎偝傟偰偄傞忦審傪枮偨偡応崌偵尷傝丆杮僜僼僩僂僃傾乮杮僜僼僩僂僃傾
* 傪夵曄偟偨傕偺傪娷傓丏埲壓摨偠乯傪巊梡丒暋惢丒夵曄丒嵞攝晍乮埲壓丆
* 棙梡偲屇傇乯偡傞偙偲傪柍彏偱嫋戻偡傞丏
* (1) 杮僜僼僩僂僃傾傪僜乕僗僐乕僪偺宍偱棙梡偡傞応崌偵偼丆忋婰偺挊嶌
* 尃昞帵丆偙偺棙梡忦審偍傛傃壓婰偺柍曐徹婯掕偑丆偦偺傑傑偺宍偱僜乕
* 僗僐乕僪拞偵娷傑傟偰偄傞偙偲丏
* (2) 杮僜僼僩僂僃傾傪丆儔僀僽儔儕宍幃側偳丆懠偺僜僼僩僂僃傾奐敪偵巊
* 梡偱偒傞宍偱嵞攝晍偡傞応崌偵偼丆嵞攝晍偵敽偆僪僉儏儊儞僩乮棙梡
* 幰儅僯儏傾儖側偳乯偵丆忋婰偺挊嶌尃昞帵丆偙偺棙梡忦審偍傛傃壓婰
* 偺柍曐徹婯掕傪宖嵹偡傞偙偲丏
* (3) 杮僜僼僩僂僃傾傪丆婡婍偵慻傒崬傓側偳丆懠偺僜僼僩僂僃傾奐敪偵巊
* 梡偱偒側偄宍偱嵞攝晍偡傞応崌偵偼丆師偺偄偢傟偐偺忦審傪枮偨偡偙
* 偲丏
* (a) 嵞攝晍偵敽偆僪僉儏儊儞僩乮棙梡幰儅僯儏傾儖側偳乯偵丆忋婰偺挊
* 嶌尃昞帵丆偙偺棙梡忦審偍傛傃壓婰偺柍曐徹婯掕傪宖嵹偡傞偙偲丏
* (b) 嵞攝晍偺宍懺傪丆暿偵掕傔傞曽朄偵傛偭偰丆TOPPERS僾儘僕僃僋僩偵
* 曬崘偡傞偙偲丏
* (4) 杮僜僼僩僂僃傾偺棙梡偵傛傝捈愙揑傑偨偼娫愙揑偵惗偠傞偄偐側傞懝
* 奞偐傜傕丆忋婰挊嶌尃幰偍傛傃TOPPERS僾儘僕僃僋僩傪柶愑偡傞偙偲丏
*
* 杮僜僼僩僂僃傾偼丆柍曐徹偱採嫙偝傟偰偄傞傕偺偱偁傞丏忋婰挊嶌尃幰偍
* 傛傃TOPPERS僾儘僕僃僋僩偼丆杮僜僼僩僂僃傾偵娭偟偰丆偦偺揔梡壜擻惈傕
* 娷傔偰丆偄偐側傞曐徹傕峴傢側偄丏傑偨丆杮僜僼僩僂僃傾偺棙梡偵傛傝捈
* 愙揑傑偨偼娫愙揑偵惗偠偨偄偐側傞懝奞偵娭偟偰傕丆偦偺愑擟傪晧傢側偄丏
*
* @(#) $Id: log_output.c,v 1.10 2005/11/26 05:56:50 hiro Exp $
*/
/*
* 僔僗僥儉儘僌偺僼僅乕儅僢僩弌椡
*/
#include <t_services.h>
/*
* 億僀儞僞傪奿擺偱偒傞惍悢宆偺僨僼僅儖僩偺掕媊
*/
#ifndef _intptr_
#define _intptr_ long
#endif /* _intptr_ */
/*
* 悢抣傪暥帤楍偵曄姺
*/
#define CONVERT_BUFLEN ((sizeof(_intptr_) * CHAR_BIT + 2) / 3)
/* _intptr_宆偺悢抣偺嵟戝暥帤悢 */
static void
convert(unsigned _intptr_ val, unsigned int radix, const char *radchar,
int width, int minus, int padzero, void (*putc)(char))
{
char buf[CONVERT_BUFLEN];
int i, j;
i = 0;
do {
buf[i++] = radchar[val % radix];
val /= radix;
} while (val != 0);
width -= minus;
if (minus > 0 && padzero > 0) {
(*putc)('-');
}
for (j = i; j < width; j++) {
(*putc)((char)(padzero > 0 ? '0' : ' '));
}
if (minus > 0 && padzero <= 0) {
(*putc)('-');
}
while (i > 0) {
(*putc)(buf[--i]);
}
}
/*
* 儘僌忣曬偺僼僅乕儅僢僩弌椡
*/
static const char raddec[] = "0123456789";
static const char radhex[] = "0123456789abcdef";
static const char radHEX[] = "0123456789ABCDEF";
void
syslog_printf(const char *format, VP_INT *args, void (*putc)(char))
{
int c;
int width;
int padzero;
_intptr_ val;
const char *str;
while ((c = *format++) != '\0') {
if (c != '%') {
(*putc)((char) c);
continue;
}
width = padzero = 0;
if ((c = *format++) == '0') {
padzero = 1;
c = *format++;
}
while ('0' <= c && c <= '9') {
width = width * 10 + c - '0';
c = *format++;
}
if (c == 'l') {
c = *format++;
}
switch (c) {
case 'd':
val = (_intptr_)(*args++);
if (val >= 0) {
convert((unsigned _intptr_) val, 10, raddec,
width, 0, padzero, putc);
}
else {
convert((unsigned _intptr_)(-val), 10, raddec,
width, 1, padzero, putc);
}
break;
case 'u':
val = (_intptr_)(*args++);
convert((unsigned _intptr_) val, 10, raddec,
width, 0, padzero, putc);
break;
case 'x':
case 'p':
val = (_intptr_)(*args++);
convert((unsigned _intptr_) val, 16, radhex,
width, 0, padzero, putc);
break;
case 'X':
val = (_intptr_)(*args++);
convert((unsigned _intptr_) val, 16, radHEX,
width, 0, padzero, putc);
break;
case 'c':
(*putc)((char)(_intptr_)(*args++));
break;
case 's':
str = (const char *)(*args++);
while ((c = *str++) != '\0') {
(*putc)((char) c);
}
break;
case '%':
(*putc)('%');
break;
case '\0':
format--;
break;
default:
break;
}
}
(*putc)('\n');
}
void
syslog_print(SYSLOG *p_log, void (*putc)(char))
{
switch (p_log->logtype) {
case LOG_TYPE_COMMENT:
syslog_printf((const char *)(p_log->loginfo[0]),
&(p_log->loginfo[1]), putc);
break;
case LOG_TYPE_ASSERT:
syslog_printf("%s:%u: Assertion `%s' failed.",
&(p_log->loginfo[0]), putc);
break;
}
}
void
syslog_output(void (*putc)(char))
{
static const char lostmsg[] = "%d messages are lost.";
SYSLOG log;
INT lostnum, n;
lostnum = 0;
while ((n = vrea_log(&log)) >= 0) {
lostnum += n;
if (log.logtype < LOG_TYPE_COMMENT) {
continue;
}
if (lostnum > 0) {
syslog_printf(lostmsg, (VP_INT *) &lostnum, putc);
lostnum = 0;
}
syslog_print(&log, putc);
}
if (lostnum > 0) {
syslog_printf(lostmsg, (VP_INT *) &lostnum, putc);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -