const ( // MaxZipFile is the maximum size in bytes of a module zip file. The // go command will report an error if either the zip file or its extracted // content is larger than this. MaxZipFile = 500 << 20 // MaxCUEMod is the maximum size in bytes of a cue.mod/module.cue file within a // module zip file. MaxCUEMod = 16 << 20 // MaxLICENSE is the maximum size in bytes of a LICENSE file within a // module zip file. MaxLICENSE = 16 << 20 )
func Create[F any](w io.Writer, m module.Version, files []F, fio FileIO[F]) (err error)
Create builds a zip archive for module m from an abstract list of files and writes it to w.
Note that m.Version is checked for validity but only the major version is used for checking correctness of the cue.mod/module.cue file.
Create verifies the restrictions described in the package documentation and should not produce an archive that Unzip cannot extract. Create does not include files in the output archive if they don't belong in the module zip. In particular, Create will not include files in modules found in subdirectories, most files in vendor directories, or irregular files (such as symbolic links) in the output archive.
Deprecated: this will be removed in a future API iteration that reduces dependence on zip archives.
func CreateFromDir(w io.Writer, m module.Version, dir string) (err error)
CreateFromDir creates a module zip file for module m from the contents of a directory, dir. The zip content is written to w.
CreateFromDir verifies the restrictions described in the package documentation and should not produce an archive that Unzip cannot extract. CreateFromDir does not include files in the output archive if they don't belong in the module zip. In particular, CreateFromDir will not include files in modules found in subdirectories, most files in vendor directories, or irregular files (such as symbolic links) in the output archive. Additionally, unlike Create, CreateFromDir will not include directories named ".bzr", ".git", ".hg", or ".svn".
func Unzip(dir string, m module.Version, zipFile string) (err error)
Unzip extracts the contents of a module zip file to a directory.
Unzip checks all restrictions listed in the package documentation and returns an error if the zip archive is not valid. In some cases, files may be written to dir before an error is returned (for example, if a file's uncompressed size does not match its declared size).
dir may or may not exist: Unzip will create it and any missing parent directories if it doesn't exist. If dir exists, it must be empty.
CheckedFiles reports whether a set of files satisfy the name and size constraints required by module zip files. The constraints are listed in the package documentation.
Functions that produce this report may include slightly different sets of files. See documentation for CheckFiles, CheckDir, and CheckZip for details.
type CheckedFiles struct { // Valid is a list of file paths that should be included in a zip file. Valid []string // Omitted is a list of files that are ignored when creating a module zip // file, along with the reason each file is ignored. Omitted []FileError // Invalid is a list of files that should not be included in a module zip // file, along with the reason each file is invalid. Invalid []FileError // SizeError is non-nil if the total uncompressed size of the valid files // exceeds the module zip size limit or if the zip file itself exceeds the // limit. SizeError error // NoModError is non-nil if there was no module.cue file present. NoModError error }
func CheckDir(dir string) (CheckedFiles, error)
CheckDir reports whether the files in dir satisfy the name and size constraints listed in the package documentation. The returned CheckedFiles record contains lists of valid, invalid, and omitted files. If a directory is omitted (for example, a nested module or vendor directory), it will appear in the omitted list, but its files won't be listed.
CheckDir returns an error if it encounters an I/O error or if the returned CheckedFiles does not describe a valid module zip file (according to CheckedFiles.Err). The returned CheckedFiles is still populated when such an error is returned.
Note that CheckDir will not open any files, so CreateFromDir may still fail when CheckDir is successful due to I/O errors.
Deprecated: this will be removed in a future API iteration that reduces dependence on zip archives.
func CheckFiles[F any](files []F, fio FileIO[F]) (CheckedFiles, error)
CheckFiles reports whether a list of files satisfy the name and size constraints listed in the package documentation. The returned CheckedFiles record contains lists of valid, invalid, and omitted files. Every file in the given list will be included in exactly one of those lists.
CheckFiles returns an error if the returned CheckedFiles does not describe a valid module zip file (according to CheckedFiles.Err). The returned CheckedFiles is still populated when an error is returned.
Note that CheckFiles will not open any files, so Create may still fail when CheckFiles is successful due to I/O errors, reported size differences or an invalid module.cue file.
Deprecated: this will be removed in a future API iteration that reduces dependence on zip archives.
func CheckZip(m module.Version, r io.ReaderAt, zipSize int64) (*zip.Reader, *zip.File, CheckedFiles, error)
CheckZip reports whether the files contained in a zip file satisfy the name and size constraints listed in the package documentation.
CheckZip returns an error if the returned CheckedFiles does not describe a valid module zip file (according to CheckedFiles.Err). The returned CheckedFiles is still populated when an error is returned. CheckZip will also return an error if the module path or version is malformed or if it encounters an error reading the zip file.
It also returns the file entry for the module.cue file.
Note that checkZip does not read individual files, so zip.Unzip may still fail when checkZip is successful due to I/O errors.
func CheckZipFile(m module.Version, zipFile string) (CheckedFiles, error)
CheckZipFile calls CheckZip with the given zip file.
func (cf CheckedFiles) Err() error
Err returns an error if CheckedFiles does not describe a valid module zip file. SizeError is returned if that field is set. A FileErrorList is returned if there are one or more invalid files. Other errors may be returned in the future.
type FileError struct { Path string Err error }
func (e FileError) Error() string
func (e FileError) Unwrap() error
type FileErrorList []FileError
func (el FileErrorList) Error() string
File provides an abstraction for a file in a directory, zip, or anything else that looks like a file - it knows how to open files represented as a particular type without being a file itself.
Deprecated: this will be removed in a future API iteration that reduces dependence on zip archives.
type FileIO[F any] interface { // Path returns a clean slash-separated relative path from the module root // directory to the file. Path(f F) string // Lstat returns information about the file. If the file is a symbolic link, // Lstat returns information about the link itself, not the file it points to. Lstat(f F) (os.FileInfo, error) // Open provides access to the data within a regular file. Open may return // an error if called on a directory or symbolic link. Open(f F) (io.ReadCloser, error) }