2002-01-05 12:45:55 +00:00
|
|
|
// GtkSharp.Generation.EnumGen.cs - The Enumeration Generatable.
|
2002-01-04 02:02:28 +00:00
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
//
|
|
|
|
// (c) 2001 Mike Kestner
|
|
|
|
|
2002-01-05 12:45:55 +00:00
|
|
|
namespace GtkSharp.Generation {
|
2002-01-04 02:02:28 +00:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
using System.Xml;
|
|
|
|
|
2002-05-23 23:43:25 +00:00
|
|
|
public class EnumGen : GenBase, IGeneratable {
|
2002-01-04 02:02:28 +00:00
|
|
|
|
2002-06-21 20:25:43 +00:00
|
|
|
public EnumGen (XmlElement ns, XmlElement elem) : base (ns, elem) {}
|
2002-01-05 12:45:55 +00:00
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
public String MarshalType {
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return "int";
|
|
|
|
}
|
|
|
|
}
|
2002-07-26 06:08:52 +00:00
|
|
|
public String MarshalReturnType {
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return MarshalType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
public String CallByName (String var_name)
|
|
|
|
{
|
|
|
|
return "(int) " + var_name;
|
|
|
|
}
|
|
|
|
|
2002-02-08 23:56:27 +00:00
|
|
|
public String FromNative(String var)
|
|
|
|
{
|
|
|
|
return "(" + QualifiedName + ")" + var;
|
|
|
|
}
|
|
|
|
|
2002-07-26 06:08:52 +00:00
|
|
|
public String FromNativeReturn(String var)
|
|
|
|
{
|
|
|
|
return FromNative (var);
|
|
|
|
}
|
|
|
|
|
2002-05-23 23:43:25 +00:00
|
|
|
public void Generate ()
|
2002-01-04 02:02:28 +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
|
|
|
if (!DoGenerate)
|
|
|
|
return;
|
|
|
|
|
2002-05-23 23:43:25 +00:00
|
|
|
StreamWriter sw = CreateWriter ();
|
|
|
|
|
|
|
|
if (Elem.GetAttribute("type") == "flags") {
|
2002-01-04 02:02:28 +00:00
|
|
|
sw.WriteLine ("\tusing System;");
|
|
|
|
sw.WriteLine ();
|
|
|
|
}
|
2002-06-24 22:04:10 +00:00
|
|
|
|
|
|
|
sw.WriteLine("\t\t/// <summary> " + Name + " enumeration </summary>");
|
|
|
|
sw.WriteLine("\t\t/// <remarks>");
|
|
|
|
sw.WriteLine("\t\t/// </remarks>");
|
|
|
|
|
|
|
|
if (Elem.GetAttribute("type") == "flags")
|
|
|
|
sw.WriteLine ("\t[Flags]");
|
2003-01-05 23:51:37 +00:00
|
|
|
|
2003-02-18 17:28:51 +00:00
|
|
|
// Ok, this is obscene. We need to go through the enums first
|
|
|
|
// to find "large" values. If we find some, we need to change
|
|
|
|
// the base type of the enum.
|
|
|
|
|
|
|
|
string enum_type = null;
|
|
|
|
|
|
|
|
foreach (XmlNode node in Elem.ChildNodes) {
|
|
|
|
if (!(node is XmlElement) || node.Name != "member") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlElement member = (XmlElement) node;
|
|
|
|
|
|
|
|
if (member.HasAttribute("value")) {
|
|
|
|
string value = member.GetAttribute("value");
|
|
|
|
if (value.EndsWith("U")) {
|
|
|
|
enum_type = "uint";
|
|
|
|
member.SetAttribute("value", value.TrimEnd('U'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-05 23:51:37 +00:00
|
|
|
sw.WriteLine ("#region Autogenerated code");
|
2003-02-18 17:28:51 +00:00
|
|
|
|
|
|
|
if (enum_type != null)
|
|
|
|
sw.WriteLine ("\tpublic enum " + Name + " : " + enum_type + " {");
|
|
|
|
else
|
|
|
|
sw.WriteLine ("\tpublic enum " + Name + " {");
|
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
sw.WriteLine ();
|
|
|
|
|
2002-05-23 23:43:25 +00:00
|
|
|
foreach (XmlNode node in Elem.ChildNodes) {
|
2002-06-26 13:10:48 +00:00
|
|
|
if (!(node is XmlElement) || node.Name != "member") {
|
2002-01-04 02:02:28 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlElement member = (XmlElement) node;
|
2002-06-24 22:04:10 +00:00
|
|
|
|
|
|
|
sw.WriteLine("\t\t/// <summary />");
|
|
|
|
sw.WriteLine("\t\t/// <remarks>");
|
|
|
|
sw.WriteLine("\t\t/// </remarks>");
|
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
sw.Write ("\t\t" + member.GetAttribute("name"));
|
|
|
|
if (member.HasAttribute("value")) {
|
|
|
|
sw.WriteLine (" = " + member.GetAttribute("value") + ",");
|
|
|
|
} else {
|
|
|
|
sw.WriteLine (",");
|
|
|
|
}
|
|
|
|
}
|
2003-01-05 23:51:37 +00:00
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
sw.WriteLine ("\t}");
|
2003-01-05 23:51:37 +00:00
|
|
|
sw.WriteLine ("#endregion");
|
2002-05-23 23:43:25 +00:00
|
|
|
CloseWriter (sw);
|
2002-02-19 03:12:47 +00:00
|
|
|
Statistics.EnumCount++;
|
2002-01-04 02:02:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|