2018-05-27 05:02:49 +00:00
|
|
|
package postgres
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
2018-05-27 18:52:26 +00:00
|
|
|
"fmt"
|
2018-05-27 05:02:49 +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/lib/pq"
|
2018-05-27 05:02:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2020-10-22 21:27:47 +00:00
|
|
|
CONNECTION_URL_PATTERN = "host=%s port=%d sslmode=%s connect_timeout=30"
|
2018-05-27 05:02:49 +00:00
|
|
|
)
|
|
|
|
|
2021-01-19 21:53:16 +00:00
|
|
|
type SqlGenPostgres struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = abstract_sql.SqlGenerator(&SqlGenPostgres{})
|
|
|
|
)
|
|
|
|
|
|
|
|
func (gen *SqlGenPostgres) GetSqlInsert(bucket string) string {
|
|
|
|
return "INSERT INTO filemeta (dirhash,name,directory,meta) VALUES($1,$2,$3,$4)"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenPostgres) GetSqlUpdate(bucket string) string {
|
|
|
|
return "UPDATE filemeta SET meta=$1 WHERE dirhash=$2 AND name=$3 AND directory=$4"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenPostgres) GetSqlFind(bucket string) string {
|
|
|
|
return "SELECT meta FROM filemeta WHERE dirhash=$1 AND name=$2 AND directory=$3"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenPostgres) GetSqlDelete(bucket string) string {
|
|
|
|
return "DELETE FROM filemeta WHERE dirhash=$1 AND name=$2 AND directory=$3"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenPostgres) GetSqlDeleteFolderChildren(bucket string) string {
|
|
|
|
return "DELETE FROM filemeta WHERE dirhash=$1 AND directory=$2"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenPostgres) GetSqlListExclusive(bucket string) string {
|
|
|
|
return "SELECT NAME, meta FROM filemeta WHERE dirhash=$1 AND name>$2 AND directory=$3 AND name like $4 ORDER BY NAME ASC LIMIT $5"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gen *SqlGenPostgres) GetSqlListInclusive(bucket string) string {
|
|
|
|
return "SELECT NAME, meta FROM filemeta WHERE dirhash=$1 AND name>=$2 AND directory=$3 AND name like $4 ORDER BY NAME ASC LIMIT $5"
|
|
|
|
}
|
|
|
|
|
2018-05-27 05:02:49 +00:00
|
|
|
func init() {
|
2020-09-01 07:21:19 +00:00
|
|
|
filer.Stores = append(filer.Stores, &PostgresStore{})
|
2018-05-27 05:02:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PostgresStore struct {
|
|
|
|
abstract_sql.AbstractSqlStore
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *PostgresStore) GetName() string {
|
|
|
|
return "postgres"
|
|
|
|
}
|
|
|
|
|
2020-01-29 17:09:55 +00:00
|
|
|
func (store *PostgresStore) Initialize(configuration util.Configuration, prefix string) (err error) {
|
2018-05-27 05:02:49 +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.GetString(prefix+"sslmode"),
|
|
|
|
configuration.GetInt(prefix+"connection_max_idle"),
|
|
|
|
configuration.GetInt(prefix+"connection_max_open"),
|
2018-05-27 05:02:49 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *PostgresStore) initialize(user, password, hostname string, port int, database, sslmode string, maxIdle, maxOpen int) (err error) {
|
|
|
|
|
2021-01-19 21:53:16 +00:00
|
|
|
store.SqlGenerator = &SqlGenPostgres{}
|
2018-05-27 05:02:49 +00:00
|
|
|
|
2020-10-22 21:27:47 +00:00
|
|
|
sqlUrl := fmt.Sprintf(CONNECTION_URL_PATTERN, hostname, port, sslmode)
|
|
|
|
if user != "" {
|
|
|
|
sqlUrl += " user=" + user
|
|
|
|
}
|
2020-03-11 08:13:40 +00:00
|
|
|
if password != "" {
|
2020-03-17 17:01:55 +00:00
|
|
|
sqlUrl += " password=" + password
|
2020-03-11 08:13:40 +00:00
|
|
|
}
|
|
|
|
if database != "" {
|
2020-03-17 17:01:55 +00:00
|
|
|
sqlUrl += " dbname=" + database
|
2020-03-11 08:13:40 +00:00
|
|
|
}
|
2018-05-27 05:02:49 +00:00
|
|
|
var dbErr error
|
|
|
|
store.DB, dbErr = sql.Open("postgres", 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)
|
|
|
|
|
|
|
|
if err = store.DB.Ping(); err != nil {
|
|
|
|
return fmt.Errorf("connect to %s error:%v", sqlUrl, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|