2014-05-16 11:03:23 +04:00
|
|
|
package server
|
2014-05-02 13:08:20 +04:00
|
|
|
|
|
|
|
import (
|
2014-08-07 12:49:48 +04:00
|
|
|
"github.com/siddontang/ledisdb/config"
|
2014-05-16 11:03:23 +04:00
|
|
|
"github.com/siddontang/ledisdb/ledis"
|
2014-05-02 13:08:20 +04:00
|
|
|
"net"
|
2014-07-17 11:19:46 +04:00
|
|
|
"net/http"
|
2014-06-11 12:48:11 +04:00
|
|
|
"path"
|
2014-05-02 13:08:20 +04:00
|
|
|
"strings"
|
2014-09-23 13:28:09 +04:00
|
|
|
"sync"
|
2014-05-02 13:08:20 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
type App struct {
|
2014-08-07 12:49:48 +04:00
|
|
|
cfg *config.Config
|
2014-05-02 13:08:20 +04:00
|
|
|
|
2014-07-17 11:19:46 +04:00
|
|
|
listener net.Listener
|
|
|
|
httpListener net.Listener
|
2014-05-02 13:08:20 +04:00
|
|
|
|
2014-05-20 04:41:24 +04:00
|
|
|
ldb *ledis.Ledis
|
2014-05-08 06:54:33 +04:00
|
|
|
|
|
|
|
closed bool
|
2014-06-06 10:57:18 +04:00
|
|
|
|
|
|
|
quit chan struct{}
|
2014-06-08 12:43:59 +04:00
|
|
|
|
2014-06-11 12:48:11 +04:00
|
|
|
access *accessLog
|
|
|
|
|
2014-06-08 12:43:59 +04:00
|
|
|
//for slave replication
|
2014-06-09 13:23:32 +04:00
|
|
|
m *master
|
2014-08-25 10:18:23 +04:00
|
|
|
|
|
|
|
info *info
|
2014-09-02 13:55:12 +04:00
|
|
|
|
|
|
|
s *script
|
2014-09-23 13:28:09 +04:00
|
|
|
|
|
|
|
// handle slaves
|
|
|
|
slock sync.Mutex
|
|
|
|
slaves map[*client]struct{}
|
2014-05-02 13:08:20 +04:00
|
|
|
}
|
|
|
|
|
2014-07-17 11:19:46 +04:00
|
|
|
func netType(s string) string {
|
|
|
|
if strings.Contains(s, "/") {
|
|
|
|
return "unix"
|
|
|
|
} else {
|
|
|
|
return "tcp"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-07 12:49:48 +04:00
|
|
|
func NewApp(cfg *config.Config) (*App, error) {
|
2014-06-06 07:25:13 +04:00
|
|
|
if len(cfg.DataDir) == 0 {
|
2014-08-07 12:49:48 +04:00
|
|
|
println("use default datadir %s", config.DefaultDataDir)
|
|
|
|
cfg.DataDir = config.DefaultDataDir
|
2014-06-06 07:25:13 +04:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:08:20 +04:00
|
|
|
app := new(App)
|
|
|
|
|
2014-06-06 10:57:18 +04:00
|
|
|
app.quit = make(chan struct{})
|
|
|
|
|
2014-05-08 06:54:33 +04:00
|
|
|
app.closed = false
|
|
|
|
|
2014-05-02 13:08:20 +04:00
|
|
|
app.cfg = cfg
|
|
|
|
|
2014-09-23 13:28:09 +04:00
|
|
|
app.slaves = make(map[*client]struct{})
|
|
|
|
|
2014-05-02 13:08:20 +04:00
|
|
|
var err error
|
|
|
|
|
2014-08-25 10:18:23 +04:00
|
|
|
if app.info, err = newInfo(app); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-07-17 11:19:46 +04:00
|
|
|
if app.listener, err = net.Listen(netType(cfg.Addr), cfg.Addr); err != nil {
|
|
|
|
return nil, err
|
2014-05-02 13:08:20 +04:00
|
|
|
}
|
|
|
|
|
2014-07-17 11:19:46 +04:00
|
|
|
if len(cfg.HttpAddr) > 0 {
|
|
|
|
if app.httpListener, err = net.Listen(netType(cfg.HttpAddr), cfg.HttpAddr); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-05-02 13:08:20 +04:00
|
|
|
}
|
|
|
|
|
2014-06-11 12:48:11 +04:00
|
|
|
if len(cfg.AccessLog) > 0 {
|
|
|
|
if path.Dir(cfg.AccessLog) == "." {
|
|
|
|
app.access, err = newAcessLog(path.Join(cfg.DataDir, cfg.AccessLog))
|
|
|
|
} else {
|
|
|
|
app.access, err = newAcessLog(cfg.AccessLog)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-25 12:03:29 +04:00
|
|
|
flag := ledis.RDWRMode
|
|
|
|
if len(app.cfg.SlaveOf) > 0 {
|
|
|
|
//slave must readonly
|
|
|
|
flag = ledis.ROnlyMode
|
|
|
|
}
|
|
|
|
|
|
|
|
if app.ldb, err = ledis.Open2(cfg, flag); err != nil {
|
2014-05-02 13:08:20 +04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-06-09 13:23:32 +04:00
|
|
|
app.m = newMaster(app)
|
|
|
|
|
2014-09-02 13:55:12 +04:00
|
|
|
app.openScript()
|
|
|
|
|
2014-09-23 13:28:09 +04:00
|
|
|
app.ldb.AddNewLogEventHandler(app.publishNewLog)
|
|
|
|
|
2014-05-02 13:08:20 +04:00
|
|
|
return app, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) Close() {
|
2014-05-08 06:54:33 +04:00
|
|
|
if app.closed {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-06-06 10:57:18 +04:00
|
|
|
app.closed = true
|
|
|
|
|
|
|
|
close(app.quit)
|
|
|
|
|
2014-05-02 13:08:20 +04:00
|
|
|
app.listener.Close()
|
|
|
|
|
2014-07-17 11:19:46 +04:00
|
|
|
if app.httpListener != nil {
|
|
|
|
app.httpListener.Close()
|
|
|
|
}
|
|
|
|
|
2014-09-02 13:55:12 +04:00
|
|
|
app.closeScript()
|
|
|
|
|
2014-06-09 13:23:32 +04:00
|
|
|
app.m.Close()
|
|
|
|
|
2014-06-11 12:48:11 +04:00
|
|
|
if app.access != nil {
|
|
|
|
app.access.Close()
|
|
|
|
}
|
|
|
|
|
2014-05-20 04:41:24 +04:00
|
|
|
app.ldb.Close()
|
2014-05-02 13:08:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) Run() {
|
2014-06-08 12:43:59 +04:00
|
|
|
if len(app.cfg.SlaveOf) > 0 {
|
2014-06-09 13:23:32 +04:00
|
|
|
app.slaveof(app.cfg.SlaveOf)
|
2014-06-06 10:57:18 +04:00
|
|
|
}
|
|
|
|
|
2014-07-17 11:19:46 +04:00
|
|
|
go app.httpServe()
|
|
|
|
|
2014-05-08 06:54:33 +04:00
|
|
|
for !app.closed {
|
2014-05-02 13:08:20 +04:00
|
|
|
conn, err := app.listener.Accept()
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-07-31 14:28:19 +04:00
|
|
|
newClientRESP(conn, app)
|
2014-05-02 13:08:20 +04:00
|
|
|
}
|
|
|
|
}
|
2014-06-11 10:52:34 +04:00
|
|
|
|
2014-07-17 11:19:46 +04:00
|
|
|
func (app *App) httpServe() {
|
|
|
|
if app.httpListener == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
mux := http.NewServeMux()
|
|
|
|
|
2014-08-01 07:42:16 +04:00
|
|
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
newClientHTTP(app, w, r)
|
|
|
|
})
|
2014-07-17 11:19:46 +04:00
|
|
|
|
|
|
|
svr := http.Server{Handler: mux}
|
|
|
|
svr.Serve(app.httpListener)
|
|
|
|
}
|
|
|
|
|
2014-06-11 12:48:11 +04:00
|
|
|
func (app *App) Ledis() *ledis.Ledis {
|
2014-06-11 10:52:34 +04:00
|
|
|
return app.ldb
|
|
|
|
}
|