Chris Lu
4 years ago
7 changed files with 162 additions and 52 deletions
-
21weed/command/scaffold.go
-
6weed/filer/abstract_sql/abstract_sql_store.go
-
52weed/filer/mysql/mysql_sql_gen.go
-
51weed/filer/mysql/mysql_store.go
-
77weed/filer/mysql2/mysql_store.go
-
1weed/server/filer_server.go
-
6weed/util/config.go
@ -0,0 +1,52 @@ |
|||||
|
package mysql |
||||
|
|
||||
|
import ( |
||||
|
"fmt" |
||||
|
"github.com/chrislusf/seaweedfs/weed/filer/abstract_sql" |
||||
|
_ "github.com/go-sql-driver/mysql" |
||||
|
) |
||||
|
|
||||
|
type SqlGenMysql struct { |
||||
|
CreateTableSqlTemplate string |
||||
|
DropTableSqlTemplate string |
||||
|
} |
||||
|
|
||||
|
var ( |
||||
|
_ = abstract_sql.SqlGenerator(&SqlGenMysql{}) |
||||
|
) |
||||
|
|
||||
|
func (gen *SqlGenMysql) GetSqlInsert(bucket string) string { |
||||
|
return fmt.Sprintf("INSERT INTO %s (dirhash,name,directory,meta) VALUES(?,?,?,?)", bucket) |
||||
|
} |
||||
|
|
||||
|
func (gen *SqlGenMysql) GetSqlUpdate(bucket string) string { |
||||
|
return fmt.Sprintf("UPDATE %s SET meta=? WHERE dirhash=? AND name=? AND directory=?", bucket) |
||||
|
} |
||||
|
|
||||
|
func (gen *SqlGenMysql) GetSqlFind(bucket string) string { |
||||
|
return fmt.Sprintf("SELECT meta FROM %s WHERE dirhash=? AND name=? AND directory=?", bucket) |
||||
|
} |
||||
|
|
||||
|
func (gen *SqlGenMysql) GetSqlDelete(bucket string) string { |
||||
|
return fmt.Sprintf("DELETE FROM %s WHERE dirhash=? AND name=? AND directory=?", bucket) |
||||
|
} |
||||
|
|
||||
|
func (gen *SqlGenMysql) GetSqlDeleteFolderChildren(bucket string) string { |
||||
|
return fmt.Sprintf("DELETE FROM %s WHERE dirhash=? AND directory=?", bucket) |
||||
|
} |
||||
|
|
||||
|
func (gen *SqlGenMysql) GetSqlListExclusive(bucket string) string { |
||||
|
return fmt.Sprintf("SELECT NAME, meta FROM %s WHERE dirhash=? AND name>? AND directory=? AND name like ? ORDER BY NAME ASC LIMIT ?", bucket) |
||||
|
} |
||||
|
|
||||
|
func (gen *SqlGenMysql) GetSqlListInclusive(bucket string) string { |
||||
|
return fmt.Sprintf("SELECT NAME, meta FROM %s WHERE dirhash=? AND name>=? AND directory=? AND name like ? ORDER BY NAME ASC LIMIT ?", bucket) |
||||
|
} |
||||
|
|
||||
|
func (gen *SqlGenMysql) GetSqlCreateTable(bucket string) string { |
||||
|
return fmt.Sprintf(gen.CreateTableSqlTemplate, bucket) |
||||
|
} |
||||
|
|
||||
|
func (gen *SqlGenMysql) GetSqlDropTable(bucket string) string { |
||||
|
return fmt.Sprintf(gen.DropTableSqlTemplate, bucket) |
||||
|
} |
@ -0,0 +1,77 @@ |
|||||
|
package mysql2 |
||||
|
|
||||
|
import ( |
||||
|
"database/sql" |
||||
|
"fmt" |
||||
|
"time" |
||||
|
|
||||
|
"github.com/chrislusf/seaweedfs/weed/filer" |
||||
|
"github.com/chrislusf/seaweedfs/weed/filer/abstract_sql" |
||||
|
"github.com/chrislusf/seaweedfs/weed/filer/mysql" |
||||
|
"github.com/chrislusf/seaweedfs/weed/util" |
||||
|
_ "github.com/go-sql-driver/mysql" |
||||
|
) |
||||
|
|
||||
|
const ( |
||||
|
CONNECTION_URL_PATTERN = "%s:%s@tcp(%s:%d)/%s?charset=utf8" |
||||
|
) |
||||
|
|
||||
|
func init() { |
||||
|
filer.Stores = append(filer.Stores, &MysqlStore2{}) |
||||
|
} |
||||
|
|
||||
|
type MysqlStore2 struct { |
||||
|
abstract_sql.AbstractSqlStore |
||||
|
} |
||||
|
|
||||
|
func (store *MysqlStore2) GetName() string { |
||||
|
return "mysql2" |
||||
|
} |
||||
|
|
||||
|
func (store *MysqlStore2) Initialize(configuration util.Configuration, prefix string) (err error) { |
||||
|
return store.initialize( |
||||
|
configuration.GetString(prefix+"createTable"), |
||||
|
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"), |
||||
|
configuration.GetInt(prefix+"connection_max_lifetime_seconds"), |
||||
|
configuration.GetBool(prefix+"interpolateParams"), |
||||
|
) |
||||
|
} |
||||
|
|
||||
|
func (store *MysqlStore2) initialize(createTable, user, password, hostname string, port int, database string, maxIdle, maxOpen, |
||||
|
maxLifetimeSeconds int, interpolateParams bool) (err error) { |
||||
|
|
||||
|
store.SupportBucketTable = true |
||||
|
store.SqlGenerator = &mysql.SqlGenMysql{ |
||||
|
CreateTableSqlTemplate: createTable, |
||||
|
DropTableSqlTemplate: "drop table %s", |
||||
|
} |
||||
|
|
||||
|
sqlUrl := fmt.Sprintf(CONNECTION_URL_PATTERN, user, password, hostname, port, database) |
||||
|
if interpolateParams { |
||||
|
sqlUrl += "&interpolateParams=true" |
||||
|
} |
||||
|
|
||||
|
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) |
||||
|
store.DB.SetConnMaxLifetime(time.Duration(maxLifetimeSeconds) * time.Second) |
||||
|
|
||||
|
if err = store.DB.Ping(); err != nil { |
||||
|
return fmt.Errorf("connect to %s error:%v", sqlUrl, err) |
||||
|
} |
||||
|
|
||||
|
return nil |
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue