Files
go-gst/generator.go

594 lines
19 KiB
Go

package main
//go:generate go run . -o ./pkg/
import (
"encoding/xml"
"fmt"
"log"
"slices"
"strings"
"github.com/diamondburned/gotk4/gir"
"github.com/diamondburned/gotk4/gir/cmd/gir-generate/gendata"
"github.com/diamondburned/gotk4/gir/cmd/gir-generate/genmain"
"github.com/diamondburned/gotk4/gir/girgen"
"github.com/diamondburned/gotk4/gir/girgen/file"
"github.com/diamondburned/gotk4/gir/girgen/generators"
"github.com/diamondburned/gotk4/gir/girgen/strcases"
"github.com/diamondburned/gotk4/gir/girgen/types"
"github.com/diamondburned/gotk4/gir/girgen/typesystem"
)
const Module = "github.com/go-gst/go-gst/pkg"
var Data = genmain.Overlay(
gendata.Main,
genmain.Data{
Module: Module,
Packages: []genmain.Package{
// {Name: "gst-editing-services-1.0", Namespaces: []string{"GES-1"}},
{Name: "gstreamer-1.0", Namespaces: []string{"Gst-1"}},
{Name: "gstreamer-base-1.0", Namespaces: []string{"GstBase-1"}},
{Name: "gstreamer-allocators-1.0", Namespaces: []string{"GstAllocators-1"}},
// {Name: "gstreamer-analytics-1.0", Namespaces: []string{"GstAnalytics-1"}},
{Name: "gstreamer-app-1.0", Namespaces: []string{"GstApp-1"}},
{Name: "gstreamer-audio-1.0", Namespaces: []string{"GstAudio-1"}},
// {Name: "gstreamer-bad-audio-1.0", Namespaces: []string{"GstBadAudio-1"}},
// {Name: "gstreamer-bad-base-camerabinsrc-1.0", Namespaces: []string{"GstBadBaseCameraBin-1"}},
{Name: "gstreamer-check-1.0", Namespaces: []string{"GstCheck-1"}},
// {Name: "gstreamer-codecs-1.0", Namespaces: []string{"GstCodecs-1"}},
{Name: "gstreamer-controller-1.0", Namespaces: []string{"GstController-1"}},
// {Name: "gstreamer-cuda-1.0", Namespaces: []string{"GstCuda-1"}},
// {Name: "gstreamer-insertbin-1.0", Namespaces: []string{"GstInsertBin-1"}},
{Name: "gstreamer-mpegts-1.0", Namespaces: []string{"GstMpegts-1"}},
// {Name: "gstreamer-mse-1.0", Namespaces: []string{"GstMse-1"}},
{Name: "gstreamer-net-1.0", Namespaces: []string{"GstNet-1"}},
// {Name: "gstreamer-rtsp-server-1.0", Namespaces: []string{"GstRtspServer-1"}},
{Name: "gstreamer-sdp-1.0", Namespaces: []string{"GstSdp-1"}},
{Name: "gstreamer-rtp-1.0", Namespaces: []string{"GstRtp-1"}},
{Name: "gstreamer-rtsp-1.0", Namespaces: []string{"GstRtsp-1"}},
{Name: "gstreamer-tag-1.0", Namespaces: []string{"GstTag-1"}},
// {Name: "gstreamer-transcoder-1.0", Namespaces: []string{"GstTranscoder-1"}},
// {Name: "gstreamer-va-1.0", Namespaces: []string{"GstVa-1"}},
// {Name: "gstreamer-validate-1.0", Namespaces: []string{"GstValidate-1"}},
{Name: "gstreamer-video-1.0", Namespaces: []string{"GstVideo-1"}},
// {Name: "gstreamer-vulkan-1.0", Namespaces: []string{"GstVulkan-1"}},
{Name: "gstreamer-webrtc-1.0", Namespaces: []string{"GstWebRTC-1"}},
{Name: "gstreamer-gl-1.0", Namespaces: []string{"GstGL-1"}},
{Name: "gstreamer-pbutils-1.0", Namespaces: []string{"GstPbutils-1"}},
{Name: "gstreamer-play-1.0", Namespaces: []string{"GstPlay-1"}},
{Name: "gstreamer-player-1.0", Namespaces: []string{"GstPlayer-1"}},
},
Preprocessors: []types.Preprocessor{
types.MustIntrospect("Gst-1.Message.copy"),
// Enum has a member of same name:
types.TypeRenamer("Gst-1.BufferCopyFlags", "BufferCopyFlagsType"),
// a member of the enum is generated twice:
DedupBitfieldMembers("GstVideo-1.VideoBufferFlags"),
DedupBitfieldMembers("GstVideo-1.VideoFrameFlags"),
DedupBitfieldMembers("GstVideo-1.NavigationModifierType"),
// the member names do not have a GST prefix, which creates collisions:
FixCutoffEnumMemberNames("GstMpegts-1.DVBTeletextType"),
MiniObjectExtenderBorrows(),
// collides with the base src extenders that actually provide a clock instead of returning the provided one
types.RenameCallable("Gst-1.Element.provide_clock", "ProvidedClock"),
// collides with base src set caps
types.RenameCallable("GstApp-1.AppSrc.set_caps", "AppSrcSetCaps"),
// collides with extending audio base payloader push
types.RenameCallable("GstRtp-1.RTPBasePayload.push", "PushBuffer"),
// collides with extending audio base payloader push
types.RenameCallable("GstAllocators-1.DRMDumbAllocator.alloc", "DRMAlloc"),
// otherwise clashes with control binding class extension
types.RenameCallable("Gst-1.Object.get_control_binding", "CurrentControlBinding"),
// Collides with GstObject:
types.RenameCallable("Gst-1.ControlBinding.sync_values", "SyncControlBindingValues"),
// Collides with method of the same name
types.TypeRenamer("GstVideo-1.VideoChromaResample", "VideoChromaResampler"),
types.PreprocessorFunc(func(r gir.Repositories) {
t := r.FindFullType("GstVideo-1.VideoTimeCode").Type.(*gir.Record)
// FIXME: the get_type function requires gst_init(), thus crashes if called
// during init
t.GLibGetType = ""
}),
},
Config: typesystem.Config{
Namespaces: map[string]typesystem.NamespaceConfig{
"Gst-1": {
ManualTypes: []typesystem.Type{
&typesystem.Alias{
BaseType: typesystem.BaseType{
GirName: "ClockTime",
GoTyp: "ClockTime",
CGoTyp: "C.GstClockTime",
CTyp: "GstClockTime",
},
AliasedType: typesystem.CouldBeForeign[typesystem.Type]{
Type: typesystem.Guint64,
},
},
},
IgnoredDefinitions: []typesystem.IgnoreFunc{
// Collide and use an out array of values. TODO: manually implement
typesystem.IgnoreMatching("Object.get_g_value_array"),
typesystem.IgnoreMatching("ControlBinding.get_g_value_array"),
// Manually implemented:
typesystem.IgnoreMatching("Object.get_value"),
typesystem.IgnoreMatching("ControlBinding.get_value"), // TODO
typesystem.IgnoreMatching("ElementFactory.make_with_properties"),
typesystem.IgnoreMatching("Message.parse_property_notify"),
typesystem.IgnoreMatching("Message.new_property_notify"),
typesystem.IgnoreMatching("Message.get_stream_status_object"),
typesystem.IgnoreMatching("Structure.get_value"),
typesystem.IgnoreMatching("Structure.set_value"),
typesystem.IgnoreMatching("Structure.id_get_value"),
typesystem.IgnoreMatching("Structure.id_take_value"),
typesystem.IgnoreMatching("Structure.take_value"),
typesystem.IgnoreMatching("ChildProxy.set_property"),
typesystem.IgnoreMatching("ChildProxy.get_property"),
typesystem.IgnoreMatching("Iterator.next"),
typesystem.IgnoreMatching("TagList.get_value_index"),
// we have bindings for parse_launch(_full), if we need the v variants,
// then manually implement them
typesystem.IgnoreMatching("parse_launchv"),
typesystem.IgnoreMatching("parse_launchv_full"),
// gobject.NewValue handles this already.
typesystem.IgnoreMatching("util_set_value_from_string"),
// Buffer mapping is manually implemented:
typesystem.IgnoreMatching("Buffer.map"),
typesystem.IgnoreMatching("Buffer.unmap"),
typesystem.IgnoreMatching("MapInfo"),
// Requires a gvalue arg, manually implemented:
typesystem.IgnoreMatching("TagSetter.add_tag_value"),
},
},
"GstBase-1": {
IgnoredDefinitions: []typesystem.IgnoreFunc{
// has unexported free function that crashes the linker when compiling the examples:
typesystem.IgnoreMatching("TypeFindData"),
},
},
"GstVideo-1": {
IgnoredDefinitions: []typesystem.IgnoreFunc{
// must be implemented manually
typesystem.IgnoreMatching("VideoCodecFrame.set_user_data"),
typesystem.IgnoreMatching("VideoCodecFrame.get_user_data"),
// returns a gconstpointer to an array, manually implemented instead
typesystem.IgnoreMatching("VideoFormat.get_palette"),
},
},
"GstPbutils-1": {
IgnoredDefinitions: []typesystem.IgnoreFunc{
// Resolve to ObjectClass:
typesystem.IgnoreMatching("DiscovererAudioInfoClass"),
typesystem.IgnoreMatching("DiscovererContainerInfoClass"),
typesystem.IgnoreMatching("DiscovererInfoClass"),
typesystem.IgnoreMatching("DiscovererStreamInfoClass"),
typesystem.IgnoreMatching("DiscovererSubtitleInfoClass"),
typesystem.IgnoreMatching("DiscovererVideoInfoClass"),
typesystem.IgnoreMatching("EncodingTargetClass"),
},
},
},
},
Postprocessors: []typesystem.PostProcessor{
typesystem.MarkAsManuallyExtended("Gst-1", "Object"),
typesystem.MarkAsManuallyExtended("Gst-1", "Element"),
typesystem.MarkAsManuallyExtended("Gst-1", "Bin"),
typesystem.MarkAsManuallyExtended("Gst-1", "Bus"),
typesystem.MarkAsManuallyExtended("Gst-1", "ChildProxy"),
typesystem.MarkAsManuallyExtended("Gst-1", "TagSetter"),
func(r *typesystem.Registry) error {
// this is needed to fix gstreamer <= 1.24.10. Remove once upgraded in the flake
webrtc := r.FindNamespaceByName("GstWebRTC-1")
webrtc.Packages = append(webrtc.Packages, "gstreamer-sdp-1.0")
webrtc.CIncludes = append(webrtc.CIncludes, "gst/webrtc/sctptransport.h")
return nil
},
},
GeneratorHooks: []genmain.GeneratorHook{
genmain.AddGeneratorToPackage("gstmpegts", &GstUseUnstableAPI{}),
genmain.AddGeneratorToPackage("gstwebrtc", &GstUseUnstableAPI{}),
},
},
)
func main() {
genmain.Run(Data)
}
var borrowedTypes = []string{
"Gst-1.MiniObject", "Gst-1.Structure", "Gst-1.Caps", "Gst-1.Buffer", "Gst-1.BufferList", "Gst-1.Memory", "Gst-1.Message", "Gst-1.Query", "Gst-1.Sample",
}
// gst.MiniObject extenders must not take a ref on these methods, or they are made readonly
func MiniObjectExtenderBorrows() types.Preprocessor {
return types.PreprocessorFunc(func(repos gir.Repositories) {
for _, fulltype := range borrowedTypes {
res := repos.FindFullType(fulltype)
if res == nil {
log.Fatalf("fulltype %s not found", fulltype)
}
switch typ := res.Type.(type) {
case *gir.Record:
for i, m := range typ.Methods {
if m.ReturnValue.TransferOwnership.TransferOwnership == "none" && slices.ContainsFunc(borrowedTypes, func(typ string) bool {
return strings.SplitN(typ, ".", 2)[1] == m.ReturnValue.Type.Name
}) {
log.Printf("marking function as borrowing: %s", m.Name)
typ.Methods[i].ReturnValue.TransferOwnership.TransferOwnership = "borrow"
}
}
default:
log.Fatalf("unhandled type for %s", fulltype)
}
}
})
}
func MarkReturnAsBorrowed(fulltype string) types.Preprocessor {
return types.ModifyCallable(fulltype, func(c *gir.CallableAttrs) {
c.ReturnValue.TransferOwnership.TransferOwnership = "borrow"
})
}
func DedupBitfieldMembers(fulltype string) types.Preprocessor {
return types.PreprocessorFunc(func(repos gir.Repositories) {
bf := repos.FindFullType(fulltype).Type.(*gir.Bitfield)
oldmembers := bf.Members
bf.Members = nil
seen := make(map[string]struct{})
for _, m := range oldmembers {
if _, ok := seen[m.CIdentifier]; ok {
continue
}
seen[m.CIdentifier] = struct{}{}
bf.Members = append(bf.Members, m)
}
})
}
// FixCutoffEnumMemberNames adds a namespace prefix, that will later be cut off by FormatMember. It also regenerates the name from the C identifier
func FixCutoffEnumMemberNames(fulltype string) types.Preprocessor {
return types.MapMembers(fulltype, func(member gir.Member) gir.Member {
newname := strcases.SnakeToGo(true, strings.ToLower(member.CIdentifier))
nameAttr := xml.Name{Local: "name"}
for i, attr := range member.Names {
if attr.Name == nameAttr {
attr.Value = newname
}
member.Names[i] = attr
}
member.CIdentifier = "gst_" + member.CIdentifier
return member
})
}
// GstUseUnstableAPI defines the C macro to suppress compilation warnings, but also creates
// an init func that logs a warning message that can be opt-outted out by the user.
type GstUseUnstableAPI struct{}
// Generate implements generators.Generator.
func (g *GstUseUnstableAPI) Generate(w *file.Package) {
w.DefineC("GST_USE_UNSTABLE_API // APIs in this package are unstable")
w.GoImport("log")
fmt.Fprintln(w.Go(), "// SuppressUnstableWarning should be overwritten by the user to suppress the warning")
fmt.Fprintln(w.Go(), "var SuppressUnstableWarning = false")
fmt.Fprintln(w.Go(), "func init() {")
w.Go().Indent()
fmt.Fprintln(w.Go(), "if !SuppressUnstableWarning {")
fmt.Fprintln(w.Go(), "\tlog.Println(\"Warning: using unstable API\")")
fmt.Fprintln(w.Go(), "}")
w.Go().Unindent()
fmt.Fprintln(w.Go(), "}")
}
var _ generators.Generator = &GstUseUnstableAPI{}
func FixWebrtcPkgConfig(nsgen *girgen.NamespaceGenerator) error {
// see: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8433, remove after release
nsgen.Namespace().Repository.Packages = append(nsgen.Namespace().Repository.Packages, gir.Package{
Name: "gstreamer-sdp-1.0",
})
for _, f := range nsgen.Files {
// see https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8470 , remove after release
f.Header().IncludeC("gst/webrtc/sctptransport.h")
}
return nil
}
func IteratorValues(nsgen *girgen.NamespaceGenerator) error {
fg := nsgen.MakeFile("iteratorvalues.go")
p := fg.Pen()
fg.Header().Import("iter")
p.Line(`
// Values allows you to access the values from the iterator in a go for loop via function iterators
func (it *Iterator) Values() iter.Seq[any] {
return func(yield func(any) bool) {
for {
v, ret := it.Next()
switch ret {
case IteratorDone:
return
case IteratorResync:
it.Resync()
case IteratorOK:
if !yield(v.GoValue()) {
return
}
case IteratorError:
panic("iterator values failed")
default:
panic("iterator values returned unknown state")
}
}
}
}
`)
return nil
}
func StructureGoMarshal(nsgen *girgen.NamespaceGenerator) error {
fg := nsgen.MakeFile("structuremarshal.go")
p := fg.Pen()
fg.Header().NeedsExternGLib()
fg.Header().Import("reflect")
p.Line(`
// MarshalStructure will convert the given go struct into a GstStructure. Currently nested
// structs are not supported. You can control the mapping of the field names via the tags of the go struct.
func MarshalStructure(data interface{}) *Structure {
typeOf := reflect.TypeOf(data)
valsOf := reflect.ValueOf(data)
st := NewStructureEmpty(typeOf.Name())
for i := 0; i < valsOf.NumField(); i++ {
gval := valsOf.Field(i).Interface()
fieldName, ok := typeOf.Field(i).Tag.Lookup("gst")
if !ok {
fieldName = typeOf.Field(i).Name
}
st.SetValue(fieldName, coreglib.NewValue(gval))
}
return st
}
// UnmarshalInto will unmarshal this structure into the given pointer. The object
// reflected by the pointer must be non-nil. You can control the mapping of the field names via the tags of the go struct.
func (s *Structure) UnmarshalInto(data interface{}) error {
rv := reflect.ValueOf(data)
if rv.Kind() != reflect.Ptr || rv.IsNil() {
return fmt.Errorf("data is invalid (nil or non-pointer)")
}
val := reflect.ValueOf(data).Elem()
nVal := rv.Elem()
for i := 0; i < val.NumField(); i++ {
nvField := nVal.Field(i)
fieldName, ok := val.Type().Field(i).Tag.Lookup("gst")
if !ok {
fieldName = val.Type().Field(i).Name
}
val := s.Value(fieldName)
nvField.Set(reflect.ValueOf(val))
}
return nil
}
`)
return nil
}
func BinAddMany(nsgen *girgen.NamespaceGenerator) error {
fg := nsgen.MakeFile("binaddmany.go")
p := fg.Pen()
p.Line(`
// AddMany repeatedly calls Add for each param
func (bin *Bin) AddMany(elements... Elementer) bool {
for _, el := range elements {
if !bin.Add(el) {
return false
}
}
return true
}
`)
return nil
}
func ElementLinkMany(nsgen *girgen.NamespaceGenerator) error {
fg := nsgen.MakeFile("elementlinkmany.go")
p := fg.Pen()
p.Line(`
// LinkMany links the given elements in the order passed
func LinkMany(elements... Elementer) bool {
if len(elements) == 0 {
return true
}
current := elements[0].(*Element)
for _, next := range elements[1:] {
if ! current.Link(next) {
return false
}
current = next.(*Element)
}
return true
}
`)
return nil
}
func ElementBlockSetState(nsgen *girgen.NamespaceGenerator) error {
fg := nsgen.MakeFile("elementblocksetstate.go")
p := fg.Pen()
p.Line(`
// BlockSetState is a convenience wrapper around calling SetState and State to wait for async state changes. See State for more info.
func (el *Element) BlockSetState(state State, timeout ClockTime) StateChangeReturn {
ret := el.SetState(state)
if ret == StateChangeAsync {
_, _, ret = el.State(timeout)
}
return ret
}
`)
return nil
}
func ElementFactoryMakeWithProperties(nsgen *girgen.NamespaceGenerator) error {
fg := nsgen.MakeFile("elementfactory.go")
fg.Header().NeedsExternGLib()
p := fg.Pen()
// this is adapted from the autogenerated code and the coreglib.NewObjectWithProperties
p.Line(`
// ElementFactoryMakeWithProperties: create a new element of the type defined by
// the given elementfactory. The supplied list of properties, will be passed at
// object construction.
//
// The function takes the following parameters:
//
// - factoryname: named factory to instantiate.
// - names (optional): array of properties names.
// - values (optional): array of associated properties values.
//
// The function returns the following values:
//
// - element (optional): new Element or NULL if the element couldn't be
// created.
func ElementFactoryMakeWithProperties(factoryname string, properties map[string]any) Elementer {
var _arg1 *C.gchar // out
var _arg2 C.guint
var _cret *C.GstElement // in
_arg1 = (*C.gchar)(unsafe.Pointer(C.CString(factoryname)))
defer C.free(unsafe.Pointer(_arg1))
var names_ **C.gchar
var values_ *C.GValue
if len(properties) > 0 {
names := make([]*C.char, 0, len(properties))
values := make([]C.GValue, 0, len(properties))
for name, value := range properties {
cname := (*C.char)(C.CString(name))
defer C.free(unsafe.Pointer(cname))
gvalue := coreglib.NewValue(value)
defer runtime.KeepAlive(gvalue)
names = append(names, cname)
values = append(values, *(*C.GValue)(unsafe.Pointer(gvalue.Native())))
}
names_ = &names[0]
values_ = &values[0]
}
_cret = C.gst_element_factory_make_with_properties(_arg1, _arg2, names_, values_)
runtime.KeepAlive(factoryname)
var _element Elementer // out
if _cret != nil {
{
objptr := unsafe.Pointer(_cret)
object := coreglib.Take(objptr)
casted := object.WalkCast(func(obj coreglib.Objector) bool {
_, ok := obj.(Elementer)
return ok
})
rv, ok := casted.(Elementer)
if !ok {
panic("no marshaler for " + object.TypeFromInstance().String() + " matching gst.Elementer")
}
_element = rv
}
}
return _element
}`)
return nil
}
var ExtraGoContents = map[string]string{
"gst/gst.go": `
// Init binds to the gst_init() function. Argument parsing is not
// supported.
func Init() {
C.gst_init(nil, nil)
}
// ClockTimeNone means infinite timeout or an empty value
const ClockTimeNone ClockTime = 0xffffffffffffffff // Ideally this would be set to C.GST_CLOCK_TIME_NONE but this causes issues on MacOS and Windows
`,
}