This repository has been archived by the owner on Feb 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
chunk.go
253 lines (237 loc) · 6.74 KB
/
chunk.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
package rtmp
import (
"bufio"
"encoding/binary"
"errors"
"io"
)
var (
errUnknownFMT = errors.New("unknown fmt")
errInvalidChunkStreamID = errors.New("invalid chunk stream id")
)
// Chunk Header
type ChunkHeader struct {
BasicHeader *BasicHeader
MessageHeader *MessageHeader
ExtendedTimestamp uint32
}
func genChunkHeader(ch *ChunkHeader) ([]byte, error) {
bh, err := genBasicHeader(ch.BasicHeader)
if err != nil {
return []byte{}, err
}
mh, err := genMessageHeader(ch.MessageHeader, int(ch.BasicHeader.FMT))
if err != nil {
return []byte{}, err
}
x := append(bh, mh...)
if ch.MessageHeader.Timestamp >= 16777215 {
y := make([]byte, 4)
binary.BigEndian.PutUint32(y, ch.MessageHeader.Timestamp)
x = append(x, y...)
} else if ch.MessageHeader.TimestampDelta >= 16777215 {
y := make([]byte, 4)
binary.BigEndian.PutUint32(y, ch.MessageHeader.TimestampDelta)
x = append(x, y...)
}
return x, nil
}
func readChunkHeader(br *bufio.Reader) (*ChunkHeader, error) {
bh, err := readBasicHeader(br)
if err != nil {
return nil, err
}
mh, err := readMessageHeader(br, bh.FMT)
if err != nil {
return nil, err
}
ch := &ChunkHeader{
BasicHeader: bh,
MessageHeader: mh,
}
if mh.Timestamp == 16777215 || mh.TimestampDelta == 16777215 {
x := make([]byte, 4)
_, err := io.ReadAtLeast(br, x, 4)
if err != nil {
return nil, err
}
ch.ExtendedTimestamp = binary.BigEndian.Uint32(x)
}
return ch, nil
}
type BasicHeader struct {
FMT uint8
ChunkStreamID uint32
}
func genBasicHeader(bh *BasicHeader) ([]byte, error) {
if bh.ChunkStreamID < 64 {
x := uint8(bh.ChunkStreamID&(0x3f)) + (bh.FMT << 6)
return []byte{x}, nil
} else if bh.ChunkStreamID < 320 {
x := make([]byte, 2)
x[0] = bh.FMT << 6
x[1] = uint8(bh.ChunkStreamID - 64)
return x, nil
} else if bh.ChunkStreamID < 65599 {
x := make([]byte, 3)
x[0] = bh.FMT<<6 + uint8(0xff&0x3f)
binary.BigEndian.PutUint16(x[1:], uint16(bh.ChunkStreamID-64))
return x, nil
} else {
return []byte{}, errInvalidChunkStreamID
}
}
func readBasicHeader(br *bufio.Reader) (*BasicHeader, error) {
x, err := br.ReadByte()
if err != nil {
return nil, err
}
h := new(BasicHeader)
h.FMT = uint8(x) >> 6
csid := x & (32 + 16 + 8 + 4 + 2 + 1)
switch csid {
case 0:
// Chunk stream IDs: 64-319
// 0 1
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// |fmt| 0 | cs id - 64 |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
y, err := br.ReadByte()
if err != nil {
return nil, err
}
h.ChunkStreamID = uint32(y) + 64
case 1:
// Chunk stream IDs: 64-65599
// 0 1 2
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// |fmt| 1 | cs id - 64 |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
z := make([]byte, 2)
_, err = io.ReadAtLeast(br, z, 2)
if err != nil {
return nil, err
}
h.ChunkStreamID = uint32(binary.BigEndian.Uint16(z)) + 64
default:
// Chunk Stream IDs: 2-63
// 0 1 2 3 4 5 6 7
// +-+-+-+-+-+-+-+-+
// |fmt| cs id |
// +-+-+-+-+-+-+-+-+
h.ChunkStreamID = uint32(csid)
}
return h, nil
}
type MessageHeader struct {
Timestamp uint32
TimestampDelta uint32
MessageLength uint32
MessageTypeID uint8
MessageStreamID uint32
}
func genMessageHeader(mh *MessageHeader, fmt int) ([]byte, error) {
timestamp := mh.Timestamp
timestampDelta := mh.TimestampDelta
if timestamp > 16777215 {
timestamp = 16777215
}
if timestampDelta > 16777215 {
timestampDelta = 16777215
}
switch fmt {
case 0:
// 0 1 2 3
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | timestamp |message length |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | message length (cont) |message type id| msg stream id |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | message stream id (cont) |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
x := make([]byte, 11)
x[0] = byte(timestamp >> 16)
x[1] = byte(timestamp >> 8)
x[2] = byte(timestamp)
x[3] = byte(mh.MessageLength >> 16)
x[4] = byte(mh.MessageLength >> 8)
x[5] = byte(mh.MessageLength)
x[6] = mh.MessageTypeID
binary.LittleEndian.PutUint32(x[7:], mh.MessageStreamID)
return x, nil
case 1:
// 0 1 2 3
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | timestamp delta |message length |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | message length (cont) |message type id|
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
x := make([]byte, 7)
x[0] = byte(timestampDelta >> 16)
x[1] = byte(timestampDelta >> 8)
x[2] = byte(timestampDelta)
x[3] = byte(mh.MessageLength >> 16)
x[4] = byte(mh.MessageLength >> 8)
x[5] = byte(mh.MessageLength)
x[6] = mh.MessageTypeID
return x, nil
case 2:
// 0 1 2
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | timestamp delta |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
x := make([]byte, 3)
x[0] = byte(timestampDelta >> 16)
x[1] = byte(timestampDelta >> 8)
x[2] = byte(timestampDelta)
return x, nil
case 3:
// chunk message header is empty
return []byte{}, nil
default:
return []byte{}, errUnknownFMT
}
}
func readMessageHeader(br *bufio.Reader, fmt uint8) (*MessageHeader, error) {
mh := new(MessageHeader)
switch fmt {
case 0:
x := make([]byte, 11)
_, err := io.ReadAtLeast(br, x, 11)
if err != nil {
return nil, err
}
mh.Timestamp = binary.BigEndian.Uint32(append([]byte{0x0}, x[:3]...))
mh.MessageLength = binary.BigEndian.Uint32(append([]byte{0x0}, x[3:6]...))
mh.MessageTypeID = x[6]
mh.MessageStreamID = binary.LittleEndian.Uint32(x[7:11])
return mh, nil
case 1:
x := make([]byte, 7)
_, err := io.ReadAtLeast(br, x, 7)
if err != nil {
return nil, err
}
mh.TimestampDelta = binary.BigEndian.Uint32(append([]byte{0x0}, x[:3]...))
mh.MessageLength = binary.BigEndian.Uint32(append([]byte{0x0}, x[3:6]...))
mh.MessageTypeID = x[6]
return mh, nil
case 2:
x := make([]byte, 3)
_, err := io.ReadAtLeast(br, x, 3)
if err != nil {
return nil, err
}
mh.TimestampDelta = binary.BigEndian.Uint32(x)
return mh, nil
case 3:
return mh, nil
default:
return nil, errUnknownFMT
}
}