kservice.c 20.4 KB
Newer Older
1 2 3
/*
 * File      : kservice.c
 * This file is part of RT-Thread RTOS
D
dzzxzz 已提交
4
 * COPYRIGHT (C) 2006 - 2011, RT-Thread Development Team
5 6 7
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
B
bernard.xiong 已提交
8
 * http://www.rt-thread.org/license/LICENSE
9 10 11 12 13 14
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-03-16     Bernard      the first version
 * 2006-05-25     Bernard      rewrite vsprintf
 * 2006-08-10     Bernard      add rt_show_version
B
bernard.xiong 已提交
15 16
 * 2010-03-17     Bernard      remove rt_strlcpy function
 *                             fix gcc compiling issue.
17
 * 2010-04-15     Bernard      remove weak definition on ICCM16C compiler
18 19 20 21 22 23 24 25 26 27
 */

#include <rtthread.h>
#include <rthw.h>

/**
 * @addtogroup KernelService
 */
/*@{*/

D
dzzxzz 已提交
28
/* global errno in RT-Thread */
29
static volatile int _errno;
30

31
#if defined(RT_USING_DEVICE) && defined(RT_USING_CONSOLE)
B
bernard.xiong 已提交
32
static rt_device_t _console_device = RT_NULL;
33
#endif
34 35 36

/*
 * This function will get errno
B
bernard.xiong 已提交
37
 *
38 39 40 41 42
 * @return errno
 */
rt_err_t rt_get_errno(void)
{
	rt_thread_t tid;
B
bernard.xiong 已提交
43

D
dzzxzz 已提交
44
	if (rt_interrupt_get_nest() != 0)
45 46
	{
		/* it's in interrupt context */
47
		return _errno;
48
	}
49

50
	tid = rt_thread_self();
51
	if (tid == RT_NULL) return _errno;
B
bernard.xiong 已提交
52

53 54 55 56 57 58 59 60 61 62 63
	return tid->error;
}

/*
 * This function will set errno
 *
 * @param error the errno shall be set
 */
void rt_set_errno(rt_err_t error)
{
	rt_thread_t tid;
B
bernard.xiong 已提交
64

D
dzzxzz 已提交
65
	if (rt_interrupt_get_nest() != 0)
66 67
	{
		/* it's in interrupt context */
68
		_errno = error;
69 70
		return;
	}
71

72
	tid = rt_thread_self();
73
	if (tid == RT_NULL) { _errno = error; return; }
B
bernard.xiong 已提交
74

75 76 77
	tid->error = error;
}

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
/**
 * This function returns errno.
 *
 * @return the errno in the system
 */
int *_rt_errno(void)
{
	rt_thread_t tid;
	
	if (rt_interrupt_get_nest() != 0) return (int *)&_errno;

	tid = rt_thread_self();
	if (tid != RT_NULL) return (int *)&(tid->error);

	return (int *)&_errno;
}

95 96 97 98 99 100 101 102 103 104
/**
 * This function will set the content of memory to specified value
 *
 * @param s the address of source memory
 * @param c the value shall be set in content
 * @param count the copied length
 *
 * @return the address of source memory
 *
 */
