mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 21:25:39 +00:00
88cc4817f5
/*< private >*/ comments. * parser/gapi2xml.pl: Use those comments to determine the accessibility of struct/object fields, and set the "access" attribute on fields with non-default accessibiliy (private for structs, public for objects). Also, output a StudlyName for each field as well as a c_name. * */*-api.raw: Regen * generator/Field.cs (StudlyName): Use the parser-generated studly name rather than studlifying Name, which might have been mangled to avoid conflicts with an all-lowercase keyword. (Generate): Respect the access property on all field types rather than always making certain types public. Don't bother outputting wrapper properties for private fields, since the only code that could use them is the generated code, which won't. See doc/ChangeLog for the (very minimal) fallout from these changes. * en/Art/AlphaGamma.xml: * en/Gtk/TextAttributes.xml (Refcount): * en/Pango/GlyphString.xml (Space): these are now private * en/Gda/XqlItem.xml: * en/Glade/SignalInfo.xml: * en/Gnome.Vfs/ModuleCallbackSaveAuthenticationIn.xml: * en/Gnome.Vfs/ModuleCallbackFullAuthenticationIn.xml: * en/Gnome.Vfs/ModuleCallbackFillAuthenticationIn.xml: rename Objekt to Object. * en/Atk/KeyEventStruct.xml: rename Str1ng to String svn path=/trunk/gtk-sharp/; revision=37853
201 lines
5.2 KiB
C#
201 lines
5.2 KiB
C#
// GtkSharp.Generation.Field.cs - The Field generation Class.
|
|
//
|
|
// Author: Mike Kestner <mkestner@ximian.com>
|
|
//
|
|
// Copyright (c) 2004 Novell, Inc.
|
|
//
|
|
// 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.IO;
|
|
using System.Xml;
|
|
|
|
public class Field {
|
|
|
|
public static int bitfields;
|
|
|
|
XmlElement elem;
|
|
|
|
public Field (XmlElement elem)
|
|
{
|
|
this.elem = elem;
|
|
}
|
|
|
|
public string Access {
|
|
get {
|
|
return elem.HasAttribute ("access") ? elem.GetAttribute ("access") : "public";
|
|
}
|
|
}
|
|
|
|
public int ArrayLength {
|
|
get {
|
|
if (!IsArray)
|
|
return 0;
|
|
|
|
int result;
|
|
try {
|
|
result = Int32.Parse (elem.GetAttribute("array_len"));
|
|
} catch (Exception e) {
|
|
Console.Write ("Non-numeric array_len: " + elem.GetAttribute("array_len"));
|
|
Console.WriteLine (" warning: array field {0} incorrectly generated", Name);
|
|
result = 0;
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
public string CSType {
|
|
get {
|
|
string type = SymbolTable.Table.GetCSType (CType);
|
|
if (IsArray)
|
|
type += "[]";
|
|
else if (IsBit)
|
|
type = "uint";
|
|
else if ((IsPointer || SymbolTable.Table.IsOpaque (CType)) && type != "string")
|
|
type = "IntPtr";
|
|
else if (SymbolTable.Table.IsCallback (CType))
|
|
type = "IntPtr";
|
|
|
|
return type;
|
|
}
|
|
}
|
|
|
|
public string CType {
|
|
get {
|
|
return elem.GetAttribute ("type");
|
|
}
|
|
}
|
|
|
|
public bool Hidden {
|
|
get {
|
|
return elem.HasAttribute("hidden");
|
|
}
|
|
}
|
|
|
|
public bool IsArray {
|
|
get {
|
|
return elem.HasAttribute("array_len");
|
|
}
|
|
}
|
|
|
|
public bool IsBit {
|
|
get {
|
|
return (elem.HasAttribute("bits") && (elem.GetAttribute("bits") == "1"));
|
|
}
|
|
}
|
|
|
|
public bool IsPadding {
|
|
get {
|
|
string c_name = elem.GetAttribute ("cname");
|
|
return (c_name.StartsWith ("dummy") || c_name.StartsWith ("padding"));
|
|
}
|
|
}
|
|
|
|
public bool IsPointer {
|
|
get {
|
|
return (CType.EndsWith ("*") || CType.EndsWith ("pointer"));
|
|
}
|
|
}
|
|
|
|
public string Name {
|
|
get {
|
|
string result = "";
|
|
if ((IsPointer || SymbolTable.Table.IsOpaque (CType)) && CSType != "string")
|
|
result = "_";
|
|
|
|
if (IsBit)
|
|
result = String.Format ("_bitfield{0}", bitfields++);
|
|
else
|
|
result += SymbolTable.Table.MangleName (elem.GetAttribute ("cname"));
|
|
|
|
return result;
|
|
}
|
|
}
|
|
|
|
public string StudlyName {
|
|
get {
|
|
return elem.GetAttribute ("name");
|
|
}
|
|
}
|
|
|
|
public bool Generate (StreamWriter sw)
|
|
{
|
|
if (Hidden)
|
|
return true;
|
|
|
|
if (CSType == "") {
|
|
Console.WriteLine ("Field has unknown Type {0}", CType);
|
|
Statistics.ThrottledCount++;
|
|
return false;
|
|
}
|
|
|
|
SymbolTable table = SymbolTable.Table;
|
|
|
|
if (IsArray)
|
|
sw.WriteLine ("\t\t[MarshalAs (UnmanagedType.ByValArray, SizeConst=" + ArrayLength + ")]");
|
|
|
|
string wrapped = table.GetCSType (CType);
|
|
string wrapped_name = SymbolTable.Table.MangleName (elem.GetAttribute ("cname"));
|
|
if (IsArray) {
|
|
sw.WriteLine ("\t\t{0} {1} {2};", Access, CSType, StudlyName);
|
|
} else if (IsPadding) {
|
|
sw.WriteLine ("\t\tprivate {0} {1};", CSType, Name);
|
|
} else if (IsBit) {
|
|
// FIXME
|
|
sw.WriteLine ("\t\tprivate {0} {1};", CSType, Name);
|
|
} else if (table.IsCallback (CType)) {
|
|
// FIXME
|
|
sw.WriteLine ("\t\tprivate {0} {1};", CSType, Name);
|
|
} else if (table.IsObject (CType) || table.IsOpaque (CType)) {
|
|
sw.WriteLine ("\t\tprivate {0} {1};", CSType, Name);
|
|
|
|
if (Access != "private") {
|
|
sw.WriteLine ("\t\t" + Access + " " + wrapped + " " + wrapped_name + " {");
|
|
sw.WriteLine ("\t\t\tget { ");
|
|
sw.WriteLine ("\t\t\t\t" + wrapped + " ret = " + table.FromNativeReturn(CType, Name) + ";");
|
|
if (table.IsOpaque (CType))
|
|
sw.WriteLine ("\t\t\t\tif (ret == null) ret = new " + wrapped + "(" + Name + ");");
|
|
sw.WriteLine ("\t\t\t\treturn ret;");
|
|
sw.WriteLine ("\t\t\t}");
|
|
|
|
sw.WriteLine ("\t\t\tset { " + Name + " = " + table.CallByName (CType, "value") + "; }");
|
|
sw.WriteLine ("\t\t}");
|
|
}
|
|
} else if (IsPointer && (table.IsStruct (CType) || table.IsBoxed (CType))) {
|
|
sw.WriteLine ("\t\tprivate {0} {1};", CSType, Name);
|
|
sw.WriteLine ();
|
|
if (Access != "private") {
|
|
sw.WriteLine ("\t\t" + Access + " " + wrapped + " " + wrapped_name + " {");
|
|
sw.WriteLine ("\t\t\tget { return " + table.FromNativeReturn (CType, Name) + "; }");
|
|
sw.WriteLine ("\t\t}");
|
|
}
|
|
} else if (IsPointer && CSType != "string") {
|
|
// FIXME: probably some fields here which should be visible.
|
|
sw.WriteLine ("\t\tprivate {0} {1};", CSType, Name);
|
|
} else if (Access != "public") {
|
|
sw.WriteLine ("\t\t{0} {1} {2};", Access, CSType, Name);
|
|
} else {
|
|
sw.WriteLine ("\t\tpublic {0} {1};", CSType, StudlyName);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|