up: make use of filepath.Walk to simplify traversing migration files

pull/2/head
Liam Staskawicz 2012-12-23 14:03:26 -08:00
parent bccf6afa62
commit 78a2b24d13
2 changed files with 18 additions and 25 deletions

View File

@ -190,12 +190,19 @@ func (m *MigrationMap) Sort(direction bool) {
// XXX_descriptivename.ext // XXX_descriptivename.ext
// where XXX specifies the version number // where XXX specifies the version number
// and ext specifies the type of migration // and ext specifies the type of migration
func numericComponent(path string) (int, error) { func numericComponent(name string) (int, error) {
idx := strings.Index(path, "_")
base := path.Base(name)
if ext := path.Ext(base); ext != ".go" && ext != ".sql" {
return 0, errors.New("not a recognized migration file type")
}
idx := strings.Index(base, "_")
if idx < 0 { if idx < 0 {
return 0, errors.New("no separator found") return 0, errors.New("no separator found")
} }
return strconv.Atoi(path[:idx]) return strconv.Atoi(base[:idx])
} }
// retrieve the current version for this DB. // retrieve the current version for this DB.

30
up.go
View File

@ -4,6 +4,7 @@ import (
"log" "log"
"os" "os"
"path" "path"
"path/filepath"
) )
var upCmd = &Command{ var upCmd = &Command{
@ -32,33 +33,18 @@ func upRun(cmd *Command, args ...string) {
// within a folder of migration scripts // within a folder of migration scripts
func mostRecentVersionAvailable(dirpath string) int { func mostRecentVersionAvailable(dirpath string) int {
dir, err := os.Open(dirpath)
if err != nil {
log.Fatal(err)
}
names, err := dir.Readdirnames(0)
if err != nil {
log.Fatal(err)
}
mostRecent := -1 mostRecent := -1
for _, name := range names { filepath.Walk(dirpath, func(name string, info os.FileInfo, err error) error {
if ext := path.Ext(name); ext != ".go" && ext != ".sql" { if v, e := numericComponent(name); e == nil {
continue if v > mostRecent {
mostRecent = v
}
} }
v, e := numericComponent(name) return nil
if e != nil { })
continue
}
if v > mostRecent {
mostRecent = v
}
}
return mostRecent return mostRecent
} }