kservice.c 23.4 KB
Newer Older
1 2 3
/*
 * File      : kservice.c
 * This file is part of RT-Thread RTOS
D
dzzxzz 已提交
4
 * COPYRIGHT (C) 2006 - 2012, 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
 * 2012-07-18     Arda         add the alignment display for signed integer
19
 * 2012-11-23     Bernard      fix IAR compiler error. 
20
 * 2012-12-22     Bernard      fix rt_kprintf issue, which found by Grissiom.
21 22 23 24 25
 */

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

26 27 28
/* use precision */
#define RT_PRINTF_PRECISION

29 30 31
/**
 * @addtogroup KernelService
 */
D
dzzxzz 已提交
32

33 34
/*@{*/

D
dzzxzz 已提交
35
/* global errno in RT-Thread */
36
static volatile int _errno;
37

38
#if defined(RT_USING_DEVICE) && defined(RT_USING_CONSOLE)
B
bernard.xiong 已提交
39
static rt_device_t _console_device = RT_NULL;
40
#endif
41 42 43

/*
 * This function will get errno
B
bernard.xiong 已提交
44
 *
45 46 47 48 49
 * @return errno
 */
rt_err_t rt_get_errno(void)
{
	rt_thread_t tid;
B
bernard.xiong 已提交
50

D
dzzxzz 已提交
51
	if (rt_interrupt_get_nest() != 0)
52 53
	{
		/* it's in interrupt context */
54
		return _errno;
55
	}
56

57
	tid = rt_thread_self();
D
dzzxzz 已提交
58 59
	if (tid == RT_NULL)
		return _errno;
B
bernard.xiong 已提交
60

61 62
	return tid->error;
}
63
RTM_EXPORT(rt_get_errno);
64 65 66 67 68 69 70 71 72

/*
 * 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 已提交
73

D
dzzxzz 已提交
74
	if (rt_interrupt_get_nest() != 0)
75 76
	{
		/* it's in interrupt context */
77
		_errno = error;
D
dzzxzz 已提交
78

79 80
		return;
	}
81

82
	tid = rt_thread_self();
D
dzzxzz 已提交
83 84 85 86 87 88
	if (tid == RT_NULL)
	{
		_errno = error;
		
		return;
	}
B
bernard.xiong 已提交
89

90 91
	tid->error = error;
}
92
RTM_EXPORT(rt_set_errno);
93

94 95 96 97 98 99 100 101 102
/**
 * This function returns errno.
 *
 * @return the errno in the system
 */
int *_rt_errno(void)
{
	rt_thread_t tid;
	
D
dzzxzz 已提交
103 104
	if (rt_interrupt_get_nest() != 0)
		return (int *)&_errno;
105 106

	tid = rt_thread_self();
D
dzzxzz 已提交
107 108
	if (tid != RT_NULL)
		return (int *)&(tid->error);
109 110 111

	return (int *)&_errno;
}
112
RTM_EXPORT(_rt_errno);
113

114 115 116 117 118 119 120 121 122
/**
 * 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 已提交
123
void *rt_memset(void *s, int c, rt_ubase_t count)
124 125
{
#ifdef RT_TINY_SIZE
D
dzzxzz 已提交
126
	char *xs = (char *)s;
127 128 129 130 131 132

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

	return s;
#else
D
dzzxzz 已提交
133 134 135
#define LBLOCKSIZE      (sizeof(rt_int32_t))
#define UNALIGNED(X)    ((rt_int32_t)X & (LBLOCKSIZE - 1))
#define TOO_SMALL(LEN)  ((LEN) < LBLOCKSIZE)
136 137 138 139 140 141 142

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

D
dzzxzz 已提交
143
	if (!TOO_SMALL(count) && !UNALIGNED(s))
144 145
	{
		/* If we get this far, we know that n is large and m is word-aligned. */
