migrate/driver/driver.go

78 lines
2.2 KiB
Go
Raw Normal View History

2014-08-13 02:38:29 +02:00
// Package driver holds the driver interface.
2014-08-11 03:42:57 +02:00
package driver
import (
"fmt"
neturl "net/url" // alias to allow `url string` func signature in New
2014-08-12 03:20:28 +02:00
"github.com/mattes/migrate/driver/bash"
2014-08-26 18:48:46 -07:00
"github.com/mattes/migrate/driver/cassandra"
2014-09-16 21:44:34 +02:00
"github.com/mattes/migrate/driver/mysql"
2014-08-11 03:42:57 +02:00
"github.com/mattes/migrate/driver/postgres"
2015-03-08 11:10:35 +09:00
"github.com/mattes/migrate/driver/sqlite3"
2014-08-11 03:42:57 +02:00
"github.com/mattes/migrate/file"
)
2015-09-15 22:56:29 +01:00
var driverMap = map[string]Driver{
"postgres": &postgres.Driver{},
"mysql": &mysql.Driver{},
"bash": &bash.Driver{},
"cassandra": &cassandra.Driver{},
"sqlite3": &sqlite3.Driver{},
}
2014-08-13 02:38:29 +02:00
// Driver is the interface type that needs to implemented by all drivers.
2014-08-11 03:42:57 +02:00
type Driver interface {
2014-08-13 02:38:29 +02:00
// Initialize is the first function to be called.
// Check the url string and open and verify any connection
// that has to be made.
2014-08-11 03:42:57 +02:00
Initialize(url string) error
2014-08-13 02:38:29 +02:00
2014-08-25 17:44:45 +02:00
// Close is the last function to be called.
// Close any open connection here.
Close() error
2014-08-13 02:38:29 +02:00
// FilenameExtension returns the extension of the migration files.
// The returned string must not begin with a dot.
2014-08-11 03:42:57 +02:00
FilenameExtension() string
2014-08-13 02:38:29 +02:00
// Migrate is the heart of the driver.
// It will receive a file which the driver should apply
2014-08-13 02:38:29 +02:00
// to its backend or whatever. The migration function should use
// the pipe channel to return any errors or other useful information.
Migrate(file file.File, pipe chan interface{})
2014-08-13 02:38:29 +02:00
// Version returns the current migration version.
2014-08-11 03:42:57 +02:00
Version() (uint64, error)
}
2014-08-13 02:38:29 +02:00
// New returns Driver and calls Initialize on it
2014-08-11 03:42:57 +02:00
func New(url string) (Driver, error) {
u, err := neturl.Parse(url)
if err != nil {
return nil, err
}
2015-09-15 22:56:29 +01:00
if d, found := driverMap[u.Scheme]; found {
verifyFilenameExtension(u.Scheme, d)
2015-03-08 11:10:35 +09:00
if err := d.Initialize(url); err != nil {
return nil, err
}
return d, nil
2014-08-11 03:42:57 +02:00
}
2015-09-15 22:56:29 +01:00
return nil, fmt.Errorf("Driver '%s' not found.", u.Scheme)
2014-08-11 03:42:57 +02:00
}
2014-08-13 02:38:29 +02:00
// verifyFilenameExtension panics if the drivers filename extension
// is not correct or empty.
2014-08-11 03:42:57 +02:00
func verifyFilenameExtension(driverName string, d Driver) {
f := d.FilenameExtension()
if f == "" {
panic(fmt.Sprintf("%s.FilenameExtension() returns empty string.", driverName))
}
if f[0:1] == "." {
panic(fmt.Sprintf("%s.FilenameExtension() returned string must not start with a dot.", driverName))
}
}