2002-01-05 12:45:55 +00:00
|
|
|
// GtkSharp.Generation.CodeGenerator.cs - The main code generation engine.
|
2002-01-04 02:02:28 +00:00
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
//
|
2004-06-25 16:35:15 +00:00
|
|
|
// Copyright (c) 2001-2003 Mike Kestner
|
|
|
|
// Copyright (c) 2003-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.
|
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
|
2002-01-05 12:45:55 +00:00
|
|
|
namespace GtkSharp.Generation {
|
2002-01-04 02:02:28 +00:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Xml;
|
|
|
|
|
|
|
|
public class CodeGenerator {
|
|
|
|
|
|
|
|
public static int Main (string[] args)
|
|
|
|
{
|
2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* art/Makefile.in (clean): Change to avoid bugging out on generated/CVS.
* glib/ObjectManager.cs: Added. Used to be auto-generated, but
now it can infer names, and relies on per-namespace ObjectManager
classes to inform it of oddly-named classes.
* generator/IGeneratable.cs, GenBase.cs: New "DoGenerate" property.
* generator/*Gen.cs: Honor DoGenerate.
* generator/CodeGenerator.cs: Support including dependency files
which will not be generated.
* generator/ObjectGen.cs: Generate mapping file per-namespace, as one
that calls back to the one in glib. Only generate if the name does
not follow the normal conventions, otherwise, GtkSharp.ObjectManager
can infer the name.
* generator/Parser.cs: Accept 'generate' flag to pass on to the
IGeneratables. Parse a new toplevel element, "symbol", which adds
a type to the SymbolTable (instead of hard-coding it).
* generator/SignalHandler.cs: Do not optimize signal handler creation,
instead creating them in their own namespaces. Do not generate
if the calling Signal told us not to.
* generator/Signal.cs: Do not generate handlers if container's DoGenerate
is false. Adjust to the marshaller name being in a sub-namespace.
* generator/SymbolTable.cs (AddSimpleType, AddManualType): Used
to add simple and manually wrapped types at runtime instead of
compile-time.
(FromNative): Remove hard-coded cases for manually wrapped types, use
a generic case instead.
* api: Added. Move api files and generation targets here.
* source: Added. Move source parsing here.
* generator/makefile: Move actual generation to api/.
* glib/Makefile.in: Remove generated/* target.
* glue/Makefile.am: Fix to include canvas-marshal. Move canvas stuff
to GNOME target.
* gnome/CanvasProxy.cs: Update to work with SignalHandlers being
namespace-specific.
* parser/Metadata.pm: Moved to GAPI/Metadata.pm, renamed, etc.
* parser/gapi2xml.pl: Use GAPI::Metadata.
* parser/makefile: Install scripts, remove source parse build target.
Rename formatXML to gapi_format_xml.
svn path=/trunk/gtk-sharp/; revision=6818
2002-08-20 19:56:18 +00:00
|
|
|
if (args.Length < 2) {
|
|
|
|
Console.WriteLine ("Usage: codegen --generate <filename1...>");
|
2002-01-05 12:45:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2002-03-29 17:55:46 +00:00
|
|
|
|
2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* art/Makefile.in (clean): Change to avoid bugging out on generated/CVS.
* glib/ObjectManager.cs: Added. Used to be auto-generated, but
now it can infer names, and relies on per-namespace ObjectManager
classes to inform it of oddly-named classes.
* generator/IGeneratable.cs, GenBase.cs: New "DoGenerate" property.
* generator/*Gen.cs: Honor DoGenerate.
* generator/CodeGenerator.cs: Support including dependency files
which will not be generated.
* generator/ObjectGen.cs: Generate mapping file per-namespace, as one
that calls back to the one in glib. Only generate if the name does
not follow the normal conventions, otherwise, GtkSharp.ObjectManager
can infer the name.
* generator/Parser.cs: Accept 'generate' flag to pass on to the
IGeneratables. Parse a new toplevel element, "symbol", which adds
a type to the SymbolTable (instead of hard-coding it).
* generator/SignalHandler.cs: Do not optimize signal handler creation,
instead creating them in their own namespaces. Do not generate
if the calling Signal told us not to.
* generator/Signal.cs: Do not generate handlers if container's DoGenerate
is false. Adjust to the marshaller name being in a sub-namespace.
* generator/SymbolTable.cs (AddSimpleType, AddManualType): Used
to add simple and manually wrapped types at runtime instead of
compile-time.
(FromNative): Remove hard-coded cases for manually wrapped types, use
a generic case instead.
* api: Added. Move api files and generation targets here.
* source: Added. Move source parsing here.
* generator/makefile: Move actual generation to api/.
* glib/Makefile.in: Remove generated/* target.
* glue/Makefile.am: Fix to include canvas-marshal. Move canvas stuff
to GNOME target.
* gnome/CanvasProxy.cs: Update to work with SignalHandlers being
namespace-specific.
* parser/Metadata.pm: Moved to GAPI/Metadata.pm, renamed, etc.
* parser/gapi2xml.pl: Use GAPI::Metadata.
* parser/makefile: Install scripts, remove source parse build target.
Rename formatXML to gapi_format_xml.
svn path=/trunk/gtk-sharp/; revision=6818
2002-08-20 19:56:18 +00:00
|
|
|
bool generate = false;
|
2003-10-07 05:52:23 +00:00
|
|
|
string dir = "";
|
|
|
|
string custom_dir = "";
|
|
|
|
string assembly_name = "";
|
2004-03-18 20:56:32 +00:00
|
|
|
string glue_filename = "";
|
|
|
|
string gluelib_name = "";
|
2003-10-03 22:11:47 +00:00
|
|
|
|
|
|
|
SymbolTable table = SymbolTable.Table;
|
|
|
|
ArrayList gens = new ArrayList ();
|
2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* art/Makefile.in (clean): Change to avoid bugging out on generated/CVS.
* glib/ObjectManager.cs: Added. Used to be auto-generated, but
now it can infer names, and relies on per-namespace ObjectManager
classes to inform it of oddly-named classes.
* generator/IGeneratable.cs, GenBase.cs: New "DoGenerate" property.
* generator/*Gen.cs: Honor DoGenerate.
* generator/CodeGenerator.cs: Support including dependency files
which will not be generated.
* generator/ObjectGen.cs: Generate mapping file per-namespace, as one
that calls back to the one in glib. Only generate if the name does
not follow the normal conventions, otherwise, GtkSharp.ObjectManager
can infer the name.
* generator/Parser.cs: Accept 'generate' flag to pass on to the
IGeneratables. Parse a new toplevel element, "symbol", which adds
a type to the SymbolTable (instead of hard-coding it).
* generator/SignalHandler.cs: Do not optimize signal handler creation,
instead creating them in their own namespaces. Do not generate
if the calling Signal told us not to.
* generator/Signal.cs: Do not generate handlers if container's DoGenerate
is false. Adjust to the marshaller name being in a sub-namespace.
* generator/SymbolTable.cs (AddSimpleType, AddManualType): Used
to add simple and manually wrapped types at runtime instead of
compile-time.
(FromNative): Remove hard-coded cases for manually wrapped types, use
a generic case instead.
* api: Added. Move api files and generation targets here.
* source: Added. Move source parsing here.
* generator/makefile: Move actual generation to api/.
* glib/Makefile.in: Remove generated/* target.
* glue/Makefile.am: Fix to include canvas-marshal. Move canvas stuff
to GNOME target.
* gnome/CanvasProxy.cs: Update to work with SignalHandlers being
namespace-specific.
* parser/Metadata.pm: Moved to GAPI/Metadata.pm, renamed, etc.
* parser/gapi2xml.pl: Use GAPI::Metadata.
* parser/makefile: Install scripts, remove source parse build target.
Rename formatXML to gapi_format_xml.
svn path=/trunk/gtk-sharp/; revision=6818
2002-08-20 19:56:18 +00:00
|
|
|
foreach (string arg in args) {
|
2005-01-09 00:26:45 +00:00
|
|
|
string filename = arg;
|
2003-10-03 22:11:47 +00:00
|
|
|
if (arg == "--generate") {
|
|
|
|
generate = true;
|
|
|
|
continue;
|
|
|
|
} else if (arg == "--include") {
|
|
|
|
generate = false;
|
|
|
|
continue;
|
2005-01-09 00:26:45 +00:00
|
|
|
} else if (arg.StartsWith ("-I:")) {
|
|
|
|
generate = false;
|
|
|
|
filename = filename.Substring (3);
|
2003-10-07 05:52:23 +00:00
|
|
|
} else if (arg.StartsWith ("--outdir=")) {
|
2004-12-21 18:46:42 +00:00
|
|
|
generate = false;
|
2003-10-07 05:52:23 +00:00
|
|
|
dir = arg.Substring (9);
|
|
|
|
continue;
|
|
|
|
} else if (arg.StartsWith ("--customdir=")) {
|
2004-12-21 18:46:42 +00:00
|
|
|
generate = false;
|
2003-10-07 05:52:23 +00:00
|
|
|
custom_dir = arg.Substring (12);
|
|
|
|
continue;
|
|
|
|
} else if (arg.StartsWith ("--assembly-name=")) {
|
2004-12-21 18:46:42 +00:00
|
|
|
generate = false;
|
2003-10-07 05:52:23 +00:00
|
|
|
assembly_name = arg.Substring (16);
|
|
|
|
continue;
|
2004-03-18 20:56:32 +00:00
|
|
|
} else if (arg.StartsWith ("--glue-filename=")) {
|
2004-12-21 18:46:42 +00:00
|
|
|
generate = false;
|
2004-03-18 20:56:32 +00:00
|
|
|
glue_filename = arg.Substring (16);
|
|
|
|
continue;
|
|
|
|
} else if (arg.StartsWith ("--gluelib-name=")) {
|
2004-12-21 18:46:42 +00:00
|
|
|
generate = false;
|
2004-03-18 20:56:32 +00:00
|
|
|
gluelib_name = arg.Substring (15);
|
|
|
|
continue;
|
2003-10-03 22:11:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Parser p = new Parser ();
|
2005-01-09 00:26:45 +00:00
|
|
|
IGeneratable[] curr_gens = p.Parse (filename);
|
2003-10-03 22:11:47 +00:00
|
|
|
table.AddTypes (curr_gens);
|
|
|
|
if (generate)
|
|
|
|
gens.AddRange (curr_gens);
|
2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* art/Makefile.in (clean): Change to avoid bugging out on generated/CVS.
* glib/ObjectManager.cs: Added. Used to be auto-generated, but
now it can infer names, and relies on per-namespace ObjectManager
classes to inform it of oddly-named classes.
* generator/IGeneratable.cs, GenBase.cs: New "DoGenerate" property.
* generator/*Gen.cs: Honor DoGenerate.
* generator/CodeGenerator.cs: Support including dependency files
which will not be generated.
* generator/ObjectGen.cs: Generate mapping file per-namespace, as one
that calls back to the one in glib. Only generate if the name does
not follow the normal conventions, otherwise, GtkSharp.ObjectManager
can infer the name.
* generator/Parser.cs: Accept 'generate' flag to pass on to the
IGeneratables. Parse a new toplevel element, "symbol", which adds
a type to the SymbolTable (instead of hard-coding it).
* generator/SignalHandler.cs: Do not optimize signal handler creation,
instead creating them in their own namespaces. Do not generate
if the calling Signal told us not to.
* generator/Signal.cs: Do not generate handlers if container's DoGenerate
is false. Adjust to the marshaller name being in a sub-namespace.
* generator/SymbolTable.cs (AddSimpleType, AddManualType): Used
to add simple and manually wrapped types at runtime instead of
compile-time.
(FromNative): Remove hard-coded cases for manually wrapped types, use
a generic case instead.
* api: Added. Move api files and generation targets here.
* source: Added. Move source parsing here.
* generator/makefile: Move actual generation to api/.
* glib/Makefile.in: Remove generated/* target.
* glue/Makefile.am: Fix to include canvas-marshal. Move canvas stuff
to GNOME target.
* gnome/CanvasProxy.cs: Update to work with SignalHandlers being
namespace-specific.
* parser/Metadata.pm: Moved to GAPI/Metadata.pm, renamed, etc.
* parser/gapi2xml.pl: Use GAPI::Metadata.
* parser/makefile: Install scripts, remove source parse build target.
Rename formatXML to gapi_format_xml.
svn path=/trunk/gtk-sharp/; revision=6818
2002-08-20 19:56:18 +00:00
|
|
|
}
|
2003-10-07 05:52:23 +00:00
|
|
|
|
|
|
|
GenerationInfo gen_info = null;
|
2004-03-18 20:56:32 +00:00
|
|
|
if (dir != "" || assembly_name != "" || glue_filename != "" || gluelib_name != "")
|
|
|
|
gen_info = new GenerationInfo (dir, custom_dir, assembly_name, glue_filename, gluelib_name);
|
2002-01-04 02:02:28 +00:00
|
|
|
|
2003-10-03 22:11:47 +00:00
|
|
|
foreach (IGeneratable gen in gens) {
|
2003-10-07 05:52:23 +00:00
|
|
|
if (gen_info == null)
|
|
|
|
gen.Generate ();
|
|
|
|
else
|
|
|
|
gen.Generate (gen_info);
|
2002-01-04 02:02:28 +00:00
|
|
|
}
|
|
|
|
|
2003-10-06 18:18:49 +00:00
|
|
|
ObjectGen.GenerateMappers ();
|
2002-08-08 04:48:41 +00:00
|
|
|
|
2004-03-18 20:56:32 +00:00
|
|
|
if (gen_info != null)
|
|
|
|
gen_info.CloseGlueWriter ();
|
|
|
|
|
2002-02-19 03:12:47 +00:00
|
|
|
Statistics.Report();
|
2002-01-04 02:02:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|