![]() |
Languages »
C# »
General
Intermediate
Refly, makes the CodeDom'er life easierBy Jonathan de HalleuxA smart wrapper around CodeDom that speeds up code generation. |
C#, Windows, .NET 1.0, .NET 1.1VS.NET2003, Dev
|
|
Advanced Search |
|
|
|
||||||||||||||||
Be constructive, comment your votes...
With CodeDom, .NET has given us a flexible tool for generating source code in a variety of languages. Unfortunately, CodeDom has a major shortcoming, it is quite "verbose": Generating a little piece of code usually means writing dozens of CodeDom instructions.
This article presents Refly, a smart wrapper that should dramatically simplify code generation with CodeDom. The major features of Refly are:
this.data.Close();
is generated by:
Expr.This.Field("data").Method("Close").Invoke();
if (value==null)
throw new ArgumentNullExpression("value");
is generated by the static method:
Stm.ThrowIfNull(value);
We will start with a comparative example on CodeDom and Refly and then, give a how-to on using Refly.
Suppose that we want to create the following simple User class:
namespace Refly.Demo
{
public class User
{
private string name;
public User(string name)
{
this.name = name;
}
public String Name
{
get
{
return this.name;
}
}
}
}
Here comes a part of the CodeDom code to generate the above class (skip this if you know CodeDom):
// creating the Refly.Demo namespace
CodeNamespace demo = new CodeNamespace("Refly.Demo");
// create the User class
CodeTypeDeclaration user = new CodeTypeDeclaration("User");
user.IsClass = true;
demo.Types.Add(user);
// add name field
CodeMemberField name = new CodeMemberField(typeof(string),"name");
user.Members.Add(name);
// add constructor
CodeConstructor cstr = new CodeConstructor();
user.Members.Add(cstr);
CodeParameterDeclarationExpression pname =
new CodeParameterDeclarationExpression(typeof(string),"name");
cstr.Parameters.Add(pname);
// this.name = name;
CodeFieldReferenceExpression thisName = new CodeFieldReferenceExpression(
new CodeThisReferenceExpression(),
"name");
CodeAssignStatement assign = new CodeAssignStatement(
thisName,
pname
);
cstr.Statements.Add(assign);
// add property
CodeMemberProperty p = new CodeMemberProperty();
p.Type=name.Type;
p.Name = "Name";
p.HasGet = true;
p.GetStatements.Add(
new CodeMethodReturnStatement(thisName)
);
Here comes the Refly version of the above. Although you do not know yet Refly, you will see that it is similar in many ways to CodeDom:
// creating the Refly namespace
NamespaceDeclaration demo= new NamespaceDeclaration("Refly.Demo");
// create the user class
ClassDeclaration user = demo.AddClass("User");
// add name field
FieldDeclaration name = user.AddField(typeof(string), "name");
// add constructor
ConstructorDeclaration cstr = user.AddConstructor();
// add name parameter
ParameterDeclaration pname =
cstr.Signature.AddParam(typeof(string), "name",true);
// this.name = name;
cstr.Body.AddAssign(
Expr.This.Field(name),
Expr.Arg(pname)
);
// add property
user.AddProperty(name, true, false, false);
At first look, the two versions do not look very different, let me point out some interesting differences:
this.name = name;. Expression and statement building has been highly simplified in Refly as you can see it in this 1 line example. Imagine the economy of work when you need to generate methods with dozens of lines.
class/enum. This concludes the introductory comparison example. The full source of the example is available in the demo.
The Refly framework is organized in the following components:
Refly.CodeDom, root namespace for the CodeDom generator,
Refly.CodeDom.Collections, useful strongly typed collections,
Refly.CodeDom.Expressions, expression wrappers,
Refly.CodeDom.Statements, statement wrappers,
Refly.CodeDom.Doc, documentation writing helpers,
Refly.Templates, some generator classes,
Refly.Xsd, XSD refactoring tools Refly acts as a wrapper around CodeDom: each class of the CodeDom namespace has its Refly counter part. When Refly is asked to generate the code, it creates the CodeDom code and lets CodeDom generate the code.
Usually, importing the Refly.CodeDom is sufficient to have all the functionalities of Refly.
This section gives step-by-step instructions to get you code generator running.
First of all, we need a namespace, that is an instance of NamespaceDeclaration:
NamespaceDeclaration ns = new NamespaceDeclaration("MyNs");
Classes and enums can be added to this namespace. Sub-namespaces can also be added to namespaces.
The NamespaceDeclaration class provides a method AddClass to create a new class:
ClassDeclaration user = ns.AddClass("user");
You do not need to worry about the naming case, Refly will "recase" the name you provided. Now that we have an empty type, we can test the generator.
Refly provides the CodeGenerator class that takes care of creating the directories, calling CodeDom generator for each type in the namespace:
CodeGenerator gen = new CodeGenerator();
gen.GenerateCode("outputPath",ns);
By default, CodeGenerator will create C# code, but of course, you can change the output language by providing another provider:
// changin output to VB
gen.Provider=CodeGenerator.VbProvider;
Back to our user class, you can add fields, methods, etc... by using the proper methods of ClassDeclaration:
// add field name
FieldDeclaration name = user.AddField(typeof(string),name);
// add Check
MethodDeclaration check = user.AddMethod("Check");
...
The signature of members (when it applies) is controlled by a MethodSignature through the Signature property. This object lets you add parameters and set the return type of the method.
// adding age to the check method
ParameterDeclaration age = check.Signature.AddParam(typeof(int),"age");
Each declaration type has a Documentation instance that can be used to create comments:
age.Doc.Summary.AddText("user age");
The class Expr contains a number of static helper classes that will generate all the expression objects for you. Here are some code samples, with their Refly counter part:
this.name -> Expr.This.Field(name); where
Expr.This returns the this instance
.Field retrieves the field from an expressionthis.Check(10) -> Expr.This.Method(check).Invoke(Expr.Prim(10)); where
.Method retrieves the method,
.Invoke invokes the method with the arguments,
Expr.Prim creates an expression from a primitive value (int, string, double, etc...)The Expr contains other methods to map typeof, new, cast, ...
As for expressions, the Stm class contains a lot of static helper classes to simplify your work. For example, simple statements such assign, return:
left = right; -> Stm.Assign( left, right);
return value; -> Stm.Return( value );
if (value==null) throw new ArgumentNullException("value"); -> Stm.ThrowIfNull(value);
Throw new Exception(); -> Stm.Throw(typeof(Exception)); More complex statements like if, for, try/catch/finally are also created with Stm. Refly also emulates foreach, which is not supported by CodeDom, by expanding the foreach as the C# compiler would be (using an enumerator, etc...).
The Refly.Templates contains various generators for strongly-typed collection, dictionary and IDataReader wrapper. They are good starting point to get a grip on Refly. As a final example, this method generates a strongly typed dictionary (KeyType is the key type, ValueType is the value type):
NamespaceDeclaration ns = ...;
ClassDeclaration col = ns.AddClass(this.Name);
// set base class as CollectionBase
col.Parent = new TypeTypeDeclaration(typeof(DictionaryBase));
// default constructor
col.AddConstructor();
// add indexer
IndexerDeclaration index = col.AddIndexer(
this.ValueType
);
ParameterDeclaration pindex = index.Signature.AddParam(KeyType,"key",false);
// get body
index.Get.Return(
(Expr.This.Prop("Dictionary").Item(Expr.Arg(pindex)).Cast(this.ValueType)
)
);
// set body
index.Set.AddAssign(
Expr.This.Prop("Dictionary").Item(Expr.Arg(pindex)),
Expr.Value
);
// add method
MethodDeclaration add = col.AddMethod("Add");
ParameterDeclaration pKey = add.Signature.AddParam(this.KeyType,"key",true);
ParameterDeclaration pValue = add.Signature.AddParam(this.ValueType,"value",true);
add.Body.Add(
Expr.This.Prop("Dictionary").Method("Add").Invoke(pKey,pValue)
);
// contains method
MethodDeclaration contains = col.AddMethod("Contains");
contains.Signature.ReturnType = new TypeTypeDeclaration(typeof(bool));
ParameterDeclaration pKey = contains.Signature.AddParam(this.KeyType,"key",true);
contains.Body.Return(
Expr.This.Prop("Dictionary").Method("Contains").Invoke(pKey)
);
// remove method
MethodDeclaration remove = col.AddMethod("Remove");
ParameterDeclaration pKey = remove.Signature.AddParam(this.KeyType,"key",true);
remove.Body.Add(
Expr.This.Prop("Dictionary").Method("Remove").Invoke(pKey)
);
Refly contains a last bonus, XsdTidy, that refactors the output of the Xsd.exe tool to nicer and easier to use classes.
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 1 Mar 2004 Editor: Smitha Vijayan |
Copyright 2004 by Jonathan de Halleux Everything else Copyright © CodeProject, 1999-2009 Web13 | Advertise on the Code Project |