5d67982de9
* makefile : remove gdk.imaging from the build * gdk.imaging/* : kill * generated/BoxedGen.cs : XmlNode namespace handling. Use GenBase. * generated/CallbackGen.cs : XmlNode namespace handling. * generated/Ctor.cs : construct with libname not ns. * generated/EnumGen.cs : XmlNode namespace handling. * generated/GenBase.cs : XmlNode namespace handling. Make AppendCustom an instance method so it can use the private fields instead of params. * generated/InterfaceGen.cs : XmlNode namespace handling. * generated/Method.cs : construct with libname not ns. * generated/ObjectGen.cs : XmlNode namespace handling. * generated/Parser.cs : Use new XmlNode namespace ctors. * generated/Signal.cs : Lose the namespace field. * generated/StructBase.cs : derive from ClassBase * generated/StructGen.cs : XmlNode namespace handling. Use GenBase. * generated/SymbolTable.cs : nuke GetDllName method. * generator/gtkapi.xml : Add library name to namespace node. * parser/build.pl : refactor for library name param * parser/gapi2xml.pl : add libname param handling * sample/Makefile.in : build linux on make install, but don't install. svn path=/trunk/gtk-sharp/; revision=5400
104 lines
2.2 KiB
C#
104 lines
2.2 KiB
C#
// GtkSharp.Generation.GenBase.cs - The Generatable base class.
|
|
//
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
//
|
|
// (c) 2001-2002 Mike Kestner
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Xml;
|
|
|
|
public abstract class GenBase {
|
|
|
|
private XmlElement ns;
|
|
private XmlElement elem;
|
|
|
|
protected GenBase (XmlElement ns, XmlElement elem)
|
|
{
|
|
this.ns = ns;
|
|
this.elem = elem;
|
|
}
|
|
|
|
public string CName {
|
|
get {
|
|
return elem.GetAttribute ("cname");
|
|
}
|
|
}
|
|
|
|
public XmlElement Elem {
|
|
get {
|
|
return elem;
|
|
}
|
|
}
|
|
|
|
public string LibraryName {
|
|
get {
|
|
return ns.GetAttribute ("library");
|
|
}
|
|
}
|
|
|
|
public string Name {
|
|
get {
|
|
return elem.GetAttribute ("name");
|
|
}
|
|
}
|
|
|
|
public string NS {
|
|
get {
|
|
return ns.GetAttribute ("name");
|
|
}
|
|
}
|
|
|
|
public string QualifiedName {
|
|
get {
|
|
return NS + "." + Name;
|
|
}
|
|
}
|
|
|
|
protected StreamWriter CreateWriter ()
|
|
{
|
|
char sep = Path.DirectorySeparatorChar;
|
|
string dir = ".." + sep + NS.ToLower() + sep + "generated";
|
|
if (!Directory.Exists(dir)) {
|
|
Console.WriteLine ("creating " + dir);
|
|
Directory.CreateDirectory(dir);
|
|
}
|
|
String filename = dir + sep + Name + ".cs";
|
|
// Console.WriteLine ("creating " + filename);
|
|
|
|
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-2002 Mike Kestner");
|
|
sw.WriteLine ();
|
|
sw.WriteLine ("namespace " + NS + " {");
|
|
sw.WriteLine ();
|
|
|
|
return sw;
|
|
}
|
|
|
|
protected void CloseWriter (StreamWriter sw)
|
|
{
|
|
sw.WriteLine ();
|
|
sw.WriteLine ("}");
|
|
sw.Flush();
|
|
sw.Close();
|
|
}
|
|
|
|
public void AppendCustom (StreamWriter sw)
|
|
{
|
|
char sep = Path.DirectorySeparatorChar;
|
|
string custom = ".." + sep + NS.ToLower() + sep + Name + ".custom";
|
|
if (File.Exists(custom)) {
|
|
FileStream custstream = new FileStream(custom, FileMode.Open, FileAccess.Read);
|
|
StreamReader sr = new StreamReader(custstream);
|
|
sw.WriteLine (sr.ReadToEnd ());
|
|
sr.Close ();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|