📄 print.c
字号:
#include <stdarg.h>
#include "print.h"
static void
printk_putc (char c, int *count, PRINTK_INFO *info)
{
//
info->dest = 1;
//info->func = serial_putc;
//
switch (info->dest)
{
case 1:
info->func(c);
break;
case 0:
*(info->loc) = (unsigned char)c;
++(info->loc);
break;
default:
break;
}
*count += 1;
}
/********************************************************************/
static int
printk_mknumstr (char *numstr, void *nump, int neg, int radix)
{
int a,b,c;
unsigned int ua,ub,uc;
int nlen;
char *nstrp;
nlen = 0;
nstrp = numstr;
*nstrp++ = '\0';
if (neg)
{
a = *(int *)nump;
if (a == 0)
{
*nstrp = '0';
++nlen;
goto done;
}
while (a != 0)
{
b = (int)a / (int)radix;
c = (int)a - ((int)b * (int)radix);
if (c < 0)
{
c = ~c + 1 + '0';
}
else
{
c = c + '0';
}
a = b;
*nstrp++ = (char)c;
++nlen;
}
}
else
{
ua = *(unsigned int *)nump;
if (ua == 0)
{
*nstrp = '0';
++nlen;
goto done;
}
while (ua != 0)
{
ub = (unsigned int)ua / (unsigned int)radix;
uc = (unsigned int)ua - ((unsigned int)ub * (unsigned int)radix);
if (uc < 10)
{
uc = uc + '0';
}
else
{
uc = uc - 10 + 'A';
}
ua = ub;
*nstrp++ = (char)uc;
++nlen;
}
}
done:
return nlen;
}
/********************************************************************/
static void
printk_pad_zero (int curlen, int field_width, int *count, PRINTK_INFO *info)
{
int i;
for (i = curlen; i < field_width; i++)
{
printk_putc('0',count, info);
}
}
/********************************************************************/
static void
printk_pad_space (int curlen, int field_width, int *count, PRINTK_INFO *info)
{
int i;
for (i = curlen; i < field_width; i++)
{
printk_putc(' ',count, info);
}
}
/********************************************************************/
int
printk (PRINTK_INFO *info, const char *fmt, va_list ap)
{
/* va_list ap; */
char *p;
char c;
char vstr[33];
char *vstrp;
int vlen;
int done;
int count = 0;
int flags_used;
int field_width;
#if 0
int precision_used;
int precision_width;
int length_modifier;
#endif
int ival;
char schar, dschar;
int *ivalp;
char *sval;
char cval;
unsigned int uval;
/*
* Start parsing apart the format string and display appropriate
* formats and data.
*/
for (p = (char *)fmt; (c = *p) != 0; p++)
{
/*
* All formats begin with a '%' marker. Special chars like
* '\n' or '\t' are normally converted to the appropriate
* character by the __compiler__. Thus, no need for this
* routine to account for the '\' character.
*/
if (c != '%')
{
/*
* This needs to be replaced with something like
* 'board_putchar()' or call an OS routine.
*/
#ifndef UNIX_DEBUG
if (c != '\n')
{
printk_putc(c, &count, info);
}
else
{
printk_putc(0x0D /* CR */, &count, info);
printk_putc(0x0A /* LF */, &count, info);
}
#else
printk_putc(c, &count, info);
#endif
/*
* By using 'continue', the next iteration of the loop
* is used, skipping the code that follows.
*/
continue;
}
/*
* First check for specification modifier flags.
*/
flags_used = 0;
done = FALSE;
while (!done)
{
switch (/* c = */ *++p)
{
case '-':
flags_used |= FLAGS_MINUS;
break;
case '+':
flags_used |= FLAGS_PLUS;
break;
case ' ':
flags_used |= FLAGS_SPACE;
break;
case '0':
flags_used |= FLAGS_ZERO;
break;
case '#':
flags_used |= FLAGS_POUND;
break;
default:
/* we've gone one char too far */
--p;
done = TRUE;
break;
}
}
/*
* Next check for minimum field width.
*/
field_width = 0;
done = FALSE;
while (!done)
{
switch (c = *++p)
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
field_width = (field_width * 10) + (c - '0');
break;
default:
/* we've gone one char too far */
--p;
done = TRUE;
break;
}
}
/*
* Next check for the width and precision field separator.
*/
if (/* (c = *++p) */ *++p == '.')
{
/* precision_used = TRUE; */
/*
* Must get precision field width, if present.
*/
/* precision_width = 0; */
done = FALSE;
while (!done)
{
switch (/* c = uncomment if used below */ *++p)
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
#if 0
precision_width = (precision_width * 10) +
(c - '0');
#endif
break;
default:
/* we've gone one char too far */
--p;
done = TRUE;
break;
}
}
}
else
{
/* we've gone one char too far */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -