Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
|
Public Member Functions | |
void | setItem (rBootHttpUpdateItem *item) |
virtual bool | init () |
size_t | write (const uint8_t *data, size_t size) override |
Write chars to stream. More... | |
StreamType | getStreamType () const override |
Get the stream type. More... | |
uint16_t | readMemoryBlock (char *data, int bufSize) override |
Read a block of memory. More... | |
bool | seek (int len) override |
Move read cursor. More... | |
bool | isFinished () override |
Check if all data has been read. More... | |
virtual bool | close () |
size_t | write (uint8_t charToWrite) override |
Write a single character to the stream. More... | |
size_t | write (const char *str) |
Writes a c-string to output stream. More... | |
size_t | write (const char *buffer, size_t size) |
Writes characters from a buffer to output stream. More... | |
virtual bool | isValid () const |
Determine if the stream object contains valid data. More... | |
int | read () override |
Read one character and moves the stream pointer. More... | |
int | peek () override |
Read a character without advancing the stream pointer. More... | |
virtual int | available () |
Return the total length of the stream. More... | |
int | length () SMING_DEPRECATED |
Return the total length of the stream. More... | |
void | flush () override |
virtual String | id () const |
Returns unique id of the resource. More... | |
virtual String | getName () const |
Returns name of the resource. More... | |
void | setTimeout (unsigned long timeout) |
bool | find (char *target) |
bool | find (char *target, size_t length) |
bool | findUntil (char *target, char *terminator) |
bool | findUntil (char *target, size_t targetLen, char *terminate, size_t termLen) |
long | parseInt () |
float | parseFloat () |
size_t | readBytes (char *buffer, size_t length) |
size_t | readBytesUntil (char terminator, char *buffer, size_t length) |
String | readString () |
String | readStringUntil (char terminator) |
virtual int | indexOf (char c) |
int | getWriteError () |
Gets last error. More... | |
void | clearWriteError () |
Clears the last write error. More... | |
size_t | print (char) |
Prints a single character to output stream. More... | |
size_t | print (const char[]) |
Prints a c-string to output stream. More... | |
size_t | print (unsigned long, int base=DEC) |
Prints a number to output stream. More... | |
size_t | print (long, int base=DEC) |
Prints a number to output stream. More... | |
size_t | print (unsigned int, int base=DEC) |
size_t | print (unsigned char, int base=DEC) |
size_t | print (int, int base=DEC) |
Prints a number to output stream. More... | |
size_t | print (double, int digits=2) |
Prints number to output stream. More... | |
size_t | print (const Printable &p) |
Prints a Printable object to output stream. More... | |
size_t | print (const String &s) |
Prints a String to output stream. More... | |
size_t | println (void) |
Prints a newline to output stream. More... | |
size_t | println (const char[]) |
Prints a c-string to output stream, appending newline. More... | |
size_t | println (char) |
Prints a single character to output stream, appending newline. More... | |
size_t | println (unsigned char, int base=DEC) |
Prints a number to output stream, appending newline. More... | |
size_t | println (unsigned int, int base=DEC) |
size_t | println (unsigned long, int base=DEC) |
size_t | println (int, int base=DEC) |
Prints a number to output stream, appending newline. More... | |
size_t | println (long, int base=DEC) |
Prints a number to output stream, appending newline. More... | |
size_t | println (double, int digits=2) |
Prints a number to output stream, appending newline. More... | |
size_t | println (const Printable &p) |
Prints a Printable object to output stream, appending newline. More... | |
size_t | println (const String &s) |
Prints a String to output stream, appending newline. More... | |
size_t | printf (const char *fmt,...) |
Prints a formatted c-string to output stream. More... | |
Protected Member Functions | |
int | timedRead () |
int | timedPeek () |
int | peekNextDigit () |
long | parseInt (char skipChar) |
float | parseFloat (char skipChar) |
void | setWriteError (int err=1) |
Protected Attributes | |
bool | initialized = false |
rBootHttpUpdateItem * | item = nullptr |
rboot_write_status | rBootWriteStatus |
unsigned long | receiveTimeout = 1000 |
unsigned long | startMillis = 0 |
|
inlinevirtualinherited |
Return the total length of the stream.
int | -1 is returned when the size cannot be determined |
Implements Stream.
Reimplemented in HardwareSerial, FileStream, GdbFileStream, CircularBuffer, StreamTransformer, MemoryDataStream, JsonObjectStream, LimitedMemoryStream, UrlencodedOutputStream, FlashMemoryStream, MultiStream, and ArduCAMStream.
|
inlineinherited |
Clears the last write error.
|
inlinevirtualinherited |
Returns name of the resource.
String |
Reimplemented in TemplateStream, FileStream, and GdbFileStream.
|
inlineoverridevirtual |
|
inlineinherited |
Gets last error.
int | Error number of last write error |
|
inlinevirtualinherited |
Returns unique id of the resource.
String | the unique id of the stream. |
Reimplemented in FileStream, GdbFileStream, and CircularBuffer.
|
inlineoverridevirtual |
|
inlinevirtualinherited |
Determine if the stream object contains valid data.
bool | true if valid, false if invalid |
Reimplemented in FileStream, and GdbFileStream.
|
inlineinherited |
Return the total length of the stream.
int | -1 is returned when the size cannot be determined |
available()
instead
|
overridevirtualinherited |
Read a character without advancing the stream pointer.
int | The character that was read or -1 if none is available |
Implements Stream.
Reimplemented in HardwareSerial.
|
inherited |
Prints a single character to output stream.
size_t | Quantity of characters written to stream |
|
inherited |
Prints a c-string to output stream.
char[] | c-string to print |
size_t | Quantity of characters written to output stream |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a number to output stream.
unsigned long | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
unsigned int | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
unsigned char | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a number to output stream.
long | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a number to output stream.
int | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
|
inherited |
Prints number to output stream.
Prints a number to output stream.
double | Number to print |
int | Decimal places to show |
size_t | Quantity of characters written to output stream |
double | Number to print |
digits | The decimal places to print (Default: 2, e.g. 21.35) |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a Printable object to output stream.
p | Object to print |
size_t | Quantity of characters written to stream |
|
inherited |
|
inherited |
Prints a formatted c-string to output stream.
fmt | Pointer to formated c-string to print |
... | Parameters for placeholders within formated string |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a newline to output stream.
Prints | newline to output stream |
size_t | Quantity of characters written to output stream |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a c-string to output stream, appending newline.
char[] | c-string to print |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a single character to output stream, appending newline.
char | Character to print |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a number to output stream, appending newline.
unsigned char | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
unsigned int | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
unsigned long | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a number to output stream, appending newline.
int | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a number to output stream, appending newline.
long | Number to print |
base | The base for output (Default: Decimal (base 10)) |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a number to output stream, appending newline.
double | Number to print |
digits | The decimal places to print (Default: 2, e.g. 21.35) |
size_t | Quantity of characters written to stream |
|
inherited |
Prints a Printable object to output stream, appending newline.
p | Object to print |
size_t | Quantity of characters written to stream |
|
inherited |
|
overridevirtualinherited |
Read one character and moves the stream pointer.
The | character that was read or -1 if none is available |
Implements Stream.
Reimplemented in HardwareSerial.
|
inlineoverridevirtual |
Read a block of memory.
data | Pointer to the data to be read |
bufSize | Quantity of chars to read |
uint16_t | Quantity of chars read |
Implements IDataSourceStream.
|
inlineoverridevirtual |
Move read cursor.
len | Relative cursor adjustment |
bool | True on success. |
Implements IDataSourceStream.
|
inlineoverridevirtualinherited |
Write a single character to the stream.
charToWrite |
size_t | Number of chars written (1 on success, 0 on failure) |
Reimplemented from IDataSourceStream.
|
inlineinherited |
Writes a c-string to output stream.
str | Pointer to c-string |
size_t | Quantity of characters written to stream |
|
overridevirtual |
Write chars to stream.
buffer | Pointer to buffer to write to the stream |
size | Quantity of chars to write |
size_t | Quantity of chars written to stream |
Implements ReadWriteStream.
|
inlineinherited |
Writes characters from a buffer to output stream.
buffer | Pointer to character buffer |
size | Quantity of characters to write |
size_t | Quantity of characters written to stream |