博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用基于模型和接口的T4来生成RESTful服务
阅读量:6815 次
发布时间:2019-06-26

本文共 9246 字,大约阅读时间需要 30 分钟。

\

关键要点

\
  • 许多REST服务中都包含重复的模式; \
  • 如果能自动生成这些模式相关的代码就可以节省很多时间; \
  • Visual Studio的T4和EnvDTE具有强大的生成代码功能,不需要更多工具辅助; \
  • 也可以用相似技术生成对WCF和数据库的调用;
\

在Visual Studio中,T4文本模板用文字和控制逻辑的混合物来生成文本文件。控制逻辑是用Visual C#或者Visual Basic语言写成的代码块。在Visual Studio 2015 Update 2及以后版本中,也可以在T4模板指令中使用C# V6.0的新功能。生成的文件可以是任意类型的文本,包括网页、资源文件、甚至是任何编程语言的源代码。在微软公司内部T4应用得很广泛。他们用它来生成MVC视图、控制器、EntityFramework上下文等等。\

对于那些想要根据已有的模式或模型生成代码,或者写最少的重复性代码的开发者来说,都可以尝试使用T4。我们可以用T4生成代码来简单地封装对业务逻辑或者任何其它服务的调用,也可以增加日志功能、实现缓存机制、基于某些模型来创建请求/响应类、甚至实现业务逻辑……等等。\

REST服务通常都被简单地作为业务逻辑的封装器,因此我们就可以使用T4来自动地为我们的接口和模型生成REST/WCF或者任意其它服务。这样就可以把开发者解放出来,让他们有更多的时间去专心处理用C#和SQL实现的业务逻辑。\

用例

\

假如我们准备开发一个简单的服务,来处理GET、批量GET、Insert和Update方法。产品实体包含下面这些属性:

public partial class Product\    {\        [Key]\        public int Id { get; set; }\        public string Name { get; set; }\        public string Number { get; set; }\        public int ProductGroupId { get; set; }\        public decimal? ListPrice { get; set; }\        public decimal? Size { get; set; }\        public decimal? Weight { get; set; }\\        public ProductGroup ProductGroup { get; set; }\    }\
\

需求要求可以通过产品的名字、数量、价格范围等方面来查找过滤产品。当插入一条产品记录时,我们会把除了Id和数量之外的所有属性都写上。这些全是自动生成的,所以我们也不能更改它们。为了提高性能,用户也可以指定是否需要添加ProductGroup对象。如果不需要联接操作或者隔离ProductGroup的查询,就可以不添加。\

为了帮助大家理解,我在这里画了一张图来展示我在这篇文章中要用到的架构:\

5a322f236d904e66e7fba3bc0d334982.jpg

\\

批量GET方法

\

如上文所述,我们需要通过产品的名字、数量或价格范围等做过滤,这通常叫做“过滤类”或者“查询对象”,如果全用手工实现的话就太枯燥了。\

但通过T4、EnvDTE和模型的属性,我们也可以自动创建新的过滤类。比如,我们可以设置模型的如下属性:

public partial class Product\    {\        ...\        [Filter(FilterEnum.GreatherThanOrEqual)]\        public string Name { get; set; }\        [Filter(FilterEnum.Equal | FilterEnum.List)]\        public string Number { get; set; }\        [Filter(FilterEnum.GreatherThanOrEqual | FilterEnum.LowerThanOrEqual)]\        public decimal? ListPrice { get; set; }\        ...\    }\
\

使用T4可以自动生成包含这些属性的类:

