Documentation ¶
Overview ¶
Package hugofs provides the file systems used by Hugo.
Package hugofs provides the file systems used by Hugo.
Index ¶
- Variables
- func AddFileInfoToError(err error, fi FileMetaInfo, fs afero.Fs) error
- func Glob(fs afero.Fs, pattern string, handle func(fi FileMetaInfo) (bool, error)) error
- func IsOsFs(fs afero.Fs) bool
- func MakeReadableAndRemoveAllModulePkgDir(fs afero.Fs, dir string) (int, error)
- func NewBaseFileDecorator(fs afero.Fs, callbacks ...func(fi FileMetaInfo)) afero.Fs
- func NewBasePathFs(source afero.Fs, path string) afero.Fs
- func NewComponentFs(opts ComponentFsOptions) *componentFs
- func NewCreateCountingFs(fs afero.Fs) afero.Fs
- func NewHasBytesReceiver(delegate afero.Fs, shouldCheck func(name string) bool, ...) afero.Fs
- func NewHashingFs(delegate afero.Fs, hashReceiver FileHashReceiver) afero.Fs
- func NewReadOnlyFs(source afero.Fs) afero.Fs
- func NewStacktracerFs(fs afero.Fs, pattern string) afero.Fs
- func WalkFilesystems(fs afero.Fs, fn WalkFn) bool
- func WrapFilesystem(container, content afero.Fs) afero.Fs
- type ComponentFsOptions
- type ComponentPath
- type DirOnlyOps
- type DuplicatesReporter
- type FileHashReceiver
- type FileInfoOptionals
- type FileInfoProvider
- type FileMeta
- type FileMetaInfo
- type FileNameIsDir
- type FilesystemUnwrapper
- type FilesystemsUnwrapper
- type Fs
- type MetaProvider
- type OpenFilesFs
- func (fs *OpenFilesFs) Create(name string) (afero.File, error)
- func (fs *OpenFilesFs) Open(name string) (afero.File, error)
- func (fs *OpenFilesFs) OpenFile(name string, flag int, perm os.FileMode) (afero.File, error)
- func (fs *OpenFilesFs) OpenFiles() map[string]int
- func (fs *OpenFilesFs) UnwrapFilesystem() afero.Fs
- type Reseter
- type ReverseLookupProvder
- type RootMapping
- type RootMappingFs
- func (fs RootMappingFs) Filter(f func(m RootMapping) bool) *RootMappingFs
- func (fs *RootMappingFs) Key() string
- func (fs *RootMappingFs) Mounts(base string) ([]FileMetaInfo, error)
- func (fs *RootMappingFs) Open(name string) (afero.File, error)
- func (fs *RootMappingFs) ReverseLookup(filename string) ([]ComponentPath, error)
- func (fs *RootMappingFs) ReverseLookupComponent(component, filename string) ([]ComponentPath, error)
- func (fs *RootMappingFs) Stat(name string) (os.FileInfo, error)
- func (fs *RootMappingFs) UnwrapFilesystem() afero.Fs
- type WalkFn
- type WalkFunc
- type WalkHook
- type Walkway
- type WalkwayConfig
Constants ¶
This section is empty.
Variables ¶
var AppendDirsMerger overlayfs.DirsMerger = func(lofi, bofi []fs.DirEntry) []fs.DirEntry { for _, fi1 := range bofi { var found bool if fi1.IsDir() { for _, fi2 := range lofi { if fi2.IsDir() && fi2.Name() == fi1.Name() { found = true break } } } if !found { lofi = append(lofi, fi1) } } return lofi }
AppendDirsMerger merges two directories keeping all regular files with the first slice as the base. Duplicate directories in the second slice will be ignored. This strategy is used for the i18n and data fs where we need all entries.
var LanguageDirsMerger overlayfs.DirsMerger = func(lofi, bofi []fs.DirEntry) []fs.DirEntry { for _, fi1 := range bofi { fim1 := fi1.(FileMetaInfo) var found bool for _, fi2 := range lofi { fim2 := fi2.(FileMetaInfo) if fi1.Name() == fi2.Name() && fim1.Meta().Lang == fim2.Meta().Lang { found = true break } } if !found { lofi = append(lofi, fi1) } } return lofi }
LanguageDirsMerger implements the overlayfs.DirsMerger func, which is used to merge two directories.
var ( // NoOpFs provides a no-op filesystem that implements the afero.Fs // interface. NoOpFs = &noOpFs{} )
var Os = &afero.OsFs{}
Os points to the (real) Os filesystem.
Functions ¶
func AddFileInfoToError ¶ added in v0.123.0
func AddFileInfoToError(err error, fi FileMetaInfo, fs afero.Fs) error
AddFileInfoToError adds file info to the given error.
func Glob ¶ added in v0.57.0
Glob walks the fs and passes all matches to the handle func. The handle func can return true to signal a stop.
func IsOsFs ¶ added in v0.97.0
IsOsFs returns whether fs is an OsFs or if it fs wraps an OsFs. TODO(bep) make this more robust.
func MakeReadableAndRemoveAllModulePkgDir ¶ added in v0.65.0
MakeReadableAndRemoveAllModulePkgDir makes any subdir in dir readable and then removes the root. TODO(bep) move this to a more suitable place.
func NewBaseFileDecorator ¶ added in v0.56.0
func NewBaseFileDecorator(fs afero.Fs, callbacks ...func(fi FileMetaInfo)) afero.Fs
NewBaseFileDecorator decorates the given Fs to provide the real filename and an Opener func.
func NewBasePathFs ¶ added in v0.123.0
NewBasePathFs creates a new BasePathFs.
func NewComponentFs ¶ added in v0.123.0
func NewComponentFs(opts ComponentFsOptions) *componentFs
NewComponentFs creates a new component filesystem.
func NewHasBytesReceiver ¶ added in v0.103.0
func NewHashingFs ¶ added in v0.45.1
func NewHashingFs(delegate afero.Fs, hashReceiver FileHashReceiver) afero.Fs
NewHashingFs creates a new filesystem that will receive MD5 checksums of any written file content on Close. Note that this is probably not a good idea for "full build" situations, but when doing fast render mode, the amount of files published is low, and it would be really nice to know exactly which of these files where actually changed. Note that this will only work for file operations that use the io.Writer to write content to file, but that is fine for the "publish content" use case.
func NewReadOnlyFs ¶ added in v0.123.0
NewReadOnlyFs creates a new ReadOnlyFs.
func NewStacktracerFs ¶ added in v0.55.0
NewStacktracerFs wraps the given fs printing stack traces for file creates matching the given regexp pattern.
func WalkFilesystems ¶ added in v0.97.0
WalkFilesystems walks fs recursively and calls fn. If fn returns true, walking is stopped.
Types ¶
type ComponentFsOptions ¶ added in v0.123.0
type ComponentPath ¶ added in v0.123.0
func (ComponentPath) ComponentPathJoined ¶ added in v0.123.0
func (c ComponentPath) ComponentPathJoined() string
type DirOnlyOps ¶ added in v0.123.0
type DirOnlyOps interface { io.Closer Name() string Readdir(count int) ([]os.FileInfo, error) Readdirnames(n int) ([]string, error) Stat() (os.FileInfo, error) }
DirOnlyOps is a subset of the afero.File interface covering the methods needed for directory operations.
type DuplicatesReporter ¶ added in v0.55.0
type DuplicatesReporter interface {
ReportDuplicates() string
}
DuplicatesReporter reports about duplicate filenames.
type FileHashReceiver ¶ added in v0.45.1
FileHashReceiver will receive the filename an the content's MD5 sum on file close.
type FileInfoOptionals ¶ added in v0.123.0
type FileInfoProvider ¶ added in v0.123.0
type FileInfoProvider interface {
FileInfo() FileMetaInfo
}
type FileMeta ¶ added in v0.56.0
type FileMeta struct { PathInfo *paths.Path Name string Filename string BaseDir string SourceRoot string Module string ModuleOrdinal int Component string Weight int IsProject bool Watch bool // The lang associated with this file. This may be // either the language set in the filename or // the language defined in the source mount configuration. Lang string // The language index for the above lang. This is the index // in the sorted list of languages/sites. LangIndex int OpenFunc func() (afero.File, error) JoinStatFunc func(name string) (FileMetaInfo, error) // Include only files or directories that match. InclusionFilter *glob.FilenameFilter // Rename the name part of the file (not the directory). // Returns the new name and a boolean indicating if the file // should be included. Rename func(name string, toFrom bool) (string, bool) }
func NewFileMeta ¶ added in v0.86.0
func NewFileMeta() *FileMeta
type FileMetaInfo ¶ added in v0.56.0
type FileMetaInfo interface { fs.DirEntry MetaProvider // This is a real hybrid as it also implements the fs.FileInfo interface. FileInfoOptionals }
func DirEntriesToFileMetaInfos ¶ added in v0.123.0
func DirEntriesToFileMetaInfos(fis []fs.DirEntry) []FileMetaInfo
func NewFileMetaInfo ¶ added in v0.56.0
func NewFileMetaInfo(fi FileNameIsDir, m *FileMeta) FileMetaInfo
type FileNameIsDir ¶ added in v0.123.0
type FilesystemUnwrapper ¶ added in v0.97.0
FilesystemUnwrapper returns the underlying filesystem.
type FilesystemsUnwrapper ¶ added in v0.97.0
FilesystemsUnwrapper returns the underlying filesystems.
type Fs ¶ added in v0.20.1
type Fs struct { // Source is Hugo's source file system. // Note that this will always be a "plain" Afero filesystem: // * afero.OsFs when running in production // * afero.MemMapFs for many of the tests. Source afero.Fs // PublishDir is where Hugo publishes its rendered content. // It's mounted inside publishDir (default /public). PublishDir afero.Fs // PublishDirStatic is the file system used for static files. PublishDirStatic afero.Fs // PublishDirServer is the file system used for serving the public directory with Hugo's development server. // This will typically be the same as PublishDir, but not if --renderStaticToDisk is set. PublishDirServer afero.Fs // Os is an OS file system. // NOTE: Field is currently unused. Os afero.Fs // WorkingDirReadOnly is a read-only file system // restricted to the project working dir. WorkingDirReadOnly afero.Fs // WorkingDirWritable is a writable file system // restricted to the project working dir. WorkingDirWritable afero.Fs }
Fs holds the core filesystems used by Hugo.
func NewDefault ¶ added in v0.20.1
type MetaProvider ¶ added in v0.123.0
type MetaProvider interface {
Meta() *FileMeta
}
type OpenFilesFs ¶ added in v0.123.0
OpenFilesFs is a wrapper around afero.Fs that keeps track of open files.
func (*OpenFilesFs) Create ¶ added in v0.123.0
func (fs *OpenFilesFs) Create(name string) (afero.File, error)
func (*OpenFilesFs) Open ¶ added in v0.123.0
func (fs *OpenFilesFs) Open(name string) (afero.File, error)
func (*OpenFilesFs) OpenFiles ¶ added in v0.123.0
func (fs *OpenFilesFs) OpenFiles() map[string]int
func (*OpenFilesFs) UnwrapFilesystem ¶ added in v0.123.0
func (fs *OpenFilesFs) UnwrapFilesystem() afero.Fs
type Reseter ¶ added in v0.55.0
type Reseter interface {
Reset()
}
Reseter is implemented by some of the stateful filesystems.
type ReverseLookupProvder ¶ added in v0.123.0
type ReverseLookupProvder interface { ReverseLookup(filename string) ([]ComponentPath, error) ReverseLookupComponent(component, filename string) ([]ComponentPath, error) }
type RootMapping ¶ added in v0.56.0
type RootMapping struct { From string // The virtual mount. FromBase string // The base directory of the virtual mount. To string // The source directory or file. ToBase string // The base of To. May be empty if an absolute path was provided. Module string // The module path/ID. ModuleOrdinal int // The module ordinal starting with 0 which is the project. IsProject bool // Whether this is a mount in the main project. Meta *FileMeta // File metadata (lang etc.) // contains filtered or unexported fields }
RootMapping describes a virtual file or directory mount.
type RootMappingFs ¶ added in v0.42.1
A RootMappingFs maps several roots into one. Note that the root of this filesystem is directories only, and they will be returned in Readdir and Readdirnames in the order given.
func NewRootMappingFs ¶ added in v0.42.1
func NewRootMappingFs(fs afero.Fs, rms ...RootMapping) (*RootMappingFs, error)
NewRootMappingFs creates a new RootMappingFs on top of the provided with root mappings with some optional metadata about the root. Note that From represents a virtual root that maps to the actual filename in To.
func (RootMappingFs) Filter ¶ added in v0.56.0
func (fs RootMappingFs) Filter(f func(m RootMapping) bool) *RootMappingFs
Filter creates a copy of this filesystem with only mappings matching a filter.
func (*RootMappingFs) Key ¶ added in v0.123.7
func (fs *RootMappingFs) Key() string
func (*RootMappingFs) Mounts ¶ added in v0.123.0
func (fs *RootMappingFs) Mounts(base string) ([]FileMetaInfo, error)
func (*RootMappingFs) Open ¶ added in v0.42.1
func (fs *RootMappingFs) Open(name string) (afero.File, error)
Open opens the named file for reading.
func (*RootMappingFs) ReverseLookup ¶ added in v0.123.0
func (fs *RootMappingFs) ReverseLookup(filename string) ([]ComponentPath, error)
func (fs *RootMappingFs) ReverseStat(filename string) ([]FileMetaInfo, error)
func (*RootMappingFs) ReverseLookupComponent ¶ added in v0.123.4
func (fs *RootMappingFs) ReverseLookupComponent(component, filename string) ([]ComponentPath, error)
func (*RootMappingFs) Stat ¶ added in v0.42.1
func (fs *RootMappingFs) Stat(name string) (os.FileInfo, error)
Stat returns the os.FileInfo structure describing a given file. If there is an error, it will be of type *os.PathError.
func (*RootMappingFs) UnwrapFilesystem ¶ added in v0.97.0
func (fs *RootMappingFs) UnwrapFilesystem() afero.Fs
type WalkFunc ¶ added in v0.56.0
type WalkFunc func(path string, info FileMetaInfo) error
type WalkHook ¶ added in v0.56.0
type WalkHook func(dir FileMetaInfo, path string, readdir []FileMetaInfo) ([]FileMetaInfo, error)
type Walkway ¶ added in v0.56.0
type Walkway struct {
// contains filtered or unexported fields
}
func NewWalkway ¶ added in v0.56.0
func NewWalkway(cfg WalkwayConfig) *Walkway
type WalkwayConfig ¶ added in v0.56.0
type WalkwayConfig struct { // The filesystem to walk. Fs afero.Fs // The root to start from in Fs. Root string // The logger to use. Logger loggers.Logger PathParser *paths.PathParser // One or both of these may be pre-set. Info FileMetaInfo // The start info. DirEntries []FileMetaInfo // The start info's dir entries. IgnoreFile func(filename string) bool // Optional // Will be called in order. HookPre WalkHook // Optional. WalkFn WalkFunc HookPost WalkHook // Optional. // Some optional flags. FailOnNotExist bool // If set, return an error if a directory is not found. SortDirEntries bool // If set, sort the dir entries by Name before calling the WalkFn, default is ReaDir order. }