Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

Stream.h 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. Stream.h - base class for character-based streams.
  3. Copyright (c) 2010 David A. Mellis. All right reserved.
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  15. */
  16. #ifndef Stream_h
  17. #define Stream_h
  18. #include <inttypes.h>
  19. #include "Print.h"
  20. class Stream : public Print
  21. {
  22. public:
  23. constexpr Stream() : _timeout(1000), read_error(0) {}
  24. virtual int available() = 0;
  25. virtual int read() = 0;
  26. virtual int peek() = 0;
  27. void setTimeout(unsigned long timeout);
  28. bool find(const char *target);
  29. bool find(const uint8_t *target) { return find ((const char *)target); }
  30. bool find(const char *target, size_t length);
  31. bool find(const uint8_t *target, size_t length) { return find ((const char *)target, length); }
  32. bool findUntil(const char *target, const char *terminator);
  33. bool findUntil(const uint8_t *target, const char *terminator) { return findUntil((const char *)target, terminator); }
  34. bool findUntil(const char *target, size_t targetLen, const char *terminate, size_t termLen);
  35. bool findUntil(const uint8_t *target, size_t targetLen, const char *terminate, size_t termLen) {return findUntil((const char *)target, targetLen, terminate, termLen); }
  36. long parseInt();
  37. long parseInt(char skipChar);
  38. float parseFloat();
  39. float parseFloat(char skipChar);
  40. size_t readBytes(char *buffer, size_t length);
  41. size_t readBytes(uint8_t *buffer, size_t length) { return readBytes((char *)buffer, length); }
  42. size_t readBytesUntil(char terminator, char *buffer, size_t length);
  43. size_t readBytesUntil(char terminator, uint8_t *buffer, size_t length) { return readBytesUntil(terminator, (char *)buffer, length); }
  44. String readString(size_t max = 120);
  45. String readStringUntil(char terminator, size_t max = 120);
  46. int getReadError() { return read_error; }
  47. void clearReadError() { setReadError(0); }
  48. protected:
  49. void setReadError(int err = 1) { read_error = err; }
  50. unsigned long _timeout;
  51. private:
  52. char read_error;
  53. int timedRead();
  54. int timedPeek();
  55. int peekNextDigit();
  56. };
  57. #endif