2017-03-25 09:21:39 +00:00
|
|
|
/**
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2019-01-01 13:37:28 +00:00
|
|
|
* Copyright (c) 2013-2019 Winlin
|
2017-03-25 09:21:39 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
2013-11-23 03:36:07 +00:00
|
|
|
|
2015-09-22 00:48:55 +00:00
|
|
|
#ifndef SRS_KERNEL_BUFFER_HPP
|
|
|
|
#define SRS_KERNEL_BUFFER_HPP
|
2013-11-23 03:36:07 +00:00
|
|
|
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <string>
|
|
|
|
|
2015-10-16 08:30:45 +00:00
|
|
|
class SrsBuffer;
|
|
|
|
|
2014-07-05 13:22:20 +00:00
|
|
|
/**
|
2015-10-16 08:30:45 +00:00
|
|
|
* the srs codec, to code and decode object with bytes:
|
|
|
|
* code: to encode/serialize object to bytes in buffer,
|
|
|
|
* decode: to decode/deserialize object from bytes in buffer.
|
|
|
|
* we use SrsBuffer as bytes helper utility,
|
|
|
|
* for example, to code:
|
|
|
|
* ISrsCodec* obj = ...
|
|
|
|
* char* bytes = new char[obj->size()];
|
|
|
|
*
|
|
|
|
* SrsBuffer* buf = new SrsBuffer();
|
|
|
|
* buf->initialize(bytes, obj->size())
|
|
|
|
*
|
|
|
|
* obj->encode(buf);
|
|
|
|
* for example, to decode:
|
|
|
|
* int nb_bytes = ...
|
|
|
|
* char* bytes = ...
|
|
|
|
*
|
|
|
|
* SrsBuffer* buf = new Srsbuffer();
|
|
|
|
* buf->initialize(bytes, nb_bytes);
|
|
|
|
*
|
|
|
|
* ISrsCodec* obj = ...
|
|
|
|
* obj->decode(buf);
|
|
|
|
* @remark protocol or amf0 or json should implements this interface.
|
|
|
|
*/
|
|
|
|
// TODO: FIXME: protocol, amf0, json should implements it.
|
|
|
|
class ISrsCodec
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ISrsCodec();
|
|
|
|
virtual ~ISrsCodec();
|
|
|
|
public:
|
|
|
|
/**
|
2015-10-22 04:20:31 +00:00
|
|
|
* get the number of bytes to code to.
|
2015-10-16 08:30:45 +00:00
|
|
|
*/
|
2017-02-01 13:57:32 +00:00
|
|
|
// TODO: FIXME: change to uint64_t.
|
2015-10-22 04:20:31 +00:00
|
|
|
virtual int nb_bytes() = 0;
|
2015-10-16 08:30:45 +00:00
|
|
|
/**
|
|
|
|
* encode object to bytes in SrsBuffer.
|
|
|
|
*/
|
2017-12-31 04:11:48 +00:00
|
|
|
virtual srs_error_t encode(SrsBuffer* buf) = 0;
|
2015-10-16 08:30:45 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* decode object from bytes in SrsBuffer.
|
|
|
|
*/
|
2017-12-31 04:11:48 +00:00
|
|
|
virtual srs_error_t decode(SrsBuffer* buf) = 0;
|
2015-10-16 08:30:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bytes utility, used to:
|
|
|
|
* convert basic types to bytes,
|
|
|
|
* build basic types from bytes.
|
|
|
|
* @remark the buffer never mange the bytes, user must manage it.
|
|
|
|
*/
|
2015-09-22 00:57:31 +00:00
|
|
|
class SrsBuffer
|
2013-11-23 03:36:07 +00:00
|
|
|
{
|
|
|
|
private:
|
2015-07-28 10:08:11 +00:00
|
|
|
// current position at bytes.
|
2014-03-18 03:32:58 +00:00
|
|
|
char* p;
|
2015-07-28 10:08:11 +00:00
|
|
|
// the bytes data for stream to read or write.
|
|
|
|
char* bytes;
|
|
|
|
// the total number of bytes.
|
|
|
|
int nb_bytes;
|
2013-11-23 03:36:07 +00:00
|
|
|
public:
|
2015-09-22 00:57:31 +00:00
|
|
|
SrsBuffer();
|
2019-12-12 07:11:31 +00:00
|
|
|
// Initialize buffer with data b and size nb_b.
|
|
|
|
// @remark User must free the data b.
|
2015-10-23 06:21:10 +00:00
|
|
|
SrsBuffer(char* b, int nb_b);
|
2015-09-22 00:57:31 +00:00
|
|
|
virtual ~SrsBuffer();
|
2017-12-31 04:11:48 +00:00
|
|
|
// get the status of stream
|
2014-07-05 13:22:20 +00:00
|
|
|
public:
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* get data of stream, set by initialize.
|
|
|
|
* current bytes = data() + pos()
|
|
|
|
*/
|
2014-07-05 13:22:20 +00:00
|
|
|
virtual char* data();
|
2014-03-18 03:32:58 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* the total stream size, set by initialize.
|
|
|
|
* left bytes = size() - pos().
|
|
|
|
*/
|
2014-07-05 13:22:20 +00:00
|
|
|
virtual int size();
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* tell the current pos.
|
|
|
|
*/
|
2014-07-05 13:22:20 +00:00
|
|
|
virtual int pos();
|
2017-12-31 04:11:48 +00:00
|
|
|
// Left bytes in buffer, total size() minus the current pos().
|
|
|
|
virtual int left();
|
2014-03-18 03:32:58 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* whether stream is empty.
|
|
|
|
* if empty, user should never read or write.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual bool empty();
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* whether required size is ok.
|
|
|
|
* @return true if stream can read/write specified required_size bytes.
|
|
|
|
* @remark assert required_size positive.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual bool require(int required_size);
|
2017-03-25 09:21:39 +00:00
|
|
|
// to change stream.
|
2014-07-05 13:22:20 +00:00
|
|
|
public:
|
2014-03-18 03:32:58 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* to skip some size.
|
|
|
|
* @param size can be any value. positive to forward; nagetive to backward.
|
|
|
|
* @remark to skip(pos()) to reset stream.
|
|
|
|
* @remark assert initialized, the data() not NULL.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual void skip(int size);
|
2013-11-23 03:36:07 +00:00
|
|
|
public:
|
2014-03-18 03:32:58 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* get 1bytes char from stream.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual int8_t read_1bytes();
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* get 2bytes int from stream.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual int16_t read_2bytes();
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* get 3bytes int from stream.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual int32_t read_3bytes();
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* get 4bytes int from stream.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual int32_t read_4bytes();
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* get 8bytes int from stream.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual int64_t read_8bytes();
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* get string from stream, length specifies by param len.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual std::string read_string(int len);
|
2014-05-08 06:33:25 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* get bytes from stream, length specifies by param len.
|
|
|
|
*/
|
2014-05-08 06:33:25 +00:00
|
|
|
virtual void read_bytes(char* data, int size);
|
2013-11-23 03:36:07 +00:00
|
|
|
public:
|
2014-03-18 03:32:58 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* write 1bytes char to stream.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual void write_1bytes(int8_t value);
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* write 2bytes int to stream.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual void write_2bytes(int16_t value);
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* write 4bytes int to stream.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual void write_4bytes(int32_t value);
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* write 3bytes int to stream.
|
|
|
|
*/
|
2014-04-17 08:06:49 +00:00
|
|
|
virtual void write_3bytes(int32_t value);
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* write 8bytes int to stream.
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual void write_8bytes(int64_t value);
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* write string to stream
|
|
|
|
*/
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual void write_string(std::string value);
|
2014-05-08 04:12:01 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* write bytes to stream
|
|
|
|
*/
|
2014-05-08 04:12:01 +00:00
|
|
|
virtual void write_bytes(char* data, int size);
|
2013-11-23 03:36:07 +00:00
|
|
|
};
|
|
|
|
|
2015-04-03 15:17:50 +00:00
|
|
|
/**
|
2015-10-16 08:30:45 +00:00
|
|
|
* the bit stream, base on SrsBuffer,
|
|
|
|
* for exmaple, the h.264 avc stream is bit stream.
|
2015-04-03 15:17:50 +00:00
|
|
|
*/
|
2015-09-22 00:59:21 +00:00
|
|
|
class SrsBitBuffer
|
2015-04-03 15:17:50 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
int8_t cb;
|
2017-01-30 09:32:18 +00:00
|
|
|
uint8_t cb_left;
|
2015-09-22 00:57:31 +00:00
|
|
|
SrsBuffer* stream;
|
2015-04-03 15:17:50 +00:00
|
|
|
public:
|
2019-02-04 07:11:41 +00:00
|
|
|
SrsBitBuffer(SrsBuffer* b);
|
2015-09-22 00:59:21 +00:00
|
|
|
virtual ~SrsBitBuffer();
|
2015-04-03 15:17:50 +00:00
|
|
|
public:
|
|
|
|
virtual bool empty();
|
|
|
|
virtual int8_t read_bit();
|
|
|
|
};
|
|
|
|
|
2014-08-02 14:18:39 +00:00
|
|
|
#endif
|