2020-12-26 07:47:10 +00:00
|
|
|
package common
|
|
|
|
|
2021-11-11 15:27:07 +00:00
|
|
|
import (
|
2022-11-18 23:25:43 +00:00
|
|
|
"io"
|
2021-11-11 15:27:07 +00:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2022-12-05 00:54:40 +00:00
|
|
|
|
|
|
|
"go.uber.org/zap"
|
2021-11-11 15:27:07 +00:00
|
|
|
)
|
|
|
|
|
2022-12-04 15:05:38 +00:00
|
|
|
type DecoderParams struct {
|
|
|
|
Reader io.ReadSeeker // required
|
|
|
|
Extension string // required, source extension, eg. ".mp3"
|
|
|
|
|
|
|
|
FilePath string // optional, source file path
|
2022-12-05 00:54:40 +00:00
|
|
|
|
|
|
|
Logger *zap.Logger // required
|
2022-12-04 15:05:38 +00:00
|
|
|
}
|
|
|
|
type NewDecoderFunc func(p *DecoderParams) Decoder
|
2020-12-26 07:47:10 +00:00
|
|
|
|
2021-11-11 15:43:20 +00:00
|
|
|
type decoderItem struct {
|
|
|
|
noop bool
|
|
|
|
decoder NewDecoderFunc
|
|
|
|
}
|
|
|
|
|
2021-12-13 20:01:04 +00:00
|
|
|
var DecoderRegistry = make(map[string][]decoderItem)
|
2020-12-26 07:47:10 +00:00
|
|
|
|
2021-11-11 15:43:20 +00:00
|
|
|
func RegisterDecoder(ext string, noop bool, dispatchFunc NewDecoderFunc) {
|
2021-12-13 20:01:04 +00:00
|
|
|
DecoderRegistry[ext] = append(DecoderRegistry[ext],
|
2021-11-11 15:43:20 +00:00
|
|
|
decoderItem{noop: noop, decoder: dispatchFunc})
|
2020-12-26 07:47:10 +00:00
|
|
|
}
|
2022-11-21 23:08:10 +00:00
|
|
|
|
2021-11-11 15:43:20 +00:00
|
|
|
func GetDecoder(filename string, skipNoop bool) (rs []NewDecoderFunc) {
|
2021-11-11 15:27:07 +00:00
|
|
|
ext := strings.ToLower(strings.TrimLeft(filepath.Ext(filename), "."))
|
2021-12-13 20:01:04 +00:00
|
|
|
for _, dec := range DecoderRegistry[ext] {
|
2021-11-11 15:43:20 +00:00
|
|
|
if skipNoop && dec.noop {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
rs = append(rs, dec.decoder)
|
|
|
|
}
|
|
|
|
return
|
2020-12-26 07:47:10 +00:00
|
|
|
}
|