mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] Use FILE structure for stdin/stdout/stderr.
@ 2013-06-01 15:56 monaka
  2013-06-02 15:01 ` Masaki Muranaka
  0 siblings, 1 reply; 2+ messages in thread
From: monaka @ 2013-06-01 15:56 UTC (permalink / raw)
  To: barebox

From: Masaki Muranaka <monaka@monami-ya.com>

Signed-off-by: Masaki Muranaka <monaka@monami-ya.com>
---
 common/console.c        |  6 +++---
 common/console_common.c | 19 +++++++++----------
 include/filetype.h      |  2 ++
 include/stdio.h         | 17 +++++++++--------
 4 files changed, 23 insertions(+), 21 deletions(-)

diff --git a/common/console.c b/common/console.c
index a0a06f6..7a8ac4f 100644
--- a/common/console.c
+++ b/common/console.c
@@ -246,13 +246,13 @@ int getc(void)
 }
 EXPORT_SYMBOL(getc);
 
-int fgetc(int fd)
+int fgetc(FILE *file)
 {
 	char c;
 
-	if (!fd)
+	if (file == stdin)
 		return getc();
-	return read(fd, &c, 1);
+	return read(file->no, &c, 1);
 }
 EXPORT_SYMBOL(fgetc);
 
diff --git a/common/console_common.c b/common/console_common.c
index d139d1a..34713f9 100644
--- a/common/console_common.c
+++ b/common/console_common.c
@@ -66,7 +66,7 @@ EXPORT_SYMBOL(vprintf);
 
 #endif /* !CONFIG_CONSOLE_NONE */
 
-int fprintf(int file, const char *fmt, ...)
+int fprintf(FILE *file, const char *fmt, ...)
 {
 	va_list args;
 	char printbuffer[CFG_PBSIZE];
@@ -85,26 +85,25 @@ int fprintf(int file, const char *fmt, ...)
 }
 EXPORT_SYMBOL(fprintf);
 
-int fputs(int fd, const char *s)
+int fputs(FILE *file, const char *s)
 {
-	if (fd == 1)
+	if (file == stdout)
 		return puts(s);
-	else if (fd == 2)
+	else if (file == stderr)
 		return eputs(s);
 	else
-		return write(fd, s, strlen(s));
+		return write(file->no, s, strlen(s));
 }
 EXPORT_SYMBOL(fputs);
 
-int fputc(int fd, char c)
+int fputc(FILE *file, char c)
 {
-	if (fd == 1)
+	if (file == stdout)
 		putchar(c);
-	else if (fd == 2)
+	else if (file == stderr)
 		eputc(c);
 	else
-		return write(fd, &c, 1);
-
+		return write(file->no, &c, 1);
 	return 0;
 }
 EXPORT_SYMBOL(fputc);
diff --git a/include/filetype.h b/include/filetype.h
index ee777ac..c73c64a 100644
--- a/include/filetype.h
+++ b/include/filetype.h
@@ -1,6 +1,8 @@
 #ifndef __FILE_TYPE_H
 #define __FILE_TYPE_H
 
+#include <linux/string.h>
+
 /*
  * List of file types we know
  */
diff --git a/include/stdio.h b/include/stdio.h
index 5c091a8..00d1ed7 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -3,6 +3,7 @@
 
 #include <stdarg.h>
 #include <console.h>
+#include <fs.h>
 
 /*
  * STDIO based functions (can always be used)
@@ -93,15 +94,15 @@ static inline void putchar(char c)
  * FILE based functions
  */
 
-#define stdin		0
-#define stdout		1
-#define stderr		2
+#define stdin		((FILE *)0x10)
+#define stdout		((FILE *)0x11)
+#define stderr		((FILE *)0x12)
 #define MAX_FILES	128
 
-int	fprintf(int file, const char *fmt, ...) __attribute__ ((format(__printf__, 2, 3)));
-int	fputs(int file, const char *s);
-int	fputc(int file, const char c);
-int	ftstc(int file);
-int	fgetc(int file);
+int	fprintf(FILE *file, const char *fmt, ...) __attribute__ ((format(__printf__, 2, 3)));
+int	fputs(FILE *file, const char *s);
+int	fputc(FILE *file, const char c);
+int	ftstc(FILE *file);
+int	fgetc(FILE *file);
 
 #endif /* __STDIO_H */
-- 
1.8.3


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] Use FILE structure for stdin/stdout/stderr.
  2013-06-01 15:56 [PATCH] Use FILE structure for stdin/stdout/stderr monaka
@ 2013-06-02 15:01 ` Masaki Muranaka
  0 siblings, 0 replies; 2+ messages in thread
From: Masaki Muranaka @ 2013-06-02 15:01 UTC (permalink / raw)
  To: barebox

Hello,

