| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- /*
- Copyright 2014 CoreOS, Inc.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package client
- import (
- "encoding/json"
- "errors"
- "fmt"
- "net/http"
- "net/url"
- "path"
- "strconv"
- "strings"
- "time"
- "github.com/coreos/etcd/Godeps/_workspace/src/code.google.com/p/go.net/context"
- )
- var (
- DefaultV2KeysPrefix = "/v2/keys"
- )
- var (
- ErrUnavailable = errors.New("client: no available etcd endpoints")
- ErrNoLeader = errors.New("client: no leader")
- ErrKeyNoExist = errors.New("client: key does not exist")
- ErrKeyExists = errors.New("client: key already exists")
- )
- func NewKeysAPI(c httpActionDo) KeysAPI {
- return &httpKeysAPI{
- client: c,
- prefix: DefaultV2KeysPrefix,
- }
- }
- func NewDiscoveryKeysAPI(c httpActionDo) KeysAPI {
- return &httpKeysAPI{
- client: c,
- prefix: "",
- }
- }
- type KeysAPI interface {
- Create(ctx context.Context, key, value string, ttl time.Duration) (*Response, error)
- Get(ctx context.Context, key string) (*Response, error)
- Watch(key string, idx uint64) Watcher
- RecursiveWatch(key string, idx uint64) Watcher
- }
- type Watcher interface {
- Next(context.Context) (*Response, error)
- }
- type Response struct {
- Action string `json:"action"`
- Node *Node `json:"node"`
- PrevNode *Node `json:"prevNode"`
- }
- type Nodes []*Node
- type Node struct {
- Key string `json:"key"`
- Value string `json:"value"`
- Nodes Nodes `json:"nodes"`
- ModifiedIndex uint64 `json:"modifiedIndex"`
- CreatedIndex uint64 `json:"createdIndex"`
- }
- func (n *Node) String() string {
- return fmt.Sprintf("{Key: %s, CreatedIndex: %d, ModifiedIndex: %d}", n.Key, n.CreatedIndex, n.ModifiedIndex)
- }
- type httpKeysAPI struct {
- client httpActionDo
- prefix string
- }
- func (k *httpKeysAPI) Create(ctx context.Context, key, val string, ttl time.Duration) (*Response, error) {
- create := &createAction{
- Prefix: k.prefix,
- Key: key,
- Value: val,
- }
- if ttl >= 0 {
- uttl := uint64(ttl.Seconds())
- create.TTL = &uttl
- }
- resp, body, err := k.client.Do(ctx, create)
- if err != nil {
- return nil, err
- }
- return unmarshalHTTPResponse(resp.StatusCode, body)
- }
- func (k *httpKeysAPI) Get(ctx context.Context, key string) (*Response, error) {
- get := &getAction{
- Prefix: k.prefix,
- Key: key,
- Recursive: false,
- }
- resp, body, err := k.client.Do(ctx, get)
- if err != nil {
- return nil, err
- }
- return unmarshalHTTPResponse(resp.StatusCode, body)
- }
- func (k *httpKeysAPI) Watch(key string, idx uint64) Watcher {
- return &httpWatcher{
- client: k.client,
- nextWait: waitAction{
- Prefix: k.prefix,
- Key: key,
- WaitIndex: idx,
- Recursive: false,
- },
- }
- }
- func (k *httpKeysAPI) RecursiveWatch(key string, idx uint64) Watcher {
- return &httpWatcher{
- client: k.client,
- nextWait: waitAction{
- Prefix: k.prefix,
- Key: key,
- WaitIndex: idx,
- Recursive: true,
- },
- }
- }
- type httpWatcher struct {
- client httpActionDo
- nextWait waitAction
- }
- func (hw *httpWatcher) Next(ctx context.Context) (*Response, error) {
- httpresp, body, err := hw.client.Do(ctx, &hw.nextWait)
- if err != nil {
- return nil, err
- }
- resp, err := unmarshalHTTPResponse(httpresp.StatusCode, body)
- if err != nil {
- return nil, err
- }
- hw.nextWait.WaitIndex = resp.Node.ModifiedIndex + 1
- return resp, nil
- }
- // v2KeysURL forms a URL representing the location of a key.
- // The endpoint argument represents the base URL of an etcd
- // server. The prefix is the path needed to route from the
- // provided endpoint's path to the root of the keys API
- // (typically "/v2/keys").
- func v2KeysURL(ep url.URL, prefix, key string) *url.URL {
- ep.Path = path.Join(ep.Path, prefix, key)
- return &ep
- }
- type getAction struct {
- Prefix string
- Key string
- Recursive bool
- }
- func (g *getAction) HTTPRequest(ep url.URL) *http.Request {
- u := v2KeysURL(ep, g.Prefix, g.Key)
- params := u.Query()
- params.Set("recursive", strconv.FormatBool(g.Recursive))
- u.RawQuery = params.Encode()
- req, _ := http.NewRequest("GET", u.String(), nil)
- return req
- }
- type waitAction struct {
- Prefix string
- Key string
- WaitIndex uint64
- Recursive bool
- }
- func (w *waitAction) HTTPRequest(ep url.URL) *http.Request {
- u := v2KeysURL(ep, w.Prefix, w.Key)
- params := u.Query()
- params.Set("wait", "true")
- params.Set("waitIndex", strconv.FormatUint(w.WaitIndex, 10))
- params.Set("recursive", strconv.FormatBool(w.Recursive))
- u.RawQuery = params.Encode()
- req, _ := http.NewRequest("GET", u.String(), nil)
- return req
- }
- type createAction struct {
- Prefix string
- Key string
- Value string
- TTL *uint64
- }
- func (c *createAction) HTTPRequest(ep url.URL) *http.Request {
- u := v2KeysURL(ep, c.Prefix, c.Key)
- params := u.Query()
- params.Set("prevExist", "false")
- u.RawQuery = params.Encode()
- form := url.Values{}
- form.Add("value", c.Value)
- if c.TTL != nil {
- form.Add("ttl", strconv.FormatUint(*c.TTL, 10))
- }
- body := strings.NewReader(form.Encode())
- req, _ := http.NewRequest("PUT", u.String(), body)
- req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
- return req
- }
- func unmarshalHTTPResponse(code int, body []byte) (res *Response, err error) {
- switch code {
- case http.StatusOK, http.StatusCreated:
- res, err = unmarshalSuccessfulResponse(body)
- default:
- err = unmarshalErrorResponse(code)
- }
- return
- }
- func unmarshalSuccessfulResponse(body []byte) (*Response, error) {
- var res Response
- err := json.Unmarshal(body, &res)
- if err != nil {
- return nil, err
- }
- return &res, nil
- }
- func unmarshalErrorResponse(code int) error {
- switch code {
- case http.StatusNotFound:
- return ErrKeyNoExist
- case http.StatusPreconditionFailed:
- return ErrKeyExists
- case http.StatusInternalServerError:
- // this isn't necessarily true
- return ErrNoLeader
- default:
- }
- return fmt.Errorf("unrecognized HTTP status code %d", code)
- }
|