]> Cypherpunks.ru repositories - goredo.git/blob - do.go
Initial commit
[goredo.git] / do.go
1 /*
2 goredo -- redo implementation on pure Go
3 Copyright (C) 2020 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 // .do finder
19
20 package main
21
22 import (
23         "os"
24         "path"
25         "path/filepath"
26         "strings"
27 )
28
29 const TopFile = "top"
30
31 var TopDir string
32
33 func existsDo(fdDep *os.File, cwd, pth string) (bool, error) {
34         if _, err := os.Stat(path.Join(cwd, pth)); err == nil {
35                 return true, nil
36         }
37         return false, ifcreate(fdDep, pth)
38 }
39
40 func findDo(fdDep *os.File, cwd, tgt string) (string, int, error) {
41         doFile := tgt + ".do"
42         exists, err := existsDo(fdDep, cwd, doFile)
43         if err != nil {
44                 return "", 0, err
45         }
46         if exists {
47                 return doFile, 0, nil
48         }
49         levels := []string{}
50         extsOrig := strings.Split(tgt, ".")[1:]
51         dirAbsPrev := ""
52         for {
53                 exts := extsOrig
54                 updir := path.Join(levels...)
55                 for len(exts) > 0 {
56                         doFile = strings.Join(append(
57                                 []string{"default"}, append(exts, "do")...,
58                         ), ".")
59                         pth := path.Join(updir, doFile)
60                         exists, err = existsDo(fdDep, cwd, pth)
61                         if err != nil {
62                                 return "", 0, err
63                         }
64                         if exists {
65                                 return doFile, len(levels), nil
66                         }
67                         exts = exts[1:]
68                 }
69                 doFile = "default.do"
70                 pth := path.Join(updir, doFile)
71                 exists, err = existsDo(fdDep, cwd, pth)
72                 if err != nil {
73                         return "", 0, err
74                 }
75                 if exists {
76                         return pth, len(levels), nil
77                 }
78                 levels = append(levels, "..")
79                 dirAbs, err := filepath.Abs(updir)
80                 if err != nil {
81                         panic(err)
82                 }
83                 if dirAbs == TopDir {
84                         break
85                 }
86                 if _, err = os.Stat(path.Join(dirAbs, RedoDir, TopFile)); err == nil {
87                         break
88                 }
89                 if dirAbs == dirAbsPrev {
90                         break
91                 }
92                 dirAbsPrev = dirAbs
93         }
94         return "", 0, nil
95 }