gstreamer/subprojects/gstreamer-sharp/sources/generated/Gst.PbUtils/Discoverer.cs
Andoni Morales Alastruey 4be602a137 csharp: update c# bindings
Update to C# bindings to use a more recent version of GtkSharp
and regenerate the bindings with that version

Fix #1718
2023-12-07 17:34:34 +01:00

595 lines
18 KiB
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gst.PbUtils {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
#region Autogenerated code
public partial class Discoverer : GLib.Object {
public Discoverer (IntPtr raw) : base(raw) {}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_discoverer_new(ulong timeout);
public Discoverer (ulong timeout) : base (IntPtr.Zero)
{
if (GetType () != typeof (Discoverer)) {
var vals = new List<GLib.Value> ();
var names = new List<string> ();
names.Add ("timeout");
vals.Add (new GLib.Value (timeout));
CreateNativeObject (names.ToArray (), vals.ToArray ());
return;
}
Raw = gst_discoverer_new(timeout);
}
[GLib.Property ("timeout")]
public ulong Timeout {
get {
GLib.Value val = GetProperty ("timeout");
ulong ret = (ulong) val;
val.Dispose ();
return ret;
}
set {
GLib.Value val = new GLib.Value(value);
SetProperty("timeout", val);
val.Dispose ();
}
}
[GLib.Property ("use-cache")]
public bool UseCache {
get {
GLib.Value val = GetProperty ("use-cache");
bool ret = (bool) val;
val.Dispose ();
return ret;
}
set {
GLib.Value val = new GLib.Value(value);
SetProperty("use-cache", val);
val.Dispose ();
}
}
[GLib.Signal("discovered")]
public event Gst.PbUtils.DiscoveredHandler Discovered {
add {
this.AddSignalHandler ("discovered", value, typeof (Gst.PbUtils.DiscoveredArgs));
}
remove {
this.RemoveSignalHandler ("discovered", value);
}
}
[GLib.Signal("source-setup")]
public event Gst.PbUtils.SourceSetupHandler SourceSetup {
add {
this.AddSignalHandler ("source-setup", value, typeof (Gst.PbUtils.SourceSetupArgs));
}
remove {
this.RemoveSignalHandler ("source-setup", value);
}
}
[GLib.Signal("finished")]
public event System.EventHandler Finished {
add {
this.AddSignalHandler ("finished", value);
}
remove {
this.RemoveSignalHandler ("finished", value);
}
}
[GLib.Signal("load-serialized-info")]
public event Gst.PbUtils.LoadSerializedInfoHandler LoadSerializedInfo {
add {
this.AddSignalHandler ("load-serialized-info", value, typeof (Gst.PbUtils.LoadSerializedInfoArgs));
}
remove {
this.RemoveSignalHandler ("load-serialized-info", value);
}
}
[GLib.Signal("starting")]
public event System.EventHandler Starting {
add {
this.AddSignalHandler ("starting", value);
}
remove {
this.RemoveSignalHandler ("starting", value);
}
}
static LoadSerializedInfoNativeDelegate LoadSerializedInfo_cb_delegate;
static LoadSerializedInfoNativeDelegate LoadSerializedInfoVMCallback {
get {
if (LoadSerializedInfo_cb_delegate == null)
LoadSerializedInfo_cb_delegate = new LoadSerializedInfoNativeDelegate (LoadSerializedInfo_cb);
return LoadSerializedInfo_cb_delegate;
}
}
static void OverrideLoadSerializedInfo (GLib.GType gtype)
{
OverrideLoadSerializedInfo (gtype, LoadSerializedInfoVMCallback);
}
static void OverrideLoadSerializedInfo (GLib.GType gtype, LoadSerializedInfoNativeDelegate callback)
{
OverrideVirtualMethod (gtype, "load-serialized-info", callback);
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate IntPtr LoadSerializedInfoNativeDelegate (IntPtr inst, IntPtr uri);
static IntPtr LoadSerializedInfo_cb (IntPtr inst, IntPtr uri)
{
try {
Discoverer __obj = GLib.Object.GetObject (inst, false) as Discoverer;
Gst.PbUtils.DiscovererInfo __result;
__result = __obj.OnLoadSerializedInfo (GLib.Marshaller.Utf8PtrToString (uri));
return __result == null ? IntPtr.Zero : __result.OwnedHandle;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gst.PbUtils.Discoverer), ConnectionMethod="OverrideLoadSerializedInfo")]
protected virtual Gst.PbUtils.DiscovererInfo OnLoadSerializedInfo (string uri)
{
return InternalLoadSerializedInfo (uri);
}
private Gst.PbUtils.DiscovererInfo InternalLoadSerializedInfo (string uri)
{
GLib.Value ret = new GLib.Value (GLib.GType.Object);
GLib.ValueArray inst_and_params = new GLib.ValueArray (2);
GLib.Value[] vals = new GLib.Value [2];
vals [0] = new GLib.Value (this);
inst_and_params.Append (vals [0]);
vals [1] = new GLib.Value (uri);
inst_and_params.Append (vals [1]);
g_signal_chain_from_overridden (inst_and_params.ArrayPtr, ref ret);
foreach (GLib.Value v in vals)
v.Dispose ();
Gst.PbUtils.DiscovererInfo result = (Gst.PbUtils.DiscovererInfo) ret;
ret.Dispose ();
return result;
}
static FinishedNativeDelegate Finished_cb_delegate;
static FinishedNativeDelegate FinishedVMCallback {
get {
if (Finished_cb_delegate == null)
Finished_cb_delegate = new FinishedNativeDelegate (Finished_cb);
return Finished_cb_delegate;
}
}
static void OverrideFinished (GLib.GType gtype)
{
OverrideFinished (gtype, FinishedVMCallback);
}
static void OverrideFinished (GLib.GType gtype, FinishedNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("finished"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void FinishedNativeDelegate (IntPtr inst);
static void Finished_cb (IntPtr inst)
{
try {
Discoverer __obj = GLib.Object.GetObject (inst, false) as Discoverer;
__obj.OnFinished ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gst.PbUtils.Discoverer), ConnectionMethod="OverrideFinished")]
protected virtual void OnFinished ()
{
InternalFinished ();
}
private void InternalFinished ()
{
FinishedNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("finished"));
unmanaged = (FinishedNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(FinishedNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle);
}
static StartingNativeDelegate Starting_cb_delegate;
static StartingNativeDelegate StartingVMCallback {
get {
if (Starting_cb_delegate == null)
Starting_cb_delegate = new StartingNativeDelegate (Starting_cb);
return Starting_cb_delegate;
}
}
static void OverrideStarting (GLib.GType gtype)
{
OverrideStarting (gtype, StartingVMCallback);
}
static void OverrideStarting (GLib.GType gtype, StartingNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("starting"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void StartingNativeDelegate (IntPtr inst);
static void Starting_cb (IntPtr inst)
{
try {
Discoverer __obj = GLib.Object.GetObject (inst, false) as Discoverer;
__obj.OnStarting ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gst.PbUtils.Discoverer), ConnectionMethod="OverrideStarting")]
protected virtual void OnStarting ()
{
InternalStarting ();
}
private void InternalStarting ()
{
StartingNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("starting"));
unmanaged = (StartingNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(StartingNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle);
}
static DiscoveredNativeDelegate Discovered_cb_delegate;
static DiscoveredNativeDelegate DiscoveredVMCallback {
get {
if (Discovered_cb_delegate == null)
Discovered_cb_delegate = new DiscoveredNativeDelegate (Discovered_cb);
return Discovered_cb_delegate;
}
}
static void OverrideDiscovered (GLib.GType gtype)
{
OverrideDiscovered (gtype, DiscoveredVMCallback);
}
static void OverrideDiscovered (GLib.GType gtype, DiscoveredNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("discovered"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void DiscoveredNativeDelegate (IntPtr inst, IntPtr info, IntPtr error);
static void Discovered_cb (IntPtr inst, IntPtr info, IntPtr error)
{
try {
Discoverer __obj = GLib.Object.GetObject (inst, false) as Discoverer;
__obj.OnDiscovered (GLib.Object.GetObject(info) as Gst.PbUtils.DiscovererInfo, error);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gst.PbUtils.Discoverer), ConnectionMethod="OverrideDiscovered")]
protected virtual void OnDiscovered (Gst.PbUtils.DiscovererInfo info, IntPtr error)
{
InternalDiscovered (info, error);
}
private void InternalDiscovered (Gst.PbUtils.DiscovererInfo info, IntPtr error)
{
DiscoveredNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("discovered"));
unmanaged = (DiscoveredNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(DiscoveredNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, info == null ? IntPtr.Zero : info.Handle, error);
}
static SourceSetupNativeDelegate SourceSetup_cb_delegate;
static SourceSetupNativeDelegate SourceSetupVMCallback {
get {
if (SourceSetup_cb_delegate == null)
SourceSetup_cb_delegate = new SourceSetupNativeDelegate (SourceSetup_cb);
return SourceSetup_cb_delegate;
}
}
static void OverrideSourceSetup (GLib.GType gtype)
{
OverrideSourceSetup (gtype, SourceSetupVMCallback);
}
static void OverrideSourceSetup (GLib.GType gtype, SourceSetupNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("source_setup"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void SourceSetupNativeDelegate (IntPtr inst, IntPtr source);
static void SourceSetup_cb (IntPtr inst, IntPtr source)
{
try {
Discoverer __obj = GLib.Object.GetObject (inst, false) as Discoverer;
__obj.OnSourceSetup (GLib.Object.GetObject(source) as Gst.Element);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gst.PbUtils.Discoverer), ConnectionMethod="OverrideSourceSetup")]
protected virtual void OnSourceSetup (Gst.Element source)
{
InternalSourceSetup (source);
}
private void InternalSourceSetup (Gst.Element source)
{
SourceSetupNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("source_setup"));
unmanaged = (SourceSetupNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(SourceSetupNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, source == null ? IntPtr.Zero : source.Handle);
}
static LoadSerializeInfoNativeDelegate LoadSerializeInfo_cb_delegate;
static LoadSerializeInfoNativeDelegate LoadSerializeInfoVMCallback {
get {
if (LoadSerializeInfo_cb_delegate == null)
LoadSerializeInfo_cb_delegate = new LoadSerializeInfoNativeDelegate (LoadSerializeInfo_cb);
return LoadSerializeInfo_cb_delegate;
}
}
static void OverrideLoadSerializeInfo (GLib.GType gtype)
{
OverrideLoadSerializeInfo (gtype, LoadSerializeInfoVMCallback);
}
static void OverrideLoadSerializeInfo (GLib.GType gtype, LoadSerializeInfoNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("load_serialize_info"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate IntPtr LoadSerializeInfoNativeDelegate (IntPtr inst, IntPtr uri);
static IntPtr LoadSerializeInfo_cb (IntPtr inst, IntPtr uri)
{
try {
Discoverer __obj = GLib.Object.GetObject (inst, false) as Discoverer;
Gst.PbUtils.DiscovererInfo __result;
__result = __obj.OnLoadSerializeInfo (GLib.Marshaller.Utf8PtrToString (uri));
return __result == null ? IntPtr.Zero : __result.OwnedHandle;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gst.PbUtils.Discoverer), ConnectionMethod="OverrideLoadSerializeInfo")]
protected virtual Gst.PbUtils.DiscovererInfo OnLoadSerializeInfo (string uri)
{
return InternalLoadSerializeInfo (uri);
}
private Gst.PbUtils.DiscovererInfo InternalLoadSerializeInfo (string uri)
{
LoadSerializeInfoNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("load_serialize_info"));
unmanaged = (LoadSerializeInfoNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(LoadSerializeInfoNativeDelegate));
}
if (unmanaged == null) return null;
IntPtr native_uri = GLib.Marshaller.StringToPtrGStrdup (uri);
IntPtr __result = unmanaged (this.Handle, native_uri);
GLib.Marshaller.Free (native_uri);
return GLib.Object.GetObject(__result, true) as Gst.PbUtils.DiscovererInfo;
}
// Internal representation of the wrapped structure ABI.
static GLib.AbiStruct _class_abi = null;
static public new GLib.AbiStruct class_abi {
get {
if (_class_abi == null)
_class_abi = new GLib.AbiStruct (new List<GLib.AbiField>{
new GLib.AbiField("finished"
, GLib.Object.class_abi.Fields
, (uint) Marshal.SizeOf(typeof(IntPtr)) // finished
, null
, "starting"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("starting"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // starting
, "finished"
, "discovered"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("discovered"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // discovered
, "starting"
, "source_setup"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("source_setup"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // source_setup
, "discovered"
, "load_serialize_info"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("load_serialize_info"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // load_serialize_info
, "source_setup"
, "_reserved"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("_reserved"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) * 3 // _reserved
, "load_serialize_info"
, null
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
});
return _class_abi;
}
}
// End of the ABI representation.
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_discoverer_get_type();
public static new GLib.GType GType {
get {
IntPtr raw_ret = gst_discoverer_get_type();
GLib.GType ret = new GLib.GType(raw_ret);
return ret;
}
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern unsafe IntPtr gst_discoverer_discover_uri(IntPtr raw, IntPtr uri, out IntPtr error);
public unsafe Gst.PbUtils.DiscovererInfo DiscoverUri(string uri) {
IntPtr native_uri = GLib.Marshaller.StringToPtrGStrdup (uri);
IntPtr error = IntPtr.Zero;
IntPtr raw_ret = gst_discoverer_discover_uri(Handle, native_uri, out error);
Gst.PbUtils.DiscovererInfo ret = GLib.Object.GetObject(raw_ret, true) as Gst.PbUtils.DiscovererInfo;
GLib.Marshaller.Free (native_uri);
if (error != IntPtr.Zero) throw new GLib.GException (error);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gst_discoverer_discover_uri_async(IntPtr raw, IntPtr uri);
public bool DiscoverUriAsync(string uri) {
IntPtr native_uri = GLib.Marshaller.StringToPtrGStrdup (uri);
bool raw_ret = gst_discoverer_discover_uri_async(Handle, native_uri);
bool ret = raw_ret;
GLib.Marshaller.Free (native_uri);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gst_discoverer_start(IntPtr raw);
public void Start() {
gst_discoverer_start(Handle);
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gst_discoverer_stop(IntPtr raw);
public void Stop() {
gst_discoverer_stop(Handle);
}
static Discoverer ()
{
GtkSharp.GstreamerSharp.ObjectManager.Initialize ();
}
// Internal representation of the wrapped structure ABI.
static GLib.AbiStruct _abi_info = null;
static public new GLib.AbiStruct abi_info {
get {
if (_abi_info == null)
_abi_info = new GLib.AbiStruct (new List<GLib.AbiField>{
new GLib.AbiField("priv"
, GLib.Object.abi_info.Fields
, (uint) Marshal.SizeOf(typeof(IntPtr)) // priv
, null
, "_reserved"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("_reserved"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) * 4 // _reserved
, "priv"
, null
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
});
return _abi_info;
}
}
// End of the ABI representation.
#endregion
}
}