mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 20:15:30 +00:00
ca91d3c85f
* generator/SignalHandler.cs : put back the ObjectGen hack for param wrapping. [Fixes #58876] svn path=/trunk/gtk-sharp/; revision=27940
199 lines
6 KiB
C#
199 lines
6 KiB
C#
// GtkSharp.Generation.SignalHandler.cs - The SignalHandler marshaling Class.
|
|
//
|
|
// Author: Mike Kestner <mkestner@ximian.com>
|
|
//
|
|
// (c) 2002-2003 Mike Kestner
|
|
// (c) 2004 Novell, Inc.
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.IO;
|
|
using System.Xml;
|
|
|
|
public class SignalHandler {
|
|
|
|
XmlElement sig;
|
|
string ns;
|
|
string retval = "";
|
|
string s_ret = "";
|
|
string p_ret = "";
|
|
Parameters parms = null;
|
|
|
|
public SignalHandler (XmlElement sig, string ns)
|
|
{
|
|
this.sig = sig;
|
|
this.ns = ns;
|
|
XmlElement params_elem = sig["parameters"] as XmlElement;
|
|
if (params_elem != null)
|
|
parms = new Parameters (params_elem, ns);
|
|
}
|
|
|
|
public bool Validate ()
|
|
{
|
|
XmlElement ret_elem = sig["return-type"];
|
|
if (ret_elem == null) {
|
|
Console.Write("Missing return-type ");
|
|
return false;
|
|
}
|
|
|
|
retval = ret_elem.GetAttribute("type");
|
|
if (retval == "") {
|
|
Console.Write("Invalid return-type ");
|
|
return false;
|
|
}
|
|
|
|
s_ret = SymbolTable.Table.GetCSType(retval);
|
|
p_ret = SymbolTable.Table.GetMarshalReturnType(retval);
|
|
if ((s_ret == "") || (p_ret == "")) {
|
|
Console.Write("Funky type: " + retval);
|
|
return false;
|
|
}
|
|
|
|
if (parms == null || !parms.Validate ()) {
|
|
Console.Write("Missing parameters ");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
private string ISig {
|
|
get {
|
|
string result = "";
|
|
for (int i = 0; i < parms.Count; i++) {
|
|
if (i > 0)
|
|
result += ", ";
|
|
|
|
result += (parms[i].MarshalType + " arg" + i);
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
private string BaseName {
|
|
get {
|
|
string result = SymbolTable.Table.GetName (retval);
|
|
for (int i = 0; i < parms.Count; i++) {
|
|
if (parms[i].Generatable is ObjectGen || parms[i].Generatable is InterfaceGen) {
|
|
result += "Object";
|
|
} else {
|
|
result += SymbolTable.Table.GetName(parms[i].CType);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
public string CallbackName {
|
|
get {
|
|
return BaseName + "Callback";
|
|
}
|
|
}
|
|
|
|
public string DelegateName {
|
|
get {
|
|
return BaseName + "Delegate";
|
|
}
|
|
}
|
|
|
|
public string Name {
|
|
get {
|
|
return BaseName + "Signal";
|
|
}
|
|
}
|
|
|
|
public void Generate (string implementor_ns, GenerationInfo gen_info)
|
|
{
|
|
SymbolTable table = SymbolTable.Table;
|
|
|
|
StreamWriter sw = gen_info.OpenStream (implementor_ns + "Sharp." + Name);
|
|
|
|
sw.WriteLine("namespace " + implementor_ns + "Sharp {");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\tusing System;");
|
|
sw.WriteLine("\tusing System.Runtime.InteropServices;");
|
|
sw.WriteLine();
|
|
sw.Write("\tinternal delegate " + p_ret + " ");
|
|
sw.WriteLine(DelegateName + "(" + ISig + ", int key);");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\tinternal class " + Name + " : GLib.SignalCallback {");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\t\tprivate static " + DelegateName + " _Delegate;");
|
|
sw.WriteLine();
|
|
sw.Write("\t\tprivate static " + p_ret + " ");
|
|
sw.WriteLine(CallbackName + "(" + ISig + ", int key)");
|
|
sw.WriteLine("\t\t{");
|
|
sw.WriteLine("\t\t\tif (!_Instances.Contains(key))");
|
|
sw.WriteLine("\t\t\t\tthrow new Exception(\"Unexpected signal key \" + key);");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\t\t\t" + Name + " inst = (" + Name + ") _Instances[key];");
|
|
if ((s_ret == "void") && (parms.Count == 1)) {
|
|
sw.WriteLine("\t\t\tEventHandler h = (EventHandler) inst._handler;");
|
|
sw.WriteLine("\t\t\th (inst._obj, new EventArgs ());");
|
|
sw.WriteLine("\t\t}");
|
|
sw.WriteLine();
|
|
} else {
|
|
sw.WriteLine("\t\t\tGLib.SignalArgs args = (GLib.SignalArgs) Activator.CreateInstance (inst._argstype);");
|
|
if (parms.Count > 1) {
|
|
sw.WriteLine("\t\t\targs.Args = new object[" + (parms.Count-1) + "];");
|
|
}
|
|
for (int idx=1; idx < parms.Count; idx++) {
|
|
string ctype = parms[idx].CType;
|
|
ClassBase wrapper = table.GetClassGen (ctype);
|
|
if ((wrapper != null && !(wrapper is StructBase)) || table.IsManuallyWrapped (ctype)) {
|
|
sw.WriteLine("\t\t\tif (arg{0} == IntPtr.Zero)", idx);
|
|
sw.WriteLine("\t\t\t\targs.Args[{0}] = null;", idx - 1);
|
|
sw.WriteLine("\t\t\telse {");
|
|
if ((wrapper != null) && wrapper is ObjectGen)
|
|
sw.WriteLine("\t\t\t\targs.Args[" + (idx-1) + "] = GLib.Object.GetObject(arg" + idx + ");");
|
|
else
|
|
sw.WriteLine("\t\t\t\targs.Args[" + (idx-1) + "] = " + table.FromNative (ctype, "arg" + idx) + ";");
|
|
sw.WriteLine("\t\t\t}");
|
|
} else {
|
|
sw.WriteLine("\t\t\targs.Args[" + (idx-1) + "] = " + table.FromNative (ctype, "arg" + idx) + ";");
|
|
}
|
|
}
|
|
sw.WriteLine("\t\t\tobject[] argv = new object[2];");
|
|
sw.WriteLine("\t\t\targv[0] = inst._obj;");
|
|
sw.WriteLine("\t\t\targv[1] = args;");
|
|
sw.WriteLine("\t\t\tinst._handler.DynamicInvoke(argv);");
|
|
if (retval != "void") {
|
|
sw.WriteLine ("\t\t\tif (args.RetVal == null)");
|
|
if (s_ret == "bool")
|
|
sw.WriteLine ("\t\t\t\treturn false;");
|
|
else
|
|
sw.WriteLine ("\t\t\t\tthrow new Exception(\"args.RetVal unset in callback\");");
|
|
|
|
sw.WriteLine("\t\t\treturn (" + p_ret + ") " + table.ToNativeReturn (retval, "((" + s_ret + ")args.RetVal)") + ";");
|
|
}
|
|
sw.WriteLine("\t\t}");
|
|
sw.WriteLine();
|
|
}
|
|
sw.Write("\t\tpublic " + Name + "(GLib.Object obj, ");
|
|
sw.WriteLine("string name, Delegate eh, Type argstype, int connect_flags) : base(obj, eh, argstype)");
|
|
sw.WriteLine("\t\t{");
|
|
sw.WriteLine("\t\t\tif (_Delegate == null) {");
|
|
sw.WriteLine("\t\t\t\t_Delegate = new " + DelegateName + "(" + CallbackName + ");");
|
|
sw.WriteLine("\t\t\t}");
|
|
sw.WriteLine("\t\t\tConnect (name, _Delegate, connect_flags);");
|
|
sw.WriteLine("\t\t}");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\t\tprotected override void Dispose (bool disposing)");
|
|
sw.WriteLine("\t\t{");
|
|
sw.WriteLine("\t\t\t_Instances.Remove(_key);");
|
|
sw.WriteLine("\t\t\tif(_Instances.Count == 0)");
|
|
sw.WriteLine("\t\t\t\t_Delegate = null;");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\t\t\tDisconnect ();");
|
|
sw.WriteLine("\t\t\tbase.Dispose (disposing);");
|
|
sw.WriteLine("\t\t}");
|
|
sw.WriteLine("\t}");
|
|
sw.WriteLine("}");
|
|
sw.Close();
|
|
}
|
|
}
|
|
}
|
|
|