guessit-go/guessit.go

149 lines
3.4 KiB
Go
Raw Normal View History

2021-11-19 13:22:44 +00:00
package guessit
2023-05-23 02:37:06 +00:00
// #cgo pkg-config: python-3.9-embed
2021-11-19 13:22:44 +00:00
// #include <Python.h>
// import "C"
import (
"fmt"
"os"
"strings"
python3 "git.stein-ivar.net/steino/cpy3"
"github.com/mitchellh/mapstructure"
)
type Match struct {
// Main
Type string `mapstructure:"type,omitempty"`
Title string `mapstructure:"title,omitempty"`
ReleaseGroup string `mapstructure:"release_group,omitempty"`
StreamingService string `mapstructure:"streaming_service,omitempty"`
// Episode
Season int64 `mapstructure:"season,omitempty"`
Episode int64 `mapstructure:"episode,omitempty"`
Version int64 `mapstructure:"version,omitempty"`
// Video
ScreenSize string `mapstructure:"screen_size,omitempty"`
Container string `mapstructure:"container,omitempty"`
// Audio
AudioChannels string `mapstructure:"audio_channels,omitempty"`
AudioCodec []string `mapstructure:"audio_codec,omitempty"`
// Other
Other []string `mapstructure:"other,omitempty"`
}
type Guessit struct {
fn *python3.PyObject
}
func init() {
python3.Py_Initialize()
if !python3.Py_IsInitialized() {
fmt.Println("Error initializing the python interpreter")
os.Exit(1)
}
}
func New() (*Guessit, error) {
python3.PyErr_Clear()
2021-11-21 01:05:35 +00:00
module := python3.PyImport_ImportModule("guessit") //ret val: new ref
2021-11-19 13:22:44 +00:00
if !(module != nil && python3.PyErr_Occurred() == nil) {
2021-11-21 01:05:35 +00:00
return nil, fmt.Errorf("failed to import module 'guessit'")
2021-11-19 13:22:44 +00:00
}
2021-11-19 14:50:33 +00:00
defer module.DecRef()
2021-11-19 13:22:44 +00:00
dict := python3.PyModule_GetDict(module) //ret val: Borrowed
if !(dict != nil && python3.PyErr_Occurred() == nil) {
return nil, fmt.Errorf("could not get dict for module")
}
2021-11-19 14:50:33 +00:00
2021-11-21 01:05:35 +00:00
fn := python3.PyDict_GetItemString(dict, "guessit") //retval: Borrowed
if !(fn != nil && python3.PyCallable_Check(fn)) {
2021-11-19 13:22:44 +00:00
return nil, fmt.Errorf("could not find function 'guessit'")
}
2021-11-21 01:05:35 +00:00
2021-11-19 13:22:44 +00:00
return &Guessit{
2021-11-21 01:05:35 +00:00
fn: fn,
2021-11-19 13:22:44 +00:00
}, nil
}
func (g Guessit) Guessit(s string, options ...string) (out Match, err error) {
python3.PyErr_Clear()
2021-11-19 13:22:44 +00:00
if len(s) == 0 {
err = fmt.Errorf("input string is empty")
return
}
item := python3.PyUnicode_FromString(s)
2021-11-19 14:50:33 +00:00
defer item.DecRef()
2021-11-19 13:22:44 +00:00
opts := python3.PyUnicode_FromString(strings.Join(options[:], " "))
2021-11-19 14:50:33 +00:00
defer opts.DecRef()
2021-11-19 13:22:44 +00:00
2021-11-21 01:05:35 +00:00
testdataPy := g.fn.CallFunctionObjArgs(item, opts) //retval: New reference
2021-11-19 13:22:44 +00:00
if !(testdataPy != nil && python3.PyErr_Occurred() == nil) {
return
}
2021-11-21 01:05:35 +00:00
defer testdataPy.DecRef()
2021-11-19 13:22:44 +00:00
size := python3.PyDict_Size(testdataPy)
keys := python3.PyDict_Keys(testdataPy)
2021-11-19 14:50:33 +00:00
defer keys.DecRef()
2021-11-21 01:05:35 +00:00
2021-11-19 13:22:44 +00:00
vals := python3.PyDict_Values(testdataPy)
2021-11-19 14:50:33 +00:00
defer vals.DecRef()
2021-11-19 13:22:44 +00:00
tmpmap := make(map[string]interface{})
for i := 0; i < size; i++ {
2021-11-21 01:05:35 +00:00
kitem := python3.PyList_GetItem(keys, i)
key := python3.PyUnicode_AsUTF8(kitem)
kitem = nil
2021-11-19 13:22:44 +00:00
val := python3.PyList_GetItem(vals, i)
switch {
case python3.PyLong_Check(val):
tmpmap[key] = python3.PyLong_AsLongLong(val)
case python3.PyUnicode_Check(val):
tmpmap[key] = python3.PyUnicode_AsUTF8(val)
case python3.PyList_Check(val):
var tmp []string
for i := 0; i < python3.PyList_Size(val); i++ {
2021-11-19 14:50:33 +00:00
item := python3.PyList_GetItem(val, i)
v := python3.PyUnicode_AsUTF8(item)
2021-11-19 13:22:44 +00:00
tmp = append(tmp, v)
}
tmpmap[key] = tmp
default:
}
}
2021-11-21 16:38:52 +00:00
if _, ok := tmpmap["version"]; !ok {
tmpmap["version"] = -1
}
2021-11-19 13:22:44 +00:00
config := &mapstructure.DecoderConfig{
WeaklyTypedInput: true,
Result: &out,
}
decoder, err := mapstructure.NewDecoder(config)
if err != nil {
return
}
err = decoder.Decode(tmpmap)
if err != nil {
return
}
return
}