2014-05-28 11:20:18 +00:00
|
|
|
//
|
|
|
|
// Authors:
|
|
|
|
// Andrés G. Aragoneses <knocte@gmail.com>
|
|
|
|
// Sebastian Dröge <slomo@circular-chaos.org>
|
|
|
|
// Stephan Sundermann <stephansundermann@gmail.com>
|
|
|
|
//
|
|
|
|
// Copyright (c) 2009 Sebastian Dröge
|
|
|
|
// Copyright (c) 2013 Andrés G. Aragoneses
|
|
|
|
// Copyright (C) 2013 Stephan Sundermann
|
2013-07-19 12:58:37 +00:00
|
|
|
//
|
2014-05-28 11:29:36 +00:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
2013-07-19 12:58:37 +00:00
|
|
|
//
|
2014-05-28 11:29:36 +00:00
|
|
|
// This library is distributed in the hope that it will be useful,
|
2013-07-19 12:58:37 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2014-05-28 11:29:36 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
2013-07-19 12:58:37 +00:00
|
|
|
//
|
2014-05-28 11:29:36 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
// 02110-1301 USA
|
2013-07-19 12:58:37 +00:00
|
|
|
|
2013-10-10 18:26:26 +00:00
|
|
|
using System;
|
2013-10-10 18:45:59 +00:00
|
|
|
using System.Collections.Generic;
|
2013-10-10 18:26:26 +00:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2013-07-19 12:58:37 +00:00
|
|
|
namespace Gst {
|
|
|
|
|
2021-09-30 11:02:26 +00:00
|
|
|
public class PropertyNotFoundException : Exception { }
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
struct GstObject {
|
|
|
|
IntPtr _lock;
|
|
|
|
public string name;
|
|
|
|
public Object parent;
|
|
|
|
public uint flags;
|
|
|
|
IntPtr controlBindings;
|
|
|
|
public int control_rate;
|
|
|
|
public int last_sync;
|
|
|
|
|
|
|
|
private IntPtr[] _gstGstReserved;
|
|
|
|
}
|
|
|
|
|
|
|
|
partial class Object {
|
|
|
|
private Dictionary<string, bool> PropertyNameCache = new Dictionary<string, bool>();
|
|
|
|
|
|
|
|
[DllImport("gobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
|
|
|
static extern IntPtr g_object_class_find_property(IntPtr klass, IntPtr name);
|
|
|
|
|
|
|
|
bool PropertyExists(string name) {
|
|
|
|
if (PropertyNameCache.ContainsKey(name))
|
|
|
|
return PropertyNameCache[name];
|
|
|
|
|
|
|
|
IntPtr native_name = GLib.Marshaller.StringToPtrGStrdup(name);
|
|
|
|
var ptr = g_object_class_find_property(Marshal.ReadIntPtr(Handle), native_name);
|
2013-10-10 18:26:26 +00:00
|
|
|
var result = ptr != IntPtr.Zero;
|
|
|
|
|
2013-10-10 18:45:59 +00:00
|
|
|
// just cache the positive results because there might
|
|
|
|
// actually be new properties getting installed
|
|
|
|
if (result)
|
2021-09-30 11:02:26 +00:00
|
|
|
PropertyNameCache[name] = result;
|
2013-10-10 18:45:59 +00:00
|
|
|
|
2021-09-30 11:02:26 +00:00
|
|
|
GLib.Marshaller.Free(native_name);
|
2013-10-10 18:26:26 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-07-19 12:58:37 +00:00
|
|
|
public object this[string property] {
|
2021-09-30 11:02:26 +00:00
|
|
|
get {
|
|
|
|
if (PropertyExists(property)) {
|
|
|
|
using (GLib.Value v = GetProperty(property)) {
|
2013-10-10 20:50:34 +00:00
|
|
|
return v.Val;
|
|
|
|
}
|
2021-09-30 11:02:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
throw new PropertyNotFoundException();
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
if (PropertyExists(property)) {
|
2013-10-12 17:10:32 +00:00
|
|
|
if (value == null) {
|
2021-09-30 11:02:26 +00:00
|
|
|
throw new ArgumentNullException();
|
2013-10-12 17:10:32 +00:00
|
|
|
}
|
2021-09-30 11:02:26 +00:00
|
|
|
var type = value.GetType();
|
2013-10-12 17:10:32 +00:00
|
|
|
var gtype = (GLib.GType)type;
|
|
|
|
if (gtype == null) {
|
2021-09-30 11:02:26 +00:00
|
|
|
throw new Exception("Could not find a GType for type " + type.FullName);
|
2013-10-12 17:10:32 +00:00
|
|
|
}
|
2021-09-30 11:02:26 +00:00
|
|
|
GLib.Value v = new GLib.Value((GLib.GType)value.GetType());
|
2013-10-31 13:47:44 +00:00
|
|
|
v.Val = value;
|
2021-09-30 11:02:26 +00:00
|
|
|
SetProperty(property, v);
|
|
|
|
v.Dispose();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw new PropertyNotFoundException();
|
|
|
|
}
|
2013-07-19 12:58:37 +00:00
|
|
|
}
|
|
|
|
|
2021-09-30 11:02:26 +00:00
|
|
|
public void Connect(string signal, SignalHandler handler) {
|
|
|
|
DynamicSignal.Connect(this, signal, handler);
|
2013-07-19 12:58:37 +00:00
|
|
|
}
|
|
|
|
|
2021-09-30 11:02:26 +00:00
|
|
|
public void Disconnect(string signal, SignalHandler handler) {
|
|
|
|
DynamicSignal.Disconnect(this, signal, handler);
|
2013-07-19 12:58:37 +00:00
|
|
|
}
|
|
|
|
|
2021-09-30 11:02:26 +00:00
|
|
|
public void Connect(string signal, Delegate handler) {
|
|
|
|
DynamicSignal.Connect(this, signal, handler);
|
2013-07-19 12:58:37 +00:00
|
|
|
}
|
|
|
|
|
2021-09-30 11:02:26 +00:00
|
|
|
public void Disconnect(string signal, Delegate handler) {
|
|
|
|
DynamicSignal.Disconnect(this, signal, handler);
|
2013-07-19 12:58:37 +00:00
|
|
|
}
|
|
|
|
|
2021-09-30 11:02:26 +00:00
|
|
|
public object Emit(string signal, params object[] parameters) {
|
|
|
|
return DynamicSignal.Emit(this, signal, parameters);
|
2013-07-19 12:58:37 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-30 11:02:26 +00:00
|
|
|
}
|