2015-01-31 11:13:50 +08:00
|
|
|
/*
|
2021-03-08 18:19:04 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2015-01-31 11:13:50 +08:00
|
|
|
*
|
2018-10-14 19:28:18 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-01-31 11:13:50 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2015-01-28 Bernard first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <yfuns.h>
|
2021-10-26 12:51:32 +08:00
|
|
|
#include <unistd.h>
|
2017-10-15 22:41:59 +08:00
|
|
|
#include "libc.h"
|
2015-01-31 11:13:50 +08:00
|
|
|
|
2021-09-27 18:51:40 +08:00
|
|
|
#define DBG_TAG "dlib.syscall_write"
|
|
|
|
#define DBG_LVL DBG_INFO
|
|
|
|
#include <rtdbg.h>
|
|
|
|
|
2015-01-31 11:13:50 +08:00
|
|
|
#pragma module_name = "?__write"
|
|
|
|
|
|
|
|
size_t __write(int handle, const unsigned char *buf, size_t len)
|
|
|
|
{
|
2021-10-28 02:42:25 +08:00
|
|
|
#ifdef RT_USING_POSIX
|
2015-01-31 11:13:50 +08:00
|
|
|
int size;
|
2021-10-28 02:42:25 +08:00
|
|
|
#endif /* RT_USING_POSIX */
|
2015-01-31 11:13:50 +08:00
|
|
|
|
|
|
|
if ((handle == _LLIO_STDOUT) || (handle == _LLIO_STDERR))
|
|
|
|
{
|
2021-10-28 02:42:25 +08:00
|
|
|
#ifdef RT_USING_POSIX
|
2021-09-27 18:51:40 +08:00
|
|
|
if (libc_stdio_get_console() < 0)
|
|
|
|
{
|
2021-09-27 19:29:50 +08:00
|
|
|
LOG_W("Do not invoke standard output before initializing libc");
|
|
|
|
return 0;
|
2021-09-27 18:51:40 +08:00
|
|
|
}
|
2021-09-22 00:51:26 +08:00
|
|
|
return write(STDOUT_FILENO, (void*)buf, len);
|
2021-10-26 12:51:32 +08:00
|
|
|
#elif defined(RT_USING_CONSOLE)
|
2015-01-31 11:13:50 +08:00
|
|
|
rt_device_t console_device;
|
|
|
|
|
|
|
|
console_device = rt_console_get_device();
|
2021-09-22 00:51:26 +08:00
|
|
|
if (console_device != 0)
|
|
|
|
{
|
|
|
|
rt_device_write(console_device, 0, buf, len);
|
|
|
|
}
|
2015-01-31 11:13:50 +08:00
|
|
|
|
|
|
|
return len;
|
2021-10-26 12:51:32 +08:00
|
|
|
#else
|
|
|
|
return _LLIO_ERROR;
|
2021-10-28 02:42:25 +08:00
|
|
|
#endif /* RT_USING_POSIX */
|
2015-01-31 11:13:50 +08:00
|
|
|
}
|
2021-09-22 00:51:26 +08:00
|
|
|
else if (handle == _LLIO_STDIN)
|
|
|
|
{
|
|
|
|
return _LLIO_ERROR;
|
|
|
|
}
|
2015-01-31 11:13:50 +08:00
|
|
|
|
2021-10-28 02:42:25 +08:00
|
|
|
#ifdef RT_USING_POSIX
|
2017-10-15 22:41:59 +08:00
|
|
|
size = write(handle, buf, len);
|
2015-01-31 11:13:50 +08:00
|
|
|
return size;
|
2021-10-26 12:51:32 +08:00
|
|
|
#else
|
|
|
|
return _LLIO_ERROR;
|
2021-10-28 02:42:25 +08:00
|
|
|
#endif /* RT_USING_POSIX */
|
2015-01-31 11:13:50 +08:00
|
|
|
}
|