The Open Web Interface for .NET (OWIN) 源碼閱讀

来源:http://www.cnblogs.com/hmxb/archive/2016/03/20/5296981.html
-Advertisement-
Play Games

OWIN源碼,Katana project


katana開源許久,網上仍未搜索到對其源碼的閱讀總結,本人在工作中正好遇到數據處理流程框架設計,想來跟伺服器處理requestresponse差不多,遂起了閱讀katana源碼,並借鑒其設計的想法,磕磕碰碰,困難重重,所幸有一些收穫,與大家交流交流。

katana源碼 https://katanaproject.codeplex.com/

owin官網 http://owin.org/

兩個最重要的數據結構

1 Environment

IDictionary<string, object>

官方解釋:

This data structure is responsible for storing all of the state necessary for processing an HTTP request and response, as well as any relevant server state. An OWIN-compatible Web server is responsible for populating the environment dictionary with data such as the body streams and header collections for an HTTP request and response. It is then the responsibility of the application or framework components to populate or update the dictionary with additional values and write to the response body stream.

Environment是在pipeline中流動的數據,代表著一個具體的requestresponse,後文會介紹在每個pipeline stage中會對這個dictionary中自己關心的數據進行處理,併在進入下一個stage的時候丟棄引用,採用的是原子操作,因而每個Environment只存在一個pipeline stage中。數據舉例:

Key Name

Value Description

"owin.RequestBody"

A Stream with the request body, if any. Stream.Null MAY be used as a placeholder if there is no request body. See Request Body.

"owin.RequestHeaders"

An IDictionary<string, string[]> of request headers. See Headers.

"owin.RequestMethod"

A string containing the HTTP request method of the request (e.g., "GET", "POST").

"owin.RequestPath"

A string containing the request path. The path MUST be relative to the "root" of the application delegate; see Paths.

"owin.RequestPathBase"

A string containing the portion of the request path corresponding to the "root" of the application delegate; see Paths.

"owin.RequestProtocol"

A string containing the protocol name and version (e.g. "HTTP/1.0" or "HTTP/1.1").

"owin.RequestQueryString"

A string containing the query string component of the HTTP request URI, without the leading “?” (e.g., "foo=bar&baz=quux"). The value may be an empty string.

"owin.RequestScheme"

A string containing the URI scheme used for the request (e.g., "http", "https"); see URI Scheme.

 

2 AppFunc

Func<IDictionary<string, object>, Task>;

官方解釋:

The second key element of OWIN is the application delegate. This is a function signature which serves as the primary interface between all components in an OWIN application. The definition for the application delegate is as follows:

The application delegate then is simply an implementation of the Func delegate type where the function accepts the environment dictionary as input and returns a Task. This design has several implications for developers:

  • There are a very small number of type dependencies required in order to write OWIN components. This greatly increases the accessibility of OWIN to developers.
  • The asynchronous design enables the abstraction to be efficient with its handling of computing resources, particularly in more I/O intensive operations.
  • Because the application delegate is an atomic unit of execution and because the environment dictionary is carried as a parameter on the delegate, OWIN components can be easily chained together to create complex HTTP processing pipelines.

這就是middleware,也是每個pipeline stage中具體的處理方法,採用非同步調用的方式,由StartUp類進行註冊,並生成一條鏈,實際上就是壓進一個List中。

 

源碼閱讀,能學到很多東西,肯定有很多理解有偏差的地方,歡迎指正,我將從一個具體的middleware註冊和StartUp的執行切入,大致勾勒一個pipeline的構造和流動過程。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • declare @bussHallId nvarchar(255)= '2,3' declare @strWhere nvarchar(255)= '' declare @strMain nvarchar(500) if(@bussHallId is not null) set @strWhere ...
  • 作用: 在需要引入的頭文件比較多的時候可以使用, 創建成功之後,引入頭文件.之後再使用的時候不需要引入頭文件 步驟: 1.創建一個這樣的文件 2.進行一下設置 路徑的設置 修改為yes,預編譯這個文件 3.報錯時候的解決 原因是上邊的路徑錯誤.重新設置路徑 錯誤提示
  • 本文由ilanniweb提供友情贊助,首發於爛泥行天下 想要獲得更多的文章,可以關註我的微信ilanniweb 在前一篇文章《爛泥:Postfix郵件伺服器搭建之軟體安裝與配置》中,我們介紹了psotfix郵件伺服器搭建所需要的軟體,以及各個軟體的基本配置。 目前已經達到了通過系統用戶可以登錄到po...
  • 1.1二進位包安裝MySQL資料庫 1.1.1 安裝前準備(規範) 1.1.2 初始化資料庫 1.1.3 授權Mysql管理資料庫文件 1.1.4 生成Mysql配置文件 1.1.5 配置啟動Mysql 1.1.6 啟動Mysql 1.1.7 配置環境變數 方法1: 方法2: 1.1.8 設置及更改
  • 推薦一本不錯的書籍,《電子設計從零開始》(楊欣)。通讀此書,通俗易懂,還結合multisim進行模擬驗證。對本科階段的模電書籍是一種顛覆。 以下截取自裡面部分章節,如何計算共射極放大電路的各個參數。很實用。 1.Vcq為集電極的靜態工作電壓,Vcq的選取為了避免出現飽和和截止失真,使Vcq ≈ 1/
  • 系統來自:系統媽:http://www.xitongma.com 新蘿蔔家園GHOST win7系統32位極速裝機特別版 V2016年3月 系統概述 新蘿蔔家園ghost win7系統32位極速裝機特別版加快“網上鄰居”共用速度;取消不需要的網路服務組件,系統支持Windows安裝,可以在Windo
  • 文件和目錄 命令 選項 註解 示例 文件的基本操作 ls [選項][文件] 顯示所有文件和目錄 ls -al -a(A) 顯示所有文件和目錄,包括隱藏文件和目錄(顯示所有文件和目錄,包括隱藏文件和目錄,但不現實“.”和“..”目錄) 查看當前目錄下的所有文件的詳細信息=ll -l 顯示文件和目錄的完
  • 學習linux時候的基礎,第一部分,常用命令
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...