D
dzzxzz 已提交
105
void *rt_memset(void *s, int c, rt_ubase_t count)
106 107
{
#ifdef RT_TINY_SIZE
D
dzzxzz 已提交
108
	char *xs = (char *)s;
109 110 111 112 113 114

	while (count--)
		*xs++ = c;

	return s;
#else
D
dzzxzz 已提交
115 116 117
#define LBLOCKSIZE      (sizeof(rt_int32_t))
#define UNALIGNED(X)    ((rt_int32_t)X & (LBLOCKSIZE - 1))
#define TOO_SMALL(LEN)  ((LEN) < LBLOCKSIZE)
118 119 120 121 122 123 124

	int i;
	char *m = (char *)s;
	rt_uint32_t buffer;
	rt_uint32_t *aligned_addr;
	rt_uint32_t d = c & 0xff;

D
dzzxzz 已提交
125
	if (!TOO_SMALL(count) && !UNALIGNED(s))
126 127
	{
		/* If we get this far, we know that n is large and m is word-aligned. */
D
dzzxzz 已提交
128
		aligned_addr = (rt_uint32_t *)s;
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159

		/* Store D into each char sized location in BUFFER so that
		 * we can set large blocks quickly.
		 */
		if (LBLOCKSIZE == 4)
		{
			buffer = (d << 8) | d;
			buffer |= (buffer << 16);
		}
		else
		{
			buffer = 0;
			for (i = 0; i < LBLOCKSIZE; i++)
				buffer = (buffer << 8) | d;
		}

		while (count >= LBLOCKSIZE*4)
		{
			*aligned_addr++ = buffer;
			*aligned_addr++ = buffer;
			*aligned_addr++ = buffer;
			*aligned_addr++ = buffer;
			count -= 4*LBLOCKSIZE;
		}

		while (count >= LBLOCKSIZE)
		{
			*aligned_addr++ = buffer;
			count -= LBLOCKSIZE;
		}

D
dzzxzz 已提交
160 161
		/* Pick up the remainder with a bytewise loop. */
		m = (char *)aligned_addr;
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
	}

	while (count--)
	{
		*m++ = (char)d;
	}

	return s;

#undef LBLOCKSIZE
#undef UNALIGNED
#undef TOO_SMALL
#endif
}

/**
 * This function will copy memory content from source address to destination
 * address.
 *
 * @param dst the address of destination memory
 * @param src  the address of source memory
 * @param count the copied length
 *
 * @return the address of destination memory
 *
 */
D
dzzxzz 已提交
188
void *rt_memcpy(void *dst, const void *src, rt_ubase_t count)
189 190
{
#ifdef RT_TINY_SIZE
D
dzzxzz 已提交
191
	char *tmp = (char *)dst, *s = (char *)src;
192 193 194 195 196 197 198 199

	while (count--)
		*tmp++ = *s++;

	return dst;
#else

#define UNALIGNED(X, Y) \
D
dzzxzz 已提交
200 201 202
	(((rt_int32_t)X & (sizeof(rt_int32_t) - 1)) | ((rt_int32_t)Y & (sizeof(rt_int32_t) - 1)))
#define BIGBLOCKSIZE    (sizeof(rt_int32_t) << 2)
#define LITTLEBLOCKSIZE (sizeof(rt_int32_t))
203 204
#define TOO_SMALL(LEN)  ((LEN) < BIGBLOCKSIZE)

D
dzzxzz 已提交
205 206
	char *dst_ptr = (char *)dst;
	char *src_ptr = (char *)src;
207 208 209 210 211
	rt_int32_t *aligned_dst;
	rt_int32_t *aligned_src;
	int len = count;

	/* If the size is small, or either SRC or DST is unaligned,
D
dzzxzz 已提交
212 213
	then punt into the byte copy loop.  This should be rare. */
	if (!TOO_SMALL(len) && !UNALIGNED(src_ptr, dst_ptr))
214
	{
D
dzzxzz 已提交
215 216
		aligned_dst = (rt_int32_t *)dst_ptr;
		aligned_src = (rt_int32_t *)src_ptr;
217

D
dzzxzz 已提交
218
		/* Copy 4X long words at a time if possible. */
219 220 221 222 223 224 225 226 227
		while (len >= BIGBLOCKSIZE)
		{
			*aligned_dst++ = *aligned_src++;
			*aligned_dst++ = *aligned_src++;
			*aligned_dst++ = *aligned_src++;
			*aligned_dst++ = *aligned_src++;
			len -= BIGBLOCKSIZE;
		}

D
dzzxzz 已提交
228
		/* Copy one long word at a time if possible. */
229 230 231 232 233 234
		while (len >= LITTLEBLOCKSIZE)
		{
			*aligned_dst++ = *aligned_src++;
			len -= LITTLEBLOCKSIZE;
		}

D
dzzxzz 已提交
235 236 237
		/* Pick up any residual with a byte copier. */
		dst_ptr = (char *)aligned_dst;
		src_ptr = (char *)aligned_src;
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
	}

	while (len--)
		*dst_ptr++ = *src_ptr++;

	return dst;
#undef UNALIGNED
#undef BIGBLOCKSIZE
#undef LITTLEBLOCKSIZE
#undef TOO_SMALL
#endif
}

