mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 09:55:38 +00:00
85d88fe1ca
properties can't be set until Validate-time (eg, Method.IsGetter), but it's annoying for every potential user of those properties to have to make sure it has Validated the generatable first. So now we add an explicit Validate() step after everything is loaded but before anything is Generated, so that at Generation time, everything can be assumed to have been Validated. * generator/IGeneratable.cs: add "bool Validate()" * generator/CodeGenerator.cs (Main): after loading all of the generatables, DeAlias the SymbolTable, Validate() all the generatables, and discard any invalid ones. * generator/*.cs: Implement Validate() trivially in generatables that didn't implement it before. Move Validate() calls from Generate() to Validate(). Remove non-hierarchical Validate() calls. * generator/SymbolTable.cs: GPtrArray is IntPtr, not IntPtr[] svn path=/trunk/gtk-sharp/; revision=48046
121 lines
3.3 KiB
C#
121 lines
3.3 KiB
C#
// GtkSharp.Generation.EnumGen.cs - The Enumeration Generatable.
|
|
//
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
//
|
|
// Copyright (c) 2001 Mike Kestner
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of version 2 of the GNU General Public
|
|
// License as published by the Free Software Foundation.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public
|
|
// License along with this program; if not, write to the
|
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
// Boston, MA 02111-1307, USA.
|
|
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.IO;
|
|
using System.Xml;
|
|
|
|
public class EnumGen : GenBase {
|
|
|
|
string enum_type = String.Empty;
|
|
ArrayList members = new ArrayList ();
|
|
|
|
public EnumGen (XmlElement ns, XmlElement elem) : base (ns, elem)
|
|
{
|
|
foreach (XmlElement member in elem.ChildNodes) {
|
|
if (member.Name != "member")
|
|
continue;
|
|
|
|
string result = "\t\t" + member.GetAttribute("name");
|
|
if (member.HasAttribute("value")) {
|
|
string value = member.GetAttribute("value");
|
|
if (value.EndsWith("U")) {
|
|
enum_type = " : uint";
|
|
value = value.TrimEnd('U');
|
|
}
|
|
result += " = " + value;
|
|
}
|
|
members.Add (result + ",");
|
|
}
|
|
}
|
|
|
|
public override bool Validate ()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override string MarshalType {
|
|
get {
|
|
return "int";
|
|
}
|
|
}
|
|
|
|
public override string CallByName (string var_name)
|
|
{
|
|
return "(int) " + var_name;
|
|
}
|
|
|
|
public override string FromNative(string var)
|
|
{
|
|
return "(" + QualifiedName + ") " + var;
|
|
}
|
|
|
|
public override void Generate (GenerationInfo gen_info)
|
|
{
|
|
StreamWriter sw = gen_info.OpenStream (Name);
|
|
|
|
sw.WriteLine ("namespace " + NS + " {");
|
|
sw.WriteLine ();
|
|
sw.WriteLine ("\tusing System;");
|
|
sw.WriteLine ("\tusing System.Runtime.InteropServices;");
|
|
sw.WriteLine ();
|
|
|
|
sw.WriteLine ("#region Autogenerated code");
|
|
|
|
if (Elem.GetAttribute("type") == "flags")
|
|
sw.WriteLine ("\t[Flags]");
|
|
if (Elem.HasAttribute("gtype"))
|
|
sw.WriteLine ("\t[GLib.GType (typeof (" + NS + "." + Name + "GType))]");
|
|
|
|
sw.WriteLine ("\tpublic enum " + Name + enum_type + " {");
|
|
sw.WriteLine ();
|
|
|
|
foreach (string member in members)
|
|
sw.WriteLine (member);
|
|
|
|
sw.WriteLine ("\t}");
|
|
|
|
if (Elem.HasAttribute ("gtype")) {
|
|
sw.WriteLine ();
|
|
sw.WriteLine ("\tinternal class " + Name + "GType {");
|
|
sw.WriteLine ("\t\t[DllImport (\"" + LibraryName + "\")]");
|
|
sw.WriteLine ("\t\tstatic extern IntPtr " + Elem.GetAttribute ("gtype") + " ();");
|
|
sw.WriteLine ();
|
|
sw.WriteLine ("\t\tpublic static GLib.GType GType {");
|
|
sw.WriteLine ("\t\t\tget {");
|
|
sw.WriteLine ("\t\t\t\treturn new GLib.GType (" + Elem.GetAttribute ("gtype") + " ());");
|
|
sw.WriteLine ("\t\t\t}");
|
|
sw.WriteLine ("\t\t}");
|
|
sw.WriteLine ("\t}");
|
|
}
|
|
|
|
sw.WriteLine ("#endregion");
|
|
sw.WriteLine ("}");
|
|
sw.Close ();
|
|
Statistics.EnumCount++;
|
|
}
|
|
}
|
|
}
|
|
|