X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=sources.go;h=6a925e24dc6c2b4318da1bf73e7f7afa25a87dd6;hb=HEAD;hp=95b8e4e5bcfb54d7611f4c5e0a29ea1b0dae40a1;hpb=317438ff2d0e1d2ee397a89bf692350df068a723;p=goredo.git diff --git a/sources.go b/sources.go index 95b8e4e..6a925e2 100644 --- a/sources.go +++ b/sources.go @@ -1,60 +1,53 @@ -/* -goredo -- djb's redo implementation on pure Go -Copyright (C) 2020-2023 Sergey Matveev - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 3 of the License. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . -*/ +// goredo -- djb's redo implementation on pure Go +// Copyright (C) 2020-2024 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . package main import ( "errors" "io/fs" - "path" ) func sourcesWalker( - tgts []string, + tgts []*Tgt, seen map[string]struct{}, seenDeps map[string]struct{}, - srcs map[string]struct{}, + srcs map[string]*Tgt, ) error { for _, tgt := range tgts { - tgtAbsPath := mustAbs(path.Join(Cwd, tgt)) - cwd, f := path.Split(path.Join(Cwd, tgt)) - depPath := path.Join(cwd, RedoDir, f+DepSuffix) - if _, ok := seenDeps[depPath]; ok { + if _, ok := seenDeps[tgt.rel]; ok { continue } - seenDeps[depPath] = struct{}{} - depInfo, err := depRead(depPath) + seenDeps[tgt.rel] = struct{}{} + dep, err := depRead(tgt) if err != nil { if errors.Is(err, fs.ErrNotExist) { continue } return ErrLine(err) } - for _, dep := range depInfo.ifchanges { - depTgtAbsPath := mustAbs(path.Join(cwd, dep.tgt)) - if _, ok := seen[depTgtAbsPath]; ok { + for _, ifchange := range dep.ifchanges { + if _, ok := seen[ifchange.tgt.rel]; ok { continue } - seen[depTgtAbsPath] = struct{}{} - if isSrc(cwd, dep.tgt) { - srcs[cwdMustRel(depTgtAbsPath)] = struct{}{} - } else if depTgtAbsPath != tgtAbsPath { + seen[ifchange.tgt.rel] = struct{}{} + if isSrc(ifchange.tgt) { + srcs[ifchange.tgt.rel] = ifchange.tgt + } else if ifchange.tgt.rel != tgt.rel { if err := sourcesWalker( - []string{cwdMustRel(depTgtAbsPath)}, + []*Tgt{ifchange.tgt}, seen, seenDeps, srcs, ); err != nil { return err