25 lines
514 B
C++
25 lines
514 B
C++
#ifndef HELPERS_SPY_READER_H_
|
|
#define HELPERS_SPY_READER_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "tree_sitter/runtime.h"
|
|
|
|
class SpyReader {
|
|
public:
|
|
SpyReader(std::string content, size_t chunk_size);
|
|
~SpyReader();
|
|
|
|
void clear();
|
|
TSInput input();
|
|
bool insert(size_t position, std::string text);
|
|
bool erase(size_t position, size_t len);
|
|
|
|
char *buffer;
|
|
std::string content;
|
|
size_t position;
|
|
size_t chunk_size;
|
|
std::vector<std::string> strings_read;
|
|
};
|
|
|
|
#endif // HELPERS_SPY_READER_H_
|