public partial class ProductSearchObject : BaseSearchObject\u0026lt;ProductAdditionalSearchRequestData\u0026gt;\{\//some code ommited (private members and attributes)\    public virtual System.String NameGTE { get; set; }\    public virtual System.String Number { get; set; }\    public virtual IList\u0026lt;String\u0026gt; NumberList { get {return mNumberList;} set { mNumberList = value; }}\    public virtual System.Nullable\u0026lt;System.Decimal\u0026gt; ListPriceGTE { get; set; }\    public virtual System.Nullable\u0026lt;System.Decimal\u0026gt; ListPriceLTE { get; set; }\}\
\

要是使用EntityFramework的话,我们就可以轻松生成业务处理逻辑,就是包含基于这个查询对象和模型的LINQ查询。要这样做,首先要定义接口和准备使用的属性。比如:

[DefaultServiceBehaviour(DefaultImplementationEnum.EntityFramework, \"products\")]\    public interface IProductService : ICRUDService\u0026lt;Product, ProductSearchObject, ProductAdditionalSearchRequestData, ProductInsertRequest, ProductUpdateRequest\u0026gt;\    {\\    }\
\

做完这一步,T4就知道了默认的实现应该是怎样,然后就可以生成基于查询对象的检索逻辑了:

protected override void AddFilterFromGeneratedCode(ProductSearchObject search, ref System.Linq.IQueryable\u0026lt;Product\u0026gt; query)\    {\//call to partial method\        base.AddFilterFromGeneratedCode(search, ref query);\        if(!string.IsNullOrWhiteSpace(search.NameGTE))\            {\                query = query.Where(x =\u0026gt; x.Name.StartsWith(search.NameGTE));\            }\            if(!string.IsNullOrWhiteSpace(search.Number))\            {\                query = query.Where(x =\u0026gt; x.Number == search.Number);\            }\            if(search.NumberList != null \u0026amp;\u0026amp; search.NumberList.Count \u0026gt; 0)\            {\                query = query.Where(x =\u0026gt; search.NumberList.Contains(x.Number));\            }\            if(search.ListPriceGTE.HasValue)\            {\                query = query.Where(x =\u0026gt; x.ListPrice \u0026gt;= search.ListPriceGTE);\            }\            if(search.ListPriceLTE.HasValue)\            {\                query = query.Where(x =\u0026gt; x.ListPrice \u0026lt;= search.ListPriceLTE);\            }\    }\
\

可以把我们的默认实现注册到IoC框架中:

public partial class ServicesRegistration : IServicesRegistration\    {\        public int Priority {get; set; }\        public ServicesRegistration()\        {\            Priority = 0; //This is root, If you want to override this. Add new class with higher priority\        }\        public void Register(UnityContainer container)\        {       container.RegisterType\u0026lt;IProductService,ProductService\u0026gt;(new HierarchicalLifetimeManager());\        }\    }\
\

如果用这种方法构建,我们还可以非常容易地用另一个更高优先级的类来重载这种注册过程,以此来替换这种实现。\

在生成REST API时,T4还会根据接口中的属性信息来决定要为哪些属性生成获取函数。比如,在IProductService接口中我们可以为相应属性这样添加函数:

[DefaultMethodBehaviour(BehaviourEnum.Get)]\PagedResult\u0026lt;TEntity\u0026gt; GetPage(TSearchObject search);\
\

既然我们知道了有哪些函数可以用于获取数据,我们就可以为REST服务生成代码了:

[RoutePrefix(\"products\")]\public partial class productsController : System.Web.Http.ApiController\{\    [Dependency]\    public IProductService Service { get; set; }\    [Route(\"\")]\    [ResponseType(typeof(PagedResult\u0026lt;Product\u0026gt;))]\    [HttpGet]\    public System.Web.Http.IHttpActionResult  GetPage ([FromUri] ProductSearchObject search)\    {\        //call to partial method\        var result = Service.GetPage(search);\        return Ok(result);\    }\}\
\

如前文所述,我们希望客户端可以按需要请求ProductGroup这种附加信息,要具备这个功能,只要给ProductGroup属性加上[LazyLoading]指令就可以了。

public partial class Product\    {\        //ommited code\\        [LazyLoading]\        public ProductGroup ProductGroup { get; set; }\    }\
\

加上[LazyLoading]指令之后,T4就会给新创建的类中加上IsProductGroupLoadingEnabled变量。

public partial class ProductAdditionalSearchRequestData :  A.Core.Model.BaseAdditionalSearchRequestData\{\    public virtual bool? IsProductGroupLoadingEnabled { get; set; }\}\
\

在底层使用EntityFramework会生成如下代码:

protected override void AddInclude(ProductSearchObject search, ref System.Linq.IQueryable\u0026lt;Product\u0026gt; query)\{\if(search.AdditionalData.IsProductGroupLoadingEnabled.HasValue \u0026amp;\u0026amp; search.AdditionalData.IsProductGroupLoadingEnabled == true)\{                                        search.AdditionalData.IncludeList.Add(\"ProductGroup\"); \    }\    base.AddInclude(search, ref query); //calls EF .Include method\}\
\

Insert方法

\

插入对象的属性列表常常与完整的模型不同。比如,那些自动生成的主键就不应该由客户端传入,因为它们应该被忽略掉。这个例子当然很明显,但还是有些字段会非常容易出问题。\

比如ProductGroup属性,如果我们把它也包含到插入对象之中,那大家就会有误解,以为客户端应该用这个函数调用去创建或者更新一个ProductGroup。所以最好是提供一个明确的插入对象,而不要重用完整模型。\

为了避免用重复性地手工劳动来创建这些代码,我们仍然可以用指令来要求它为我们生成需要的属性,比如:

[Entity]\    public partial class Product\    {\        [Key]\        public int Id { get; set; }\\        [Filter(FilterEnum.GreatherThanOrEqual)]\        [RequestField(\"Insert\")]\        public string Name { get; set; }\\        [Filter(FilterEnum.Equal | FilterEnum.List)]\        public string Number { get; set; }\\        [RequestField(\"Insert\")]\        public int ProductGroupId { get; set; }\\        [RequestField(\"Insert\")]\        [Filter(FilterEnum.GreatherThanOrEqual | FilterEnum.LowerThanOrEqual)]\        public decimal? ListPrice { get; set; }\\        [RequestField(\"Insert\")]\        public decimal? Size { get; set; }\\        [RequestField(\"Insert\")]\        public decimal? Weight { get; set; }\\        [LazyLoading]\        public ProductGroup ProductGroup { get; set; }\    }\
\

上面的信息可以生成下面的代码,即ProductInsertRequest类:

public partial class ProductInsertRequest\{\    public System.String Name { get; set; }\    public System.Int32 ProductGroupId { get; set; }\    public System.Nullable\u0026lt;System.Decimal\u0026gt; ListPrice { get; set; }\    public System.Nullable\u0026lt;System.Decimal\u0026gt; Size { get; set; }\    public System.Nullable\u0026lt;System.Decimal\u0026gt; Weight { get; set; }\}\
\

和以前一样,我们要修改一下接口,这样T4就知道哪些函数是负责处理插入请求的。我们可以为合适的函数加上属性,比如:

[DefaultMethodBehaviour(BehaviourEnum.Insert)]\        TEntity Insert(TInsert request, bool saveChanges = true);\
\

有了这些模型和接口的信息,T4就可以生成我们想要的REST API代码了:

[Route(\"\")]\    [ResponseType(typeof(Product))]\    [HttpPost]\    public HttpResponseMessage  Insert([FromBody] ProductInsertRequest request)\    {\        var result = Service.Insert(request);                    \var response = Request.CreateResponse\u0026lt;Product\u0026gt;(HttpStatusCode.Created,  result);\        return response;\    }\
\

Update方法

\

原理也和插入函数一样。在这里我们要为元组的属性加上[RequestField(\"Update\")]指令,这样就可以为ProductUpdateRequest生成合适的属性。然后再为相应的接口加上指令来让T4知道哪个函数是要处理Update的。\

加上这些指令后,T4就可以为REST服务生成更新数据的函数了:

[Route(\"{id}\")]\    [ResponseType(typeof(A.Core.Model.Product))]\    [HttpPut]\    public HttpResponseMessage  Update([FromUri] Int32 id, [FromBody]ProductUpdateRequest request)\    {\        //can return \"Not Found\" if Update throws NotFoundException\        var result = Service.Update(id,request);                     \        var response = Request.CreateResponse\u0026lt;Product\u0026gt;(HttpStatusCode.OK, result);\        return response;\    }\
\

结论

\

从文中可以看出,我们可以用T4来生成代码,帮助我们节省很多写重复性代码的时间。生成的代码易读性也很好,和自己写的一样。用相同的办法,我们也可以生成代码来在服务级别缓存结果和增加日志功能。\

这种技术的另一种用途是同时生成REST和WCF服务代码,当你的客户端既要支持浏览器也要支持C#时这就很有用。\

在我的工作经历中,我曾经用T4和EnvDTE来为公司的项目生成完整的CRUD REST服务代码,包括数据库调用和单元测试等。几分钟就搞定了,而不是几小时。\

如果你想了解更多内容,可以通过,或者直接通过联系我。\

关于作者

\

2421deea1bca1f29423f83c007201923.jpgAmel Musić的职业生涯早年间是为证券公司开发解决方案,主要是银行和政府部门,他的专长是基于MS SQL Server和.NET平台来开发和优化解决方案。在这些系统上做了几年设计之后,他开始学习使用T4和面向切面编程,这让他得以减少重复性工作,专心处理客户的业务需求。

\

阅读英文原文

转载地址:http://gvdzl.baihongyu.com/

你可能感兴趣的文章
Android studio 快捷键
查看>>
python小程序 批量提交bugscan
查看>>
结缘PDO
查看>>
学习微信小程序之css18绝对定位
查看>>
关于Override在JDK1.5和JDK1.6上子类实现接口中方法使用@Override注解编译错误.
查看>>
canvas 的学习
查看>>
oj2694 逆波兰表达式
查看>>
页面css代码
查看>>
Google Map API使用详解(九)——Google Map坐标系统总结(下)
查看>>
SQL Server返回插入数据的ID和受影响的行数
查看>>
APP测试常见点
查看>>
JavaScript+HTML5 实现打地鼠小游戏
查看>>
转一下递归
查看>>
浅谈利用同步机制解决Java中的线程安全问题
查看>>
第三章 列表简介
查看>>
四则运算设计思路
查看>>
每间隔15分钟生成一个时间戳
查看>>
【学习】python(os)模块总结
查看>>
JAVA毕业后工资有多少?
查看>>
android,HttpPost 提交数据
查看>>