With the continuous development of the Go programming language, more and more programmers choose Go as their main programming language. Starting from Go 1.17, a new go/doc
package has been added to the Go language standard library, which makes it easier and more convenient for Golang to obtain comments.
In this article, we will explore how to get comments in Golang source code using the go/doc
package. We will explain it from the following aspects:
-
go/doc
Basic use of packages - How to get comments on methods and functions
- How to get comments on structures and interfaces
- Nesting and filtering of comments
1. go/doc
Basic use of packages
#go/doc package is a package that comes with the Go language standard library and can be used without installation. This package provides a very simple way to parse annotation information from Golang source code.
go/doc package and use
go/doc.
New(pak *ast.Package, importPath string, mode Mode ) function to create an object of type
go/doc.
Package. The first parameter of this function is a pointer of type
*ast.Package, which represents the Go package we want to get the annotation from; the second parameter is a string type, which represents the path to import the package. ;The third parameter is a
go/doc.
Mode type, used to specify the information we want to query.
package main import ( "go/ast" "go/doc" "go/parser" "go/token" ) func main() { // 从本地源码文件解析 Go 代码 fset := token.NewFileSet() astFile, _ := parser.ParseFile(fset, "example.go", nil, parser.ParseComments) packageName := "example" pkg := &ast.Package{ Name: packageName, Files: map[string]*ast.File { "example.go": astFile, }, } // 创建一个 go/doc.Package 对象 targetPkg := doc.New(pkg, packageName, 0) }The above code creates a
go/doc.Package object named
targetPkg, which contains all the information of the
example package. Below we will explain step by step how to use this object to obtain annotation information.
- Get the comments of the function
go/doc.
Package type, there is a function named
The Funcs field contains annotation information for all functions and methods. This field is a map with the function name as the key and the
go/doc.
Func type value as the value.
func Example() { targetPkg := ... // 获取函数的注释 f := targetPkg.Funcs["foo"] fmt.Println(f.Doc) // 输出函数 foo 的注释 }In the above code, we obtain the annotation information of the
foo function through
targetPkg.Funcs["foo"] and print it to the console.
- Get the annotation of the method
Types field in the
go/doc.
Package type. Each
*go/doc.
Type object contains all annotation information related to it, including methods.
Name() method to get the name of the type, and then traverse its method list to get the annotation information of each method.
func Example() { targetPkg := ... // 获取结构体的注释和方法的注释 for _, t := range targetPkg.Types { fmt.Println(t.Doc) // 输出结构体的注释 for _, m := range t.Methods { fmt.Println(m.Doc) // 输出方法的注释 } } }In the above code, we use
targetPkg.Types to obtain the annotations of all structures and methods. Traverse
targetPkg.Types, for each type, we can use
t.Doc to get its annotation information, and traverse
t.Methods to get the annotations of each method information.
- Get the comments of the structure
go/doc.
Package type, there is a file named
Types field, which contains all structure and interface information. This field is a map with type names as keys and values of type
go/doc.
Type as values.
Doc field in the
go/doc.
Type type to obtain the annotation information of the structure.
func Example() { targetPkg := ... // 获取结构体的注释 typ := targetPkg.Types["MyStruct"] fmt.Println(typ.Doc) }In the above code, we obtain the annotation information of the structure named
MyStruct through
targetPkg.Types["MyStruct"] and print it to console.
- Get the comments of the interface
go/doc.Type
type The #Doc` field obtains the annotation information of the interface. <pre class='brush:php;toolbar:false;'>func Example() {
targetPkg := ...
// 获取接口的注释
typ := targetPkg.Types["MyInterface"]
fmt.Println(typ.Doc)
}</pre>
In the above code, we obtain the annotation information of the interface named
through targetPkg.Types["MyInterface"]
and print it to the control tower. 4. Nesting and filtering of comments
In Golang, comments can be nested in other comments, which means that we can find nested comments by traversing the comments. Furthermore, sometimes we are only interested in annotations containing specific text. In this case, we can use regular expressions or other filters to filter comments.
Get nested comments- In the
.Package
type, the comment information is nested in in other notes. We can find nested comments by looping through them. The following example code demonstrates how to traverse annotation information to find nested annotations. <pre class='brush:php;toolbar:false;'>func Example() {
targetPkg := ...
// 遍历注释来查找嵌套的注释
for _, f := range targetPkg.Funcs {
ast.Inspect(f.Decl, func(node ast.Node) bool {
switch n := node.(type) {
case *ast.CommentGroup:
for _, c := range n.List {
if strings.Contains(c.Text, "TODO") {
fmt.Println(c)
}
}
}
return true
})
}
}</pre><p>上述代码中,我们使用 <code>targetPkg.Funcs
获取所有函数和方法的注释。然后,我们使用 go/ast
.Inspect 函数将注释树作为根节点输入,并遍历树中的所有注释。如果找到了包含特定文本的注释,则将其打印到控制台。在上述示例中,我们打印了所有包含 TODO
的注释。
- 使用过滤器来过滤注释
有时候我们只对包含特定文本的注释感兴趣。在这种情况下,我们可以使用正则表达式或其他过滤器来过滤注释。下面示例代码演示了如何使用正则表达式过滤注释。
func Example() { targetPkg := ... // 使用正则表达式过滤注释 pattern, _ := regexp.Compile(`@deprecated`) for _, f := range targetPkg.Funcs { if pattern.MatchString(f.Doc) { fmt.Printf("Function %s is deprecated: %s ", f.Name, f.Doc) } } }
上述代码中,我们创建了一个名为 pattern
的正则表达式。然后,我们遍历 targetPkg.Funcs
,并使用 pattern
过滤所有包含 @deprecated
的注释。对于匹配的注释,我们将其打印到控制台。
总结
在本文中,我们探讨了如何使用 go/doc
包获取 Golang 源代码中的注释。我们介绍了基本的使用方法,并讲解了如何获取函数和方法、结构体和接口的注释。此外,我们还讨论了如何遍历注释以查找嵌套的注释,以及如何使用正则表达式或其他过滤器来过滤注释。希望本文能够帮助你更好地理解 Golang 的注释机制,并在实践中发挥作用。
The above is the detailed content of golang get comments. For more information, please follow other related articles on the PHP Chinese website!

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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
Useful JavaScript development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
