Improve "watching for ..." logging
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 23 Nov 2015 15:32:06 +0000 (16:32 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 23 Nov 2015 15:32:06 +0000 (16:32 +0100)
commands/server.go
helpers/general.go
helpers/general_test.go
helpers/path.go
helpers/path_test.go

index 708912fbb20764bfa5cf8e7a81c2b81cf44a66e4..57f96a1bd89ba5446a1eeea61617f2faa779f853 100644 (file)
@@ -150,14 +150,15 @@ func server(cmd *cobra.Command, args []string) {
 
        // Watch runs its own server as part of the routine
        if serverWatch {
-               watched := getDirList()
-               workingDir := helpers.AbsPathify(viper.GetString("WorkingDir"))
-               for i, dir := range watched {
-                       watched[i], _ = helpers.GetRelativePath(dir, workingDir)
+               watchDirs := getDirList()
+               baseWatchDir := helpers.AbsPathify(viper.GetString("WorkingDir"))
+               for i, dir := range watchDirs {
+                       watchDirs[i], _ = helpers.GetRelativePath(dir, baseWatchDir)
                }
-               unique := strings.Join(helpers.RemoveSubpaths(watched), ",")
 
-               jww.FEEDBACK.Printf("Watching for changes in %s/{%s}\n", workingDir, unique)
+               rootWatchDirs := strings.Join(helpers.UniqueStrings(helpers.ExtractRootPaths(watchDirs)), ",")
+
+               jww.FEEDBACK.Printf("Watching for changes in %s/{%s}\n", baseWatchDir, rootWatchDirs)
                err := NewWatcher(serverPort)
                if err != nil {
                        fmt.Println(err)
index b05c860922d86bfc777ec98df3a4b4279cebc771..eaf4e2d424e9d06d0521fab15ee7d35082814779 100644 (file)
@@ -90,6 +90,19 @@ func FirstUpper(s string) string {
        return string(unicode.ToUpper(r)) + s[n:]
 }
 
+// UniqueStrings returns a new slice with any duplicates removed.
+func UniqueStrings(s []string) []string {
+       unique := make([]string, 0)
+       set := map[string]interface{}{}
+       for _, val := range s {
+               if _, ok := set[val]; !ok {
+                       unique = append(unique, val)
+                       set[val] = val
+               }
+       }
+       return unique
+}
+
 // ReaderToBytes takes an io.Reader argument, reads from it
 // and returns bytes.
 func ReaderToBytes(lines io.Reader) []byte {
index b4707b91e02fa9072b1e6ce3d4d29c944ad35c37..4d85a12991843c53f92a6a3244f27438c466a22b 100644 (file)
@@ -164,6 +164,15 @@ func _BenchmarkReaderContains(b *testing.B) {
        }
 }
 
+func TestUniqueStrings(t *testing.T) {
+       in := []string{"a", "b", "a", "b", "c", "", "a", "", "d"}
+       output := UniqueStrings(in)
+       expected := []string{"a", "b", "c", "", "d"}
+       if !reflect.DeepEqual(output, expected) {
+               t.Errorf("Expected %#v, got %#v\n", expected, output)
+       }
+}
+
 func TestFindAvailablePort(t *testing.T) {
        addr, err := FindAvailablePort()
        assert.Nil(t, err)
index 018c6fecba06d6e17c0e7c312afe4cd5a239a358..07d08fa69342868cad9f75815dfa0b71de849f98 100644 (file)
@@ -450,37 +450,27 @@ func prettifyPath(in string, b filepathPathBridge) string {
        return b.Join(b.Dir(in), name, "index"+ext)
 }
 
-// RemoveSubpaths takes a list of paths and removes everything that
-// contains another path in the list as a prefix. Ignores any empty
-// strings. Used mostly for logging.
-//
-// e.g. ["hello/world", "hello", "foo/bar", ""] -> ["hello", "foo/bar"]
-func RemoveSubpaths(paths []string) []string {
-       a := make([]string, 0)
-       for _, cur := range paths {
-               // ignore trivial case
-               if cur == "" {
-                       continue
-               }
-
-               isDupe := false
-               for i, old := range a {
-                       if strings.HasPrefix(cur, old) {
-                               isDupe = true
-                               break
-                       } else if strings.HasPrefix(old, cur) {
-                               a[i] = cur
-                               isDupe = true
-                               break
+// Extract the root paths from the supplied list of paths.
+// The resulting root path will not contain any file separators, but there
+// may be duplicates.
+// So "/content/section/" becomes "content"
+func ExtractRootPaths(paths []string) []string {
+       r := make([]string, len(paths))
+       for i, p := range paths {
+               root := filepath.ToSlash(p)
+               if strings.Contains(root, "/") {
+                       sections := strings.Split(root, "/")
+                       for _, section := range sections {
+                               if section != "" {
+                                       root = section
+                                       break
+                               }
                        }
                }
-
-               if !isDupe {
-                       a = append(a, cur)
-               }
+               r[i] = root
        }
+       return r
 
-       return a
 }
 
 // FindCWD returns the current working directory from where the Hugo
index 9534cf9c1d6959db08aa851e9046b393d52338d1..a1d897df9a25ab993516805827032df937c2684d 100644 (file)
@@ -625,11 +625,19 @@ func TestPrettifyPath(t *testing.T) {
 
 }
 
-func TestRemoveSubpaths(t *testing.T) {
-       got := RemoveSubpaths([]string{"hello", "hello/world", "foo/bar", ""})
-       expect := []string{"hello", "foo/bar"}
-       if !reflect.DeepEqual(got, expect) {
-               t.Errorf("Expected %q but got %q", expect, got)
+func TestExtractRootPaths(t *testing.T) {
+       tests := []struct {
+               input    []string
+               expected []string
+       }{{[]string{filepath.FromSlash("a/b"), filepath.FromSlash("a/b/c/"), "b",
+               filepath.FromSlash("/c/d"), filepath.FromSlash("d/"), filepath.FromSlash("//e//")},
+               []string{"a", "a", "b", "c", "d", "e"}}}
+
+       for _, test := range tests {
+               output := ExtractRootPaths(test.input)
+               if !reflect.DeepEqual(output, test.expected) {
+                       t.Errorf("Expected %#v, got %#v\n", test.expected, output)
+               }
        }
 }