D
dzzxzz 已提交
146
		aligned_addr = (rt_uint32_t *)s;
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168

		/* 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;
D
dzzxzz 已提交
169
			count -= 4 * LBLOCKSIZE;
170 171 172 173 174 175 176 177
		}

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

D
dzzxzz 已提交
178 179
		/* Pick up the remainder with a bytewise loop. */
		m = (char *)aligned_addr;
180 181 182 183 184 185 186 187 188 189 190 191 192 193
	}

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

	return s;

#undef LBLOCKSIZE
#undef UNALIGNED
#undef TOO_SMALL
#endif
}
194
RTM_EXPORT(rt_memset);
195 196 197 198 199 200 201 202 203 204 205

/**
 * 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 已提交
206
void *rt_memcpy(void *dst, const void *src, rt_ubase_t count)
207 208
{
#ifdef RT_TINY_SIZE
D
dzzxzz 已提交
209
	char *tmp = (char *)dst, *s = (char *)src;
210 211 212 213 214 215 216 217

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

	return dst;
#else

#define UNALIGNED(X, Y) \
D
dzzxzz 已提交
218 219 220
	(((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))
221 222
#define TOO_SMALL(LEN)  ((LEN) < BIGBLOCKSIZE)

D
dzzxzz 已提交
223 224
	char *dst_ptr = (char *)dst;
	char *src_ptr = (char *)src;
225 226 227 228 229
	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 已提交
230 231
	then punt into the byte copy loop.  This should be rare. */
	if (!TOO_SMALL(len) && !UNALIGNED(src_ptr, dst_ptr))
232
	{
D
dzzxzz 已提交
233 234
		aligned_dst = (rt_int32_t *)dst_ptr;
		aligned_src = (rt_int32_t *)src_ptr;
235

D
dzzxzz 已提交
236
		/* Copy 4X long words at a time if possible. */
237 238 239 240 241 242 243 244 245
		while (len >= BIGBLOCKSIZE)
		{
			*aligned_dst++ = *aligned_src++;
			*aligned_dst++ = *aligned_src++;
			*aligned_dst++ = *aligned_src++;
			*aligned_dst++ = *aligned_src++;
			len -= BIGBLOCKSIZE;
		}

D
dzzxzz 已提交
246
		/* Copy one long word at a time if possible. */
247 248 249 250 251 252
		while (len >= LITTLEBLOCKSIZE)
		{
			*aligned_dst++ = *aligned_src++;
			len -= LITTLEBLOCKSIZE;
		}

D
dzzxzz 已提交
253 254 255
		/* Pick up any residual with a byte copier. */
		dst_ptr = (char *)aligned_dst;
		src_ptr = (char *)aligned_src;
256 257 258 259 260 261 262 263 264 265 266 267
	}

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

	return dst;
#undef UNALIGNED
#undef BIGBLOCKSIZE
#undef LITTLEBLOCKSIZE
#undef TOO_SMALL
#endif
}
268
RTM_EXPORT(rt_memcpy);
269 270 271 272 273 274 275 276 277 278 279

/**
 * 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 已提交
280
void *rt_memmove(void *dest, const void *src, rt_ubase_t n)
281
{
D
dzzxzz 已提交
282
	char *tmp = (char *)dest, *s = (char *)src;
283 284 285

	if (s < tmp && tmp < s + n)
	{
D
dzzxzz 已提交
286 287
		tmp += n;
		s += n;
288 289

		while (n--)
290
			*(--tmp) = *(--s);
291 292 293 294 295 296 297 298 299
	}
	else
	{
		while (n--)
			*tmp++ = *s++;
	}

	return dest;
}
300
RTM_EXPORT(rt_memmove);
301 302

/**
D
dzzxzz 已提交
303 304 305 306 307 308 309
 * 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
310
 */
D
dzzxzz 已提交
311
rt_int32_t rt_memcmp(const void *cs, const void *ct, rt_ubase_t count)
312 313 314 315
{
	const unsigned char *su1, *su2;
	int res = 0;

D
dzzxzz 已提交
316
	for (su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)
317 318
		if ((res = *su1 - *su2) != 0)
			break;
D
dzzxzz 已提交
319

320 321
	return res;
}
322
RTM_EXPORT(rt_memcmp);
323 324 325 326 327 328 329 330 331

