zoukankan      html  css  js  c++  java
  • Web API源码剖析之HttpServer

    上一节我们讲述全局配置。本节将讲述全局配置的DefaultServer,它是一个HttpServer类型。 主要作用就是接受每一次请求,然后分发给消息处理程序链依次处理。从HttpServer定义可以看出,其本质是一个消息处理程序,其继承于DelegatingHandler。从其代码定义如下:

         //参数为

         public HttpServer(HttpConfiguration configuration, HttpMessageHandler dispatcher);


            // 摘要:
            //     获取用于配置此实例的 System.Web.Http.HttpConfiguration。
            //
            // 返回结果:
            //     用于配置此实例的 System.Web.Http.HttpConfiguration。
            public HttpConfiguration Configuration { get; }
            //
            // 摘要:
            //     获取用于处理传入请求的 HTTP 调度程序。
            //
            // 返回结果:
            //     用于处理传入请求的 HTTP 调度程序。
            public HttpMessageHandler Dispatcher { get; }

    公开两个只读属性。

    Dispatcher :承担分发中介者,实际上一个 HttpRoutingDispatcher类型。我们回顾一下上一节部分代码:

    //以下都使用延迟加载。

    private static Lazy<HttpConfiguration> _configuration = CreateConfiguration();

    private static Lazy<HttpMessageHandler> _defaultHandler = CreateDefaultHandler();

    private static Lazy<HttpServer> _defaultServer = CreateDefaultServer();

    private static Lazy<HttpConfiguration> CreateConfiguration()
    {
               return new Lazy<HttpConfiguration>(() =>
               {
                   HttpConfiguration config = new HttpConfiguration(new HostedHttpRouteCollection(RouteTable.Routes));
                   ServicesContainer services = config.Services;
                   Contract.Assert(services != null);
                   services.Replace(typeof(IAssembliesResolver), new WebHostAssembliesResolver());
                   services.Replace(typeof(IHttpControllerTypeResolver), new WebHostHttpControllerTypeResolver());
                   services.Replace(typeof(IHostBufferPolicySelector), new WebHostBufferPolicySelector());
                   services.Replace(typeof(IExceptionHandler),
                       new WebHostExceptionHandler(services.GetExceptionHandler()));
                   return config;
               });
    }

    //默认的消息处理程序,实际就是路由分发器

    private static Lazy<HttpMessageHandler> CreateDefaultHandler()
    {
               return new Lazy<HttpMessageHandler>(() => new HttpRoutingDispatcher(_configuration.Value));
    }

    //这里传递的是路由分发器。

    private static Lazy<HttpServer> CreateDefaultServer()
    {
               return new Lazy<HttpServer>(() => new HttpServer(_configuration.Value, _defaultHandler.Value));
    }

    以上代码实现了HttpServer的初始化工作。同时他重写了 InnerHandler属性。内部的实现机制是:

    将消息处理程序链顺序倒置,依次设置消息处理程序。这样就实现了消息处理程序,先入先出的原理:例如

    config.MessageHandlers.Add(new M2DelegatingHandler());
    config.MessageHandlers.Add(new M1DelegatingHandler());

    则是先调用M2DelegatingHandler,然后在调用M1DelegatingHandler,再次调用HttpRoutingDispatcher,最后将委托分发给HttpControllerDispatcher

    从上面可以看出HttpServer,大部分工作就是协调作用,分发作用。

    有兴趣的朋友可以下载web Api 源码查看。http://aspnetwebstack.codeplex.com/wikipage?title=Contributors.

  • 相关阅读:
    深度学习时代的图模型,清华发文综述图网络
    深入解析CNN pooling 池化层原理及其作用
    如何理解线性回归中的“回归”,回归到哪里?
    线性回归中“回归”的含义
    深度学习基础——Epoch、Iteration、Batchsize
    手动清空微信PC客户端数据
    Mini-batch 和batch的区别
    Python中绘制场景热力图
    HSV颜色识别-HSV基本颜色分量范围
    Android拨打接听电话自动免提
  • 原文地址:https://www.cnblogs.com/DripRoad/p/6091511.html
Copyright © 2011-2022 走看看