av/rtmp/rtmp.go

296 lines
6.6 KiB
Go
Raw Normal View History

/*
NAME
rtmp.go
DESCRIPTION
See Readme.md
AUTHOR
Saxon Nelson-Milton <saxon@ausocean.org>
Dan Kortschak <dan@ausocean.org>
LICENSE
rtmp.go is Copyright (C) 2017 the Australian Ocean Lab (AusOcean)
It is free software: you can redistribute it and/or modify them
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
It is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/
package rtmp
/*
#cgo CFLAGS: -I/usr/local/include/librtmp
#cgo LDFLAGS: -lrtmp -Wl,-rpath=/usr/local/lib
#include <stdlib.h>
#include <string.h>
#include <rtmp.h>
2018-05-30 09:22:33 +03:00
RTMP* start_session(RTMP* rtmp, char* url, uint connect_timeout);
int write_frame(RTMP* rtmp, char* data, uint data_length);
int end_session(RTMP* rtmp);
*/
import "C"
import (
"errors"
2018-07-11 18:20:18 +03:00
"log"
2018-06-20 07:26:40 +03:00
"strconv"
"unsafe"
2018-07-12 20:03:06 +03:00
_"fmt"
2018-07-12 21:07:57 +03:00
"math"
2018-07-14 08:19:21 +03:00
"reflect"
)
const (
minDataSize = 11
)
const (
RTMP_PACKET_SIZE_LARGE = 0
RTMP_PACKET_SIZE_MEDIUM = 1
RTMP_PACKET_SIZE_SMALL = 2
RTMP_PACKET_TYPE_INFO = 0x12
RTMP_PACKET_TYPE_AUDIO = 0x08
RTMP_PACKET_TYPE_VIDEO = 0x09
)
// Session provides an interface for sending flv tags over rtmp.
type Session interface {
2018-06-17 14:15:48 +03:00
Open() error
Write([]byte) (int, error)
Close() error
}
// session provides parameters required for an rtmp communication session.
type session struct {
2018-07-11 18:20:18 +03:00
rtmp *C.RTMP
url string
timeout uint
}
var _ Session = (*session)(nil)
// NewSession returns a new session.
func NewSession(url string, connectTimeout uint) Session {
return &session{
url: url,
timeout: connectTimeout,
}
}
2018-07-10 12:15:34 +03:00
// C.AVal is in amf.h
// See #define AVC(str) {str, sizeof(str)-1} in amf.h
func AVC(str string) C.AVal {
var aval C.AVal
aval.av_val = C.CString(str)
2018-07-12 21:07:57 +03:00
aval.av_len = C.int(len(str))
2018-07-10 12:15:34 +03:00
return aval
}
// av_setDataFrame is a static const global in rtmp.c
2018-07-12 22:51:17 +03:00
var setDataFrame = AVC("@setDataFrame")
2018-06-17 14:15:48 +03:00
// Open establishes an rtmp connection with the url passed into the
// constructor
2018-06-17 14:15:48 +03:00
func (s *session) Open() error {
2018-05-30 09:22:33 +03:00
if s.rtmp != nil {
return errors.New("rtmp: attempt to start already running session")
}
2018-06-20 07:26:40 +03:00
var err error
s.rtmp, err = C.start_session(s.rtmp, C.CString(s.url), C.uint(s.timeout))
2018-05-30 09:22:33 +03:00
if s.rtmp == nil {
2018-06-20 07:26:40 +03:00
return err
}
return nil
}
2018-07-11 20:20:00 +03:00
// Write writes a frame (flv tag) to the rtmp connection
func (s *session) Write(data []byte) (int, error) {
if s.rtmp == nil {
return 0, Err(3)
}
2018-07-13 14:00:52 +03:00
if C.RTMP_IsConnected(s.rtmp) == 0 {
2018-07-11 20:20:00 +03:00
return 0, Err(1)
}
2018-07-13 14:00:52 +03:00
//if C.RTMP_Write(s.rtmp,(*C.char)(unsafe.Pointer(&data[0])),C.int(len(data))) == 0 {
if rtmpWrite(s.rtmp, data) == 0 {
2018-07-11 20:20:00 +03:00
return 0, Err(2)
}
return len(data), nil
}
2018-07-05 09:55:46 +03:00
func rtmpWrite(r *C.RTMP, data []byte) int {
2018-07-14 08:19:21 +03:00
buf := sliceToPtr(data)
2018-07-14 08:22:54 +03:00
// TODO: port RTMPPacket
2018-07-12 20:03:06 +03:00
var pkt = &r.m_write
var pend, enc unsafe.Pointer
size := len(data)
2018-07-10 12:15:34 +03:00
s2 := size
var ret, num int
2018-07-05 09:55:46 +03:00
pkt.m_nChannel = 0x04
pkt.m_nInfoField2 = r.m_stream_id
for s2 != 0 {
2018-07-10 12:15:34 +03:00
if pkt.m_nBytesRead == 0 {
if size < minDataSize {
2018-07-05 09:55:46 +03:00
log.Printf("size: %d\n", size)
log.Printf("too small \n")
return 0
}
buf0 := *(*byte)(buf)
buf1 := *(*byte)(incPtr(buf,1))
buf2 := *(*byte)(incPtr(buf,2))
if buf0 == 'F' && buf1 == 'L' && buf2 == 'V' {
buf = unsafe.Pointer(uintptr(buf) + uintptr(13))
2018-07-05 09:55:46 +03:00
s2 -= 13
}
pkt.m_packetType = C.uchar(*(*byte)(buf))
buf = incPtr(buf,1)
2018-07-14 08:22:54 +03:00
// TODO: port this
pkt.m_nBodySize = C.AMF_DecodeInt24((*C.char)(buf))
buf = incPtr(buf,3)
2018-07-14 08:22:54 +03:00
// TODO: replace with ported version
pkt.m_nTimeStamp = C.AMF_DecodeInt24((*C.char)(buf))
buf = incPtr(buf,3)
pkt.m_nTimeStamp |= C.uint(*((*byte)(buf))) << 24
buf = incPtr(buf,4)
2018-07-05 09:55:46 +03:00
s2 -= 11
2018-07-12 21:07:57 +03:00
if ((pkt.m_packetType == RTMP_PACKET_TYPE_AUDIO ||
pkt.m_packetType == RTMP_PACKET_TYPE_VIDEO) &&
pkt.m_nTimeStamp == 0) || pkt.m_packetType == RTMP_PACKET_TYPE_INFO {
2018-07-05 09:55:46 +03:00
2018-07-12 21:07:57 +03:00
pkt.m_headerType = RTMP_PACKET_SIZE_LARGE
2018-07-11 20:20:00 +03:00
2018-07-12 21:07:57 +03:00
if pkt.m_packetType == RTMP_PACKET_TYPE_INFO {
2018-07-11 18:20:18 +03:00
pkt.m_nBodySize += 16
}
2018-07-05 09:55:46 +03:00
} else {
2018-07-12 21:07:57 +03:00
pkt.m_headerType = RTMP_PACKET_SIZE_MEDIUM
2018-07-05 09:55:46 +03:00
}
2018-07-14 08:22:54 +03:00
// TODO: Port this
2018-07-11 18:20:18 +03:00
if int(C.RTMPPacket_Alloc(pkt, pkt.m_nBodySize)) == 0 {
log.Println("Failed to allocate packet")
2018-07-05 09:55:46 +03:00
return 0
}
2018-06-27 21:02:16 +03:00
enc = unsafe.Pointer(pkt.m_body)
pend = incPtr(enc,int(pkt.m_nBodySize))
2018-07-12 21:07:57 +03:00
if pkt.m_packetType == RTMP_PACKET_TYPE_INFO {
2018-07-14 08:22:54 +03:00
// TODO: Port this
enc = unsafe.Pointer(C.AMF_EncodeString((*C.char)(enc), (*C.char)(pend), &setDataFrame))
pkt.m_nBytesRead = C.uint(math.Abs(float64(uintptr(enc) -
2018-07-12 21:07:57 +03:00
uintptr(unsafe.Pointer(pkt.m_body)))))
2018-07-05 09:55:46 +03:00
}
2018-07-12 22:51:17 +03:00
2018-07-05 09:55:46 +03:00
} else {
enc = incPtr(unsafe.Pointer(pkt.m_body),int(pkt.m_nBytesRead))
2018-07-05 09:55:46 +03:00
}
num = int(pkt.m_nBodySize - pkt.m_nBytesRead)
2018-07-05 09:55:46 +03:00
if num > s2 {
num = s2
}
2018-07-14 08:19:21 +03:00
copy(ptrToSlice(enc,num),ptrToSlice(buf,num))
pkt.m_nBytesRead += C.uint(num)
2018-07-05 09:55:46 +03:00
s2 -= num
buf = incPtr(buf,num)
2018-07-05 09:55:46 +03:00
if pkt.m_nBytesRead == pkt.m_nBodySize {
2018-07-14 08:22:54 +03:00
// TODO: Port this
ret = int(C.RTMP_SendPacket(r, pkt, 0))
2018-07-14 08:22:54 +03:00
// TODO: Port this
C.RTMPPacket_Free(pkt)
2018-07-05 09:55:46 +03:00
pkt.m_nBytesRead = 0
2018-07-11 07:56:07 +03:00
if ret == 0 {
2018-07-05 09:55:46 +03:00
return -1
}
buf = incPtr(buf,4)
2018-07-05 09:55:46 +03:00
s2 -= 4
if s2 < 0 {
break
}
}
}
2018-07-11 18:20:18 +03:00
return size + s2
2018-06-27 21:02:16 +03:00
}
2018-07-05 09:55:46 +03:00
2018-07-14 08:19:21 +03:00
func sliceToPtr(data []byte) unsafe.Pointer {
return unsafe.Pointer(&data[0])
}
func ptrToSlice(data unsafe.Pointer, size int) []byte {
var ret []byte
shDest := (*reflect.SliceHeader)(unsafe.Pointer(&ret))
shDest.Data = uintptr(data)
shDest.Len = size
shDest.Cap = size
return ret
}
func incPtr(ptr unsafe.Pointer, inc int) unsafe.Pointer {
return unsafe.Pointer(uintptr(ptr) + uintptr(inc))
}
/*
2018-07-11 20:20:00 +03:00
func sendPacket(r *C.RTMP, pkt *C.RTMPPacket, queue int) int {
const prevPacket *C.RTMPPacket
last := 0
2018-07-13 19:38:59 +03:00
var nSize, hSize, cSize, nChunkSize, tlen int
var header, hptr, hend, buffer *C.char
var goHbuf [RTMP_MAX_HEADER_SIZE]byte
var hbuf = (*C.char)(unsafe.Pointer(&goHbuf[0]))
var c C.char
var t int32
var tbuf *C.char = nil
var toff *C.char = nil
}
*/
2018-07-13 19:38:59 +03:00
// Close terminates the rtmp connection
func (s *session) Close() error {
2018-05-30 09:22:33 +03:00
if s.rtmp == nil {
2018-06-20 07:26:40 +03:00
return Err(3)
}
2018-05-30 09:22:33 +03:00
ret := C.end_session(s.rtmp)
s.rtmp = nil
if ret != 0 {
2018-06-20 07:26:40 +03:00
return Err(ret)
}
return nil
}
2018-06-20 07:26:40 +03:00
var rtmpErrs = [...]string{
1: "rtmp: not connected",
2: "rtmp: write error",
3: "rtmp: not started",
}
type Err uint
func (e Err) Error() string {
if 0 <= int(e) && int(e) < len(rtmpErrs) {
s := rtmpErrs[e]
if s != "" {
return s
}
}
return "rtmp: " + strconv.Itoa(int(e))
}
2018-07-11 20:20:00 +03:00
func byteSliceToCArr(buf []byte) *C.char {
return (*C.char)(unsafe.Pointer(&buf[0]))
}