This patch has side effects to echo.c.
Please reject it for now. I'm working in progress. I'll re-send soon.

2013/6/2  <monaka@monami-ya.jp>:
> From: Masaki Muranaka <monaka@monami-ya.com>
>
> Signed-off-by: Masaki Muranaka <monaka@monami-ya.com>
> ---
>  common/console.c        |  6 +++---
>  common/console_common.c | 19 +++++++++----------
>  include/filetype.h      |  2 ++
>  include/stdio.h         | 17 +++++++++--------
>  4 files changed, 23 insertions(+), 21 deletions(-)
>
> diff --git a/common/console.c b/common/console.c
> index a0a06f6..7a8ac4f 100644
> --- a/common/console.c
> +++ b/common/console.c
> @@ -246,13 +246,13 @@ int getc(void)
>  }
>  EXPORT_SYMBOL(getc);
>
> -int fgetc(int fd)
> +int fgetc(FILE *file)
>  {
>         char c;
>
> -       if (!fd)
> +       if (file == stdin)
>                 return getc();
> -       return read(fd, &c, 1);
> +       return read(file->no, &c, 1);
>  }
>  EXPORT_SYMBOL(fgetc);
>
> diff --git a/common/console_common.c b/common/console_common.c
> index d139d1a..34713f9 100644
> --- a/common/console_common.c
> +++ b/common/console_common.c
> @@ -66,7 +66,7 @@ EXPORT_SYMBOL(vprintf);
>
>  #endif /* !CONFIG_CONSOLE_NONE */
>
> -int fprintf(int file, const char *fmt, ...)
> +int fprintf(FILE *file, const char *fmt, ...)
>  {
>         va_list args;
>         char printbuffer[CFG_PBSIZE];
> @@ -85,26 +85,25 @@ int fprintf(int file, const char *fmt, ...)
>  }
>  EXPORT_SYMBOL(fprintf);
>
> -int fputs(int fd, const char *s)
> +int fputs(FILE *file, const char *s)
>  {
> -       if (fd == 1)
> +       if (file == stdout)
>                 return puts(s);
> -       else if (fd == 2)
> +       else if (file == stderr)
>                 return eputs(s);
>         else
> -               return write(fd, s, strlen(s));
> +               return write(file->no, s, strlen(s));
>  }
>  EXPORT_SYMBOL(fputs);
>
> -int fputc(int fd, char c)
> +int fputc(FILE *file, char c)
>  {
> -       if (fd == 1)
> +       if (file == stdout)
>                 putchar(c);
> -       else if (fd == 2)
> +       else if (file == stderr)
>                 eputc(c);
>         else
> -               return write(fd, &c, 1);
> -
> +               return write(file->no, &c, 1);
>         return 0;
>  }
>  EXPORT_SYMBOL(fputc);
> diff --git a/include/filetype.h b/include/filetype.h
> index ee777ac..c73c64a 100644
> --- a/include/filetype.h
> +++ b/include/filetype.h
> @@ -1,6 +1,8 @@
>  #ifndef __FILE_TYPE_H
>  #define __FILE_TYPE_H
>
> +#include <linux/string.h>
> +
>  /*
>   * List of file types we know
>   */
> diff --git a/include/stdio.h b/include/stdio.h
> index 5c091a8..00d1ed7 100644
> --- a/include/stdio.h
> +++ b/include/stdio.h
> @@ -3,6 +3,7 @@
>
>  #include <stdarg.h>
>  #include <console.h>
> +#include <fs.h>
>
>  /*
>   * STDIO based functions (can always be used)
> @@ -93,15 +94,15 @@ static inline void putchar(char c)
>   * FILE based functions
>   */
>
> -#define stdin          0
> -#define stdout         1
> -#define stderr         2
> +#define stdin          ((FILE *)0x10)
> +#define stdout         ((FILE *)0x11)
> +#define stderr         ((FILE *)0x12)
>  #define MAX_FILES      128
>
> -int    fprintf(int file, const char *fmt, ...) __attribute__ ((format(__printf__, 2, 3)));
> -int    fputs(int file, const char *s);
> -int    fputc(int file, const char c);
> -int    ftstc(int file);
> -int    fgetc(int file);
> +int    fprintf(FILE *file, const char *fmt, ...) __attribute__ ((format(__printf__, 2, 3)));
> +int    fputs(FILE *file, const char *s);
> +int    fputc(FILE *file, const char c);
> +int    ftstc(FILE *file);
> +int    fgetc(FILE *file);
>
>  #endif /* __STDIO_H */
> --
> 1.8.3
>



-- 
--
Masaki Muranaka
Monami-ya LLC, Japan.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-06-02 15:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-01 15:56 [PATCH] Use FILE structure for stdin/stdout/stderr monaka
2013-06-02 15:01 ` Masaki Muranaka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox