4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 13:33:31 +08:00

66 lines
1.7 KiB
C
Raw Normal View History

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>
2021-11-12 16:47:32 -05:00
#include <LowLevelIOInterface.h>
2021-10-26 00:51:32 -04:00
#include <unistd.h>
2022-01-02 17:51:44 -05:00
#ifdef RT_USING_POSIX_STDIO
#include "libc.h"
2022-01-02 17:51:44 -05:00
#endif /* RT_USING_POSIX_STDIO */
2021-12-26 09:41:24 -05:00
#include <compiler_private.h>
#define DBG_TAG "dlib.syscall.read"
#define DBG_LVL DBG_INFO
#include <rtdbg.h>
2021-11-13 10:16:31 -05:00
/*
* The "__read" function reads a number of bytes, at most "size" into
* the memory area pointed to by "buffer". It returns the number of
* bytes read, 0 at the end of the file, or _LLIO_ERROR if failure
* occurs.
*
* The template implementation below assumes that the application
* provides the function "MyLowLevelGetchar". It should return a
* character value, or -1 on failure.
*/
2015-01-31 11:13:50 +08:00
#pragma module_name = "?__read"
2021-11-13 10:16:31 -05:00
2015-01-31 11:13:50 +08:00
size_t __read(int handle, unsigned char *buf, size_t len)
{
2021-11-15 11:22:49 -05:00
#ifdef DFS_USING_POSIX
2015-01-31 11:13:50 +08:00
int size;
if (handle == _LLIO_STDIN)
{
2022-01-02 17:51:44 -05:00
#ifdef RT_USING_POSIX_STDIO
if (libc_stdio_get_console() < 0)
{
2021-12-28 23:25:16 -05:00
LOG_W("Do not invoke standard input before initializing Compiler");
2021-11-12 16:47:32 -05:00
return 0; /* error, but keep going */
}
2021-11-12 16:47:32 -05:00
return read(STDIN_FILENO, buf, len); /* return the length of the data read */
#else
2022-01-02 17:51:44 -05:00
LOG_W(_WARNING_WITHOUT_STDIO);
2021-11-12 16:47:32 -05:00
return _LLIO_ERROR;
2022-01-02 17:51:44 -05:00
#endif /* RT_USING_POSIX_STDIO */
2015-01-31 11:13:50 +08:00
}
else if ((handle == _LLIO_STDOUT) || (handle == _LLIO_STDERR))
{
2015-01-31 11:13:50 +08:00
return _LLIO_ERROR;
}
2015-01-31 11:13:50 +08:00
size = read(handle, buf, len);
2021-11-12 16:47:32 -05:00
return size; /* return the length of the data read */
2021-10-26 00:51:32 -04:00
#else
2021-12-29 07:48:36 -05:00
LOG_W(_WARNING_WITHOUT_FS);
2021-10-26 00:51:32 -04:00
return _LLIO_ERROR;
2021-11-15 11:22:49 -05:00
#endif /* DFS_USING_POSIX */
2015-01-31 11:13:50 +08:00
}