av/protocol/rtsp/rtsp.go

182 lines
4.2 KiB
Go
Raw Normal View History

/*
NAME
rtsp.go
DESCRIPTION
rtsp.go provides functionality for forming and sending RTSP requests for
2019-04-25 09:00:28 +03:00
methods, DESCRIBE, OPTIONS, SETUP and PLAY, as described by
the RTSP standards, see https://tools.ietf.org/html/rfc7826
AUTHORS
Saxon A. Nelson-Milton <saxon@ausocean.org>
LICENSE
This is Copyright (C) 2019 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
in gpl.txt. If not, see http://www.gnu.org/licenses.
*/
package rtsp
import (
"bufio"
"errors"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"strings"
)
// Minimum response size to be considered valid in bytes.
const minResponse = 12
2019-04-25 09:00:28 +03:00
var errSmallResponse = errors.New("response too small")
// Request describes an RTSP request.
type Request struct {
Method string
URL *url.URL
Proto string
ProtoMajor int
ProtoMinor int
Header http.Header
ContentLength int
Body io.ReadCloser
}
// NewRequest returns a pointer to a new Request.
func NewRequest(method, cSeq string, u *url.URL, body io.ReadCloser) (*Request, error) {
req := &Request{
Method: method,
URL: u,
Proto: "RTSP",
ProtoMajor: 1,
ProtoMinor: 0,
Header: map[string][]string{"CSeq": []string{cSeq}},
Body: body,
}
return req, nil
}
// Write writes the request r to the given io.Writer w.
func (r *Request) Write(w io.Writer) error {
_, err := w.Write([]byte(r.String()))
return err
}
// String returns a formatted string of the Request.
func (r Request) String() string {
var b strings.Builder
b.WriteString(r.Method + " " + r.URL.String() + " " + r.Proto + "/" + strconv.Itoa(r.ProtoMajor) + "." + strconv.Itoa(r.ProtoMinor) + "\r\n")
for k, v := range r.Header {
for _, v := range v {
b.WriteString(k + ": " + v + "\r\n")
}
}
b.WriteString("\r\n")
if r.Body != nil {
s, _ := ioutil.ReadAll(r.Body)
b.WriteString(string(s))
}
return b.String()
}
// Response describes an RTSP response.
type Response struct {
Proto string
ProtoMajor int
ProtoMinor int
StatusCode int
ContentLength int
Header http.Header
Body io.ReadCloser
}
// String returns a formatted string of the Response.
func (r Response) String() string {
var b strings.Builder
2019-04-29 06:31:17 +03:00
b.WriteString(r.Proto + "/" + strconv.Itoa(r.ProtoMajor) + "." + strconv.Itoa(r.ProtoMinor) + " " + strconv.Itoa(r.StatusCode) + "\n")
for k, v := range r.Header {
for _, v := range v {
b.WriteString(k + ": " + v + "\n")
}
}
return b.String()
}
// ReadResponse will read the response of the RTSP request from the connection,
// and return a pointer to a new Response.
2019-04-26 13:16:03 +03:00
func ReadResponse(r io.Reader) (*Response, error) {
resp := &Response{Header: make(map[string][]string)}
2019-04-28 07:34:45 +03:00
scanner := bufio.NewScanner(r)
2019-04-26 13:16:03 +03:00
// Read the first line.
2019-04-28 07:34:45 +03:00
scanner.Scan()
err := scanner.Err()
2019-04-26 13:16:03 +03:00
if err != nil {
return nil, err
}
2019-04-28 07:34:45 +03:00
s := scanner.Text()
2019-04-26 13:16:03 +03:00
if s[:5] != "RTSP/" || len(s) < minResponse {
return nil, errors.New("response not valid")
2019-04-26 13:16:03 +03:00
}
resp.Proto = "RTSP"
2019-04-26 13:16:03 +03:00
_, err = fmt.Sscanf(s[5:12], "%d.%d %d", &resp.ProtoMajor, &resp.ProtoMinor, &resp.StatusCode)
if err != nil {
return nil, err
}
2019-04-26 13:16:03 +03:00
// Read headers.
2019-04-28 07:34:45 +03:00
for scanner.Scan() {
err = scanner.Err()
2019-04-26 13:16:03 +03:00
if err != nil {
return nil, err
}
2019-04-28 07:34:45 +03:00
parts := strings.SplitN(scanner.Text(), ":", 2)
2019-04-26 13:16:03 +03:00
resp.Header.Add(strings.TrimSpace(parts[0]), strings.TrimSpace(parts[1]))
}
2019-04-26 13:16:03 +03:00
// Get the content length from the header.
resp.ContentLength, err = strconv.Atoi(resp.Header.Get("Content-Length"))
if err != nil {
return nil, err
}
2019-04-28 07:34:45 +03:00
resp.Body = closer{r}
2019-04-26 13:16:03 +03:00
return resp, nil
}
type closer struct {
2019-04-28 07:34:45 +03:00
io.Reader
}
func (c closer) Close() error {
if c.Reader == nil {
return nil
}
defer func() {
c.Reader = nil
}()
2019-04-28 07:34:45 +03:00
if r, ok := c.Reader.(io.ReadCloser); ok {
return r.Close()
}
return nil
}