Blame view

trunk/src/kernel/srs_kernel_stream.hpp 4.1 KB
winlin authored
1 2 3
/*
The MIT License (MIT)
4
Copyright (c) 2013-2014 winlin
winlin authored
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

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.
*/
winlin authored
24 25
#ifndef SRS_KERNEL_STREAM_HPP
#define SRS_KERNEL_STREAM_HPP
winlin authored
26 27

/*
winlin authored
28
#include <srs_kernel_stream.hpp>
winlin authored
29 30 31 32 33 34 35
*/

#include <srs_core.hpp>

#include <sys/types.h>
#include <string>
36 37 38 39 40
/**
* bytes utility, used to:
* convert basic types to bytes,
* build basic types from bytes.
*/
winlin authored
41 42 43
class SrsStream
{
private:
44 45
    char* p;
    char* pp;
46 47
    char* _bytes;
    int _size;
winlin authored
48
public:
49 50
    SrsStream();
    virtual ~SrsStream();
winlin authored
51
public:
52 53
    /**
    * initialize the stream from bytes.
54 55 56 57 58 59 60 61 62 63 64 65
    * @bytes, the bytes to convert from/to basic types.
    * @size, the size of bytes.
    * @remark, stream never free the bytes, user must free it.
    * @remark, return error when bytes NULL.
    * @remark, return error when size is not positive.
    */
    virtual int initialize(char* bytes, int size);
// get the status of stream
public:
    /**
    * get data of stream, set by initialize.
    * current bytes = data() + pos()
66
    */
67
    virtual char* data();
68
    /**
69 70
    * the total stream size, set by initialize.
    * left bytes = size() - pos().
71
    */
72 73 74 75 76
    virtual int size();
    /**
    * tell the current pos.
    */
    virtual int pos();
77 78
    /**
    * whether stream is empty.
79
    * if empty, user should never read or write.
80 81 82 83 84
    */
    virtual bool empty();
    /**
    * whether required size is ok.
    * @return true if stream can read/write specified required_size bytes.
85
    * @remark assert required_size positive.
86 87
    */
    virtual bool require(int required_size);
88 89
// to change stream.
public:
90 91
    /**
    * to skip some size.
92 93 94
    * @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.
95 96
    */
    virtual void skip(int size);
winlin authored
97
public:
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
    /**
    * get 1bytes char from stream.
    */
    virtual int8_t read_1bytes();
    /**
    * get 2bytes int from stream.
    */
    virtual int16_t read_2bytes();
    /**
    * get 3bytes int from stream.
    */
    virtual int32_t read_3bytes();
    /**
    * get 4bytes int from stream.
    */
    virtual int32_t read_4bytes();
    /**
    * get 8bytes int from stream.
    */
    virtual int64_t read_8bytes();
    /**
    * get string from stream, length specifies by param len.
    */
    virtual std::string read_string(int len);
122 123 124 125
    /**
    * get bytes from stream, length specifies by param len.
    */
    virtual void read_bytes(char* data, int size);
winlin authored
126
public:
127 128 129 130 131 132 133 134 135 136 137 138 139
    /**
    * write 1bytes char to stream.
    */
    virtual void write_1bytes(int8_t value);
    /**
    * write 2bytes int to stream.
    */
    virtual void write_2bytes(int16_t value);
    /**
    * write 4bytes int to stream.
    */
    virtual void write_4bytes(int32_t value);
    /**
winlin authored
140 141 142 143
    * write 3bytes int to stream.
    */
    virtual void write_3bytes(int32_t value);
    /**
144 145 146 147 148 149 150
    * write 8bytes int to stream.
    */
    virtual void write_8bytes(int64_t value);
    /**
    * write string to stream
    */
    virtual void write_string(std::string value);
151 152 153 154
    /**
    * write bytes to stream
    */
    virtual void write_bytes(char* data, int size);
winlin authored
155 156
};
157
#endif