/**
 * This function will move memory content from source address to destination
 * address.
 *
 * @param dest the address of destination memory
 * @param src  the address of source memory
 * @param n the copied length
 *
 * @return the address of destination memory
 *
 */
D
dzzxzz 已提交
262
void *rt_memmove(void *dest, const void *src, rt_ubase_t n)
263
{
D
dzzxzz 已提交
264
	char *tmp = (char *)dest, *s = (char *)src;
265 266 267

	if (s < tmp && tmp < s + n)
	{
D
dzzxzz 已提交
268 269
		tmp += n;
		s += n;
270 271 272 273 274 275 276 277 278 279 280 281 282 283

		while (n--)
			*tmp-- = *s--;
	}
	else
	{
		while (n--)
			*tmp++ = *s++;
	}

	return dest;
}

/**
D
dzzxzz 已提交
284 285 286 287 288 289 290
 * This function will compare two areas of memory
 *
 * @param cs one area of memory
 * @param ct znother area of memory
 * @param count the size of the area
 *
 * @return the result
291
 */
D
dzzxzz 已提交
292
rt_int32_t rt_memcmp(const void *cs, const void *ct, rt_ubase_t count)
293 294 295 296
{
	const unsigned char *su1, *su2;
	int res = 0;

D
dzzxzz 已提交
297
	for (su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)
298 299 300 301 302 303 304 305 306 307 308 309 310
		if ((res = *su1 - *su2) != 0)
			break;
	return res;
}

/**
 * This function will return the first occurrence of a string.
 *
 * @param s1 the source string
 * @param s2 the find string
 *
 * @return the first occurrence of a s2 in s1, or RT_NULL if no found.
 */
D
dzzxzz 已提交
311
char *rt_strstr(const char *s1, const char *s2)
312 313 314 315 316
{
	int l1, l2;

	l2 = rt_strlen(s2);
	if (!l2)
D
dzzxzz 已提交
317
		return (char *)s1;
318 319 320
	l1 = rt_strlen(s1);
	while (l1 >= l2)
	{
D
dzzxzz 已提交
321 322 323 324
		l1 --;
		if (!rt_memcmp(s1, s2, l2))
			return (char *)s1;
		s1 ++;
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
	}
	return RT_NULL;
}

/**
 * This function will compare two strings while ignoring differences in case
 *
 * @param a the string to be compared
 * @param b the string to be compared
 *
 * @return the result
 */
rt_uint32_t rt_strcasecmp(const char *a, const char *b)
{
	int ca, cb;

	do
	{
		ca = *a++ & 0xff;
		cb = *b++ & 0xff;
		if (ca >= 'A' && ca <= 'Z')
			ca += 'a' - 'A';
		if (cb >= 'A' && cb <= 'Z')
			cb += 'a' - 'A';
	}
	while (ca == cb && ca != '\0');

	return ca - cb;
}

/**
 * This function will copy string no more than n bytes.
 *
 * @param dest the string to copy
 * @param src the string to be copied
 * @param n the maximum copied length
 *
 * @return the result
 */
char *rt_strncpy(char *dest, const char *src, rt_ubase_t n)
{
D
dzzxzz 已提交
366
	char *tmp = (char *)dest, *s = (char *)src;
367

D
dzzxzz 已提交
368
	while (n--)
369 370 371 372 373 374 375 376 377 378 379 380 381 382
		*tmp++ = *s++;

	return dest;
}

/**
 * This function will compare two strings with specified maximum length
 *
 * @param cs the string to be compared
 * @param ct the string to be compared
 * @param count the maximum compare length
 *
 * @return the result
 */
D
dzzxzz 已提交
383
rt_ubase_t rt_strncmp(const char *cs, const char *ct, rt_ubase_t count)
384 385 386 387 388 389 390
{
	register signed char __res = 0;

	while (count)
	{
		if ((__res = *cs - *ct++) != 0 || !*cs++)
			break;
D
dzzxzz 已提交
391
		count --;
392 393 394 395 396
	}

	return __res;
}

397 398 399 400 401 402 403 404
/**
 * This function will compare two strings without specified length
 *
 * @param cs the string to be compared
 * @param ct the string to be compared
 *
 * @return the result
 */
