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-src by
Stream.h
00001 /* mbed Microcontroller Library 00002 * Copyright (c) 2006-2013 ARM Limited 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 #ifndef MBED_STREAM_H 00017 #define MBED_STREAM_H 00018 00019 #include "platform.h" 00020 #include "FileLike.h" 00021 00022 namespace mbed { 00023 00024 extern void mbed_set_unbuffered_stream(FILE *_file); 00025 extern int mbed_getc(FILE *_file); 00026 extern char* mbed_gets(char *s, int size, FILE *_file); 00027 00028 class Stream : public FileLike { 00029 00030 public: 00031 Stream(const char *name=NULL); 00032 00033 virtual ~Stream(); 00034 00035 int putc(int c); 00036 int puts(const char *s); 00037 int getc(); 00038 char *gets(char *s, int size); 00039 int printf(const char* format, ...); 00040 int scanf(const char* format, ...); 00041 00042 operator std::FILE*() {return _file;} 00043 00044 protected: 00045 virtual int close(); 00046 virtual ssize_t write(const void* buffer, size_t length); 00047 virtual ssize_t read(void* buffer, size_t length); 00048 virtual off_t lseek(off_t offset, int whence); 00049 virtual int isatty(); 00050 virtual int fsync(); 00051 virtual off_t flen(); 00052 00053 virtual int _putc(int c) = 0; 00054 virtual int _getc() = 0; 00055 00056 std::FILE *_file; 00057 00058 /* disallow copy constructor and assignment operators */ 00059 private: 00060 Stream(const Stream&); 00061 Stream & operator = (const Stream&); 00062 }; 00063 00064 } // namespace mbed 00065 00066 #endif
Generated on Wed Jul 13 2022 00:35:21 by
1.7.2
