详解ASP.NET Core MVC 源码学习:Routing 路由
前言
最近打算抽时间看一下 asp.net core mvc 的源码,特此把自己学习到的内容记录下来,也算是做个笔记吧。
路由作为 mvc 的基本部分,所以在学习 mvc 的其他源码之前还是先学习一下路由系统,asp.net core 的路由系统相对于以前的 mvc 变化很大,它重新整合了 web api 和 mvc。
路由源码地址 :routing-dev_jb51.rar
路由(routing)功能介绍
路由是 mvc 的一个重要组成部分,它主要负责将接收到的 http 请求映射到具体的一个路由处理程序上,在mvc 中也就是说路由到具体的某个 controller 的 action 上。
路由的启动方式是在asp.net core mvc 应用程序启动的时候作为一个中间件来启动的,详细信息会在下一篇的文章中给出。
通俗的来说就是,路由从请求的 url 地址中提取信息,然后根据这些信息进行匹配,从而映射到具体的处理程序上,因此路由是基于url构建的一个中间件框架。
路由还有一个作用是生成响应的的url,也就是说生成一个链接地址可以进行重定向或者链接。
路由中间件主要包含以下几个部分:
- url 匹配
- url 生成
- irouter 接口
- 路由模板
- 模板约束
getting started
asp.net core routing 主要分为两个项目,分别是 microsoft.aspnetcore.routing.abstractions,microsoft.aspnetcore.routing
。前者是一个路由提供各功能的抽象,后者是具体实现。
我们在阅读源码的过程中,我建议还是先大致浏览一下项目结构,然后找出关键类,再由入口程序进行阅读。
microsoft.aspnetcore.routing.abstractions
大致看完整个结构之后,我可能发现了几个关键的接口,理解了这几个接口的作用后能够帮助我们在后续的阅读中事半功倍。
irouter
在 microsoft.aspnetcore.routing.abstractions
中有一个关键的接口就是 irouter
:
public interface irouter { task routeasync(routecontext context); virtualpathdata getvirtualpath(virtualpathcontext context); }
这个接口主要干两件事情,第一件是根据路由上下文来进行路由处理,第二件是根据虚拟路径上下文获取 virtualpathdata
。
iroutehandler
另外一个关键接口是 iroutehandler
, 根据名字可以看出主要是对路由处理程序机型抽象以及定义的一个接口。
public interface iroutehandler { requestdelegate getrequesthandler(httpcontext httpcontext, routedata routedata); }
它返回一个 requestdelegate
的一个委托,这个委托可能大家比较熟悉了,封装了处理http请求的方法,位于microsoft.aspnetcore.http.abstractions
中,看过我之前博客的同学应该比较了解。
这个接口中 getrequesthandler
方法有两个参数,第一个是 httpcontext,就不多说了,主要是来看一下第二个参数 routedata
。
routedata
,封装了当前路由中的数据信息,它包含三个主要属性,分别是 datatokens
, routers
, values
。
datatokens
: 是匹配的路径中附带的一些相关属性的键值对字典。
routers
: 是一个 ilist<irouter>
列表,说明routedata 中可能会包含子路由。
values: 当前路由的路径下包含的键值。
还有一个 routevaluedictionary
, 它是一个集合类,主要是用来存放路由中的一些数据信息的,没有直接使用 ienumerable<keyvaluepair<string, string>>
这个数据结构是应为它的内部存储转换比较复杂,它的构造函数接收一个 object 的对象,它会尝试将object 对象转化为自己可以识别的集合。
iroutingfeature
我根据这个接口的命名一眼就看出来了这个接口的用途,还记得我在之前博客中讲述http管道流程中得时候提到过一个叫 工具箱 的东西么,这个 iroutingfeature
也是其中的一个组成部分。我们看一下它的定义:
public interface iroutingfeature { routedata routedata { get; set; } }
原来他只是包装了 routedata
,到 httpcontext 中啊。
irouteconstraint
这个接口我在阅读的时候看了一下注释,原来路由中的参数参数检查主要是靠这个接口来完成的。
我们都知道在我们写一个 route url地址表达式的时候,有时候会这样写:route("/product/{productid:long}")
, 在这个表达式中有一个 {productid:long}
的参数约束,那么它的主要功能实现就是靠这个接口来完成的。
/// defines the contract that a class must implement in order to check whether a url parameter /// value is valid for a constraint. public interface irouteconstraint { bool match( httpcontext httpcontext, irouter route, string routekey, routevaluedictionary values, routedirection routedirection); }
microsoft.aspnetcore.routing
microsoft.aspnetcore.routing
主要是对 abstractions
的一个主要实现,我们阅读代码的时候可以从它的入口开始阅读。
routingservicecollectionextensions
是一个扩展asp.net core di 的一个扩展类,在这个方法中用来进行 configservice,routing 对外暴露了一个 iroutingbuilder 接口用来让用户添加自己的路由规则,我们来看一下:
public static iapplicationbuilder userouter(this iapplicationbuilder builder, action<iroutebuilder> action) { //...略 // 构造一个routerbuilder 提供给action委托宫配置 var routebuilder = new routebuilder(builder); action(routebuilder); //调用下面的一个扩展方法,routebuilder.build() 见下文 return builder.userouter(routebuilder.build()); } public static iapplicationbuilder userouter(this iapplicationbuilder builder, irouter router) { //...略 return builder.usemiddleware<routermiddleware>(router); }
routebuilder.build()
构建了一个集合 routecollection
,用来保存所有的 irouter
处理程序信息,包括用户配置的router。
routecollection
本身也实现了 irouter
, 所以它也具有路由处理的能力。
routing 中间件的入口是 routermiddleware
这个类,通过这个中间件注册到 http 的管道处理流程中, asp.net core mvc 会把它默认的作为其配置项的一部分,当然你也可以把routing单独拿出来使用。
我们来看一下 invoke
方法里面做了什么,它位于routermiddleware.cs
文件中。
public async task invoke(httpcontext httpcontext) { var context = new routecontext(httpcontext); context.routedata.routers.add(_router); await _router.routeasync(context); if (context.handler == null) { _logger.requestdidnotmatchroutes(); await _next.invoke(httpcontext); } else { httpcontext.features[typeof(iroutingfeature)] = new routingfeature() { routedata = context.routedata, }; await context.handler(context.httpcontext); } }
首先,通过 httpcontext 来初始化路由上下文(routecontext),然后把用户配置的路由规则添加到路由上下文routedata中的routers中去。
接下来 await _router.routeasync(context)
, 就是用到了 irouter
接口中的 routeasync
方法了。
我们接着跟踪 routeasync
这个函数,看其内部都做了什么? 我们又跟踪到了routecollection.cs
这个类:
我们看一下 routeasync 的流程:
public async virtual task routeasync(routecontext context) { var snapshot = context.routedata.pushstate(null, values: null, datatokens: null); for (var i = 0; i < count; i++) { var route = this[i]; context.routedata.routers.add(route); try { await route.routeasync(context); if (context.handler != null) { break; } } finally { if (context.handler == null) { snapshot.restore(); } } } }
我觉得这个类,包括函数设计的很巧妙,如果是我的话,我不一定能够想的出来,所以我们通过看源码也能够学到很多新知识。
为什么说设计的巧妙呢? routecollection
继承了 irouter 但是并没有具体的对路由进行处理,而是通过循环来重新将路由上下文分发的具体的路由处理程序上。我们来看一下他的流程:
1、为了提高性能,创建了一个routedatasnapshot 快照对象,routedatasnapshot是一个结构体,它存储了 route 中的路由数据信息。
2、循环当前 routecollection 中的 router,添加到 routercontext里的routers中,然后把routercontext交给router来处理。
3、当没有处理程序处理当前路由 snapshot.restore()
重新初始化快照状态。
接下来就要看具体的路由处理对象了,我们从 routebase
开始。
1、routebase 的构造函数会初始化 routetemplate
, name
, datatokens
, defaults
.
defaults 是默认配置的路由参数。
2、routeasync
中会进行一系列检查,如果没有匹配到url对应的路由就会直接返回。
3、使用路由参数匹配器 routeconstraintmatcher
进行匹配,如果没有匹配到,同样直接返回。
4、如果匹配成功,会触发 onroutematched(routecontext context)
函数,它是一个抽象函数,具体实现位于 route.cs
中。
然后,我们再继续跟踪到 route.cs
中的 onroutematch,一起来看一下:
protected override task onroutematched(routecontext context) { context.routedata.routers.add(_target); return _target.routeasync(context); }
_target 值得当前路由的处理程序,那么具体是哪个路由处理程序呢? 我们一起探索一下。
我们知道,我们创建路由一共有maproute
,mapget
,mappost
,mapput
,mapdelete
,mapverb
... 等等这写方式,我们分别对应说一下每一种它的路由处理程序是怎么样的,下面是一个示例:
app.userouter(routes =>{ routes.defaulthandler = new routehandler((httpcontext) => { var request = httpcontext.request; return httpcontext.response.writeasync($""); }); routes .mapget("api/get/{id}", (request, response, routedata) => {}) .mapmiddlewareroute("api/middleware", (appbuilder) => appbuilder.use((httpcontext, next) => httpcontext.response.writeasync("middleware!") )) .maproute( name: "allverbs", template: "api/all/{name}/{lastname?}", defaults: new { lastname = "doe" }, constraints: new { lastname = new regexrouteconstraint(new regex("[a-za-z]{3}",regexoptions.cultureinvariant, regexmatchtimeout)) }); });
按照上面的示例解释一下,
maproute
:使用这种方式的话,必须要给 defaulthandler 赋值处理程序,否则会抛出异常,通常情况下我们会使用routehandler类。
mapverb
: mappost,mapput 等等都和它类似,它将处理程序作为一个 requestdelegate 委托提供了出来,也就是说我们实际上在自己处理httpcontext的东西,不会经过routehandler处理。
mapmiddlewareroute
:需要传入一个 iapplicationbuilder 委托,实际上 iapplicationbuilder build之后也是一个 requestdelegate,它会在内部 new 一个 routehandler 类,然后调用的 maproute。
这些所有的矛头都指向了 routehandler , 我们来看看 routehandler
吧。
public class routehandler : iroutehandler, irouter { // ...略 public task routeasync(routecontext context) { context.handler = _requestdelegate; return taskcache.completedtask; } }
什么都没干,仅仅是将传入进来的 requestdelegate 赋值给了 routecontext 的处理程序。
最后,代码会执行到 routermiddleware
类中的 invoke
方法的最后一行 await context.handler(context.httpcontext),
这个时候开始调用handler委托,执行用户代码。
总结
我们来总结一下以上流程:
首先传入请求会到注册的 routermiddleware 中间件,然后它 routeasync 按顺序调用每个路由上的方法。当一个请求到来的时候,irouter实例选择是否处理已经设置到 routecontext handler
上的一个非空 requestdelegate。如果route已经为该请求设置处理程序,则路由处理会中止并且开始调用设置的hanlder处理程序以处理请求。如果当前请求尝试了所有路由都没有找到处理程序的话,则调用next,将请求交给管道中的下一个中间件。
关于路由模板和参数约束源码处理流程就不一一说了,有兴趣可以直接看下源码。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: cad中绘制的圆变成多边形该怎么办?