GY-63_MS5611/libraries/PrintCharArray/PrintCharArray.h

114 lines
2.0 KiB
C
Raw Normal View History

2020-11-27 05:28:57 -05:00
#pragma once
2017-12-09 14:39:12 -05:00
//
// FILE: PrintCharArray.h
// AUTHOR: Rob Tillaart
2021-12-24 07:08:51 -05:00
// VERSION: 0.3.2
2017-12-09 14:39:12 -05:00
// PURPOSE: Class that captures prints into a char array
// DATE: 2017-12-07
2020-11-27 05:28:57 -05:00
// URL: https://github.com/RobTillaart/PrintCharArray
2017-12-09 14:39:12 -05:00
//
2021-11-13 10:35:33 -05:00
// HISTORY
2021-01-29 06:31:58 -05:00
// 0.1.0 2017-12-07 initial version
// 0.1.1 2020-04-28 minor optimization
// 0.2.0 2020-04-30 dynamic memory
// 0.2.1 2020-06-19 fix library.json
// 0.3.0 2021-01-06 Arduino-CI + unit test, free -> available()
2021-11-13 10:35:33 -05:00
// 0.3.1 2021-11-13 update Arduino-CI, readme.md
// add conditional PRINTCHARARRAY_MAX_BUFFER_SIZE
// add write(char * str, uint8_t length) Print interface.
2021-12-24 07:08:51 -05:00
// 0.3.2 2021-12-24 update library.json, license, minor edits
2021-01-29 06:31:58 -05:00
2017-12-09 14:39:12 -05:00
#include "Print.h"
2021-01-29 06:31:58 -05:00
2021-12-24 07:08:51 -05:00
#define PRINTCHARARRAY_VERSION (F("0.3.2"))
2021-01-29 06:31:58 -05:00
2021-11-13 10:35:33 -05:00
#ifndef PRINTCHARARRAY_MAX_BUFFER_SIZE
2021-01-29 06:31:58 -05:00
#define PRINTCHARARRAY_MAX_BUFFER_SIZE 250
2021-11-13 10:35:33 -05:00
#endif
2021-01-29 06:31:58 -05:00
2017-12-09 14:39:12 -05:00
class PrintCharArray: public Print
{
2021-01-29 06:31:58 -05:00
public:
PrintCharArray(uint8_t size = 100)
{
_bufSize = constrain(size, 20, PRINTCHARARRAY_MAX_BUFFER_SIZE);
_buffer = (char *) malloc(_bufSize);
};
2021-11-13 10:35:33 -05:00
2021-01-29 06:31:58 -05:00
~PrintCharArray()
{
if (_buffer) free(_buffer);
};
2017-12-09 14:39:12 -05:00
2021-11-13 10:35:33 -05:00
2021-01-29 06:31:58 -05:00
size_t write(uint8_t c)
{
if (_index < _bufSize - 1)
2017-12-09 14:39:12 -05:00
{
2021-01-29 06:31:58 -05:00
_buffer[_index++] = c;
return 1;
2017-12-09 14:39:12 -05:00
}
2021-01-29 06:31:58 -05:00
return 0;
}
2021-11-13 10:35:33 -05:00
size_t write(uint8_t * str, uint8_t length)
{
if ( (int(_index) + length) >= _bufSize) return 0; // does not fit.
uint8_t len = length;
uint8_t i = 0;
while (len--)
{
_buffer[_index++] = str[i++];
}
return length;
}
2021-01-29 06:31:58 -05:00
void clear()
{
_index = 0;
}
2021-11-13 10:35:33 -05:00
2021-01-29 06:31:58 -05:00
int available()
{
return (_bufSize - _index);
}
2017-12-09 14:39:12 -05:00
2021-11-13 10:35:33 -05:00
2021-01-29 06:31:58 -05:00
// int length() { return _index; }; // better as size()?
int size()
{
return _index;
}
2017-12-09 14:39:12 -05:00
2021-11-13 10:35:33 -05:00
2021-01-29 06:31:58 -05:00
int bufSize()
{
return _bufSize;
}
2017-12-09 14:39:12 -05:00
2021-11-13 10:35:33 -05:00
2021-01-29 06:31:58 -05:00
char * getBuffer()
{
_buffer[_index] = '\0';
return _buffer;
}
2017-12-09 14:39:12 -05:00
2021-11-13 10:35:33 -05:00
2021-01-29 06:31:58 -05:00
private:
char* _buffer;
uint8_t _bufSize = 0;
uint8_t _index = 0;
2017-12-09 14:39:12 -05:00
};
2020-11-27 05:28:57 -05:00
2021-11-13 10:35:33 -05:00
2017-12-09 14:39:12 -05:00
// -- END OF FILE --
2021-11-13 10:35:33 -05:00