/**
 * 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 已提交
332
char *rt_strstr(const char *s1, const char *s2)
333 334 335 336 337
{
	int l1, l2;

	l2 = rt_strlen(s2);
	if (!l2)
D
dzzxzz 已提交
338
		return (char *)s1;
339 340 341
	l1 = rt_strlen(s1);
	while (l1 >= l2)
	{
D
dzzxzz 已提交
342 343 344 345
		l1 --;
		if (!rt_memcmp(s1, s2, l2))
			return (char *)s1;
		s1 ++;
346
	}
D
dzzxzz 已提交
347

348 349
	return RT_NULL;
}
350
RTM_EXPORT(rt_strstr);
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376

/**
 * 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;
}
377
RTM_EXPORT(rt_strcasecmp);
378 379 380 381

/**
 * This function will copy string no more than n bytes.
 *
382
 * @param dst the string to copy
383 384 385 386 387
 * @param src the string to be copied
 * @param n the maximum copied length
 *
 * @return the result
 */
388
char *rt_strncpy(char *dst, const char *src, rt_ubase_t n)
389
{
390 391 392 393
	if (n != 0)
	{
		char *d = dst;
		const char *s = src;
394

395 396 397 398 399 400
		do
		{
			if ((*d++ = *s++) == 0)
			{
				/* NUL pad the remaining n-1 bytes */
				while (--n != 0)
D
dzzxzz 已提交
401
					*d++ = 0;
402 403 404 405
				break;
			}
		} while (--n != 0);
	}
D
dzzxzz 已提交
406

407
	return (dst);
408
}
409
RTM_EXPORT(rt_strncpy);
410 411 412 413 414 415 416 417 418 419

/**
 * 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 已提交
420
rt_ubase_t rt_strncmp(const char *cs, const char *ct, rt_ubase_t count)
421 422 423 424 425 426 427
{
	register signed char __res = 0;

	while (count)
	{
		if ((__res = *cs - *ct++) != 0 || !*cs++)
			break;
D
dzzxzz 已提交
428
		count --;
429 430 431 432
	}

	return __res;
}
433
RTM_EXPORT(rt_strncmp);
434

435 436 437 438 439 440 441 442
/**
 * 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 已提交
443
rt_ubase_t rt_strcmp(const char *cs, const char *ct)
444 445 446
{
	while (*cs && *cs == *ct)
		cs++, ct++;
D
dzzxzz 已提交
447

448 449
	return (*cs - *ct);
}
450
RTM_EXPORT(rt_strcmp);
451

452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
/**
 * 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;
}
469
RTM_EXPORT(rt_strlen);
470 471 472 473 474 475 476 477 478 479 480 481 482 483

#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 已提交
484 485
	if (!tmp)
		return RT_NULL;
486 487

	rt_memcpy(tmp, s, len);
D
dzzxzz 已提交
488

489 490
	return tmp;
}
491
RTM_EXPORT(rt_strdup);
492 493 494 495 496
#endif

/**
 * This function will show the version of rt-thread rtos
 */
D
dzzxzz 已提交
497
void rt_show_version(void)
498 499
{
	rt_kprintf("\n \\ | /\n");
G
 
gary.li.wenchao.4 已提交
500
	rt_kprintf("- RT -     Thread Operating System\n");
wuyangyong's avatar
 
wuyangyong 已提交
501
	rt_kprintf(" / | \\     %d.%d.%d build %s\n", RT_VERSION, RT_SUBVERSION, RT_REVISION, __DATE__);
D
dzzxzz 已提交
502
	rt_kprintf(" 2006 - 2012 Copyright by rt-thread team\n");
503
}
504
RTM_EXPORT(rt_show_version);
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

