Linux-0.0.1内核阅读连载笔记-2013.08.22

__________________________________________________________

../kernel/Vsprintf.c

__________________________________________________________

/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */

/*
 * Wirzenius wrote this portably, Torvalds fucked it up :-)
 */

#include <stdarg.h>
#include <string.h>

/* we use this so that we can do without the ctype library */
#define is_digit(c) ((c) >= '0' && (c) <= '9')

static int skip_atoi(const char **s)
{
int i=0;

while (is_digit(**s))
i = i*10 + *((*s)++) - '0';
return i;
}

#define ZEROPAD 1
/* pad with zero */
#define SIGN 2
/* unsigned/signed long */
#define PLUS 4
/* show plus */
#define SPACE 8
/* space if plus */
#define LEFT 16
/* left justified */
#define SPECIAL 32
/* 0x */
#define SMALL 64
/* use 'abcdef' instead of 'ABCDEF' */

#define do_div(n,base) ({ \
int __res; \
//下面的内嵌汇编的意思是:
// movl
n %eax
// movl
0 %edx
// movl
base %ebx
// divl
%ebx //将eax中的数除操作数,商放入EAX,余数放入EDX
// movl
%eax n
// movl
%edx _res
__asm__("divl %4":"=a" (n),"=d" (__res):"0" (n),"1" (0),"r" (base)); \
__res; })

static char * number(char * str, int num, int base, int size, int precision
,int type)
//将数字转变为字符串
{
char c,sign,tmp[36];
const char *digits="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
int i;

if (type&SMALL) digits="0123456789abcdefghijklmnopqrstuvwxyz";
if (type&LEFT) type &= ~ZEROPAD;
if (base<2 || base>36)
return 0;
c = (type & ZEROPAD) ? '0' : ' ' ;
//如果type是ZEROPAD,那么就填0,否则填“”
if (type&SIGN && num<0) {
sign='-';
num = -num;
} else
sign=(type&PLUS) ? '+' : ((type&SPACE) ? ' ' : 0);
if (sign) size--;
if (type&SPECIAL)
if (base==16) size -= 2;
//16进制数的处理
else if (base==8) size--;
//8进制数的处理
i=0;
if (num==0)
tmp[i++]='0';
else while (num!=0)
tmp[i++]=digits[do_div(num,base)];
if (i>precision) precision=i;
size -= precision;
if (!(type&(ZEROPAD+LEFT)))
while(size-->0)
*str++ = ' ';
if (sign)
*str++ = sign;
if (type&SPECIAL)
if (base==8)
*str++ = '0';
else if (base==16) {
*str++ = '0';
*str++ = digits[33];
}
if (!(type&LEFT))
while(size-->0)
*str++ = c;
while(i<precision--)
*str++ = '0';
while(i-->0)
*str++ = tmp[i];
while(size-->0)
*str++ = ' ';
return str;
}

int vsprintf(char *buf, const char *fmt, va_list args)
{
int len;
int i;
char * str;
char *s;
int *ip;

int flags;
/* flags to number() */

int field_width;
/* width of output field */
int precision;
/* min. # of digits for integers; max
  number of chars for from string */
int qualifier;
/* 'h', 'l', or 'L' for integer fields */

for (str=buf ; *fmt ; ++fmt) {
if (*fmt != '%') {
//将指针定位在第一个%处理
*str++ = *fmt;
continue;
}

/* process flags */
flags = 0;
repeat:
++fmt;
/* this also skips first '%' */
switch (*fmt) {
//看看第一个%之后是什么flags
case '-': flags |= LEFT; goto repeat;
case '+': flags |= PLUS; goto repeat;
case ' ': flags |= SPACE; goto repeat;
case '#': flags |= SPECIAL; goto repeat;
case '0': flags |= ZEROPAD; goto repeat;
}

/* get field width */
field_width = -1;
if (is_digit(*fmt))
field_width = skip_atoi(&fmt);
//提取出全部的数字
else if (*fmt == '*') {
/* it's the next argument */
field_width = va_arg(args, int);
if (field_width < 0) {
field_width = -field_width;
flags |= LEFT;
}
}

/* get the precision */
precision = -1;
if (*fmt == '.') {
//现在要小树点以后的数字
++fmt;

if (is_digit(*fmt))
precision = skip_atoi(&fmt);
else if (*fmt == '*') {
/* it's the next argument */
precision = va_arg(args, int);
}
if (precision < 0)
precision = 0;
}

/* get the conversion qualifier */
qualifier = -1;
if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L') {
qualifier = *fmt;
++fmt;
}

switch (*fmt) {
case 'c':
//字符处理
if (!(flags & LEFT))
while (--field_width > 0)
*str++ = ' ';
*str++ = (unsigned char) va_arg(args, int);
while (--field_width > 0)
*str++ = ' ';
break;

case 's':
//字符串处理
s = va_arg(args, char *);
len = strlen(s);
if (precision < 0)
precision = len;
else if (len > precision)
len = precision;

if (!(flags & LEFT))
while (len < field_width--)
*str++ = ' ';
for (i = 0; i < len; ++i)
*str++ = *s++;
while (len < field_width--)
*str++ = ' ';
break;

case 'o':
str = number(str, va_arg(args, unsigned long), 8,
field_width, precision, flags);
break;

case 'p':
if (field_width == -1) {
field_width = 8;
flags |= ZEROPAD;
}
str = number(str,
(unsigned long) va_arg(args, void *), 16,
field_width, precision, flags);
break;

case 'x':
flags |= SMALL;
case 'X':
str = number(str, va_arg(args, unsigned long), 16,
field_width, precision, flags);
break;

case 'd':
case 'i':
flags |= SIGN;
case 'u':
str = number(str, va_arg(args, unsigned long), 10,
field_width, precision, flags);
break;

case 'n':
ip = va_arg(args, int *);
*ip = (str - buf);
break;

default:
if (*fmt != '%')
*str++ = '%';
if (*fmt)
*str++ = *fmt;
else
--fmt;
break;
}
}
*str = '\0';
return str-buf;

}

