av/rtmp/RTMP.go

115 lines
3.2 KiB
Go
Raw Normal View History

/*
NAME
2018-03-13 04:14:43 +03:00
RTMP.go
DESCRIPTION
See Readme.md
AUTHOR
2018-03-13 04:14:43 +03:00
Saxon Nelson-Milton <saxon@ausocean.org>
LICENSE
2018-03-13 04:14:43 +03:00
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 [GNU licenses](http://www.gnu.org/licenses).
*/
package rtmp
2018-02-14 10:02:57 +03:00
2018-03-14 03:49:21 +03:00
// #cgo CFLAGS: -I/home/pi/go/src/bitbucket.org/AusOcean/av/rtmp/
// #cgo CFLAGS: -I/home/pi/go/src/bitbucket.org/ausocean/av/rtmp/rtmp_c/librtmp
// #cgo LDFLAGS: /home/pi/go/src/bitbucket.org/ausocean/av/rtmp/rtmp_c/librtmp/librtmp.a
2018-03-14 07:30:17 +03:00
// #cgo LDFLAGS: -lz
2018-02-14 10:02:57 +03:00
// #include <RTMPWrapper.h>
import "C"
import (
2018-03-14 04:18:03 +03:00
"errors"
_ "fmt"
"sync"
"unsafe"
)
2018-03-13 04:14:43 +03:00
// RTMPSession provides a crude interface for sending flv tags over rtmp
type RTMPSession interface {
2018-03-14 04:18:03 +03:00
StartSession() error
WriteFrame(data []byte, dataLength uint) error
EndSession() error
}
2018-03-13 04:14:43 +03:00
// rtmpSession provides parameters required for an rtmp communication session
type rtmpSession struct {
2018-03-14 04:18:03 +03:00
url string
timeout uint
running bool
mutex *sync.Mutex
}
2018-03-13 04:14:43 +03:00
// NewRTMPSession returns a new instance of an rtmpSession struct
2018-03-14 04:18:03 +03:00
func NewRTMPSession(url string, connectTimeout uint) (session *rtmpSession) {
session = new(rtmpSession)
session.url = url
session.timeout = connectTimeout
session.mutex = &sync.Mutex{}
return
}
2018-03-13 04:14:43 +03:00
// StartSession establishes an rtmp connection with the url passed into the
// constructor
func (s *rtmpSession) StartSession() error {
2018-03-14 04:18:03 +03:00
if !s.running {
if !uintToBool(uint(C.RTMP_start_session(C.CString(s.url), C.uint(s.timeout)))) {
return errors.New("RTMP start error! Check rtmp log for details!")
}
s.running = true
} else {
return errors.New("Tried to start rtmp session, but already started!")
}
return nil
}
2018-03-13 04:14:43 +03:00
// WriteFrame writes a frame (flv tag) to the rtmp connection
2018-02-28 17:53:39 +03:00
// TODO: Remove mutex
func (s *rtmpSession) WriteFrame(data []byte, dataLength uint) error {
2018-03-14 04:18:03 +03:00
s.mutex.Lock()
defer s.mutex.Unlock()
if s.running {
dataCopy := make([]byte, len(data))
copy(dataCopy, data)
if !uintToBool(uint(C.RTMP_write_frame((*C.char)(unsafe.Pointer(&dataCopy[0])), C.uint(dataLength)))) {
return errors.New("RTMP write error! Check rtmp log for details!")
}
} else {
return errors.New("RTMP session not running, can't write!")
}
return nil
}
2018-03-13 04:14:43 +03:00
// EndSession terminates the rtmp connection
func (s *rtmpSession) EndSession() error {
2018-03-14 04:18:03 +03:00
if s.running {
if !uintToBool(uint(C.RTMP_end_session())) {
return errors.New("RTMP end session error! Check rtmp log for details!")
}
s.running = false
} else {
return errors.New("Tried to stop rtmp session, but not running!")
}
return nil
}
2018-03-14 04:18:03 +03:00
2018-03-13 04:14:43 +03:00
// uintToBool takes a uint and returns the bool equivalent
2018-02-14 09:00:44 +03:00
func uintToBool(x uint) bool {
2018-03-14 04:18:03 +03:00
return x != 0
2018-02-14 09:00:44 +03:00
}