aboutsummaryrefslogtreecommitdiff
path: root/fs.go
blob: bd27cf8d1f3b52f64fb1a0100a09a38ab0d3886e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
package planr

import (
	"log"
	"os"
        "io"
	"path"
	"path/filepath"
        "strings"
)

/* CONFIG DIRECTORY */

// Consumes path
// Returns true if traversal should halt
type traversalFunc func(path string) bool;

// Traverse up until the root is reached
// Calls traverseFunc each iteration
// Returns true if prematurely stopped
func traverseUp(reference string, shouldStop traversalFunc) bool {
  cursor := reference
  
  for !shouldStop(cursor) {
    if filepath.ToSlash(cursor) == "/" {
      return false 
    }
    cursor = filepath.Join(cursor, "..")
  }

  return true
}

func directoryExists(path string) bool {
  info, err := os.Stat(path)

  if err != nil {
    if !os.IsNotExist(err) {
      log.Fatal(err)
    }

    return false;
  }

  return info.IsDir()
}

// Find the configuration directory
// Uses:
// 1. PlANR_DIRECTORY env if set
// 2. planr
// 3. .planr
func ConfigDir() string {

  // Return environmental override if set
  if dir, isSet := os.LookupEnv("PLANR_DIRECTORY"); isSet {

    if !directoryExists(dir) {
      log.Fatalf("Cannot find planr directory %s", dir);
    }

    return dir;
  }

  cwd, err := os.Getwd()

  if err != nil {
    log.Fatal(err)
  }

  var rubricDir string

  rubric_search_dirs := [2]string{
    "planr",
    ".planr",
  }

  found := traverseUp(cwd, func (path string) bool {

    for _, dir := range rubric_search_dirs {
      rubricDir = filepath.Join(path, dir)
      
      if directoryExists(rubricDir) {
        return true
      }
    }

    return false 
  });

  if !found {
    log.Fatal("Could not find planr directory");
  }

  return rubricDir
}

func JoinConfigDir(path_ string, file string) string {
  if path.IsAbs(path_) {
    return path.Join(path_, file) 
  }

  return path.Join(ConfigDir(), path_, file)
}

func RootDir() string {
  return path.Join(ConfigDir(), "..")
}

// Find rubric directory at PLANR_DIR/rubric
func RubricDir() string {
  rubricDir := path.Join(ConfigDir(), "rubric");

  if !directoryExists(rubricDir) {
    log.Fatal("Could not find the rubric directory inside of planr") 
  }

  return rubricDir
}

func BuildDir() string {
  buildDir := path.Join(ConfigDir(), "build")

  if !directoryExists(buildDir) {
    err := os.Mkdir(buildDir, 0755)

    if err != nil {
      log.Fatalf("Cannot create build directory %v\n", err)
    }
  }

  return buildDir
}

func CleanBuildDir() {
  buildDir := path.Join(ConfigDir(), "build")
  if err := os.RemoveAll(buildDir); err != nil {
    log.Fatalf("Cannot clean (removeAll) in build directory %v\n", err)
  }
}

func (ac AdapterConfig) Dir() string {
  dir := BuildDir()
  dir = path.Join(dir, ac.Name)
 
  if !directoryExists(dir) {
    err := os.Mkdir(dir, 0755)

    if err != nil {
      log.Fatalf("Cannot create build/%s directory %v\n", ac.Name, err)
    }
  }

  return dir
}

func basename(path string) string {
  ext := filepath.Ext(path)
  return path[0:len(path) - len(ext)]
}

func cname(root string, path string) string {
  rel, err := filepath.Rel(root, path) 
  
  if err != nil {
    log.Fatal(err)
  }
  
  rel = filepath.ToSlash(rel)
  parts := strings.Split(rel, "/")
  n := len(parts)

  if n == 0 {
    return ""
  }

  parts[n-1] = basename(parts[n-1])

  return strings.Join(parts, ".")
}

func collectUnits(root string, cfgs []AdapterConfig) []TestCase {
  tcs := make([]TestCase, 0)

  collectFromDir(root, nil, cfgs, &tcs)

  for i := range tcs {
    tcs[i].Cname = cname(root, tcs[i].Path)
  }

  return tcs
}

const DEFAULTS = "defaults.toml"
// Collects the units from the configuration tree
// TODO: Cleanup
func collectFromDir(
  dir       string,
  defaults *Defaults,
  cfgs      []AdapterConfig,
  units    *[]TestCase,
) {
  fp, err := os.Open(dir)
  if err != nil {
    log.Fatal(err)
  }

  // Process defaults for this directory if a defaults.toml is found
  defaultsPath := path.Join(dir, DEFAULTS)
  if info, err := os.Stat(defaultsPath); err == nil && !info.IsDir() {
    d := DecodeDefaults(defaultsPath, cfgs)

    // inherit the properties not defined in this defaults
    if defaults != nil {
      d.Inherit(defaults)
    }

    defaults = &d
  }

  // Read the entries in this directory
  for {
    dirs, err := fp.ReadDir(100)
    if err == io.EOF {
      break
    } else if err != nil {
      log.Fatal(err)
    }


    for _, ent := range dirs {
      child := path.Join(dir, ent.Name())
      nm := ent.Name()

      if ent.IsDir() {
        collectFromDir(child, defaults, cfgs, units)
      } else {
        if nm == DEFAULTS {
          continue
        }

        // Decode a unit
        config := DecodeConfig(child, cfgs)
        config.Inherit(*defaults)

        tc := TestCase {
          Path: child,
          Config: config,
        }

        *units = append(*units, tc)
      }
    }
  }
}