欢迎光临
我们一直在努力

如何使用.NET生成C#源代码-.NET教程,C#语言

建站超值云服务器,限时71元/月

上周给大家说了说如何使用.net实现直接计算一个表达式,其实该方法可以扩展为执行一个类里面的一个方法或者使用在其他更有用的地方,正如文章中所说,文章只是描述可以实现的一个方法,以及该方法的一个简单实现。

今天我们要看看怎么使用.net一个自动生成源代码,配合上一篇文章您就可以使用自己产生代码供自己消费了(上一篇文章请参考:http://www.csdn.net/develop/read_article.asp?id=34659)。

听起来是不是很爽?有些朋友可能会说这个有点难吧,其实不然。我们工程里面使用了微软提供的codedom命名空间,所以可以轻松实现。有关codedom的详细信息可以参考msdn,上面说的非常清楚!我在这里也就不罗索了。连接参考:http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemcodedom.asp?frame=true

本文介绍一个简单的数据访问层的源代码自动生成的实现,所有的代码都是使用hard-code的方式写的,如果您有兴趣可以使用其他的方法,比如数据库(资源文件)中获得资源,生成源代码,还可以实现一些o-r mapping的操作。

该文章中的数据访问层中有一个属性一个字段以及一个方法。属性是一个获得连接对象的属性,字段是一个连接对象的私有成员,方法是一个get方法,得到一个查询结果集。源代码生成以后就象下面这个样子:

using system;

using system.data;

using system.data.sqlclient;

namespace power.cuike519 {

public class powerdataaccess {

private sqlconnection m_connection;

public powerdataaccess() {

}

public virtual sqlconnection connection {

get {

return this.m_connection;

}

set {

this.m_connection = value;

}

}

public virtual dataset getallauthors(string s_state) {

try {

if (this.m_connection!=null) {

system.data.sqlclient.sqldataadapter da = new sqldataadapter(string.format("select * from authors where state like {0}",s_state),this.m_connection);

system.data.dataset ds = new dataset();

da.fill(ds);

return ds;

}

else {

return null;

}

}

catch (system.applicationexception ex) {

throw ex;

}

finally {

this.m_connection.close();

}

}

}

}

下面看看我们用了什么方法生成这段代码的,为了可以生成该代码我们需要一个工程,我建立了一个windows应用程序来做这件事情,你也可以使用控制台或者asp.net程序将你生成的源代码发布到网络上让更多的人看到。我们在工程里面写了一个方法createpowerdataaccesslayer,该方法创建了上面的源代码,下面我们就看看源代码的片断:

首先我们需要一个保存源代码的流,我们使用下面的代码创建流:

stream codestream = file.open("sample.cs", filemode.create);

streamwriter codewriter = new streamwriter(codestream);

接着我们想要编写的是csharp的代码那么我们就使用csharpcodeprovider来创建一个代码生成器。

csharpcodeprovider provider = new csharpcodeprovider();

icodegenerator codegenerator = provider.creategenerator(codewriter);

codegeneratoroptions codegeneratoroptions = new codegeneratoroptions();

为了可以让我们的源代码可以正确运行我们使用下面方法为我们的源代码添加命名空间

codesnippetcompileunit literal = new codesnippetcompileunit("using system;\nusing system.data;\nusing system.data.sqlclient;\n");

codegenerator.generatecodefromcompileunit(literal,codewriter,codegeneratoroptions);

接着我们就要为我们的源代码设置一个命名空间以及在此命名空间下面创建一个类

codenamespace codenamespace = new codenamespace("power.cuike519");//命名空间名称

codetypedeclaration codetypedeclaration = new codetypedeclaration();

codetypedeclaration.name = "powerdataaccess"; // 类名

codetypedeclaration.isclass = true;

codetypedeclaration.typeattributes = typeattributes.public;

codenamespace.types.add(codetypedeclaration);

接着我们为该类创建一个构造函数,这里只创建一个默认的构造函数

codeconstructor codeconstrustor = new codeconstructor();

codeconstrustor.attributes = memberattributes.public;

codetypedeclaration.members.add(codeconstrustor);

接着为我们的类创建一个字段,该字段是私有的,它是sqlconnection类型的名字叫m_connection

codememberfield codemember = new codememberfield();

codemember.name = "m_connection";

codemember.attributes = memberattributes.private;

codemember.type = new codetypereference("sqlconnection");

codetypedeclaration.members.add(codemember);

有了字段我们为该字断添加一个可以操作和读取的属性,我们为它指定set和get方法,同时它是public的,是sqlconnection类型的,如下所示:

codememberproperty codememberproperty = new codememberproperty();

codememberproperty.name = "connection";

codememberproperty.attributes = memberattributes.public;

codememberproperty.type = new codetypereference("sqlconnection");

codememberproperty.getstatements.add(new codemethodreturnstatement(new codefieldreferenceexpression(new codethisreferenceexpression(),"m_connection")));

codememberproperty.setstatements.add(new codeassignstatement(new codefieldreferenceexpression(new codethisreferenceexpression(),"m_connection"),new codepropertysetvaluereferenceexpression()));

codetypedeclaration.members.add(codememberproperty);

为了让我们的类看起来更有用我们使用下面的方法创建一个函数以及函数里面的内容,这里可以一次将函数体写入其中,这里没有这样做的原因是可以提供一个机会,看到微软在该命名空间下提供了其他很多有关源代码中使用的语句的类。

它是public的返回的是dataset类型的方法的名字叫getallauthors。虽然叫这个名字但是我们还是提供了一个参数,以提供更加灵活的使用空间,同时也为了说明函数中使用参数的方法。

codemembermethod codemembermethod = new codemembermethod();

codemembermethod.name = "getallauthors";

codemembermethod.attributes = memberattributes.public;

codemembermethod.returntype = new codetypereference("dataset");

codemembermethod.parameters.add(new codeparameterdeclarationexpression(typeof(string),"s_state"));

为了让我们的源代码更强壮我们使用了try-catch-finnaly语句,就像下面这样:

codetrycatchfinallystatement try1 = new codetrycatchfinallystatement();

为了判断我们的m_connection是不是已经初始化了我们使用下面的判断语句来判断:

codeconditionstatement conditionalstatement = new codeconditionstatement();

conditionalstatement.condition = new codevariablereferenceexpression("this.m_connection!=null");

我们在条件为真的时候希望我们的源代码执行下面的代码:

codevariabledeclarationstatement variabledeclarationda = new codevariabledeclarationstatement(typeof(system.data.sqlclient.sqldataadapter),"da",new codevariablereferenceexpression("new sqldataadapter(string.format(\"select * from authors where state like {0}\",s_state),this.m_connection)") );

conditionalstatement.truestatements.add(variabledeclarationda);

codevariabledeclarationstatement variabledeclarationds = new codevariabledeclarationstatement(typeof(dataset),"ds",new codevariablereferenceexpression("new dataset()") );

conditionalstatement.truestatements.add(variabledeclarationds);

codeexpression invokeexpression = new codemethodinvokeexpression(new codetypereferenceexpression("da"),"fill", new codevariablereferenceexpression("ds") );

codeexpressionstatement expressionstatement = new codeexpressionstatement( invokeexpression );

conditionalstatement.truestatements.add(expressionstatement);

conditionalstatement.truestatements.add(new codevariablereferenceexpression("return ds"));

而在假的时候执行下面的语句:

conditionalstatement.falsestatements.add(new codevariablereferenceexpression("return null"));

接着我们把if语句添加到try语句中间,就像下面这样:

try1.trystatements.add(conditionalstatement);

同时我们使用下面的方法把try语句添加到我们的方法里面:

codemembermethod.statements.add(try1);

接着就是我们遇到异常的时候希望抛出异常信息,代码如下:

codecatchclause catch1 = new codecatchclause("ex", new codetypereference("system.applicationexception"));

catch1.statements.add(new codevariablereferenceexpression("throw ex") );

try1.catchclauses.add( catch1 );

接着就是需要回收资源的代码,我们在这里将连接关闭(其实应该先检查状态再关闭,虽然sqldataadapter不需要显式的关闭,但是如果加上判断写在这里也没有什么错)

try1.finallystatements.add( new codevariablereferenceexpression("this.m_connection.close()"));

codetypedeclaration.members.add(codemembermethod);

下面就可以将代码生成了

codegenerator.generatecodefromnamespace(codenamespace,codewriter,codegeneratoroptions);

在最后不要忘了关闭资源

codewriter.close();

codestream.close();

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 如何使用.NET生成C#源代码-.NET教程,C#语言
分享到: 更多 (0)