/* 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;
D
dzzxzz 已提交
531 532
	while (isdigit(**s))
		i = i * 10 + *((*s)++) - '0';
533 534 535 536

	return i;
}

D
dzzxzz 已提交
537 538 539 540 541 542 543
#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' */
544 545

#ifdef RT_PRINTF_PRECISION
D
dzzxzz 已提交
546
static char *print_number(char *buf, char *end, long num, int base, int s, int precision, int type)
547
#else
D
dzzxzz 已提交
548
static char *print_number(char *buf, char *end, long num, int base, int s, int type)
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
#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;
D
dzzxzz 已提交
566 567
	if (type & LEFT)
		type &= ~ZEROPAD;
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592

	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;
D
dzzxzz 已提交
593 594
	if (num == 0)
		tmp[i++]='0';
595 596
	else
	{
D
dzzxzz 已提交
597 598
		while (num != 0)
			tmp[i++] = digits[divide(&num, base)];
599 600 601
	}

#ifdef RT_PRINTF_PRECISION
D
dzzxzz 已提交
602 603
	if (i > precision)
		precision = i;
604 605 606 607 608 609 610
	size -= precision;
#else
	size -= i;
#endif

	if (!(type&(ZEROPAD | LEFT)))
	{
611 612 613
		if ((sign)&&(size>0))
			size--;

D
dzzxzz 已提交
614
		while (size-->0)
615
		{
D
dzzxzz 已提交
616 617
			if (buf <= end)
				*buf = ' ';
D
dzzxzz 已提交
618
			++ buf;
619 620 621 622 623 624 625 626
		}
	}

	if (sign)
	{
		if (buf <= end)
		{
			*buf = sign;
D
dzzxzz 已提交
627
			-- size;
628
		}
D
dzzxzz 已提交
629
		++ buf;
630 631 632 633 634 635 636
	}

#ifdef RT_PRINTF_SPECIAL
	if (type & SPECIAL)
	{
		if (base==8)
		{
D
dzzxzz 已提交
637 638
			if (buf <= end)
				*buf = '0';
D
dzzxzz 已提交
639
			++ buf;
640
		}
D
dzzxzz 已提交
641
		else if (base == 16)
642
		{
D
dzzxzz 已提交
643 644
			if (buf <= end)
				*buf = '0';
D
dzzxzz 已提交
645
			++ buf;
646 647 648 649
			if (buf <= end)
			{
				*buf = type & LARGE? 'X' : 'x';
			}
D
dzzxzz 已提交
650
			++ buf;
651 652 653 654 655 656 657 658 659
		}
	}
#endif

	/* no align to the left */
	if (!(type & LEFT))
	{
		while (size-- > 0)
		{
D
dzzxzz 已提交
660 661
			if (buf <= end)
				*buf = c;
D
dzzxzz 已提交
662
			++ buf;
663 664 665 666 667 668
		}
	}

#ifdef RT_PRINTF_PRECISION
	while (i < precision--)
	{
D
dzzxzz 已提交
669 670
		if (buf <= end)
			*buf = '0';
D
dzzxzz 已提交
671
		++ buf;
672 673 674 675 676 677
	}
#endif

	/* put number in the temporary buffer */
	while (i-- > 0)
	{
D
dzzxzz 已提交
678 679
		if (buf <= end)
			*buf = tmp[i];
D
dzzxzz 已提交
680
		++ buf;
681 682 683 684
	}

	while (size-- > 0)
	{
D
dzzxzz 已提交
685 686
		if (buf <= end)
			*buf = ' ';
D
dzzxzz 已提交
687
		++ buf;
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
	}

	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 */
D
dzzxzz 已提交
707
	rt_int32_t field_width;		/* width of output field */
708 709 710 711 712 713 714 715 716

#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 已提交
717
	if (end < buf)
718 719 720 721
	{
		end = ((char *)-1);
		size = end - buf;
	}
B
bernard.xiong 已提交
722

