2018-05-26 12:32:15 +00:00
|
|
|
package mysql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
2018-05-27 18:52:26 +00:00
|
|
|
"fmt"
|
2021-01-14 08:06:15 +00:00
|
|
|
"time"
|
2018-05-26 12:32:15 +00:00
|
|
|
|
2020-09-01 07:21:19 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer/abstract_sql"
|
2018-08-19 22:17:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-08-19 22:18:37 +00:00
|
|
|
_ "github.com/go-sql-driver/mysql"
|
2018-05-26 12:32:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
CONNECTION_URL_PATTERN = "%s:%s@tcp(%s:%d)/%s?charset=utf8"
|
|
|
|
)
|
|
|
|
|
2021-01-19 21:53:16 +00:00
|
|
|
type SqlGenMysql struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = abstract_sql.SqlGenerator(&SqlGenMysql{})
|
|
|
|
)
|
|
|
|
|
|
|
|
func (gen *SqlGenMysql) GetSqlInsert(bucket string) string {
|
|
|
|
return "INSERT INTO filemeta (dirhash,name,directory,meta) VALUES(?,?,?,?)"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenMysql) GetSqlUpdate(bucket string) string {
|
|
|
|
return "UPDATE filemeta SET meta=? WHERE dirhash=? AND name=? AND directory=?"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenMysql) GetSqlFind(bucket string) string {
|
|
|
|
return "SELECT meta FROM filemeta WHERE dirhash=? AND name=? AND directory=?"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenMysql) GetSqlDelete(bucket string) string {
|
|
|
|
return "DELETE FROM filemeta WHERE dirhash=? AND name=? AND directory=?"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenMysql) GetSqlDeleteFolderChildren(bucket string) string {
|
|
|
|
return "DELETE FROM filemeta WHERE dirhash=? AND directory=?"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenMysql) GetSqlListExclusive(bucket string) string {
|
|
|
|
return "SELECT NAME, meta FROM filemeta WHERE dirhash=? AND name>? AND directory=? AND name like ? ORDER BY NAME ASC LIMIT ?"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenMysql) GetSqlListInclusive(bucket string) string {
|
|
|
|
return "SELECT NAME, meta FROM filemeta WHERE dirhash=? AND name>=? AND directory=? AND name like ? ORDER BY NAME ASC LIMIT ?"
|
|
|
|
}
|
|
|
|
|
2018-05-26 12:32:15 +00:00
|
|
|
func init() {
|
2020-09-01 07:21:19 +00:00
|
|
|
filer.Stores = append(filer.Stores, &MysqlStore{})
|
2018-05-26 12:32:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type MysqlStore struct {
|
|
|
|
abstract_sql.AbstractSqlStore
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *MysqlStore) GetName() string {
|
|
|
|
return "mysql"
|
|
|
|
}
|
|
|
|
|
2020-01-29 17:09:55 +00:00
|
|
|
func (store *MysqlStore) Initialize(configuration util.Configuration, prefix string) (err error) {
|
2018-05-26 12:32:15 +00:00
|
|
|
return store.initialize(
|
2020-01-29 17:09:55 +00:00
|
|
|
configuration.GetString(prefix+"username"),
|
|
|
|
configuration.GetString(prefix+"password"),
|
|
|
|
configuration.GetString(prefix+"hostname"),
|
|
|
|
configuration.GetInt(prefix+"port"),
|
|
|
|
configuration.GetString(prefix+"database"),
|
|
|
|
configuration.GetInt(prefix+"connection_max_idle"),
|
|
|
|
configuration.GetInt(prefix+"connection_max_open"),
|
2021-01-14 06:14:21 +00:00
|
|
|
configuration.GetInt(prefix+"connection_max_lifetime_seconds"),
|
2020-01-29 17:09:55 +00:00
|
|
|
configuration.GetBool(prefix+"interpolateParams"),
|
2018-05-26 12:32:15 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-01-14 06:14:21 +00:00
|
|
|
func (store *MysqlStore) initialize(user, password, hostname string, port int, database string, maxIdle, maxOpen,
|
2021-01-15 07:11:27 +00:00
|
|
|
maxLifetimeSeconds int, interpolateParams bool) (err error) {
|
2021-01-19 21:53:16 +00:00
|
|
|
|
|
|
|
store.SqlGenerator = &SqlGenMysql{}
|
2018-05-27 05:02:49 +00:00
|
|
|
|
2018-05-26 12:32:15 +00:00
|
|
|
sqlUrl := fmt.Sprintf(CONNECTION_URL_PATTERN, user, password, hostname, port, database)
|
2019-11-27 20:34:03 +00:00
|
|
|
if interpolateParams {
|
|
|
|
sqlUrl += "&interpolateParams=true"
|
|
|
|
}
|
|
|
|
|
2018-05-26 12:32:15 +00:00
|
|
|
var dbErr error
|
|
|
|
store.DB, dbErr = sql.Open("mysql", sqlUrl)
|
|
|
|
if dbErr != nil {
|
|
|
|
store.DB.Close()
|
|
|
|
store.DB = nil
|
|
|
|
return fmt.Errorf("can not connect to %s error:%v", sqlUrl, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
store.DB.SetMaxIdleConns(maxIdle)
|
|
|
|
store.DB.SetMaxOpenConns(maxOpen)
|
2021-01-15 07:11:27 +00:00
|
|
|
store.DB.SetConnMaxLifetime(time.Duration(maxLifetimeSeconds) * time.Second)
|
2018-05-26 20:35:56 +00:00
|
|
|
|
|
|
|
if err = store.DB.Ping(); err != nil {
|
|
|
|
return fmt.Errorf("connect to %s error:%v", sqlUrl, err)
|
|
|
|
}
|
|
|
|
|
2018-05-26 12:32:15 +00:00
|
|
|
return nil
|
|
|
|
}
|