e9d1e0b6dc
* art/Makefile.in (clean): Change to avoid bugging out on generated/CVS. * glib/ObjectManager.cs: Added. Used to be auto-generated, but now it can infer names, and relies on per-namespace ObjectManager classes to inform it of oddly-named classes. * generator/IGeneratable.cs, GenBase.cs: New "DoGenerate" property. * generator/*Gen.cs: Honor DoGenerate. * generator/CodeGenerator.cs: Support including dependency files which will not be generated. * generator/ObjectGen.cs: Generate mapping file per-namespace, as one that calls back to the one in glib. Only generate if the name does not follow the normal conventions, otherwise, GtkSharp.ObjectManager can infer the name. * generator/Parser.cs: Accept 'generate' flag to pass on to the IGeneratables. Parse a new toplevel element, "symbol", which adds a type to the SymbolTable (instead of hard-coding it). * generator/SignalHandler.cs: Do not optimize signal handler creation, instead creating them in their own namespaces. Do not generate if the calling Signal told us not to. * generator/Signal.cs: Do not generate handlers if container's DoGenerate is false. Adjust to the marshaller name being in a sub-namespace. * generator/SymbolTable.cs (AddSimpleType, AddManualType): Used to add simple and manually wrapped types at runtime instead of compile-time. (FromNative): Remove hard-coded cases for manually wrapped types, use a generic case instead. * api: Added. Move api files and generation targets here. * source: Added. Move source parsing here. * generator/makefile: Move actual generation to api/. * glib/Makefile.in: Remove generated/* target. * glue/Makefile.am: Fix to include canvas-marshal. Move canvas stuff to GNOME target. * gnome/CanvasProxy.cs: Update to work with SignalHandlers being namespace-specific. * parser/Metadata.pm: Moved to GAPI/Metadata.pm, renamed, etc. * parser/gapi2xml.pl: Use GAPI::Metadata. * parser/makefile: Install scripts, remove source parse build target. Rename formatXML to gapi_format_xml. svn path=/trunk/gtk-sharp/; revision=6818
199 lines
6.9 KiB
C#
199 lines
6.9 KiB
C#
// GtkSharp.Generation.SignalHandler.cs - The SignalHandler marshaling Class.
|
|
//
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
//
|
|
// (c) 2002 Mike Kestner
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.IO;
|
|
using System.Xml;
|
|
|
|
public class SignalHandler {
|
|
|
|
public static String GetName(XmlElement sig, string ns, bool generate)
|
|
{
|
|
XmlElement ret_elem = sig["return-type"];
|
|
if (ret_elem == null) {
|
|
Console.Write("Missing return-type ");
|
|
return "";
|
|
}
|
|
|
|
string retval = ret_elem.GetAttribute("type");
|
|
if (retval == "") {
|
|
Console.Write("Invalid return-type ");
|
|
return "";
|
|
}
|
|
|
|
string s_ret = SymbolTable.GetCSType(retval);
|
|
string p_ret = SymbolTable.GetMarshalReturnType(retval);
|
|
if ((s_ret == "") || (p_ret == "")) {
|
|
Console.Write("Funky type: " + retval);
|
|
return "";
|
|
}
|
|
|
|
string key = retval;
|
|
string pinv = "";
|
|
string name = SymbolTable.GetName(retval);
|
|
int pcnt = 0;
|
|
|
|
ArrayList parms = new ArrayList();
|
|
|
|
XmlElement params_elem = sig["parameters"];
|
|
if (params_elem == null) {
|
|
Console.Write("Missing parameters ");
|
|
return "";
|
|
}
|
|
|
|
foreach (XmlNode parm in params_elem.ChildNodes) {
|
|
if (!(parm is XmlElement) || parm.Name != "parameter") continue;
|
|
|
|
XmlElement elem = (XmlElement) parm;
|
|
string type = elem.GetAttribute("type");
|
|
string ptype = SymbolTable.GetMarshalType(type);
|
|
if (ptype == "") {
|
|
Console.Write("Funky type: " + type);
|
|
return "";
|
|
}
|
|
|
|
if (pcnt > 0) {
|
|
pinv += ", ";
|
|
}
|
|
|
|
pinv += (ptype + " arg" + pcnt);
|
|
parms.Add(type);
|
|
if (SymbolTable.IsObject(type) || SymbolTable.IsInterface(type)) {
|
|
name += "Object";
|
|
key += "Object";
|
|
} else {
|
|
name += SymbolTable.GetName(type);
|
|
key += type;
|
|
}
|
|
pcnt++;
|
|
}
|
|
|
|
String sname = name + "Signal";
|
|
String dname = name + "Delegate";
|
|
String cbname = name + "Callback";
|
|
|
|
if (!generate)
|
|
return ns + "." + sname;
|
|
|
|
char sep = Path.DirectorySeparatorChar;
|
|
String dir = ".." + sep + ns.ToLower() + sep + "generated";
|
|
|
|
if (!Directory.Exists(dir)) {
|
|
Directory.CreateDirectory(dir);
|
|
}
|
|
|
|
String filename = dir + sep + sname + ".cs";
|
|
|
|
FileStream stream = new FileStream (filename, FileMode.Create, FileAccess.Write);
|
|
StreamWriter sw = new StreamWriter (stream);
|
|
|
|
sw.WriteLine ("// Generated File. Do not modify.");
|
|
sw.WriteLine ("// <c> 2001-2002 Mike Kestner");
|
|
sw.WriteLine ();
|
|
sw.WriteLine("namespace GtkSharp {");
|
|
sw.WriteLine();
|
|
sw.WriteLine("namespace " + ns + " {");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\tusing System;");
|
|
sw.WriteLine("\tusing System.Runtime.InteropServices;");
|
|
sw.WriteLine();
|
|
sw.Write("\tpublic delegate " + p_ret + " ");
|
|
sw.WriteLine(dname + "(" + pinv + ", int key);");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\tpublic class " + sname + " : SignalCallback {");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\t\tprivate static " + dname + " _Delegate;");
|
|
sw.WriteLine();
|
|
sw.Write("\t\tprivate static " + s_ret + " ");
|
|
sw.WriteLine(cbname + "(" + pinv + ", 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" + sname + " inst = (" + sname + ") _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\tSignalArgs args = (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 = (string) parms[idx];
|
|
ClassBase wrapper = SymbolTable.GetClassGen (ctype);
|
|
if ((wrapper != null && !(wrapper is StructBase)) || SymbolTable.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) + "] = " + SymbolTable.FromNative (ctype, "arg" + idx) + ";");
|
|
if ((wrapper != null && (wrapper is OpaqueGen)) || SymbolTable.IsManuallyWrapped (ctype)) {
|
|
sw.WriteLine("\t\t\t\tif (args.Args[" + (idx-1) + "] == null)");
|
|
sw.WriteLine("\t\t\t\t\targs.Args[{0}] = new {1}(arg{2});", idx-1, SymbolTable.GetCSType (ctype), idx);
|
|
}
|
|
sw.WriteLine("\t\t\t}");
|
|
} else {
|
|
if (wrapper != null && (wrapper is StructBase))
|
|
sw.WriteLine("\t\t\targ{0}._Initialize ();", idx);
|
|
sw.WriteLine("\t\t\targs.Args[" + (idx-1) + "] = " + SymbolTable.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 (" + s_ret + ") args.RetVal;");
|
|
}
|
|
sw.WriteLine("\t\t}");
|
|
sw.WriteLine();
|
|
}
|
|
sw.Write("\t\t[DllImport(\"gobject-2.0\")]");
|
|
sw.Write("\t\tstatic extern void g_signal_connect_data(");
|
|
sw.Write("IntPtr obj, String name, " + dname + " cb, int key, IntPtr p,");
|
|
sw.WriteLine(" int flags);");
|
|
sw.WriteLine();
|
|
sw.Write("\t\tpublic " + sname + "(GLib.Object obj, IntPtr raw, ");
|
|
sw.WriteLine("String name, MulticastDelegate eh, Type argstype) : base(obj, eh, argstype)");
|
|
sw.WriteLine("\t\t{");
|
|
sw.WriteLine("\t\t\tif (_Delegate == null) {");
|
|
sw.WriteLine("\t\t\t\t_Delegate = new " + dname + "(" + cbname + ");");
|
|
sw.WriteLine("\t\t\t}");
|
|
sw.Write("\t\t\tg_signal_connect_data(raw, name, ");
|
|
sw.WriteLine("_Delegate, _key, new IntPtr(0), 0);");
|
|
sw.WriteLine("\t\t}");
|
|
sw.WriteLine();
|
|
sw.WriteLine("\t\t~" + sname + "()");
|
|
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("\t\t\t}");
|
|
sw.WriteLine("\t\t}");
|
|
sw.WriteLine("\t}");
|
|
sw.WriteLine("}");
|
|
sw.WriteLine("}");
|
|
sw.Close();
|
|
|
|
return ns + "." + sname;
|
|
}
|
|
}
|
|
}
|
|
|