723 724 725 726
	for (; *fmt ; ++fmt)
	{
		if (*fmt != '%')
		{
D
dzzxzz 已提交
727 728
			if (str <= end)
				*str = *fmt;
D
dzzxzz 已提交
729
			++ str;
730 731 732 733 734 735
			continue;
		}

		/* process flags */
		flags = 0;

D
dzzxzz 已提交
736
		while (1)
737 738
		{
			/* skips the first '%' also */
D
dzzxzz 已提交
739
			++ fmt;
740 741 742 743 744 745 746 747 748 749 750 751 752
			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 已提交
753
			++ fmt;
754 755 756 757 758 759 760 761 762 763 764 765 766 767
			/* 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 已提交
768
			++ fmt;
769 770 771
			if (isdigit(*fmt)) precision = skip_atoi(&fmt);
			else if (*fmt == '*')
			{
D
dzzxzz 已提交
772
				++ fmt;
773 774 775 776 777 778 779 780 781
				/* it's the next argument */
				precision = va_arg(args, int);
			}
			if (precision < 0) precision = 0;
		}
#endif
		/* get the conversion qualifier */
		qualifier = 0;
#ifdef RT_PRINTF_LONGLONG
782 783 784
		if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L')
#else
		if (*fmt == 'h' || *fmt == 'l')
785 786 787
#endif
		{
			qualifier = *fmt;
D
dzzxzz 已提交
788
			++ fmt;
789 790 791 792
#ifdef RT_PRINTF_LONGLONG
			if (qualifier == 'l' && *fmt == 'l')
			{
				qualifier = 'L';
D
dzzxzz 已提交
793
				++ fmt;
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
			}
#endif
		}

		/* the default base */
		base = 10;

		switch (*fmt)
		{
		case 'c':
			if (!(flags & LEFT))
			{
				while (--field_width > 0)
				{
					if (str <= end) *str = ' ';
D
dzzxzz 已提交
809
					++ str;
810 811 812 813
				}
			}

			/* get character */
D
dzzxzz 已提交
814
			c = (rt_uint8_t)va_arg(args, int);
815
			if (str <= end) *str = c;
D
dzzxzz 已提交
816
			++ str;
817 818 819 820 821

			/* put width */
			while (--field_width > 0)
			{
				if (str <= end) *str = ' ';
D
dzzxzz 已提交
822
				++ str;
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
			}
			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 已提交
840
					++ str;
841 842 843 844 845 846
				}
			}

			for (i = 0; i < len; ++i)
			{
				if (str <= end) *str = *s;
D
dzzxzz 已提交
847 848
				++ str;
				++ s;
849 850 851 852 853
			}

			while (len < field_width--)
			{
				if (str <= end) *str = ' ';
D
dzzxzz 已提交
854
				++ str;
855 856 857 858 859 860 861 862 863 864 865
			}
			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 已提交
866
							   (long)va_arg(args, void *),
867 868 869
							   16, field_width, precision, flags);
#else
			str = print_number(str, end,
D
dzzxzz 已提交
870
							   (long)va_arg(args, void *),
871 872 873 874 875 876
							   16, field_width, flags);
#endif
			continue;

		case '%':
			if (str <= end) *str = '%';
D
dzzxzz 已提交
877
			++ str;
878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
			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 已提交
899
			++ str;
900 901 902 903

			if (*fmt)
			{
				if (str <= end) *str = *fmt;
D
dzzxzz 已提交
904
				++ str;
905 906 907
			}
			else
			{
D
dzzxzz 已提交
908
				-- fmt;
909 910 911 912 913 914 915 916 917 918 919 920
			}
			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 已提交
921
			if (flags & SIGN) num = (rt_int32_t)num;
922 923 924
		}
		else if (qualifier == 'h')
		{
D
dzzxzz 已提交
925 926
			num = (rt_uint16_t)va_arg(args, rt_int32_t);
			if (flags & SIGN) num = (rt_int16_t)num;
927 928 929 930
		}
		else
		{
			num = va_arg(args, rt_uint32_t);
D
dzzxzz 已提交
931
			if (flags & SIGN) num = (rt_int32_t)num;
932 933 934 935 936 937 938 939 940 941 942 943 944 945
		}
