Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed by
Diff: Stream.h
- Revision:
- 44:24d45a770a51
- Parent:
- 27:7110ebee3484
- Child:
- 54:71b101360fb9
--- a/Stream.h Fri Oct 26 17:40:46 2012 +0100 +++ b/Stream.h Wed Nov 21 10:49:56 2012 +0000 @@ -1,50 +1,48 @@ -/* mbed Microcontroller Library - Stream - * Copyright (c) 2007-2009 ARM Limited. All rights reserved. - */ - +/* mbed Microcontroller Library + * Copyright (c) 2006-2012 ARM Limited + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ #ifndef MBED_STREAM_H #define MBED_STREAM_H -#include "FileLike.h" #include "platform.h" -#include <cstdio> +#include "FileHandle.h" namespace mbed { -class Stream : public FileLike { +class Stream : public FileHandle { public: - - Stream(const char *name = NULL); + Stream(void); virtual ~Stream(); - int putc(int c) { - fflush(_file); - return std::fputc(c, _file); - } - int puts(const char *s) { - fflush(_file); - return std::fputs(s, _file); - } - int getc() { - fflush(_file); - return std::fgetc(_file); - } - char *gets(char *s, int size) { - fflush(_file); - return std::fgets(s,size,_file);; - } + int putc(int c); + int puts(const char *s); + int getc(); + char *gets(char *s, int size); int printf(const char* format, ...); int scanf(const char* format, ...); - operator std::FILE*() { return _file; } - -#ifdef MBED_RPC - virtual const struct rpc_method *get_rpc_methods(); -#endif + operator std::FILE*() {return _file;} protected: - virtual int close(); virtual ssize_t write(const void* buffer, size_t length); virtual ssize_t read(void* buffer, size_t length); @@ -57,10 +55,8 @@ virtual int _getc() = 0; std::FILE *_file; - }; } // namespace mbed #endif -