golist

package
v0.6.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 5, 2022 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Context

type Context interface {
	GetPackagesRaw(context.Context, string) ([]byte, error)
	GetPackages(context.Context, string) ([]Package, error)
	GetModulesRaw(context.Context, string, bool) ([]byte, error)
	GetModules(context.Context, string, bool) ([]Module, error)
}

func New

func New(opts ...OptEnv) Context

type Module

type Module struct {
	Path      string       `json:",omitempty"` // module path
	Version   string       `json:",omitempty"` // module version
	Versions  []string     `json:",omitempty"` // available module versions (with -versions)
	Replace   *Module      `json:",omitempty"` // replaced by this module
	Time      *time.Time   `json:",omitempty"` // time version was created
	Update    *Module      `json:",omitempty"` // available update, if any (with -u)
	Main      bool         `json:",omitempty"` // is this the main module?
	Indirect  bool         `json:",omitempty"` // is this module only an indirect dependency of main module?
	Dir       string       `json:",omitempty"` // directory holding files for this module, if any
	GoMod     string       `json:",omitempty"` // path to go.mod file used when loading this module, if any
	GoVersion string       `json:",omitempty"` // go version used in module
	Error     *ModuleError `json:",omitempty"` // error loading module
}

func (*Module) GetError

func (m *Module) GetError() error

func (*Module) Name

func (m *Module) Name() string

func (*Module) String

func (m *Module) String() string

type ModuleError

type ModuleError struct {
	Err string // the error itself
}

func (*ModuleError) Error

func (e *ModuleError) Error() string

type OptEnv

type OptEnv func(*config)

OptFunc is self-referential function for functional options pattern

func EnableHideWindow

func EnableHideWindow() OptEnv

WithCGOENABLED returns setter function as type OptEnv

func WithCGOENABLED

func WithCGOENABLED(s string) OptEnv

WithCGOENABLED returns setter function as type OptEnv

func WithErrorWriter

func WithErrorWriter(w io.Writer) OptEnv

WithCGOENABLED returns setter function as type OptEnv

func WithGOARCH

func WithGOARCH(s string) OptEnv

WithGOARCH returns setter function as type OptEnv

func WithGOOS

func WithGOOS(s string) OptEnv

WithGOOS returns setter function as type OptEnv

type Package

type Package struct {
	Dir           string   `json:",omitempty"` // directory containing package sources
	ImportPath    string   `json:",omitempty"` // import path of package in dir
	ImportComment string   `json:",omitempty"` // path in import comment on package statement
	Name          string   `json:",omitempty"` // package name
	Doc           string   `json:",omitempty"` // package documentation string
	Target        string   `json:",omitempty"` // install path
	Shlib         string   `json:",omitempty"` // the shared library that contains this package (only set when -linkshared)
	Goroot        bool     `json:",omitempty"` // is this package in the Go root?
	Standard      bool     `json:",omitempty"` // is this package part of the standard Go library?
	Stale         bool     `json:",omitempty"` // would 'go install' do anything for this package?
	StaleReason   string   `json:",omitempty"` // explanation for Stale==true
	Root          string   `json:",omitempty"` // Go root or Go path dir containing this package
	ConflictDir   string   `json:",omitempty"` // this directory shadows Dir in $GOPATH
	BinaryOnly    bool     `json:",omitempty"` // binary-only package (no longer supported)
	ForTest       string   `json:",omitempty"` // package is only for use in named test
	Export        string   `json:",omitempty"` // file containing export data (when using -export)
	Module        *Module  `json:",omitempty"` // info about package's containing module, if any (can be nil)
	Match         []string `json:",omitempty"` // command-line patterns matching this package
	DepOnly       bool     `json:",omitempty"` // package is only a dependency, not explicitly listed

	// Source files
	GoFiles         []string `json:",omitempty"` // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
	CgoFiles        []string `json:",omitempty"` // .go source files that import "C"
	CompiledGoFiles []string `json:",omitempty"` // .go files presented to compiler (when using -compiled)
	IgnoredGoFiles  []string `json:",omitempty"` // .go source files ignored due to build constraints
	CFiles          []string `json:",omitempty"` // .c source files
	CXXFiles        []string `json:",omitempty"` // .cc, .cxx and .cpp source files
	MFiles          []string `json:",omitempty"` // .m source files
	HFiles          []string `json:",omitempty"` // .h, .hh, .hpp and .hxx source files
	FFiles          []string `json:",omitempty"` // .f, .F, .for and .f90 Fortran source files
	SFiles          []string `json:",omitempty"` // .s source files
	SwigFiles       []string `json:",omitempty"` // .swig files
	SwigCXXFiles    []string `json:",omitempty"` // .swigcxx files
	SysoFiles       []string `json:",omitempty"` // .syso object files to add to archive
	TestGoFiles     []string `json:",omitempty"` // _test.go files in package
	XTestGoFiles    []string `json:",omitempty"` // _test.go files outside package

	// Cgo directives
	CgoCFLAGS    []string `json:",omitempty"` // cgo: flags for C compiler
	CgoCPPFLAGS  []string `json:",omitempty"` // cgo: flags for C preprocessor
	CgoCXXFLAGS  []string `json:",omitempty"` // cgo: flags for C++ compiler
	CgoFFLAGS    []string `json:",omitempty"` // cgo: flags for Fortran compiler
	CgoLDFLAGS   []string `json:",omitempty"` // cgo: flags for linker
	CgoPkgConfig []string `json:",omitempty"` // cgo: pkg-config names

	// Dependency information
	Imports      []string          `json:",omitempty"` // import paths used by this package
	ImportMap    map[string]string `json:",omitempty"` // map from source import to ImportPath (identity entries omitted)
	Deps         []string          `json:",omitempty"` // all (recursively) imported dependencies
	TestImports  []string          `json:",omitempty"` // imports from TestGoFiles
	XTestImports []string          `json:",omitempty"` // imports from XTestGoFiles

	// Error information
	Incomplete bool            `json:",omitempty"` // this package or a dependency has an error
	Error      *PackageError   `json:",omitempty"` // error loading package
	DepsErrors []*PackageError `json:",omitempty"` // errors loading dependencies
}

func (*Package) GetError

func (p *Package) GetError() error

type PackageError

type PackageError struct {
	ImportStack []string // shortest path from package named on command line to this one
	Pos         string   // position of error (if present, file:line:col)
	Err         string   // the error itself
}

func (*PackageError) Error

func (e *PackageError) Error() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL