iris 路由註冊和上下文context
路由註冊到app.routes
http請求的處理,相較於基本的net/http包,iris框架將http請求(w,*r)及其它上下文,封裝成ctx,逐個呼叫handler閉包進行處理,最後分發函式返回值(反射)以及響應。請求響應相當於流水線上的一個商品,被一組當中的每個handler處理。路由註冊的過程,在完成之前的方法解析,path解析之後,就需要組裝一個handler鏈到路由了。
每一步先由api.relativePath和方法傳入的引數構成fullPath。
第二步然後新增handler,順序為:
- macroHandler,解析路徑中的引數值
- api.middleware,型別為[]handler
- anymiddleware,由app.Handle()方法傳入
- 控制器方法的對應閉包
- api.doneHandlers
- api的全域性handlers
第三步構建Route:
type Route struct {
Name string `json:"name"`
Method string `json:"method"`
methodBckp string
Subdomain string `json:"subdomain"`
tmpl *macro.Template
beginHandlers context.Handlers
Handlers context.Handlers `json:"-"`
MainHandlerName string `json:"mainHandlerName"`
doneHandlers context.Handlers
Path string `json:"path"`
FormattedPath string `json:"formattedPath"`
}
Name格式為defaultName := method + subdomain + 未注值的路徑格式。其中路徑有三個相關變數:Subdomain Path FormattedPath。FormattedPath是將path中的:變數替換為%v。構建路由Router時將路徑解析的macroHandler,新增在最前面。
最後將路由註冊到app.APIBuilder.routes,型別為[]Route。
context資料結構
iris框架定義了handler閉包的操作物件context.context。不是指TCP的context,也不是net/http中的context。資料結構如下:
type context struct {
id uint64
writer ResponseWriter
request *http.Request
currentRouteName string
app Application
handlers Handlers
currentHandlerIndex int
}
前文已經提過,由於反射欄位的不可複用性,造成go的反射效率下降。如果處理每次的請求都要在執行時重新構建context,就會降低效能。iris用c.pool儲存ctx,實現ctx的可複用。c.pool的型別是sync.pool。id確定ctx的唯一性,方便儲存在c.pool集合中。request writer都是net/http標準庫的型別,直接傳遞。
params RequestParams 是一個專用的KV儲存,型別為[string]interface{}。用來儲存path param。values用來儲存其它KV資訊。
app引用自iris例項,可以獲取全部的例項欄位。其中路由資訊單獨拿出:currentRouteName路由名,對應c.routes的鍵。路由handlers,currentHandlerIndex。
ctx是可複用的,需要構建ctx時,不是初始化而是直接從池中拿一個例項。空例項僅配置了app欄位。第一步包裝net/http包的(w,*r)。第二步根據request確定路由資訊,並賦到ctx相應欄位。第三步會執行流水線式地Do(handlers),反射呼叫得到響應資訊,並寫入到ctx中。最後一步將針對特定http請求的資訊清掉,並放回c.pool。
標準庫中的net/http Request
type Request struct {
Method string
URL *url.URL
Header Header
Body io.ReadCloser
GetBody func() (io.ReadCloser, error)
ContentLength int64
TransferEncoding []string
Close bool
Host string
Form url.Values
PostForm url.Values
MultipartForm *multipart.Form
Trailer Header
RemoteAddr string
RequestURI string
TLS *tls.ConnectionState
Cancel <-chan struct{}
Response *Response
ctx context.Context
}
標準庫net/http Response
type Response struct {
Status string
StatusCode int
Proto string
ProtoMajor int
ProtoMinor int
Header Header
Body io.ReadCloser
ContentLength int64
TransferEncoding []string
Close bool
Uncompressed bool
Trailer Header
Request *Request
TLS *tls.ConnectionState
}
相關文章
- vue 動態註冊路由 require.contextVue路由UIContext
- DCI 的 註冊場景ContextContext
- go 上下文:context.ContextGoContext
- 測試 iris 時自定義 context 包Context
- 動態註冊和靜態註冊
- 靜態註冊和動態註冊
- React的上下文-ContextReactContext
- @angular/router 原始碼分析之註冊路由Angular原始碼路由
- 程式中的context(上下文)Context
- Oracle listener靜態註冊和動態註冊Oracle
- 【監聽】動態註冊和靜態註冊
- with open() as 的用法 和 with上下文管理器(Context manager)Context
- 從 PHP Laravel 到 Go Iris--路由篇PHPLaravelGo路由
- ActiveX註冊和反註冊工具――regsvr32VR
- oracle監聽靜態註冊和動態註冊Oracle
- 靜態註冊和動態註冊總結(zt)
- listener靜態註冊和動態註冊總結
- 深入底層之實現 Laravel 路由註冊功能Laravel路由
- odoo context上下文用法總結OdooContext
- Golang context (上下文)是什麼GolangContext
- Oracle監聽的靜態註冊和動態註冊Oracle
- Oracle listener靜態註冊和動態註冊總結Oracle
- CSS 層疊上下文(Stacking Context)CSSContext
- 上下文 Context 與結構體 StructContext結構體Struct
- IDM安裝和註冊
- Python - Context Manager 上下文管理器PythonContext
- CoreData 手動自動 建立context(上下文)Context
- 獲取管理中心上下文ContextContext
- .NET Core中介軟體的註冊和管道的構建(1)---- 註冊和構建原理
- 使用redis完成註冊和登入Redis
- GoWeb開發_Iris框架講解(三):路由功能處理方式GoWeb框架路由
- 【Spring註解開發】元件註冊-使用@Configuration和@Bean給容器中註冊元件Spring元件Bean
- 一條命令計算 Laravel 專案中註冊的路由數量Laravel路由
- 配置路由的預設class + 將axios設定全域性註冊路由iOS
- # 3分鐘短文:Laravel路由註冊,你必須掌握的“動詞”!Laravel路由
- 一起學context(一)——上下文值傳遞Context
- [Dynamic Language] Python Django: 模板引擎(2)上下文ContextPythonDjangoContext
- 鴻蒙HarmonyOS實戰-Stage模型(應用上下文Context)鴻蒙模型Context