#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;
	*/
D
dzzxzz 已提交
946
	return str - buf;
947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
}

/**
 * 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;
}
967
RTM_EXPORT(rt_snprintf);
968 969 970 971 972

/**
 * This function will fill a formatted string to buffer
 *
 * @param buf the buffer to save formatted string
B
bernard.xiong 已提交
973
 * @param arg_ptr the arg_ptr
974 975 976 977 978 979
 * @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);
}
980
RTM_EXPORT(rt_vsprintf);
981 982 983 984 985 986 987

/**
 * This function will fill a formatted string to buffer
 *
 * @param buf the buffer to save formatted string
 * @param format the format
 */
D
dzzxzz 已提交
988
rt_int32_t rt_sprintf(char *buf, const char *format, ...)
989 990 991
{
	rt_int32_t n;
	va_list arg_ptr;
B
bernard.xiong 已提交
992

993
	va_start(arg_ptr, format);
D
dzzxzz 已提交
994 995
	n = rt_vsprintf(buf ,format, arg_ptr);
	va_end(arg_ptr);
B
bernard.xiong 已提交
996

997 998
	return n;
}
999
RTM_EXPORT(rt_sprintf);
B
bernard.xiong 已提交
1000

1001 1002
#ifdef RT_USING_CONSOLE

1003
#ifdef RT_USING_DEVICE
1004 1005 1006 1007 1008 1009 1010 1011 1012
/**
 * 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;
}
1013
RTM_EXPORT(rt_console_get_device);
1014

1015
/**
B
bernard.xiong@gmail.com 已提交
1016
 * This function will set a device as console device.
1017
 * After set a device to console, all output of rt_kprintf will be
B
bernard.xiong@gmail.com 已提交
1018
 * redirected to this new device.
1019
 *
B
bernard.xiong@gmail.com 已提交
1020
 * @param name the name of new console device
1021
 *
B
bernard.xiong@gmail.com 已提交
1022
 * @return the old console device handler
1023
 */
D
dzzxzz 已提交
1024
rt_device_t rt_console_set_device(const char *name)
1025 1026 1027 1028 1029
{
	rt_device_t new, old;

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

1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
	/* 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 已提交
1047
}
1048
RTM_EXPORT(rt_console_set_device);
1049
#endif
1050

1051
#if defined(__GNUC__) || defined(__ADSPBLACKFIN__)
D
dzzxzz 已提交
1052 1053
void rt_hw_console_output(const char *str) __attribute__((weak));
void rt_hw_console_output(const char *str)
B
bernard.xiong 已提交
1054
#elif defined(__CC_ARM)
D
dzzxzz 已提交
1055
__weak void rt_hw_console_output(const char *str)
1056
#elif defined(__IAR_SYSTEMS_ICC__)
1057 1058 1059
    #if __VER__ > 540
    __weak
    #endif
1060
void rt_hw_console_output(const char *str)
1061
#else
D
dzzxzz 已提交
1062
void rt_hw_console_output(const char *str)
1063 1064
#endif
{
D
dzzxzz 已提交
1065
	/* empty console output */
1066
}
1067
RTM_EXPORT(rt_hw_console_output);
1068 1069 1070 1071 1072 1073 1074 1075 1076

/**
 * This function will print a formatted string on system console
 *
 * @param fmt the format
 */
