Documentation ¶
Overview ¶
Package modfile implements a parser and formatter for go.mod files.
The go.mod syntax is described in https://pkg.go.dev/cmd/go/#hdr-The_go_mod_file.
The Parse and ParseLax functions both parse a go.mod file and return an abstract syntax tree. ParseLax ignores unknown statements and may be used to parse go.mod files that may have been developed with newer versions of Go.
The File struct returned by Parse and ParseLax represent an abstract go.mod file. File has several methods like File.AddNewRequire and File.DropReplace that can be used to programmatically edit a file.
The Format function formats a File back to a byte slice which can be written to a file.
Index ¶
- Variables
- func AutoQuote(s string) string
- func Format(f *FileSyntax) []byte
- func IsDirectoryPath(ns string) bool
- func ModulePath(mod []byte) string
- func MustQuote(s string) bool
- type Comment
- type CommentBlock
- type Comments
- type Error
- type ErrorList
- type Exclude
- type Expr
- type File
- func (f *File) AddComment(text string)
- func (f *File) AddExclude(path, vers string) error
- func (f *File) AddGoStmt(version string) error
- func (f *File) AddGodebug(key, value string) error
- func (f *File) AddModuleStmt(path string) error
- func (f *File) AddNewRequire(path, vers string, indirect bool)
- func (f *File) AddReplace(oldPath, oldVers, newPath, newVers string) error
- func (f *File) AddRequire(path, vers string) error
- func (f *File) AddRetract(vi VersionInterval, rationale string) error
- func (f *File) AddTool(path string) error
- func (f *File) AddToolchainStmt(name string) error
- func (f *File) Cleanup()
- func (f *File) DropExclude(path, vers string) error
- func (f *File) DropGoStmt()
- func (f *File) DropGodebug(key string) error
- func (f *File) DropReplace(oldPath, oldVers string) error
- func (f *File) DropRequire(path string) error
- func (f *File) DropRetract(vi VersionInterval) error
- func (f *File) DropTool(path string) error
- func (f *File) DropToolchainStmt()
- func (f *File) Format() ([]byte, error)
- func (f *File) SetRequire(req []*Require)
- func (f *File) SetRequireSeparateIndirect(req []*Require)
- func (f *File) SortBlocks()
- type FileSyntax
- type Go
- type Godebug
- type LParen
- type Line
- type LineBlock
- type Module
- type Position
- type RParen
- type Replace
- type Require
- type Retract
- type Tool
- type Toolchain
- type Use
- type VersionFixer
- type VersionInterval
- type WorkFile
- func (f *WorkFile) AddGoStmt(version string) error
- func (f *WorkFile) AddGodebug(key, value string) error
- func (f *WorkFile) AddNewUse(diskPath, modulePath string)
- func (f *WorkFile) AddReplace(oldPath, oldVers, newPath, newVers string) error
- func (f *WorkFile) AddToolchainStmt(name string) error
- func (f *WorkFile) AddUse(diskPath, modulePath string) error
- func (f *WorkFile) Cleanup()
- func (f *WorkFile) DropGoStmt()
- func (f *WorkFile) DropGodebug(key string) error
- func (f *WorkFile) DropReplace(oldPath, oldVers string) error
- func (f *WorkFile) DropToolchainStmt()
- func (f *WorkFile) DropUse(path string) error
- func (f *WorkFile) SetUse(dirs []*Use)
- func (f *WorkFile) SortBlocks()
Constants ¶
This section is empty.
Variables ¶
var GoVersionRE = lazyregexp.New(`^([1-9][0-9]*)\.(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))?([a-z]+[0-9]+)?$`)
var ToolchainRE = lazyregexp.New(`^default$|^go1($|\.)`)
Toolchains must be named beginning with `go1`, like "go1.20.3" or "go1.20.3-gccgo". As a special case, "default" is also permitted. Note that this regexp is a much looser condition than go/version.IsValid, for forward compatibility. (This code has to be work to identify new toolchains even if we tweak the syntax in the future.)
Functions ¶
func AutoQuote ¶
AutoQuote returns s or, if quoting is required for s to appear in a go.mod, the quotation of s.
func Format ¶
func Format(f *FileSyntax) []byte
Format returns a go.mod file as a byte slice, formatted in standard style.
func IsDirectoryPath ¶
IsDirectoryPath reports whether the given path should be interpreted as a directory path. Just like on the go command line, relative paths starting with a '.' or '..' path component and rooted paths are directory paths; the rest are module paths.
func ModulePath ¶
ModulePath returns the module path from the gomod file text. If it cannot find a module path, it returns an empty string. It is tolerant of unrelated problems in the go.mod file.
Types ¶
type Comment ¶
type Comment struct { Start Position Token string // without trailing newline Suffix bool // an end of line (not whole line) comment }
A Comment represents a single // comment.
type CommentBlock ¶
A CommentBlock represents a top-level block of comments separate from any rule.
func (*CommentBlock) Span ¶
func (x *CommentBlock) Span() (start, end Position)
type Comments ¶
type Comments struct { Before []Comment // whole-line comments before this expression Suffix []Comment // end-of-line comments after this expression // For top-level expressions only, After lists whole-line // comments following the expression. After []Comment }
Comments collects the comments associated with an expression.
type Expr ¶
type Expr interface { // Span returns the start and end position of the expression, // excluding leading or trailing comments. Span() (start, end Position) // Comment returns the comments attached to the expression. // This method would normally be named 'Comments' but that // would interfere with embedding a type of the same name. Comment() *Comments }
An Expr represents an input element.
type File ¶
type File struct { Module *Module Go *Go Toolchain *Toolchain Godebug []*Godebug Require []*Require Exclude []*Exclude Replace []*Replace Retract []*Retract Tool []*Tool Syntax *FileSyntax }
A File is the parsed, interpreted form of a go.mod file.
func Parse ¶
func Parse(file string, data []byte, fix VersionFixer) (*File, error)
Parse parses and returns a go.mod file.
file is the name of the file, used in positions and errors.
data is the content of the file.
fix is an optional function that canonicalizes module versions. If fix is nil, all module versions must be canonical (module.CanonicalVersion must return the same string).
func ParseLax ¶
func ParseLax(file string, data []byte, fix VersionFixer) (*File, error)
ParseLax is like Parse but ignores unknown statements. It is used when parsing go.mod files other than the main module, under the theory that most statement types we add in the future will only apply in the main module, like exclude and replace, and so we get better gradual deployments if old go commands simply ignore those statements when found in go.mod files in dependencies.
func (*File) AddComment ¶
func (*File) AddExclude ¶
AddExclude adds a exclude statement to the mod file. Errors if the provided version is not a canonical version string
func (*File) AddGodebug ¶ added in v0.18.0
AddGodebug sets the first godebug line for key to value, preserving any existing comments for that line and removing all other godebug lines for key.
If no line currently exists for key, AddGodebug adds a new line at the end of the last godebug block.
func (*File) AddModuleStmt ¶
func (*File) AddNewRequire ¶
AddNewRequire adds a new require line for path at version vers at the end of the last require block, regardless of any existing require lines for path.
func (*File) AddReplace ¶
func (*File) AddRequire ¶
AddRequire sets the first require line for path to version vers, preserving any existing comments for that line and removing all other lines for path.
If no line currently exists for path, AddRequire adds a new line at the end of the last require block.
func (*File) AddRetract ¶ added in v0.4.0
func (f *File) AddRetract(vi VersionInterval, rationale string) error
AddRetract adds a retract statement to the mod file. Errors if the provided version interval does not consist of canonical version strings
func (*File) AddTool ¶ added in v0.20.0
AddTool adds a new tool directive with the given path. It does nothing if the tool line already exists.
func (*File) AddToolchainStmt ¶ added in v0.11.0
func (*File) Cleanup ¶
func (f *File) Cleanup()
Cleanup cleans up the file f after any edit operations. To avoid quadratic behavior, modifications like File.DropRequire clear the entry but do not remove it from the slice. Cleanup cleans out all the cleared entries.
func (*File) DropExclude ¶
func (*File) DropGoStmt ¶ added in v0.11.0
func (f *File) DropGoStmt()
DropGoStmt deletes the go statement from the file.
func (*File) DropGodebug ¶ added in v0.18.0
func (*File) DropReplace ¶
func (*File) DropRequire ¶
func (*File) DropRetract ¶ added in v0.4.0
func (f *File) DropRetract(vi VersionInterval) error
func (*File) DropTool ¶ added in v0.20.0
RemoveTool removes a tool directive with the given path. It does nothing if no such tool directive exists.
func (*File) DropToolchainStmt ¶ added in v0.11.0
func (f *File) DropToolchainStmt()
DropToolchainStmt deletes the toolchain statement from the file.
func (*File) SetRequire ¶
SetRequire updates the requirements of f to contain exactly req, preserving the existing block structure and line comment contents (except for 'indirect' markings) for the first requirement on each named module path.
The Syntax field is ignored for the requirements in req.
Any requirements not already present in the file are added to the block containing the last require line.
The requirements in req must specify at most one distinct version for each module path.
If any existing requirements may be removed, the caller should call File.Cleanup after all edits are complete.
func (*File) SetRequireSeparateIndirect ¶ added in v0.5.0
SetRequireSeparateIndirect updates the requirements of f to contain the given requirements. Comment contents (except for 'indirect' markings) are retained from the first existing requirement for each module path. Like SetRequire, SetRequireSeparateIndirect adds requirements for new paths in req, updates the version and "// indirect" comment on existing requirements, and deletes requirements on paths not in req. Existing duplicate requirements are deleted.
As its name suggests, SetRequireSeparateIndirect puts direct and indirect requirements into two separate blocks, one containing only direct requirements, and the other containing only indirect requirements. SetRequireSeparateIndirect may move requirements between these two blocks when their indirect markings change. However, SetRequireSeparateIndirect won't move requirements from other blocks, especially blocks with comments.
If the file initially has one uncommented block of requirements, SetRequireSeparateIndirect will split it into a direct-only and indirect-only block. This aids in the transition to separate blocks.
func (*File) SortBlocks ¶
func (f *File) SortBlocks()
type FileSyntax ¶
A FileSyntax represents an entire go.mod file.
func (*FileSyntax) Cleanup ¶
func (x *FileSyntax) Cleanup()
Cleanup cleans up the file syntax x after any edit operations. To avoid quadratic behavior, (*Line).markRemoved marks the line as dead by setting line.Token = nil but does not remove it from the slice in which it appears. After edits have all been indicated, calling Cleanup cleans out the dead lines.
func (*FileSyntax) Span ¶
func (x *FileSyntax) Span() (start, end Position)
type LParen ¶
An LParen represents the beginning of a parenthesized line block. It is a place to store suffix comments.
type LineBlock ¶
type LineBlock struct { Comments Start Position LParen LParen Token []string Line []*Line RParen RParen }
A LineBlock is a factored block of lines, like
require ( "x" "y" )
type Position ¶
type Position struct { Line int // line in input (starting at 1) LineRune int // rune in line (starting at 1) Byte int // byte in input (starting at 0) }
A Position describes an arbitrary source position in a file, including the file, line, column, and byte offset.
type RParen ¶
An RParen represents the end of a parenthesized line block. It is a place to store whole-line (before) comments.
type Retract ¶ added in v0.4.0
type Retract struct { VersionInterval Rationale string Syntax *Line }
A Retract is a single retract statement.
type Use ¶ added in v0.6.0
type Use struct { Path string // Use path of module. ModulePath string // Module path in the comment. Syntax *Line }
A Use is a single directory statement.
type VersionFixer ¶
type VersionInterval ¶ added in v0.4.0
type VersionInterval struct {
Low, High string
}
A VersionInterval represents a range of versions with upper and lower bounds. Intervals are closed: both bounds are included. When Low is equal to High, the interval may refer to a single version ('v1.2.3') or an interval ('[v1.2.3, v1.2.3]'); both have the same representation.
type WorkFile ¶ added in v0.6.0
type WorkFile struct { Go *Go Toolchain *Toolchain Godebug []*Godebug Use []*Use Replace []*Replace Syntax *FileSyntax }
A WorkFile is the parsed, interpreted form of a go.work file.
func ParseWork ¶ added in v0.6.0
func ParseWork(file string, data []byte, fix VersionFixer) (*WorkFile, error)
ParseWork parses and returns a go.work file.
file is the name of the file, used in positions and errors.
data is the content of the file.
fix is an optional function that canonicalizes module versions. If fix is nil, all module versions must be canonical (module.CanonicalVersion must return the same string).
func (*WorkFile) AddGodebug ¶ added in v0.18.0
AddGodebug sets the first godebug line for key to value, preserving any existing comments for that line and removing all other godebug lines for key.
If no line currently exists for key, AddGodebug adds a new line at the end of the last godebug block.
func (*WorkFile) AddReplace ¶ added in v0.6.0
func (*WorkFile) AddToolchainStmt ¶ added in v0.11.0
func (*WorkFile) Cleanup ¶ added in v0.6.0
func (f *WorkFile) Cleanup()
Cleanup cleans up the file f after any edit operations. To avoid quadratic behavior, modifications like [WorkFile.DropRequire] clear the entry but do not remove it from the slice. Cleanup cleans out all the cleared entries.
func (*WorkFile) DropGoStmt ¶ added in v0.11.0
func (f *WorkFile) DropGoStmt()
DropGoStmt deletes the go statement from the file.
func (*WorkFile) DropGodebug ¶ added in v0.18.0
func (*WorkFile) DropReplace ¶ added in v0.6.0
func (*WorkFile) DropToolchainStmt ¶ added in v0.11.0
func (f *WorkFile) DropToolchainStmt()
DropToolchainStmt deletes the toolchain statement from the file.
func (*WorkFile) SortBlocks ¶ added in v0.6.0
func (f *WorkFile) SortBlocks()