2002-05-23 23:43:25 +00:00
|
|
|
// GtkSharp.Generation.GenBase.cs - The Generatable base class.
|
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
//
|
|
|
|
// (c) 2001-2002 Mike Kestner
|
|
|
|
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
using System.Xml;
|
|
|
|
|
|
|
|
public abstract class GenBase {
|
|
|
|
|
2002-06-21 20:25:43 +00:00
|
|
|
private XmlElement ns;
|
2002-05-23 23:43:25 +00:00
|
|
|
private XmlElement elem;
|
2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* 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
2002-08-20 19:56:18 +00:00
|
|
|
private bool do_generate;
|
2002-05-23 23:43:25 +00:00
|
|
|
|
2002-06-21 20:25:43 +00:00
|
|
|
protected GenBase (XmlElement ns, XmlElement elem)
|
2002-05-23 23:43:25 +00:00
|
|
|
{
|
|
|
|
this.ns = ns;
|
|
|
|
this.elem = elem;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string CName {
|
|
|
|
get {
|
|
|
|
return elem.GetAttribute ("cname");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public XmlElement Elem {
|
|
|
|
get {
|
|
|
|
return elem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-21 20:25:43 +00:00
|
|
|
public string LibraryName {
|
|
|
|
get {
|
|
|
|
return ns.GetAttribute ("library");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-23 23:43:25 +00:00
|
|
|
public string Name {
|
|
|
|
get {
|
|
|
|
return elem.GetAttribute ("name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-21 20:25:43 +00:00
|
|
|
public string NS {
|
2002-05-23 23:43:25 +00:00
|
|
|
get {
|
2002-06-21 20:25:43 +00:00
|
|
|
return ns.GetAttribute ("name");
|
2002-05-23 23:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public string QualifiedName {
|
|
|
|
get {
|
2002-06-21 20:25:43 +00:00
|
|
|
return NS + "." + Name;
|
2002-05-23 23:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* 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
2002-08-20 19:56:18 +00:00
|
|
|
public bool DoGenerate {
|
|
|
|
get { return do_generate; }
|
|
|
|
set { do_generate = value; }
|
|
|
|
}
|
|
|
|
|
2002-05-23 23:43:25 +00:00
|
|
|
protected StreamWriter CreateWriter ()
|
|
|
|
{
|
|
|
|
char sep = Path.DirectorySeparatorChar;
|
2002-06-21 20:25:43 +00:00
|
|
|
string dir = ".." + sep + NS.ToLower() + sep + "generated";
|
2002-05-23 23:43:25 +00:00
|
|
|
if (!Directory.Exists(dir)) {
|
2002-06-14 Rachel Hestilow <hestilow@ximian.com>
* glib/GException.cs: Added.
* generator/Ctor.cs, Method.cs: Tag function as unsafe if it throws
an exception. Call parms.HandleException.
* generator/Paramaters.cs: Add property ThrowsException (based
on a trailing GError**). If ThrowsException, mask GError in the
signature, initialize a GError in Initialize, and add new method
HandleException to throw an exception if error != null.
* generator/SymbolTable.cs: Add gdk-pixbuf DLL, and GError type.
* gdk.imaging, gdk.imaging/Makefile.in, gdk.imaging/makefile.win32:
Added.
* configure.in, Makefile, makefile.win32: Build gdk.imaging.
* gtk/Makefile.in, gtk/makefile.win32: Link against gdk.imaging.
* parser/gapi2xml.pl: Support namespace renaming.
* parser/build.pl: Build gdk-pixbuf as gdk.imaging.
svn path=/trunk/gtk-sharp/; revision=5281
2002-06-14 18:27:04 +00:00
|
|
|
Console.WriteLine ("creating " + dir);
|
2002-05-23 23:43:25 +00:00
|
|
|
Directory.CreateDirectory(dir);
|
|
|
|
}
|
|
|
|
String filename = dir + sep + Name + ".cs";
|
2002-06-21 20:25:43 +00:00
|
|
|
// Console.WriteLine ("creating " + filename);
|
2002-05-23 23:43:25 +00:00
|
|
|
|
|
|
|
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 ();
|
2002-06-21 20:25:43 +00:00
|
|
|
sw.WriteLine ("namespace " + NS + " {");
|
2002-05-23 23:43:25 +00:00
|
|
|
sw.WriteLine ();
|
|
|
|
|
|
|
|
return sw;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void CloseWriter (StreamWriter sw)
|
|
|
|
{
|
|
|
|
sw.WriteLine ();
|
|
|
|
sw.WriteLine ("}");
|
|
|
|
sw.Flush();
|
|
|
|
sw.Close();
|
|
|
|
}
|
|
|
|
|
2002-06-21 20:25:43 +00:00
|
|
|
public void AppendCustom (StreamWriter sw)
|
2002-06-10 12:34:09 +00:00
|
|
|
{
|
|
|
|
char sep = Path.DirectorySeparatorChar;
|
2002-06-21 20:25:43 +00:00
|
|
|
string custom = ".." + sep + NS.ToLower() + sep + Name + ".custom";
|
2002-06-10 12:34:09 +00:00
|
|
|
if (File.Exists(custom)) {
|
2003-02-24 05:20:04 +00:00
|
|
|
sw.WriteLine ("#line 1 \"" + Name + ".custom\"");
|
2003-01-05 23:51:37 +00:00
|
|
|
sw.WriteLine ("#region Customized extensions");
|
2002-06-10 12:34:09 +00:00
|
|
|
FileStream custstream = new FileStream(custom, FileMode.Open, FileAccess.Read);
|
|
|
|
StreamReader sr = new StreamReader(custstream);
|
|
|
|
sw.WriteLine (sr.ReadToEnd ());
|
2003-01-05 23:51:37 +00:00
|
|
|
sw.WriteLine ("#endregion");
|
2002-06-10 12:34:09 +00:00
|
|
|
sr.Close ();
|
|
|
|
}
|
|
|
|
}
|
2002-05-23 23:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|