D
dzzxzz 已提交
405
rt_ubase_t rt_strcmp(const char *cs, const char *ct)
406 407 408 409 410 411
{
	while (*cs && *cs == *ct)
		cs++, ct++;
	return (*cs - *ct);
}

412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
/**
 * This function will return the length of a string, which terminate will
 * null character.
 *
 * @param s the string
 *
 * @return the length of string
 */
rt_ubase_t rt_strlen(const char *s)
{
	const char *sc;

	for (sc = s; *sc != '\0'; ++sc) /* nothing */
		;

	return sc - s;
}

#ifdef RT_USING_HEAP
/**
 * This function will duplicate a string.
 *
 * @param s the string to be duplicated
 *
 * @return the duplicated string pointer
 */
char *rt_strdup(const char *s)
{
	rt_size_t len = rt_strlen(s) + 1;
	char *tmp = (char *)rt_malloc(len);

D
dzzxzz 已提交
443
	if (!tmp) return RT_NULL;
444 445 446 447 448 449 450 451 452

	rt_memcpy(tmp, s, len);
	return tmp;
}
#endif

/**
 * This function will show the version of rt-thread rtos
 */
D
dzzxzz 已提交
453
void rt_show_version(void)
454 455
{
	rt_kprintf("\n \\ | /\n");
G
 
gary.li.wenchao.4 已提交
456
	rt_kprintf("- RT -     Thread Operating System\n");
B
bernard.xiong 已提交
457
	rt_kprintf(" / | \\ 0.%d.%d build %s\n", RT_VERSION, RT_SUBVERSION, __DATE__);
B
bernard.xiong 已提交
458
	rt_kprintf(" 2006 - 2011 Copyright by rt-thread team\n");
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
}

/* private function */
#define isdigit(c)  ((unsigned)((c) - '0') < 10)

rt_inline rt_int32_t divide(rt_int32_t *n, rt_int32_t base)
{
	rt_int32_t res;

	/* optimized for processor which does not support divide instructions. */
	if (base == 10)
	{
		res = ((rt_uint32_t)*n) % 10U;
		*n = ((rt_uint32_t)*n) / 10U;
	}
	else
	{
		res = ((rt_uint32_t)*n) % 16U;
		*n = ((rt_uint32_t)*n) / 16U;
	}

	return res;
}

rt_inline int skip_atoi(const char **s)
{
	register int i=0;
	while (isdigit(**s)) i = i*10 + *((*s)++) - '0';

	return i;
}

D
dzzxzz 已提交
491 492 493 494 495 496 497
#define ZEROPAD     (1 << 0)	/* pad with zero */
#define SIGN        (1 << 1)	/* unsigned/signed long */
#define PLUS        (1 << 2)	/* show plus */
#define SPACE       (1 << 3)	/* space if plus */
#define LEFT        (1 << 4)	/* left justified */
#define SPECIAL     (1 << 5)	/* 0x */
#define LARGE       (1 << 6)	/* use 'ABCDEF' instead of 'abcdef' */
498 499