void rt_kprintf(const char *fmt, ...)
{
	va_list args;
B
bernard.xiong 已提交
1077 1078
	rt_size_t length;
	static char rt_log_buf[RT_CONSOLEBUF_SIZE];
1079

1080
	va_start(args, fmt);
1081 1082 1083 1084 1085 1086 1087 1088
	/* the return value of vsnprintf is the number of bytes that would be
	 * written to buffer had if the size of the buffer been sufficiently
	 * large excluding the terminating null byte. If the output string
	 * would be larger than the rt_log_buf, we have to adjust the output
	 * length. */
	length = vsnprintf(rt_log_buf, sizeof(rt_log_buf) - 1, fmt, args);
	if (length > RT_CONSOLEBUF_SIZE - 1)
		length = RT_CONSOLEBUF_SIZE - 1;
1089
#ifdef RT_USING_DEVICE
1090 1091
	if (_console_device == RT_NULL)
	{
D
dzzxzz 已提交
1092
		rt_hw_console_output(rt_log_buf);
B
bernard.xiong 已提交
1093 1094 1095 1096
	}
	else
	{
		rt_device_write(_console_device, 0, rt_log_buf, length);
1097
	}
1098 1099 1100
#else
	rt_hw_console_output(rt_log_buf);
#endif
1101 1102
	va_end(args);
}
1103
RTM_EXPORT(rt_kprintf);
1104 1105 1106 1107
#else
void rt_kprintf(const char *fmt, ...)
{
}
1108 1109
RTM_EXPORT(rt_kprintf);

1110
#endif
1111

1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
#ifdef RT_USING_HEAP
/**
 * This function allocates a memory block, which address is aligned to the
 * specified alignment size.
 *
 * @param size the allocated memory block size
 * @param align the alignment size
 *
 * @return the allocated memory block on successful, otherwise returns RT_NULL
 */
void* rt_malloc_align(rt_size_t size, rt_size_t align)
{
	void *align_ptr;
	void *ptr;
	rt_size_t align_size;

	/* align the alignment size to 4 byte */
	align = ((align + 0x03) & ~0x03);

	/* get total aligned size */
	align_size = ((size + 0x03) & ~0x03) + align;
	/* allocate memory block from heap */
	ptr = rt_malloc(align_size);
	if (ptr != RT_NULL)
	{
		if (((rt_uint32_t)ptr & (align - 1)) == 0) /* the allocated memory block is aligned */
		{
			align_ptr = (void*) ((rt_uint32_t)ptr + align);
		}
		else
		{
			align_ptr = (void*) (((rt_uint32_t)ptr + (align - 1)) & ~(align - 1));
		}

		/* set the pointer before alignment pointer to the real pointer */
		*((rt_uint32_t*)((rt_uint32_t)align_ptr - sizeof(void*))) = (rt_uint32_t)ptr;

		ptr = align_ptr;
	}

	return ptr;
}
1154
RTM_EXPORT(rt_malloc_align);
1155 1156 1157 1158 1159 1160 1161

/**
 * This function release the memory block, which is allocated by rt_malloc_align
 * function and address is aligned.
 *
 * @param ptr the memory block pointer
 */
D
dzzxzz 已提交
1162
void rt_free_align(void *ptr)
1163
{
D
dzzxzz 已提交
1164
	void *real_ptr;
1165 1166 1167 1168

	real_ptr = (void*)*(rt_uint32_t*)((rt_uint32_t)ptr - sizeof(void*));
	rt_free(real_ptr);
}
1169
RTM_EXPORT(rt_free_align);
1170 1171
#endif

1172 1173
#if !defined (RT_USING_NEWLIB) && defined (RT_USING_MINILIBC) && defined (__GNUC__)
#include <sys/types.h>
D
dzzxzz 已提交
1174 1175 1176
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")));
1177 1178 1179
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 已提交
1180
char *strstr(const char *s1,const char *s2) __attribute__((weak, alias("rt_strstr")));
1181 1182
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 已提交
1183
int strncmp(const char *cs, const char *ct, size_t count) __attribute__((weak, alias("rt_strncmp")));
1184
#ifdef RT_USING_HEAP
G
 
gary.li.wenchao.4 已提交
1185
char *strdup(const char *s) __attribute__((weak, alias("rt_strdup")));
1186
#endif
1187

D
dzzxzz 已提交
1188
int sprintf(char *buf, const char *format, ...) __attribute__((weak, alias("rt_sprintf")));
1189 1190 1191
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")));

1192 1193 1194
#endif

/*@}*/