123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
-
-
- #include <stdlib.h>
- #include <Arduino.h>
-
- #include "Stream.h"
-
- #define PARSE_TIMEOUT 1000
- #define NO_SKIP_CHAR 1
-
-
- int Stream::timedRead()
- {
- int c;
- _startMillis = millis();
- do {
- c = read();
- if (c >= 0) return c;
- } while(millis() - _startMillis < _timeout);
- return -1;
- }
-
-
- int Stream::timedPeek()
- {
- int c;
- _startMillis = millis();
- do {
- c = peek();
- if (c >= 0) return c;
- } while(millis() - _startMillis < _timeout);
- return -1;
- }
-
-
-
- int Stream::peekNextDigit()
- {
- int c;
- while (1) {
- c = timedPeek();
- if (c < 0) return c;
- if (c == '-') return c;
- if (c >= '0' && c <= '9') return c;
- read();
- }
- }
-
-
-
-
- void Stream::setTimeout(unsigned long timeout)
- {
- _timeout = timeout;
- }
-
-
- bool Stream::find(char *target)
- {
- return findUntil(target, strlen(target), NULL, 0);
- }
-
-
-
- bool Stream::find(char *target, size_t length)
- {
- return findUntil(target, length, NULL, 0);
- }
-
-
- bool Stream::findUntil(char *target, char *terminator)
- {
- return findUntil(target, strlen(target), terminator, strlen(terminator));
- }
-
-
-
-
- bool Stream::findUntil(char *target, size_t targetLen, char *terminator, size_t termLen)
- {
- if (terminator == NULL) {
- MultiTarget t[1] = {{target, targetLen, 0}};
- return findMulti(t, 1) == 0 ? true : false;
- } else {
- MultiTarget t[2] = {{target, targetLen, 0}, {terminator, termLen, 0}};
- return findMulti(t, 2) == 0 ? true : false;
- }
- }
-
-
-
-
-
- long Stream::parseInt()
- {
- return parseInt(NO_SKIP_CHAR);
- }
-
-
-
- long Stream::parseInt(char skipChar)
- {
- bool isNegative = false;
- long value = 0;
- int c;
-
- c = peekNextDigit();
-
- if(c < 0)
- return 0;
-
- do{
- if(c == skipChar)
- ;
- else if(c == '-')
- isNegative = true;
- else if(c >= '0' && c <= '9')
- value = value * 10 + c - '0';
- read();
- c = timedPeek();
- }
- while( (c >= '0' && c <= '9') || c == skipChar );
-
- if(isNegative)
- value = -value;
- return value;
- }
-
-
-
- float Stream::parseFloat()
- {
- return parseFloat(NO_SKIP_CHAR);
- }
-
-
-
- float Stream::parseFloat(char skipChar){
- bool isNegative = false;
- bool isFraction = false;
- long value = 0;
- char c;
- float fraction = 1.0;
-
- c = peekNextDigit();
-
- if(c < 0)
- return 0;
-
- do{
- if(c == skipChar)
- ;
- else if(c == '-')
- isNegative = true;
- else if (c == '.')
- isFraction = true;
- else if(c >= '0' && c <= '9') {
- value = value * 10 + c - '0';
- if(isFraction)
- fraction *= 0.1;
- }
- read();
- c = timedPeek();
- }
- while( (c >= '0' && c <= '9') || c == '.' || c == skipChar );
-
- if(isNegative)
- value = -value;
- if(isFraction)
- return value * fraction;
- else
- return value;
- }
-
-
-
-
-
-
- size_t Stream::readBytes(char *buffer, size_t length)
- {
- size_t count = 0;
- while (count < length) {
- int c = timedRead();
- if (c < 0) break;
- *buffer++ = (char)c;
- count++;
- }
- return count;
- }
-
-
-
-
-
-
- size_t Stream::readBytesUntil(char terminator, char *buffer, size_t length)
- {
- if (length < 1) return 0;
- size_t index = 0;
- while (index < length) {
- int c = timedRead();
- if (c < 0 || c == terminator) break;
- *buffer++ = (char)c;
- index++;
- }
- return index;
- }
-
- String Stream::readString()
- {
- String ret;
- int c = timedRead();
- while (c >= 0)
- {
- ret += (char)c;
- c = timedRead();
- }
- return ret;
- }
-
- String Stream::readStringUntil(char terminator)
- {
- String ret;
- int c = timedRead();
- while (c >= 0 && c != terminator)
- {
- ret += (char)c;
- c = timedRead();
- }
- return ret;
- }
-
- int Stream::findMulti( struct Stream::MultiTarget *targets, int tCount) {
-
-
- for (struct MultiTarget *t = targets; t < targets+tCount; ++t) {
- if (t->len <= 0)
- return t - targets;
- }
-
- while (1) {
- int c = timedRead();
- if (c < 0)
- return -1;
-
- for (struct MultiTarget *t = targets; t < targets+tCount; ++t) {
-
- if (c == t->str[t->index]) {
- if (++t->index == t->len)
- return t - targets;
- else
- continue;
- }
-
-
-
-
-
- if (t->index == 0)
- continue;
-
- int origIndex = t->index;
- do {
- --t->index;
-
- if (c != t->str[t->index])
- continue;
-
-
- if (t->index == 0) {
- t->index++;
- break;
- }
-
-
- int diff = origIndex - t->index;
- size_t i;
- for (i = 0; i < t->index; ++i) {
- if (t->str[i] != t->str[i + diff])
- break;
- }
-
-
-
- if (i == t->index) {
- t->index++;
- break;
- }
-
-
- } while (t->index);
- }
- }
-
- return -1;
- }
|