search
HomeBackend DevelopmentGolangGin request process source code analysis

http service of the standard library

Handler接口就可以注册到标准库的http server中。然后就会启动一个web应用。http请求流程当发生一个http请求的时候,在内部处理的流程是下面这样的:开启一个协程进行请求处理在conn.serve中调用serverHandler.ServeHTTP 函数如果有自己注册的Handle,那么就会调用注册的Handle的ServeHTTP 方法。这里还要注意的2个点如果自己在启动的时候没有注册自己的Handle,那么会采用标准库默认的ServeMux,全局名称为DefaultServeMux。如果请求URI为*并且请求Method为OPTIONS,那么Handle行为会被改成默认的globalOptionsHandler。上述分析的源码为GO 1.18.3。Gin 处理请求的流程前面我们看到只要注册自己的Handle接口到标准库就可以接管请求的处理;那么我们来看一下gin的Handle接口实现。在gin中,handleHTTPRequest就是匹配路径和对应handle 的处理函数。流程大致是这样:获取请求的路径在trees中找到对应的methodTree
  • methodTree中匹配对应路径的处理函数handle
  • Execute the registered function through the Next method
  • Gin's Context source code

    Before executing the registered function, we found that a sync was used in the ServeHTTP method .Pool, it is actually the reuse of gin.Context.

    Gin request process source code analysis

    Let’s take a look at its structure:

    // Context is the most important part of gin. It allows us to pass variables between middleware,
    // manage the flow, validate the JSON of a request and render a JSON response for example.
    type Context struct {
     writermem responseWriter
     Request   *http.Request
     Writer    ResponseWriter
    
     Params   Params
     handlers HandlersChain
     index    int8
     fullPath string
    
     engine       *Engine
     params       *Params
     skippedNodes *[]skippedNode
    
     // This mutex protects Keys map.
     mu sync.RWMutex
      ...
    }

    The official req and resp will be saved in Context in. And gin has added an extension to the official http.ResponseWriter function, that is, it has defined an interface gin.ResponseWriter

    Others Some methods are packages for daily use to facilitate development.

    Context's Bind class method analysis

    Gin request process source code analysis

    In the source code, you can see that a total of Binding supports these ;The implementation is deserialization, the details will not be discussed one by one.

    The key point is that after bind is completed, there is a validate method, which is actually used github.com/go-playground/validator/v10As a library for verifying data.

    Gin request process source code analysis

    And use lazy loading to initialize, which means that if you don’t use it, the object will not be initialized.

    Gin request process source code analysis

    For the development process of validating data, please see the detailed usage of validator[1].

    In the mode.go file of gin, there are controls for some behaviors. For example, DisableBindValidation can turn off the data validation function, which is Call this method before the service starts to shut down.

    Gin request process source code analysis

    ginS folder

    This folder defines a default internal global gin.Engine object.

    Gin request process source code analysis

    And it is also initialized using lazy loading.

    Gin request process source code analysis

    So if you want to use the global gin.Engine, you can use this package, so you don’t have to save your own global gin. Engine object.

The above is the detailed content of Gin request process source code analysis. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:Golang菜鸟. If there is any infringement, please contact admin@php.cn delete
五个精选的Go语言开源项目,带你探索技术世界五个精选的Go语言开源项目,带你探索技术世界Jan 30, 2024 am 09:08 AM

在当今科技快速发展的时代,编程语言也如雨后春笋般涌现出来。其中一门备受瞩目的语言就是Go语言,它以其简洁、高效、并发安全等特性受到了许多开发者的喜爱。Go语言以其强大的生态系统而著称,其中有许多优秀的开源项目。本文将介绍五个精选的Go语言开源项目,带领读者一起探索Go语言开源项目的世界。KubernetesKubernetes是一个开源的容器编排引擎,用于自

Go语言开发必备:5个热门框架推荐Go语言开发必备:5个热门框架推荐Mar 24, 2024 pm 01:15 PM

《Go语言开发必备:5个热门框架推荐》Go语言作为一门快速、高效的编程语言,受到越来越多开发者的青睐。为了提高开发效率,优化代码结构,很多开发者选择使用框架来快速搭建应用。在Go语言的世界中,有许多优秀的框架可供选择。本文将介绍5个热门的Go语言框架,并提供具体的代码示例,帮助读者更好地理解和使用这些框架。1.GinGin是一个轻量级的Web框架,拥有快速

Go怎么结合Gin导出Mysql数据到Excel表格Go怎么结合Gin导出Mysql数据到Excel表格May 26, 2023 pm 09:15 PM

1、实现目标Golang使用excelize导出表格到浏览器下载或者保存到本地。后续导入的话也会写到这里2、使用的库gogetgithub.com/xuri/excelize/v23、项目目录go-excel├─app│├─excelize││└─excelize.go│├─model││└─sysUser.go│└─service│└─userService.go├─common│└─mysql.go├─go.mod├─go.sum├─main.go└─setting.json4、主要代码编写

探索Go语言框架:5个不容错过的选择!探索Go语言框架:5个不容错过的选择!Feb 19, 2024 pm 02:29 PM

Go语言作为一种快速、高效的编程语言,一直受到程序员的青睐。在Go语言的生态系统中,框架扮演着至关重要的角色,帮助开发者更快速地构建应用程序。本文将介绍五个Go语言框架,让你了解其特点和用法。1.Gin框架Gin框架是一个轻量级的Web框架,具有快速、高性能的特点。使用Gin框架可以快速构建RESTfulAPI和Web应用程序。以下是一个简单的示例代码:

Gin框架中的API文档和自动化测试详解Gin框架中的API文档和自动化测试详解Jun 22, 2023 pm 09:43 PM

Gin是一个用Golang编写的Web框架,它具有高效、轻量、灵活等优点,性能相对较高,并且易于使用。在Gin框架开发中,API文档和自动化测试十分重要。本文将深入探讨Gin框架中的API文档和自动化测试。一、API文档API文档用于记录所有API接口的详细信息,方便其他开发人员使用和理解。Gin框架提供了多种API文档工具,包括Swagger、GoSwa

市面上最流行的golang框架有哪些?市面上最流行的golang框架有哪些?Jun 01, 2024 pm 08:05 PM

目前最流行的Go框架有:Gin:轻量级、高性能的Web框架,简洁易用。Echo:快速、高度可定制的Web框架,提供高性能路由和中间件。GorillaMux:快速、灵活的多路复用器,提供高级路由配置选项。Fiber:性能优化的高性能Web框架,处理高并发请求。Martini:面向对象设计的模块化Web框架,提供丰富的功能集。

Gin框架中如何处理静态资源文件Gin框架中如何处理静态资源文件Jun 23, 2023 am 10:54 AM

Gin框架是一种轻量级、快速、灵活的Web框架,它可以让开发人员通过简单且优美的API构建高性能的Web应用程序。在Web应用程序中,静态资源文件(如图片、CSS、JavaScript、字体等)通常是不变的,因此需要能够高效地处理这些资源文件以提高应用程序的性能。在Gin框架中,处理静态资源文件非常简单。本文将介绍在Gin框架中如何处理静态资源文件。一、在G

Gin 请求流程源码分析Gin 请求流程源码分析Aug 04, 2023 pm 05:26 PM

官方的req和resp都会保存在Context 中。并且gin自己增加了对官方http.ResponseWriter功能的扩展,也就是自己定义了一个接口gin.ResponseWriter

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft