tracker/server/store/store.go

127 lines
2.7 KiB
Go
Raw Normal View History

2016-01-25 06:41:39 +01:00
// Copyright 2016 The Chihaya Authors. All rights reserved.
// Use of this source code is governed by the BSD 2-Clause license,
// which can be found in the LICENSE file.
package store
import (
"errors"
"log"
"sync"
"time"
"gopkg.in/yaml.v2"
2016-03-03 02:18:55 +01:00
"github.com/chihaya/chihaya"
2016-01-25 06:41:39 +01:00
"github.com/chihaya/chihaya/server"
"github.com/chihaya/chihaya/tracker"
)
var theStore *Store
func init() {
server.Register("store", constructor)
}
2016-03-03 02:18:55 +01:00
func constructor(srvcfg *chihaya.ServerConfig, tkr *tracker.Tracker) (server.Server, error) {
2016-01-25 06:41:39 +01:00
if theStore == nil {
cfg, err := newConfig(srvcfg)
if err != nil {
return nil, errors.New("store: invalid store config: " + err.Error())
}
2016-02-16 21:47:40 +01:00
cs, err := OpenClientStore(cfg)
if err != nil {
return nil, err
}
ps, err := OpenPeerStore(cfg)
if err != nil {
return nil, err
}
ips, err := OpenIPStore(cfg)
if err != nil {
return nil, err
}
2016-03-03 09:39:19 +01:00
ss, err := OpenStringStore(cfg)
if err != nil {
return nil, err
}
2016-01-25 06:41:39 +01:00
theStore = &Store{
2016-02-16 21:47:40 +01:00
cfg: cfg,
tkr: tkr,
shutdown: make(chan struct{}),
2016-02-16 21:47:40 +01:00
ClientStore: cs,
PeerStore: ps,
IPStore: ips,
2016-03-03 09:39:19 +01:00
StringStore: ss,
2016-01-25 06:41:39 +01:00
}
}
return theStore, nil
}
type Config struct {
Addr string `yaml:"addr"`
2016-02-26 01:33:39 +01:00
RequestTimeout time.Duration `yaml:"request_timeout"`
ReadTimeout time.Duration `yaml:"read_timeout"`
WriteTimeout time.Duration `yaml:"write_timeout"`
GCAfter time.Duration `yaml:"gc_after"`
ClientStore string `yaml:"client_store"`
ClientStoreConfig interface{} `yaml:"client_store_config"`
PeerStore string `yaml:"peer_store"`
PeerStoreConfig interface{} `yaml:"peer_store_config"`
IPStore string `yaml:"ip_store"`
IPStoreConfig interface{} `yaml:"ip_store_config"`
2016-03-03 09:39:19 +01:00
StringStore string `yaml:"string_store"`
StringStoreConfig interface{} `yaml:"string_store_config"`
2016-01-25 06:41:39 +01:00
}
2016-03-03 02:18:55 +01:00
func newConfig(srvcfg *chihaya.ServerConfig) (*Config, error) {
2016-03-02 22:15:48 +01:00
bytes, err := yaml.Marshal(srvcfg.Config)
2016-01-25 06:41:39 +01:00
if err != nil {
return nil, err
}
var cfg Config
err = yaml.Unmarshal(bytes, &cfg)
if err != nil {
return nil, err
}
return &cfg, nil
}
// MustGetStore is used by middleware to access the store.
//
// This function calls log.Fatal if a server hasn't been already created by
// the server package.
func MustGetStore() *Store {
if theStore == nil {
log.Fatal("store middleware used without store server")
}
return theStore
}
type Store struct {
cfg *Config
tkr *tracker.Tracker
shutdown chan struct{}
wg sync.WaitGroup
PeerStore
ClientStore
IPStore
2016-03-03 09:39:19 +01:00
StringStore
2016-01-25 06:41:39 +01:00
}
func (s *Store) Start() {
}
func (s *Store) Stop() {
close(s.shutdown)
s.wg.Wait()
}