av/stream/mts/psi/op.go

147 lines
4.3 KiB
Go
Raw Normal View History

2018-12-12 02:48:05 +03:00
/*
NAME
op.go
2018-12-12 02:48:05 +03:00
DESCRIPTION
op.go provides functionality for editing and reading bytes slices
directly in order to insert/read timestamp and location data in psi.
2018-12-12 02:48:05 +03:00
AUTHOR
Saxon Milton <saxon@ausocean.org>
LICENSE
op.go is Copyright (C) 2018 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.
*/
2018-12-11 09:46:26 +03:00
package psi
import (
"bytes"
2018-12-11 09:46:26 +03:00
"encoding/binary"
"errors"
"hash/crc32"
"math/bits"
2018-12-11 09:46:26 +03:00
)
2018-12-12 15:47:28 +03:00
// timeBytes takes a timestamp as an uint64 and converts to an 8 byte slice -
// allows for updating of timestamp in pmt time descriptor.
2018-12-14 08:52:48 +03:00
func TimeBytes(t uint64) []byte {
var s [timeDataSize]byte
2018-12-12 15:47:28 +03:00
binary.BigEndian.PutUint64(s[:], t)
2018-12-14 08:52:48 +03:00
return s[:]
2018-12-11 09:46:26 +03:00
}
2018-12-12 15:47:28 +03:00
// ChkTime takes a psi as a byte slice and checks to see if it has a time descriptor
// - if so return nil, otherwise return error
2018-12-14 08:41:45 +03:00
func HasTime(p []byte) error {
2018-12-12 15:47:28 +03:00
if p[timeTagIndx] != timeDescTag {
2018-12-11 09:46:26 +03:00
return errors.New("PSI does not contain a time descriptor, cannot update")
}
return nil
}
// ChkLocation takes a psi as a byte slice and checks to see if it has a location descriptor
2018-12-12 15:47:28 +03:00
// - if so return nil, otherwise return error
func HasLocation(p []byte) error {
if p[locationTagIndx] != locationDescTag {
return errors.New("PSI does not contain a location descriptor, cannot update")
}
return nil
}
2018-12-12 15:47:28 +03:00
// UpdateTime takes the byte slice representation of a psi-pmt as well as a time
// as an integer and attempts to update the time descriptor in the pmt with the
// given time if the time descriptor exists, otherwise an error is returned
2018-12-14 08:51:56 +03:00
func UpdateTime(dst []byte, t uint64) error {
err := HasTime(dst)
2018-12-11 09:46:26 +03:00
if err != nil {
return err
}
ts := TimeBytes(uint64(t))
2018-12-14 08:51:56 +03:00
for i := range dst[timeDataIndx : timeDataIndx+timeDataSize] {
dst[i+timeDataIndx] = ts[i]
2018-12-11 09:46:26 +03:00
}
2018-12-14 08:51:56 +03:00
dst = updateCrc(dst)
2018-12-11 09:46:26 +03:00
return nil
}
2018-12-12 15:47:28 +03:00
// TimeOf takes a byte slice representation of a psi-pmt and extracts it's
// timestamp, returning as a uint64 if it exists, otherwise returning 0 and nil
// if it does not exist
func TimeFrom(p []byte) (t uint64, err error) {
2018-12-14 08:41:45 +03:00
err = HasTime(p)
2018-12-11 09:46:26 +03:00
if err != nil {
return 0, err
}
t = binary.BigEndian.Uint64(p[timeDataIndx : timeDataIndx+timeDataSize])
2018-12-11 09:46:26 +03:00
return t, nil
}
// TimeOf takes a byte slice representation of a psi-pmt and extracts it's
// timestamp, returning as a uint64 if it exists, otherwise returning 0 and nil
// if it does not exist
func LocationFrom(p []byte) (g string, err error) {
err = HasLocation(p)
if err != nil {
return "", err
}
gBytes := p[locationDataIndx : locationDataIndx+locationDataSize]
gBytes = bytes.Trim(gBytes, "\x00")
g = string(gBytes)
return g, nil
}
// LocationStrBytes take a string of location data and converts to a 32 byte slice -
// easy update of slice representation of a pmt with location descriptor
2018-12-14 09:07:13 +03:00
func LocationStrBytes(s string) []byte {
if len(s) != locationDataSize {
panic("Location string not the right size")
}
var b [locationDataSize]byte
copy(b[:], s)
return b[:]
}
// UpdateLocation takes a byte slice representation of a psi-pmt containing a location
// descriptor and attempts to update the location data value with the passed string.
// If the psi does not contain a location descriptor, and error is returned.
func UpdateLocation(d []byte, s string) error {
err := HasLocation(d)
if err != nil {
return err
}
gb := LocationStrBytes(s)
for i := range d[locationDataIndx : locationDataIndx+locationDataSize] {
d[i+locationDataIndx] = gb[i]
}
d = updateCrc(d)
return nil
}
func addCrc(out []byte) []byte {
out = append(out, make([]byte, 4)...)
out = updateCrc(out)
return out
}
func updateCrc(out []byte) []byte {
crc32 := crc32_Update(0xffffffff, crc32_MakeTable(bits.Reverse32(crc32.IEEE)), out[1:len(out)-4])
out[len(out)-4] = byte(crc32 >> 24)
out[len(out)-3] = byte(crc32 >> 16)
out[len(out)-2] = byte(crc32 >> 8)
out[len(out)-1] = byte(crc32)
return out
}