1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-02 09:37:52 +01:00
libtgvoip/BufferOutputStream.h

39 lines
909 B
C
Raw Permalink Normal View History

2017-02-02 17:24:40 +01:00
//
// libtgvoip is free and unencumbered public domain software.
// For more information, see http://unlicense.org or the UNLICENSE file
// you should have received with this source code distribution.
//
#ifndef LIBTGVOIP_BUFFEROUTPUTSTREAM_H
#define LIBTGVOIP_BUFFEROUTPUTSTREAM_H
#include <stdlib.h>
#include <stdint.h>
2017-02-02 17:24:40 +01:00
namespace tgvoip{
class BufferOutputStream{
2017-02-02 17:24:40 +01:00
public:
BufferOutputStream(size_t size);
BufferOutputStream(unsigned char* buffer, size_t size);
~BufferOutputStream();
2017-02-02 17:24:40 +01:00
void WriteByte(unsigned char byte);
void WriteInt64(int64_t i);
void WriteInt32(int32_t i);
void WriteInt16(int16_t i);
2017-03-30 16:06:59 +02:00
void WriteBytes(unsigned char* bytes, size_t count);
unsigned char* GetBuffer();
2017-02-02 17:24:40 +01:00
size_t GetLength();
void Reset();
private:
void ExpandBufferIfNeeded(size_t need);
2017-03-30 16:06:59 +02:00
unsigned char* buffer;
2017-02-02 17:24:40 +01:00
size_t size;
size_t offset;
bool bufferProvided;
2017-02-02 17:24:40 +01:00
};
}
2017-02-02 17:24:40 +01:00
#endif //LIBTGVOIP_BUFFEROUTPUTSTREAM_H