时间: 2024-12-24 06:53:31

Linux-0.0.1内核阅读连载笔记-2013.08.22的相关文章

Linux-0.0.1内核阅读连载笔记-2013.08.23

__________________________________________________________ ../kernel/Vsprintf.c __________________________________________________________ #include <linux/config.h> #include <linux/sched.h> #include <linux/fs.h> #include <linux/kernel

Linux-0.0.1内核阅读连载笔记-2013.08.20

---------------------------------------------------------------------------------- ../init/main.c ---------------------------------------------------------------------------------- /**  *本句的作用是打开 unistd.h 中定义的宏变量 _syscall0() 等  */ #define __LIBRARY__

Linux-0.0.1内核阅读连载笔记-2013.08.21

__________________________________________________________ ../kernel/Serial.c __________________________________________________________ /*  * serial.c  *  * This module implements the rs232 io functions  * void rs_write(struct tty_struct * queue);  

RedHat linux 8.0下内核编译步骤和说明_unix linux

************************************************************************以下步骤有很多都是很初级的命令或解释,因为偶是linux新手,*在编译过程中走了很多弯路,花了大量时间找各种解决办法,所以*把相应的命令都写了出来,希望对跟偶一样的才入门不久而又想*编译内核的新手有所帮助!** kilvon 05-Mar-2003******************************************************

Linux 8.0 安装 Oracle 9i

oracle 目的:在Linux 8.0 安装 Oracle 9i,确保数据库的安全和稳定 软件环境:Linux 8.0 (三张碟)Oracle 9.2.0.1.0 For Linux (三张碟) 硬件环境:P4 2.4.内存512M.硬盘80G高转.16X_DVD光驱 问题原因:Linux下运行Oracle的系统环境配置,导致Oracle无法正确安装. 问题描述: 详细解决过程一.系统参数配置1.在安装linux8.0的时候,注意把根目录(/)分区为10G左右,Swap分区为1G左右,/u01

RedFlag Linux 5.0桌面版安装oralce10

本文中描述的步骤可能有些不是必须的,但笔者没有进一步验证,故将安装过程中的所有步骤均列出在此. 1. 安装 Redflag Linux 5.0 桌面版 2. 安装前得准备,打几个补丁 1). redhat linux9下第一张光盘下的RedHat/RPMS/compat-libstdc++-7.3- 2.96.118.i386.rpm(安装方法rpm -ivh ***) 2). oracle9i204下的linux补丁 P3006854(这是在安装racle9i时用的,但由于oracle9i安装

Red Linux 6.0下安装Oracle 10g

一. 环境说明 RedHat Enterprise Linux 6.0 + Virtual Box 4.1.8 + Oracle 10g 二. 安 装前配置 1. 安装Oracle 10g R2所需的软件包 用root登录到系统,依次安装以下包 # cd /mnt/cdrom/Server/ # rpm -Uvh setarch-2* # rpm -Uvh make-3* # rpm -Uvh glibc-2*(这里匹配了两个软件包 有一个i386无法安装,直接 # rpm -Uvh glibc

Hanvon Artmaster 0806, 1209 Linux Driver 0.4发布

Hanvon Artmaster 0806, 1209 Linux Driver是一个Linux内核的USB驱动程序,支持Artmaster0806和1209的完整功能,包括:笔坐标,触摸/浮动/点击检测,压力,X和Y倾斜,画笔按钮,四个简单的平板按钮,以及滑块按钮. Hanvon Artmaster 0806, 1209 Linux Driver 0.4该版本支持平板模型,Hanvon Rollick RL0604,现在也支持驱动程序. 软件信息:http://linux.fjfi.cvut.

BlankOn Linux 7.0发布 基于Ubuntu的发行版

BlankOn Linux 7.0已经发布. BlankOn是一个基于http://www.aliyun.com/zixun/aggregation/13835.html">Ubuntu的印尼语桌面发行版并支持大多数印尼语言,Timor-Leste(葡萄牙语和德顿语)有两个官方语言,以及英语和简体中文.它还包括6个非拉丁字母书写系统(武吉士,巴塔克鸟羽,巴厘岛,巽达,拉让江和爪哇),印度尼西亚语星际译王字典,最新的ChromiumWeb浏览器.大多数音频编码解码器都可以播放Exaile音乐