溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

golang利用不到20行代碼實(shí)現(xiàn)路由調(diào)度詳解

發(fā)布時(shí)間:2020-09-25 19:44:54 來源:腳本之家 閱讀:122 作者:xialeistudio 欄目:編程語言

前言

本文主要介紹了關(guān)于golang實(shí)現(xiàn)路由調(diào)度的相關(guān)內(nèi)容,分享出來供大家參考學(xué)習(xí),下面話不多說了,來一起看看詳細(xì)的介紹吧

項(xiàng)目地址

github (本地下載)

本項(xiàng)目依賴

使用標(biāo)準(zhǔn)庫實(shí)現(xiàn),無額外依賴

為什么需要路由調(diào)度層

golang http標(biāo)準(zhǔn)庫只能精確匹配請求的URI,然后執(zhí)行handler。現(xiàn)在一般web項(xiàng)目都至少有個(gè)Controller層,以struct實(shí)現(xiàn),根據(jù)不同的請求路徑派發(fā)到不同的方法中去。

路由調(diào)度器定義

由于golang暫時(shí)還不可以動(dòng)態(tài)創(chuàng)建對象(比如java的Class.forName("xxx").newInstance(),xxx是任意存在的class名稱)。所以需要手動(dòng)注冊一下controller關(guān)系。

  1. 定義routes保存controller指針
  2. 解析請求過來的URL查詢參數(shù),暫定a為action名稱,c為controller名稱,本文偷了下懶,沒對PATH_INFO做處理,也沒有對actionName的首字母自動(dòng)大寫,這個(gè)不影響本文要傳達(dá)的核心內(nèi)容,有興趣的讀者可以自行實(shí)現(xiàn)。
  3. 根據(jù)URL中的controllerName找到對應(yīng)的controller
  4. 使用反射將當(dāng)前請求對象的*http.Request和http.ResponseWriter設(shè)置到該Controller
  5. 使用反射以及actionName對應(yīng)該controller的方法

由于golang的繼承不是一般的OOP,所以也沒有父子類這種說法,路由注冊那里只能使用interface{}

代碼實(shí)現(xiàn)

app/app.go

該文件為核心調(diào)度文件

package app

import (
 "net/http"
 "reflect"
 "fmt"
)

type application struct {
 routes map[string]interface{}
}

func New() *application {
 return &application{
  routes: make(map[string]interface{}),
 }
}

func (p *application) ServeHTTP(w http.ResponseWriter, r *http.Request) {
 controllerName := r.URL.Query().Get("c")
 actionName := r.URL.Query().Get("a")
 if controllerName == "" || actionName == "" {
  http.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest)
  return
 }
 route, ok := p.routes[controllerName]
 if !ok {
  http.Error(w, "Controller Not Found", http.StatusNotFound)
  return
 }
 ele := reflect.ValueOf(route).Elem()
 ele.FieldByName("Request").Set(reflect.ValueOf(r))
 ele.FieldByName("Response").Set(reflect.ValueOf(w))
 ele.MethodByName(actionName).Call([]reflect.Value{})
}

func (p *application) printRoutes() {
 for route, controller := range p.routes {
  ele := reflect.ValueOf(controller).Type().String()
  fmt.Printf("%s %s\n", route, ele)
 }
}

func (p *application) Get(route string, controller interface{}) {
 p.routes[route] = controller
}

func (p *application) Run(addr string) error {
 p.printRoutes()
 fmt.Printf("listen on %s\n", addr)
 return http.ListenAndServe(addr, p)
}

app/controller.go

控制器"基類"

package app

import "net/http"

type Controller struct {
 Response http.ResponseWriter
 Request *http.Request
}

controller/site.go

具體業(yè)務(wù)邏輯類

package controllers

import (
 "fmt"
 "app"
)

type SiteController struct {
 app.Controller
}

func (p SiteController) Index() {
 fmt.Fprint(p.Response, p.Request.RequestURI)
}

main.go

入口文件

package main

import (
 _ "github.com/go-sql-driver/mysql"
 "app"
 "controllers"
)

func main() {
 application := app.New()
 application.Get("site", &controllers.SiteController{})
 application.Run(":8080")
}

運(yùn)行項(xiàng)目

啟動(dòng)進(jìn)程

訪問http://localhost:8080?c=site&a=Index會(huì)輸出/?c=site&a=Index

寫在最后

希望這個(gè)小小的項(xiàng)目能啟發(fā)到各位讀者,早日開發(fā)出適合自己的Web框架!

好了,以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI