forked from streadway/zk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.go
71 lines (60 loc) · 1.86 KB
/
error.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright (c) 2013, Sean Treadway, SoundCloud Ltd.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Source code and contact info at http://github.com/streadway/zk
package zk
import (
"errors"
"fmt"
"io"
)
var log = func(f string, a ...interface{}) { fmt.Printf(f+"\n", a...) }
var logln = fmt.Println
type errCode int32
var (
ErrExists = errors.New("zk: node already exists") // Create
ErrInvalidAcl = errors.New("zk: ACL is not supported") // Create
ErrVersion = errors.New("zk: node version differs") // Set/Delete
ErrNoNode = errors.New("zk: no node found at path") // Exists/Get
ErrExpired = errors.New("zk: session expired") // All
ErrConnection = errors.New("zk: connection lost") // All
ErrAuth = errors.New("zk: connection unauthorized") // All
ErrProtocol = errors.New("zk: protocol error")
errMap = map[errCode]error{
errNodeExists: ErrExists,
errBadVersion: ErrVersion,
errNoNode: ErrNoNode,
errInvalidAcl: ErrInvalidAcl,
}
)
func ioError(err error) error {
switch err {
case io.EOF:
return ErrConnection
}
return err
}
func (e errCode) toError() error {
err := errMap[e]
if err == nil && e != 0 {
panic(fmt.Errorf("unknown error: %d", e))
}
return err
}
const (
// API errors
//errApiError = errCode(-100)
errNoNode errCode = -101
//errNoAuth = errCode(-102)
errBadVersion = errCode(-103)
//errNoChildrenForEphemerals = errCode(-108)
errNodeExists = errCode(-110)
//errNotEmpty = errCode(-111)
errSessionExpired = errCode(-112)
//errInvalidCallback = errCode(-113)
errInvalidAcl = errCode(-114)
//errAuthFailed = errCode(-115)
//errClosing = errCode(-116)
//errNothing = errCode(-117)
//errSessionMoved = errCode(-118)
)