package modload
import "cmd/go/internal/modload"
Index ¶
- Variables
- func AllowWriteGoMod()
- func Allowed(m module.Version) bool
- func BinDir() string
- func BuildList() []module.Version
- func DirImportPath(dir string) string
- func DisallowWriteGoMod()
- func Enabled() bool
- func HasModRoot() bool
- func Import(path string) (m module.Version, dir string, err error)
- func ImportFromFiles(gofiles []string)
- func ImportMap(path string) string
- func ImportPaths(patterns []string) []*search.Match
- func ImportPathsQuiet(patterns []string, tags map[string]bool) []*search.Match
- func Init()
- func InitMod()
- func ListModules(args []string, listU, listVersions bool) []*modinfo.ModulePublic
- func LoadALL() []string
- func LoadBuildList() []module.Version
- func LoadVendor() []string
- func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error)
- func MinReqs() mvs.Reqs
- func ModFile() *modfile.File
- func ModInfoProg(info string) []byte
- func ModRoot() string
- func ModuleHasRootPackage(m module.Version) (bool, error)
- func ModuleInfo(path string) *modinfo.ModulePublic
- func ModuleUsedDirectly(path string) bool
- func PackageBuildInfo(path string, deps []string) string
- func PackageDir(path string) string
- func PackageImports(path string) (imports, testImports []string)
- func PackageModule(path string) module.Version
- func PackageModuleInfo(pkgpath string) *modinfo.ModulePublic
- func Query(path, query, current string, allowed func(module.Version) bool) (*modfetch.RevInfo, error)
- func ReloadBuildList() []module.Version
- func Replacement(mod module.Version) module.Version
- func Reqs() mvs.Reqs
- func SetBuildList(list []module.Version)
- func TargetPackages(pattern string) []string
- func Why(path string) string
- func WhyDepth(path string) int
- func WriteGoMod()
- type ImportMissingError
- type NoMatchingVersionError
- type QueryResult
Variables ¶
var ( Target module.Version CmdModInit bool // running 'go mod init' CmdModModule string // module argument for 'go mod init' )
var HelpGoMod = &base.Command{ UsageLine: "go.mod", Short: "the go.mod file", Long: "" /* 3450 byte string literal not displayed */, }
var HelpModules = &base.Command{ UsageLine: "modules", Short: "modules, module versions, and more", Long: "" /* 18593 byte string literal not displayed */, }
var LoadTests bool
LoadTests controls whether the loaders load tests of the root packages.
Functions ¶
func AllowWriteGoMod ¶
func AllowWriteGoMod()
AllowWriteGoMod undoes the effect of DisallowWriteGoMod: future calls to WriteGoMod will update go.mod if needed. Note that any past calls have been discarded, so typically a call to AlowWriteGoMod should be followed by a call to WriteGoMod.
func Allowed ¶
Allowed reports whether module m is allowed (not excluded) by the main module's go.mod.
func BinDir ¶
func BinDir() string
func BuildList ¶
BuildList returns the module build list, typically constructed by a previous call to LoadBuildList or ImportPaths. The caller must not modify the returned list.
func DirImportPath ¶
DirImportPath returns the effective import path for dir, provided it is within the main module, or else returns ".".
func DisallowWriteGoMod ¶
func DisallowWriteGoMod()
DisallowWriteGoMod causes future calls to WriteGoMod to do nothing at all.
func Enabled ¶
func Enabled() bool
Enabled reports whether modules are (or must be) enabled. If modules are enabled but there is no main module, Enabled returns true and then the first use of module information will call die (usually through MustModRoot).
func HasModRoot ¶
func HasModRoot() bool
HasModRoot reports whether a main module is present. HasModRoot may return false even if Enabled returns true: for example, 'get' does not require a main module.
func Import ¶
Import finds the module and directory in the build list containing the package with the given import path. The answer must be unique: Import returns an error if multiple modules attempt to provide the same package. Import can return a module with an empty m.Path, for packages in the standard library. Import can return an empty directory string, for fake packages like "C" and "unsafe".
If the package cannot be found in the current build list, Import returns an ImportMissingError as the error. If Import can identify a module that could be added to supply the package, the ImportMissingError records that module.
func ImportFromFiles ¶
func ImportFromFiles(gofiles []string)
ImportFromFiles adds modules to the build list as needed to satisfy the imports in the named Go source files.
func ImportMap ¶
ImportMap returns the actual package import path for an import path found in source code. If the given import path does not appear in the source code for the packages that have been loaded, ImportMap returns the empty string.
func ImportPaths ¶
ImportPaths returns the set of packages matching the args (patterns), on the target platform. Modules may be added to the build list to satisfy new imports.
func ImportPathsQuiet ¶
ImportPathsQuiet is like ImportPaths but does not warn about patterns with no matches. It also lets the caller specify a set of build tags to match packages. The build tags should typically be imports.Tags() or imports.AnyTags(); a nil map has no special meaning.
func Init ¶
func Init()
Init determines whether module mode is enabled, locates the root of the current module (if any), sets environment variables for Git subprocesses, and configures the cfg, codehost, load, modfetch, and search packages for use with modules.
func InitMod ¶
func InitMod()
InitMod sets Target and, if there is a main module, parses the initial build list from its go.mod file, creating and populating that file if needed.
func ListModules ¶
func ListModules(args []string, listU, listVersions bool) []*modinfo.ModulePublic
func LoadALL ¶
func LoadALL() []string
LoadALL returns the set of all packages in the current module and their dependencies in any other modules, without filtering due to build tags, except "+build ignore". It adds modules to the build list as needed to satisfy new imports. This set is useful for deciding whether a particular import is needed anywhere in a module.
func LoadBuildList ¶
LoadBuildList loads and returns the build list from go.mod. The loading of the build list happens automatically in ImportPaths: LoadBuildList need only be called if ImportPaths is not (typically in commands that care about the module but no particular package).
func LoadVendor ¶
func LoadVendor() []string
LoadVendor is like LoadALL but only follows test dependencies for tests in the main module. Tests in dependency modules are ignored completely. This set is useful for identifying the which packages to include in a vendor directory.
func Lookup ¶
Lookup returns the source directory, import path, and any loading error for the package at path as imported from the package in parentDir. Lookup requires that one of the Load functions in this package has already been called.
func MinReqs ¶
MinReqs returns a Reqs with minimal dependencies of Target, as will be written to go.mod.
func ModFile ¶
ModFile returns the parsed go.mod file.
Note that after calling ImportPaths or LoadBuildList, the require statements in the modfile.File are no longer the source of truth and will be ignored: edits made directly will be lost at the next call to WriteGoMod. To make permanent changes to the require statements in go.mod, edit it before calling ImportPaths or LoadBuildList.
func ModInfoProg ¶
func ModRoot ¶
func ModRoot() string
ModRoot returns the root of the main module. It calls base.Fatalf if there is no main module.
func ModuleHasRootPackage ¶
ModuleHasRootPackage returns whether module m contains a package m.Path.
func ModuleInfo ¶
func ModuleInfo(path string) *modinfo.ModulePublic
func ModuleUsedDirectly ¶
ModuleUsedDirectly reports whether the main module directly imports some package in the module with the given path.
func PackageBuildInfo ¶
func PackageDir ¶
PackageDir returns the directory containing the source code for the package named by the import path.
func PackageImports ¶
PackageImports returns the imports for the package named by the import path. Test imports will be returned as well if tests were loaded for the package (i.e., if "all" was loaded or if LoadTests was set and the path was matched by a command line argument). PackageImports will return nil for unknown package paths.
func PackageModule ¶
PackageModule returns the module providing the package named by the import path.
func PackageModuleInfo ¶
func PackageModuleInfo(pkgpath string) *modinfo.ModulePublic
func Query ¶
func Query(path, query, current string, allowed func(module.Version) bool) (*modfetch.RevInfo, error)
Query looks up a revision of a given module given a version query string. The module must be a complete module path. The version must take one of the following forms:
- the literal string "latest", denoting the latest available, allowed tagged version, with non-prereleases preferred over prereleases. If there are no tagged versions in the repo, latest returns the most recent commit.
- the literal string "patch", denoting the latest available tagged version with the same major and minor number as current. If current is "", "patch" is equivalent to "latest".
- v1, denoting the latest available tagged version v1.x.x.
- v1.2, denoting the latest available tagged version v1.2.x.
- v1.2.3, a semantic version string denoting that tagged version.
- <v1.2.3, <=v1.2.3, >v1.2.3, >=v1.2.3, denoting the version closest to the target and satisfying the given operator, with non-prereleases preferred over prereleases.
- a repository commit identifier or tag, denoting that commit.
current is optional, denoting the current version of the module. If query is "latest" or "patch", current will be returned if it is a newer semantic version or if it is a chronologically later pseudoversion. This prevents accidental downgrades from newer prerelease or development versions.
If the allowed function is non-nil, Query excludes any versions for which allowed returns false.
If path is the path of the main module and the query is "latest", Query returns Target.Version as the version.
func ReloadBuildList ¶
func Replacement ¶
Replacement returns the replacement for mod, if any, from go.mod. If there is no replacement for mod, Replacement returns a module.Version with Path == "".
func Reqs ¶
Reqs returns the current module requirement graph. Future calls to SetBuildList do not affect the operation of the returned Reqs.
func SetBuildList ¶
SetBuildList sets the module build list. The caller is responsible for ensuring that the list is valid. SetBuildList does not retain a reference to the original list.
func TargetPackages ¶
TargetPackages returns the list of packages in the target (top-level) module matching pattern, which may be relative to the working directory, under all build tag settings.
func Why ¶
Why returns the "go mod why" output stanza for the given package, without the leading # comment. The package graph must have been loaded already, usually by LoadALL. If there is no reason for the package to be in the current build, Why returns an empty string.
func WhyDepth ¶
WhyDepth returns the number of steps in the Why listing. If there is no reason for the package to be in the current build, WhyDepth returns 0.
func WriteGoMod ¶
func WriteGoMod()
WriteGoMod writes the current build list back to go.mod.
Types ¶
type ImportMissingError ¶
type ImportMissingError struct { ImportPath string Module module.Version // contains filtered or unexported fields }
func (*ImportMissingError) Error ¶
func (e *ImportMissingError) Error() string
type NoMatchingVersionError ¶
type NoMatchingVersionError struct {
// contains filtered or unexported fields
}
A NoMatchingVersionError indicates that Query found a module at the requested path, but not at any versions satisfying the query string and allow-function.
NOTE: NoMatchingVersionError MUST NOT implement Is(os.ErrNotExist).
If the module came from a proxy, that proxy had to return a successful status code for the versions it knows about, and thus did not have the opportunity to return a non-400 status code to suppress fallback.
func (*NoMatchingVersionError) Error ¶
func (e *NoMatchingVersionError) Error() string
type QueryResult ¶
func QueryPackage ¶
QueryPackage looks up the module(s) containing path at a revision matching query. The results are sorted by module path length in descending order.
If the package is in the main module, QueryPackage considers only the main module and only the version "latest", without checking for other possible modules.
func QueryPattern ¶
QueryPattern looks up the module(s) containing at least one package matching the given pattern at the given version. The results are sorted by module path length in descending order.
QueryPattern queries modules with package paths up to the first "..." in the pattern. For the pattern "example.com/a/b.../c", QueryPattern would consider prefixes of "example.com/a". If multiple modules have versions that match the query and packages that match the pattern, QueryPattern picks the one with the longest module path.
If any matching package is in the main module, QueryPattern considers only the main module and only the version "latest", without checking for other possible modules.
Source Files ¶
build.go help.go import.go init.go list.go load.go query.go search.go
- Version
- v1.13.0-beta.1
- Published
- Jun 26, 2019
- Platform
- linux/amd64
- Imports
- 35 packages
- Last checked
- 1 minute ago –
Tools for package owners.