Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the subrepo's FS for reading config and globbing #2960

Merged
merged 3 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions src/core/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,6 @@ func (pkg *Package) TargetOrDie(name string) *BuildTarget {
return t
}

// SourceRoot returns the root directory of source files for this package.
// This is equivalent to .Name for in-repo packages but differs for those in subrepos.
func (pkg *Package) SourceRoot() string {
if pkg.Subrepo != nil {
return pkg.Subrepo.Dir(pkg.Name)
}
return pkg.Name
}

// AddTarget adds a new target to this package with the given name.
// It doesn't check for duplicates.
func (pkg *Package) AddTarget(target *BuildTarget) {
Expand Down
3 changes: 1 addition & 2 deletions src/core/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,7 @@ func (state *BuildState) Initialise(subrepo *Subrepo) (err error) {
// handled for us already in plz.go
if state.CurrentSubrepo != "" {
state.RepoConfig = &Configuration{}
err = readConfigFilesInto(state.RepoConfig, append(subrepo.AdditionalConfigFiles, filepath.Join(subrepo.Root, ".plzconfig")))
if err != nil {
if err := readSubrepoConfig(state.RepoConfig, subrepo); err != nil {
return
}
if err = validateSubrepoNameAndPluginConfig(state.Config, state.RepoConfig, subrepo); err != nil {
Expand Down
13 changes: 9 additions & 4 deletions src/core/subrepo.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,15 @@ type Subrepo struct {
}

func NewSubrepo(state *BuildState, name, root string, target *BuildTarget, arch cli.Arch, isCrosscompile bool) *Subrepo {
subrepoFS := os.DirFS(root)
if root == "" {
// This happens for architecture subrepos, which should use the same FS as the host repo
subrepoFS = fs.HostFS
}
return &Subrepo{
Name: name,
Root: root,
FS: os.DirFS(root),
FS: subrepoFS,
State: state,
Target: target,
Arch: arch,
Expand Down Expand Up @@ -81,14 +86,14 @@ func (s *Subrepo) Dir(dir string) string {
return filepath.Join(s.Root, dir)
}

func readConfigFilesInto(repoConfig *Configuration, files []string) error {
for _, file := range files {
func readSubrepoConfig(repoConfig *Configuration, subrepo *Subrepo) error {
for _, file := range subrepo.AdditionalConfigFiles {
err := readConfigFile(fs.HostFS, repoConfig, file, true)
if err != nil {
return err
}
}
return nil
return readConfigFile(subrepo.FS, repoConfig, ".plzconfig", true)
}

func validateSubrepoNameAndPluginConfig(config, repoConfig *Configuration, subrepo *Subrepo) error {
Expand Down
8 changes: 6 additions & 2 deletions src/parse/asp/builtins.go
Original file line number Diff line number Diff line change
Expand Up @@ -607,10 +607,14 @@ func glob(s *scope, args []pyObject) pyObject {
allowEmpty := args[4].IsTruthy()
exclude = append(exclude, s.state.Config.Parse.BuildFileName...)
if s.globber == nil {
s.globber = fs.NewGlobber(fs.HostFS, s.state.Config.Parse.BuildFileName)
if s.pkg.Subrepo != nil {
s.globber = fs.NewGlobber(s.pkg.Subrepo.FS, s.state.Config.Parse.BuildFileName)
} else {
s.globber = fs.NewGlobber(fs.HostFS, s.state.Config.Parse.BuildFileName)
}
}

glob := s.globber.Glob(s.pkg.SourceRoot(), include, exclude, hidden, includeSymlinks)
glob := s.globber.Glob(s.pkg.Name, include, exclude, hidden, includeSymlinks)
if !allowEmpty && len(glob) == 0 {
// Strip build file name from exclude list for error message
exclude = exclude[:len(exclude)-len(s.state.Config.Parse.BuildFileName)]
Expand Down
Loading