#ifdef RT_PRINTF_PRECISION
D
dzzxzz 已提交
500
static char *print_number(char *buf, char *end, long num, int base, int s, int precision, int type)
501
#else
D
dzzxzz 已提交
502
static char *print_number(char *buf, char *end, long num, int base, int s, int type)
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
#endif
{
	char c, sign;
#ifdef RT_PRINTF_LONGLONG
	char tmp[32];
#else
	char tmp[16];
#endif
	const char *digits;
	static const char small_digits[] = "0123456789abcdef";
	static const char large_digits[] = "0123456789ABCDEF";
	register int i;
	register int size;

	size = s;

	digits = (type & LARGE) ? large_digits : small_digits;
	if (type & LEFT) type &= ~ZEROPAD;

	c = (type & ZEROPAD) ? '0' : ' ';

	/* get sign */
	sign = 0;
	if (type & SIGN)
	{
		if (num < 0)
		{
			sign = '-';
			num = -num;
		}
		else if (type & PLUS) sign = '+';
		else if (type & SPACE) sign = ' ';
	}

#ifdef RT_PRINTF_SPECIAL
	if (type & SPECIAL)
	{
		if (base == 16) size -= 2;
		else if (base == 8) size--;
	}
#endif

	i = 0;
	if (num == 0) tmp[i++]='0';
	else
	{
		while (num != 0) tmp[i++] = digits[divide(&num, base)];
	}

#ifdef RT_PRINTF_PRECISION
	if (i > precision) precision = i;
	size -= precision;
#else
	size -= i;
#endif

	if (!(type&(ZEROPAD | LEFT)))
	{
D
dzzxzz 已提交
561
		while (size-->0)
562 563
		{
			if (buf <= end) *buf = ' ';
D
dzzxzz 已提交
564
			++ buf;
565 566 567 568 569 570 571 572
		}
	}

	if (sign)
	{
		if (buf <= end)
		{
			*buf = sign;
D
dzzxzz 已提交
573
			-- size;
574
		}
D
dzzxzz 已提交
575
		++ buf;
576 577 578 579 580 581 582 583
	}

#ifdef RT_PRINTF_SPECIAL
	if (type & SPECIAL)
	{
		if (base==8)
		{
			if (buf <= end) *buf = '0';
D
dzzxzz 已提交
584
			++ buf;
585
		}
D
dzzxzz 已提交
586
		else if (base == 16)
587 588
		{
			if (buf <= end) *buf = '0';
D
dzzxzz 已提交
589
			++ buf;
590 591 592 593
			if (buf <= end)
			{
				*buf = type & LARGE? 'X' : 'x';
			}
D
dzzxzz 已提交
594
			++ buf;
595 596 597 598 599 600 601 602 603 604
		}
	}
#endif

	/* no align to the left */
	if (!(type & LEFT))
	{
		while (size-- > 0)
		{
			if (buf <= end) *buf = c;
D
dzzxzz 已提交
605
			++ buf;
606 607 608 609 610 611 612
		}
	}

#ifdef RT_PRINTF_PRECISION
	while (i < precision--)
	{
		if (buf <= end) *buf = '0';
D
dzzxzz 已提交
613
		++ buf;
614 615 616 617 618 619 620
	}
#endif

	/* put number in the temporary buffer */
	while (i-- > 0)
	{
		if (buf <= end) *buf = tmp[i];
D
dzzxzz 已提交
621
		++ buf;
622 623 624 625 626
	}

	while (size-- > 0)
	{
		if (buf <= end) *buf = ' ';
D
dzzxzz 已提交
627
		++ buf;
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
	}

	return buf;
}

