2004-09-29 Mike Kestner <mkestner@ximian.com>
* generator/GStringGen.cs : new generatable impl for GStrings. * generator/InterfaceGen.cs : better error reporting. * generator/Makefile.am : add new source file. * generator/Method.cs : better error reporting. * generator/SymbolTable.cs : add new GString igen. svn path=/trunk/gtk-sharp/; revision=34525
This commit is contained in:
parent
cd4f77b03f
commit
f923d44d7a
6 changed files with 104 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2004-09-29 Mike Kestner <mkestner@ximian.com>
|
||||||
|
|
||||||
|
* generator/GStringGen.cs : new generatable impl for GStrings.
|
||||||
|
* generator/InterfaceGen.cs : better error reporting.
|
||||||
|
* generator/Makefile.am : add new source file.
|
||||||
|
* generator/Method.cs : better error reporting.
|
||||||
|
* generator/SymbolTable.cs : add new GString igen.
|
||||||
|
|
||||||
2004-09-29 Mike Kestner <mkestner@ximian.com>
|
2004-09-29 Mike Kestner <mkestner@ximian.com>
|
||||||
|
|
||||||
* glib/GString.cs : new marshaling class for GStrings. Used by
|
* glib/GString.cs : new marshaling class for GStrings. Used by
|
||||||
|
|
88
generator/GStringGen.cs
Normal file
88
generator/GStringGen.cs
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
// GtkSharp.Generation.GStringGen.cs - The GString type Generatable.
|
||||||
|
//
|
||||||
|
// 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;
|
||||||
|
|
||||||
|
public class GStringGen : IGeneratable {
|
||||||
|
|
||||||
|
public string CName {
|
||||||
|
get {
|
||||||
|
return "GString";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string Name {
|
||||||
|
get {
|
||||||
|
return "string";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string QualifiedName {
|
||||||
|
get {
|
||||||
|
return "string";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string MarshalType {
|
||||||
|
get {
|
||||||
|
return "IntPtr";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string CallByName (string var_name)
|
||||||
|
{
|
||||||
|
return "(new GLib.GString (" + var_name + ")).Handle";
|
||||||
|
}
|
||||||
|
|
||||||
|
public string FromNative (string var)
|
||||||
|
{
|
||||||
|
return "GLib.GString.PtrToString (" + var + ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
public string FromNativeReturn (string var)
|
||||||
|
{
|
||||||
|
return FromNative (var);
|
||||||
|
}
|
||||||
|
|
||||||
|
public string ToNativeReturn (string var)
|
||||||
|
{
|
||||||
|
return CallByName (var);
|
||||||
|
}
|
||||||
|
|
||||||
|
public string MarshalReturnType {
|
||||||
|
get {
|
||||||
|
return "IntPtr";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Generate ()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Generate (GenerationInfo gen_info)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -51,7 +51,8 @@ namespace GtkSharp.Generation {
|
||||||
if (sig.Validate ()) {
|
if (sig.Validate ()) {
|
||||||
sig.GenerateDecl (sw);
|
sig.GenerateDecl (sw);
|
||||||
sig.GenEventHandler (gen_info);
|
sig.GenEventHandler (gen_info);
|
||||||
}
|
} else
|
||||||
|
Console.WriteLine ("of interface " + QualifiedName);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (Method method in methods.Values) {
|
foreach (Method method in methods.Values) {
|
||||||
|
@ -60,6 +61,8 @@ namespace GtkSharp.Generation {
|
||||||
|
|
||||||
if (method.Validate ())
|
if (method.Validate ())
|
||||||
method.GenerateDecl (sw);
|
method.GenerateDecl (sw);
|
||||||
|
else
|
||||||
|
Console.WriteLine ("of interface " + QualifiedName);
|
||||||
}
|
}
|
||||||
|
|
||||||
AppendCustom (sw, gen_info.CustomDir);
|
AppendCustom (sw, gen_info.CustomDir);
|
||||||
|
|
|
@ -22,6 +22,7 @@ sources = \
|
||||||
GenBase.cs \
|
GenBase.cs \
|
||||||
GenerationInfo.cs \
|
GenerationInfo.cs \
|
||||||
GObjectGen.cs \
|
GObjectGen.cs \
|
||||||
|
GStringGen.cs \
|
||||||
IGeneratable.cs \
|
IGeneratable.cs \
|
||||||
ImportSignature.cs \
|
ImportSignature.cs \
|
||||||
InterfaceGen.cs \
|
InterfaceGen.cs \
|
||||||
|
|
|
@ -145,7 +145,7 @@ namespace GtkSharp.Generation {
|
||||||
|
|
||||||
XmlElement ret_elem = elem["return-type"];
|
XmlElement ret_elem = elem["return-type"];
|
||||||
if (ret_elem == null) {
|
if (ret_elem == null) {
|
||||||
Console.Write("Missing return type in method ");
|
Console.Write("Missing return type in method " + Name + " ");
|
||||||
Statistics.ThrottledCount++;
|
Statistics.ThrottledCount++;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -190,7 +190,7 @@ namespace GtkSharp.Generation {
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (m_ret == "" || s_ret == "") {
|
if (m_ret == "" || s_ret == "") {
|
||||||
Console.Write("rettype: " + rettype + " method ");
|
Console.Write("rettype: " + rettype + " in method " + Name + " ");
|
||||||
Statistics.ThrottledCount++;
|
Statistics.ThrottledCount++;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -110,6 +110,7 @@ namespace GtkSharp.Generation {
|
||||||
AddType (new ManualGen ("GSList", "GLib.SList"));
|
AddType (new ManualGen ("GSList", "GLib.SList"));
|
||||||
AddType (new ManualGen ("GList", "GLib.List"));
|
AddType (new ManualGen ("GList", "GLib.List"));
|
||||||
AddType (new ByRefGen ("GValue", "GLib.Value"));
|
AddType (new ByRefGen ("GValue", "GLib.Value"));
|
||||||
|
AddType (new GStringGen ());
|
||||||
AddType (new GObjectGen ());
|
AddType (new GObjectGen ());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue