etcd/command.go

169 lines
3.9 KiB
Go
Raw Normal View History

package main
2013-06-21 02:59:23 +04:00
import (
2013-06-21 02:59:23 +04:00
"encoding/json"
2013-07-31 09:39:45 +04:00
"fmt"
"github.com/coreos/etcd/store"
"github.com/coreos/go-raft"
2013-07-31 09:39:45 +04:00
"path"
2013-06-17 01:02:07 +04:00
"time"
2013-06-21 02:59:23 +04:00
)
const commandPrefix = "etcd:"
func commandName(name string) string {
return commandPrefix + name
}
// A command represents an action to be taken on the replicated state machine.
type Command interface {
CommandName() string
Apply(server *raft.Server) (interface{}, error)
}
// Set command
type SetCommand struct {
2013-06-21 02:59:23 +04:00
Key string `json:"key"`
Value string `json:"value"`
ExpireTime time.Time `json:"expireTime"`
}
2013-07-10 01:02:59 +04:00
// The name of the set command in the log
func (c *SetCommand) CommandName() string {
return commandName("set")
}
2013-07-10 01:02:59 +04:00
// Set the key-value pair
func (c *SetCommand) Apply(server *raft.Server) (interface{}, error) {
2013-07-10 00:14:12 +04:00
return etcdStore.Set(c.Key, c.Value, c.ExpireTime, server.CommitIndex())
}
2013-07-08 22:00:10 +04:00
// TestAndSet command
type TestAndSetCommand struct {
Key string `json:"key"`
Value string `json:"value"`
PrevValue string `json: prevValue`
ExpireTime time.Time `json:"expireTime"`
}
2013-07-10 01:02:59 +04:00
// The name of the testAndSet command in the log
2013-07-08 22:00:10 +04:00
func (c *TestAndSetCommand) CommandName() string {
return commandName("testAndSet")
2013-07-08 22:00:10 +04:00
}
2013-07-10 01:02:59 +04:00
// Set the key-value pair if the current value of the key equals to the given prevValue
2013-07-08 22:00:10 +04:00
func (c *TestAndSetCommand) Apply(server *raft.Server) (interface{}, error) {
2013-07-10 00:14:12 +04:00
return etcdStore.TestAndSet(c.Key, c.PrevValue, c.Value, c.ExpireTime, server.CommitIndex())
}
// Get command
type GetCommand struct {
Key string `json:"key"`
}
2013-07-10 01:02:59 +04:00
// The name of the get command in the log
func (c *GetCommand) CommandName() string {
return commandName("get")
}
2013-07-10 01:02:59 +04:00
// Get the value of key
func (c *GetCommand) Apply(server *raft.Server) (interface{}, error) {
2013-07-12 19:41:28 +04:00
return etcdStore.Get(c.Key)
}
// Delete command
type DeleteCommand struct {
Key string `json:"key"`
}
2013-07-10 01:02:59 +04:00
// The name of the delete command in the log
func (c *DeleteCommand) CommandName() string {
return commandName("delete")
}
2013-06-21 02:59:23 +04:00
// Delete the key
func (c *DeleteCommand) Apply(server *raft.Server) (interface{}, error) {
2013-07-10 00:14:12 +04:00
return etcdStore.Delete(c.Key, server.CommitIndex())
}
// Watch command
type WatchCommand struct {
2013-07-01 03:30:41 +04:00
Key string `json:"key"`
SinceIndex uint64 `json:"sinceIndex"`
}
2013-07-10 01:02:59 +04:00
// The name of the watch command in the log
func (c *WatchCommand) CommandName() string {
return commandName("watch")
}
func (c *WatchCommand) Apply(server *raft.Server) (interface{}, error) {
2013-07-10 01:02:59 +04:00
// create a new watcher
2013-08-05 04:17:40 +04:00
watcher := store.NewWatcher()
2013-06-13 22:01:06 +04:00
// add to the watchers list
2013-07-10 00:14:12 +04:00
etcdStore.AddWatcher(c.Key, watcher, c.SinceIndex)
2013-06-13 22:01:06 +04:00
// wait for the notification for any changing
2013-07-10 00:14:12 +04:00
res := <-watcher.C
if res == nil {
2013-08-06 04:03:15 +04:00
return nil, fmt.Errorf("Clearing watch")
}
return json.Marshal(res)
}
// JoinCommand
type JoinCommand struct {
2013-08-10 08:06:16 +04:00
Name string `json:"name"`
RaftURL string `json:"raftURL"`
EtcdURL string `json:"etcdURL"`
}
2013-08-15 02:20:25 +04:00
func newJoinCommand() *JoinCommand {
return &JoinCommand{
Name: r.name,
RaftURL: r.url,
EtcdURL: e.url,
}
}
2013-07-10 01:02:59 +04:00
// The name of the join command in the log
func (c *JoinCommand) CommandName() string {
return commandName("join")
}
2013-07-10 01:02:59 +04:00
// Join a server to the cluster
func (c *JoinCommand) Apply(raftServer *raft.Server) (interface{}, error) {
// check if the join command is from a previous machine, who lost all its previous log.
response, _ := etcdStore.RawGet(path.Join("_etcd/machines", c.Name))
if response != nil {
return []byte("join success"), nil
}
// check machine number in the cluster
num := machineNum()
if num == maxClusterSize {
return []byte("join fail"), fmt.Errorf(errors[103])
}
2013-08-10 08:06:16 +04:00
addNameToURL(c.Name, c.RaftURL, c.EtcdURL)
// add peer in raft
err := raftServer.AddPeer(c.Name)
// add machine in etcd storage
key := path.Join("_etcd/machines", c.Name)
2013-08-10 08:06:16 +04:00
value := fmt.Sprintf("raft=%s&etcd=%s", c.RaftURL, c.EtcdURL)
2013-07-31 09:39:45 +04:00
etcdStore.Set(key, value, time.Unix(0, 0), raftServer.CommitIndex())
2013-07-14 06:13:07 +04:00
return []byte("join success"), err
}
func (c *JoinCommand) NodeName() string {
return c.Name
}