static rt_int32_t vsnprintf(char *buf, rt_size_t size, const char *fmt, va_list args)
{
#ifdef RT_PRINTF_LONGLONG
	unsigned long long num;
#else
	rt_uint32_t num;
#endif
	int i, len;
	char *str, *end, c;
	const char *s;

	rt_uint8_t base;			/* the base of number */
	rt_uint8_t flags;			/* flags to print number */
	rt_uint8_t qualifier;		/* 'h', 'l', or 'L' for integer fields */
	rt_int32_t field_width;	/* width of output field */

#ifdef RT_PRINTF_PRECISION
	int precision;		/* min. # of digits for integers and max for a string */
#endif

	str = buf;
	end = buf + size - 1;

	/* Make sure end is always >= buf */
B
bernard.xiong 已提交
657
	if (end < buf)
658 659 660 661
	{
		end = ((char *)-1);
		size = end - buf;
	}
B
bernard.xiong 已提交
662

663 664 665 666 667
	for (; *fmt ; ++fmt)
	{
		if (*fmt != '%')
		{
			if (str <= end) *str = *fmt;
D
dzzxzz 已提交
668
			++ str;
669 670 671 672 673 674
			continue;
		}

		/* process flags */
		flags = 0;

D
dzzxzz 已提交
675
		while (1)
676 677
		{
			/* skips the first '%' also */
D
dzzxzz 已提交
678
			++ fmt;
679 680 681 682 683 684 685 686 687 688 689 690 691
			if (*fmt == '-') flags |= LEFT;
			else if (*fmt == '+') flags |= PLUS;
			else if (*fmt == ' ') flags |= SPACE;
			else if (*fmt == '#') flags |= SPECIAL;
			else if (*fmt == '0') flags |= ZEROPAD;
			else break;
		}

		/* get field width */
		field_width = -1;
		if (isdigit(*fmt)) field_width = skip_atoi(&fmt);
		else if (*fmt == '*')
		{
D
dzzxzz 已提交
692
			++ fmt;
693 694 695 696 697 698 699 700 701 702 703 704 705 706
			/* it's the next argument */
			field_width = va_arg(args, int);
			if (field_width < 0)
			{
				field_width = -field_width;
				flags |= LEFT;
			}
		}

#ifdef RT_PRINTF_PRECISION
		/* get the precision */
		precision = -1;
		if (*fmt == '.')
		{
D
dzzxzz 已提交
707
			++ fmt;
708 709 710
			if (isdigit(*fmt)) precision = skip_atoi(&fmt);
			else if (*fmt == '*')
			{
D
dzzxzz 已提交
711
				++ fmt;
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
				/* it's the next argument */
				precision = va_arg(args, int);
			}
			if (precision < 0) precision = 0;
		}
#endif
		/* get the conversion qualifier */
		qualifier = 0;
		if (*fmt == 'h' || *fmt == 'l'
#ifdef RT_PRINTF_LONGLONG
				|| *fmt == 'L'
#endif
		   )
		{
			qualifier = *fmt;
D
dzzxzz 已提交
727
			++ fmt;
728 729 730 731
#ifdef RT_PRINTF_LONGLONG
			if (qualifier == 'l' && *fmt == 'l')
			{
				qualifier = 'L';
D
dzzxzz 已提交
732
				++ fmt;
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
			}
#endif
		}

		/* the default base */
		base = 10;

		switch (*fmt)
		{
		case 'c':
			if (!(flags & LEFT))
			{
				while (--field_width > 0)
				{
					if (str <= end) *str = ' ';
D
dzzxzz 已提交
748
					++ str;
749 750 751 752
				}
			}

			/* get character */
D
dzzxzz 已提交
753
			c = (rt_uint8_t)va_arg(args, int);
754
			if (str <= end) *str = c;
D
dzzxzz 已提交
755
			++ str;
756 757 758 759 760

			/* put width */
			while (--field_width > 0)
			{
				if (str <= end) *str = ' ';
D
dzzxzz 已提交
761
				++ str;
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
			}
			continue;

		case 's':
			s = va_arg(args, char *);
			if (!s) s = "(NULL)";

			len = rt_strlen(s);
#ifdef RT_PRINTF_PRECISION
			if (precision > 0 && len > precision) len = precision;
#endif

			if (!(flags & LEFT))
			{
				while (len < field_width--)
				{
					if (str <= end) *str = ' ';
D
dzzxzz 已提交
779
					++ str;
780 781 782 783 784 785
				}
			}

			for (i = 0; i < len; ++i)
			{
				if (str <= end) *str = *s;
D
dzzxzz 已提交
786 787
				++ str;
				++ s;
788 789 790 791 792
			}

			while (len < field_width--)
			{
				if (str <= end) *str = ' ';
D
dzzxzz 已提交
793
				++ str;
794 795 796 797 798 799 800 801 802 803 804
			}
			continue;

		case 'p':
			if (field_width == -1)
			{
				field_width = sizeof(void *) << 1;
				flags |= ZEROPAD;
			}
#ifdef RT_PRINTF_PRECISION
			str = print_number(str, end,
D
dzzxzz 已提交
805
							   (long)va_arg(args, void *),
806 807 808
							   16, field_width, precision, flags);
#else
			str = print_number(str, end,
D
dzzxzz 已提交
809
							   (long)va_arg(args, void *),
810 811 812 813 814 815
							   16, field_width, flags);
#endif
			continue;

		case '%':
			if (str <= end) *str = '%';
D
dzzxzz 已提交
816
			++ str;
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837
			continue;

			/* integer number formats - set up the flags and "break" */
		case 'o':
			base = 8;
			break;

		case 'X':
			flags |= LARGE;
		case 'x':
			base = 16;
			break;

		case 'd':
		case 'i':
			flags |= SIGN;
		case 'u':
			break;

		default:
			if (str <= end) *str = '%';
D
dzzxzz 已提交
838
			++ str;
839 840 841 842

			if (*fmt)
			{
				if (str <= end) *str = *fmt;
D
dzzxzz 已提交
843
				++ str;
844 845 846
			}
			else
			{
D
dzzxzz 已提交
847
				-- fmt;
848 849 850 851 852 853 854 855 856 857 858 859
			}
			continue;
		}

#ifdef RT_PRINTF_LONGLONG
		if (qualifier == 'L') num = va_arg(args, long long);
		else if (qualifier == 'l')
#else
		if (qualifier == 'l')
#endif
		{
			num = va_arg(args, rt_uint32_t);
D
dzzxzz 已提交
860
			if (flags & SIGN) num = (rt_int32_t)num;
861 862 863
		}
		else if (qualifier == 'h')
		{
D
dzzxzz 已提交
864 865
			num = (rt_uint16_t)va_arg(args, rt_int32_t);
			if (flags & SIGN) num = (rt_int16_t)num;
866 867 868 869
		}
		else
		{
			num = va_arg(args, rt_uint32_t);
D
dzzxzz 已提交
870
			if (flags & SIGN) num = (rt_int32_t)num;
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
		}
#ifdef RT_PRINTF_PRECISION
		str = print_number(str, end, num, base, field_width, precision, flags);
#else
		str = print_number(str, end, num, base, field_width, flags);
#endif
	}

	if (str <= end) *str = '\0';
	else *end = '\0';

	/* the trailing null byte doesn't count towards the total
	* ++str;
	*/
	return str-buf;
}

