]> Cypherpunks.ru repositories - goredo.git/blobdiff - do.go
Download link for 2.6.2 release
[goredo.git] / do.go
diff --git a/do.go b/do.go
index 516b1438c28d5751d477f645c57c45aae47f0956..3312d54f070bd2171afcd955bb2d2d3b19e48bcc 100644 (file)
--- a/do.go
+++ b/do.go
@@ -1,28 +1,25 @@
-/*
-goredo -- djb's redo implementation on pure Go
-Copyright (C) 2020-2021 Sergey Matveev <stargrave@stargrave.org>
-
-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 <http://www.gnu.org/licenses/>.
-*/
+// goredo -- djb's redo implementation on pure Go
+// Copyright (C) 2020-2024 Sergey Matveev <stargrave@stargrave.org>
+//
+// 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 <http://www.gnu.org/licenses/>.
 
 // .do finder
 
 package main
 
 import (
-       "os"
+       "io"
        "path"
-       "path/filepath"
        "strings"
 )
 
@@ -33,16 +30,16 @@ const (
 
 var TopDir string
 
-func existsDo(fdDep *os.File, cwd, pth string) (bool, error) {
-       if _, err := os.Stat(path.Join(cwd, pth)); err == nil {
+func existsDo(w io.Writer, fdDepName, cwd, pth string) (bool, error) {
+       if FileExists(path.Join(cwd, pth)) {
                return true, nil
        }
-       return false, ifcreate(fdDep, pth)
+       return false, ifcreate(w, fdDepName, pth)
 }
 
-func findDo(fdDep *os.File, cwd, tgt string) (string, int, error) {
+func findDo(w io.Writer, fdDepName, cwd, tgt string) (string, int, error) {
        doFile := tgt + ".do"
-       exists, err := existsDo(fdDep, cwd, doFile)
+       exists, err := existsDo(w, fdDepName, cwd, doFile)
        if err != nil {
                return "", 0, err
        }
@@ -60,8 +57,8 @@ func findDo(fdDep *os.File, cwd, tgt string) (string, int, error) {
                        doFile = strings.Join(append(
                                []string{"default"}, append(exts, "do")...,
                        ), ".")
-                       if len(levels) > 0 || doFile != doFileOrig {
-                               exists, err = existsDo(fdDep, cwd, path.Join(updir, doFile))
+                       if len(levels) > 0 || (doFile != doFileOrig && doFile != tgt) {
+                               exists, err = existsDo(w, fdDepName, cwd, path.Join(updir, doFile))
                                if err != nil {
                                        return "", 0, err
                                }
@@ -72,8 +69,8 @@ func findDo(fdDep *os.File, cwd, tgt string) (string, int, error) {
                        exts = exts[1:]
                }
                doFile = "default.do"
-               if len(levels) > 0 || doFile != doFileOrig {
-                       exists, err = existsDo(fdDep, cwd, path.Join(updir, doFile))
+               if len(levels) > 0 || (doFile != doFileOrig && doFile != tgt) {
+                       exists, err = existsDo(w, fdDepName, cwd, path.Join(updir, doFile))
                        if err != nil {
                                return "", 0, err
                        }
@@ -82,14 +79,14 @@ func findDo(fdDep *os.File, cwd, tgt string) (string, int, error) {
                        }
                }
                levels = append(levels, "..")
-               dirAbs, err := filepath.Abs(path.Join(cwd, updir))
+               dirAbs := mustAbs(path.Join(cwd, updir))
                if err != nil {
                        panic(err)
                }
                if dirAbs == TopDir {
                        break
                }
-               if _, err = os.Stat(path.Join(dirAbs, RedoDir, TopFile)); err == nil {
+               if FileExists(path.Join(dirAbs, RedoDir, TopFile)) {
                        break
                }
                if dirAbs == dirAbsPrev {