2002-01-06 13:33:25 +00:00
|
|
|
// GtkSharp.Generation.ObjectGen.cs - The Object Generatable.
|
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
//
|
|
|
|
// (c) 2001 Mike Kestner
|
|
|
|
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
using System.Xml;
|
|
|
|
|
|
|
|
public class ObjectGen : StructBase, IGeneratable {
|
|
|
|
|
|
|
|
public ObjectGen (String ns, XmlElement elem) : base (ns, elem) {}
|
|
|
|
|
|
|
|
public String Name {
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return elem.GetAttribute("name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String QualifiedName {
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return ns + "." + elem.GetAttribute("name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String CName {
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return elem.GetAttribute("cname");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String MarshalType {
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return "IntPtr";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String CallByName (String var_name)
|
|
|
|
{
|
|
|
|
return var_name + ".RawObject";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Generate (SymbolTable table)
|
|
|
|
{
|
2002-01-07 00:25:51 +00:00
|
|
|
if (!Directory.Exists("..\\" + ns.ToLower() + "\\generated")) {
|
|
|
|
Directory.CreateDirectory("..\\"+ns.ToLower()+"\\generated");
|
|
|
|
}
|
2002-01-06 13:33:25 +00:00
|
|
|
String filename = "..\\" + ns.ToLower() + "\\generated\\" + Name + ".cs";
|
|
|
|
|
|
|
|
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 Mike Kestner");
|
|
|
|
sw.WriteLine ();
|
|
|
|
|
|
|
|
sw.WriteLine ("namespace " + ns + " {");
|
|
|
|
sw.WriteLine ();
|
|
|
|
|
|
|
|
sw.WriteLine ("\tusing System;");
|
|
|
|
sw.WriteLine ("\tusing System.Collections;");
|
|
|
|
sw.WriteLine ("\tusing System.Runtime.InteropServices;");
|
|
|
|
sw.WriteLine ();
|
|
|
|
|
|
|
|
String parent = elem.GetAttribute("parent");
|
|
|
|
String cs_parent = table.GetCSType(parent);
|
|
|
|
sw.Write ("\tpublic class " + Name);
|
|
|
|
if (cs_parent == "") {
|
|
|
|
sw.WriteLine (" {");
|
2002-01-07 23:30:01 +00:00
|
|
|
Console.WriteLine ("Object " + Name + " Unknown parent " + parent);
|
2002-01-06 13:33:25 +00:00
|
|
|
} else {
|
|
|
|
sw.WriteLine (" : " + cs_parent + " {");
|
|
|
|
}
|
|
|
|
sw.WriteLine ();
|
|
|
|
|
|
|
|
foreach (XmlNode node in elem.ChildNodes) {
|
|
|
|
|
|
|
|
XmlElement member = (XmlElement) node;
|
|
|
|
|
|
|
|
switch (node.Name) {
|
|
|
|
case "field":
|
2002-01-10 15:01:31 +00:00
|
|
|
//if (!GenField(member, table, sw)) {
|
|
|
|
// Console.WriteLine("in object " + CName);
|
|
|
|
//}
|
2002-01-06 13:33:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case "callback":
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "constructor":
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "method":
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "property":
|
2002-01-12 02:08:16 +00:00
|
|
|
if (!GenProperty(member, table, sw)) {
|
|
|
|
Console.WriteLine("in object " + CName);
|
|
|
|
}
|
2002-01-06 13:33:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case "signal":
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Console.WriteLine ("Unexpected node");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sw.WriteLine ("\t}");
|
|
|
|
sw.WriteLine ();
|
|
|
|
sw.WriteLine ("}");
|
|
|
|
|
|
|
|
sw.Flush();
|
|
|
|
sw.Close();
|
2002-01-12 02:08:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool GenProperty (XmlElement prop, SymbolTable table, StreamWriter sw)
|
|
|
|
{
|
|
|
|
String c_type = prop.GetAttribute("type");
|
|
|
|
|
|
|
|
char[] ast = {'*'};
|
|
|
|
c_type = c_type.TrimEnd(ast);
|
|
|
|
String cs_type = table.GetCSType(c_type);
|
|
|
|
String m_type;
|
|
|
|
|
|
|
|
if (table.IsObject(c_type)) {
|
|
|
|
m_type = "GLib.Object";
|
|
|
|
} else {
|
|
|
|
m_type = table.GetMarshalType(c_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((cs_type == "") || (m_type == "")) {
|
|
|
|
Console.Write("Property has unknown Type {0} ", c_type);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prop.HasAttribute("construct-only") && !prop.HasAttribute("readable")) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlElement parent = (XmlElement) prop.ParentNode;
|
|
|
|
String name = prop.GetAttribute("name");
|
|
|
|
if (name == parent.GetAttribute("name")) {
|
|
|
|
name += "Prop";
|
|
|
|
}
|
|
|
|
|
|
|
|
sw.WriteLine("\t\tpublic " + cs_type + " " + name + " {");
|
|
|
|
if (prop.HasAttribute("readable")) {
|
|
|
|
sw.WriteLine("\t\t\tget {");
|
|
|
|
sw.WriteLine("\t\t\t\t" + m_type + " val;");
|
|
|
|
sw.WriteLine("\t\t\t\tGetProperty(\"" + prop.GetAttribute("cname") + "\", out val);");
|
|
|
|
sw.Write("\t\t\t\treturn ");
|
|
|
|
if (cs_type != m_type) {
|
|
|
|
sw.Write("(" + cs_type + ") ");
|
|
|
|
}
|
|
|
|
sw.WriteLine("val;");
|
|
|
|
sw.WriteLine("\t\t\t}");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prop.HasAttribute("writeable") && !prop.HasAttribute("construct-only")) {
|
|
|
|
sw.WriteLine("\t\t\tset {");
|
|
|
|
sw.WriteLine("\t\t\t\tSetProperty(\"" + prop.GetAttribute("cname") + "\", (" + m_type + ") value);");
|
|
|
|
sw.WriteLine("\t\t\t}");
|
|
|
|
}
|
|
|
|
|
|
|
|
sw.WriteLine("\t\t}");
|
|
|
|
sw.WriteLine();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-01-06 13:33:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|