/**
 * This function will fill a formatted string to buffer
 *
 * @param buf the buffer to save formatted string
 * @param size the size of buffer
 * @param fmt the format
 */
rt_int32_t rt_snprintf(char *buf, rt_size_t size, const char *fmt, ...)
{
	rt_int32_t n;
	va_list args;

	va_start(args, fmt);
	n = vsnprintf(buf, size, fmt, args);
	va_end(args);

	return n;
}

/**
 * This function will fill a formatted string to buffer
 *
 * @param buf the buffer to save formatted string
B
bernard.xiong 已提交
911
 * @param arg_ptr the arg_ptr
912 913 914 915 916 917 918 919 920 921 922 923 924
 * @param format the format
 */
rt_int32_t rt_vsprintf(char *buf, const char *format, va_list arg_ptr)
{
	return vsnprintf(buf, (rt_size_t) -1, format, arg_ptr);
}

/**
 * This function will fill a formatted string to buffer
 *
 * @param buf the buffer to save formatted string
 * @param format the format
 */
D
dzzxzz 已提交
925
rt_int32_t rt_sprintf(char *buf, const char *format, ...)
926 927 928
{
	rt_int32_t n;
	va_list arg_ptr;
B
bernard.xiong 已提交
929

930
	va_start(arg_ptr, format);
D
dzzxzz 已提交
931 932
	n = rt_vsprintf(buf ,format, arg_ptr);
	va_end(arg_ptr);
B
bernard.xiong 已提交
933

934 935
	return n;
}
B
bernard.xiong 已提交
936

937 938
#ifdef RT_USING_CONSOLE

939
#ifdef RT_USING_DEVICE
940 941 942 943 944 945 946 947 948 949
/**
 * This function returns the device using in console.
 *
 * @return the device using in console or RT_NULL
 */
rt_device_t rt_console_get_device(void)
{
	return _console_device;
}

950
/**
B
bernard.xiong@gmail.com 已提交
951
 * This function will set a device as console device.
952
 * After set a device to console, all output of rt_kprintf will be
B
bernard.xiong@gmail.com 已提交
953
 * redirected to this new device.
954
 *
B
bernard.xiong@gmail.com 已提交
955
 * @param name the name of new console device
956
 *
B
bernard.xiong@gmail.com 已提交
957
 * @return the old console device handler
958
 */
D
dzzxzz 已提交
959
rt_device_t rt_console_set_device(const char *name)
960 961 962 963 964
{
	rt_device_t new, old;

	/* save old device */
	old = _console_device;
965

966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981
	/* find new console device */
	new = rt_device_find(name);
	if (new != RT_NULL)
	{
		if (_console_device != RT_NULL)
		{
			/* close old console device */
			rt_device_close(_console_device);
		}

		/* set new console device */
		_console_device = new;
		rt_device_open(_console_device, RT_DEVICE_OFLAG_RDWR);
	}

	return old;
B
bernard.xiong 已提交
982
}
983
#endif
984 985

#if defined(__GNUC__)
D
dzzxzz 已提交
986 987
void rt_hw_console_output(const char *str) __attribute__((weak));
void rt_hw_console_output(const char *str)
B
bernard.xiong 已提交
988
#elif defined(__CC_ARM)
D
dzzxzz 已提交
989
__weak void rt_hw_console_output(const char *str)
990
#elif defined(__IAR_SYSTEMS_ICC__)
991
#if __VER__ > 540
992
__weak
993
#endif
D
dzzxzz 已提交
994
void rt_hw_console_output(const char *str)
995 996
#endif
{
D
dzzxzz 已提交
997
	/* empty console output */
998
}
999 1000 1001 1002 1003 1004 1005 1006

/**
 * This function will print a formatted string on system console
 *
 * @param fmt the format
 */
void rt_kprintf(const char *fmt, ...)
{
qiuyiuestc's avatar
qiuyiuestc 已提交
1007

1008
	va_list args;
B
bernard.xiong 已提交
1009 1010
	rt_size_t length;
	static char rt_log_buf[RT_CONSOLEBUF_SIZE];
1011

1012
	va_start(args, fmt);
1013
	length = vsnprintf(rt_log_buf, sizeof(rt_log_buf), fmt, args);
1014
#ifdef RT_USING_DEVICE
1015 1016
	if (_console_device == RT_NULL)
	{
D
dzzxzz 已提交
1017
		rt_hw_console_output(rt_log_buf);
B
bernard.xiong 已提交
1018 1019 1020 1021
	}
	else
	{
		rt_device_write(_console_device, 0, rt_log_buf, length);
1022
	}
1023 1024 1025
#else
	rt_hw_console_output(rt_log_buf);
#endif
1026 1027
	va_end(args);
}
1028 1029 1030 1031 1032
#else
void rt_kprintf(const char *fmt, ...)
{
}
#endif
1033 1034 1035

#if !defined (RT_USING_NEWLIB) && defined (RT_USING_MINILIBC) && defined (__GNUC__)
#include <sys/types.h>
D
dzzxzz 已提交
1036 1037 1038
void *memcpy(void *dest, const void *src, size_t n) __attribute__((weak, alias("rt_memcpy")));
void *memset(void *s, int c, size_t n) __attribute__((weak, alias("rt_memset")));
void *memmove(void *dest, const void *src, size_t n) __attribute__((weak, alias("rt_memmove")));
1039 1040 1041
int   memcmp(const void *s1, const void *s2, size_t n) __attribute__((weak, alias("rt_memcmp")));

size_t strlen(const char *s) __attribute__((weak, alias("rt_strlen")));
G
 
gary.li.wenchao.4 已提交
1042
char *strstr(const char *s1,const char *s2) __attribute__((weak, alias("rt_strstr")));
1043 1044
int strcasecmp(const char *a, const char *b) __attribute__((weak, alias("rt_strcasecmp")));
char *strncpy(char *dest, const char *src, size_t n) __attribute__((weak, alias("rt_strncpy")));
G
 
gary.li.wenchao.4 已提交
1045
int strncmp(const char *cs, const char *ct, size_t count) __attribute__((weak, alias("rt_strncmp")));
1046
#ifdef RT_USING_HEAP
G
 
gary.li.wenchao.4 已提交
1047
char *strdup(const char *s) __attribute__((weak, alias("rt_strdup")));
1048
#endif
1049

D
dzzxzz 已提交
1050
int sprintf(char *buf, const char *format, ...) __attribute__((weak, alias("rt_sprintf")));
1051 1052 1053
int snprintf(char *buf, rt_size_t size, const char *fmt, ...) __attribute__((weak, alias("rt_snprintf")));
int vsprintf(char *buf, const char *format, va_list arg_ptr) __attribute__((weak, alias("rt_vsprintf")));

1054 1055 1056
#endif

/*@}*/