mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
clean format with gofmt -w
This commit is contained in:
parent
823691feaa
commit
9da955ca75
@ -280,7 +280,6 @@ func (s *Store) internalGet(key string) *Response {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Get all the items under key
|
// Get all the items under key
|
||||||
// If key is a file return the file
|
// If key is a file return the file
|
||||||
// If key is a directory reuturn an array of files
|
// If key is a directory reuturn an array of files
|
||||||
@ -352,7 +351,6 @@ func (s *Store) Delete(key string, index uint64) ([]byte, error) {
|
|||||||
|
|
||||||
s.Tree.delete(key)
|
s.Tree.delete(key)
|
||||||
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
resp.Expiration = &node.ExpireTime
|
resp.Expiration = &node.ExpireTime
|
||||||
// Kill the expire go routine
|
// Kill the expire go routine
|
||||||
|
@ -2,9 +2,9 @@ package store
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"path"
|
"path"
|
||||||
"strings"
|
|
||||||
"sort"
|
"sort"
|
||||||
)
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
@ -26,7 +26,7 @@ type treeNode struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TreeNode with its key. We use it when we need to sort the treeNodes.
|
// TreeNode with its key. We use it when we need to sort the treeNodes.
|
||||||
type tnWithKey struct{
|
type tnWithKey struct {
|
||||||
key string
|
key string
|
||||||
tn *treeNode
|
tn *treeNode
|
||||||
}
|
}
|
||||||
@ -63,7 +63,7 @@ func (t *tree) set(key string, value Node) bool {
|
|||||||
newDir := false
|
newDir := false
|
||||||
|
|
||||||
// go through all the path
|
// go through all the path
|
||||||
for i = 0; i < len(nodesName) - 1; i++ {
|
for i = 0; i < len(nodesName)-1; i++ {
|
||||||
|
|
||||||
// if we meet a new directory, all the directory after it must be new
|
// if we meet a new directory, all the directory after it must be new
|
||||||
if newDir {
|
if newDir {
|
||||||
@ -115,14 +115,14 @@ func (t *tree) set(key string, value Node) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Get the tree node of the key
|
// Get the tree node of the key
|
||||||
func (t *tree)internalGet(key string) (*treeNode, bool) {
|
func (t *tree) internalGet(key string) (*treeNode, bool) {
|
||||||
nodesName := split(key)
|
nodesName := split(key)
|
||||||
|
|
||||||
nodeMap := t.Root.NodeMap
|
nodeMap := t.Root.NodeMap
|
||||||
|
|
||||||
var i int
|
var i int
|
||||||
|
|
||||||
for i = 0; i < len(nodesName) - 1; i++ {
|
for i = 0; i < len(nodesName)-1; i++ {
|
||||||
node, ok := nodeMap[nodesName[i]]
|
node, ok := nodeMap[nodesName[i]]
|
||||||
if !ok || !node.Dir {
|
if !ok || !node.Dir {
|
||||||
return nil, false
|
return nil, false
|
||||||
@ -193,7 +193,7 @@ func (t *tree) delete(key string) bool {
|
|||||||
|
|
||||||
var i int
|
var i int
|
||||||
|
|
||||||
for i = 0; i < len(nodesName) - 1; i++ {
|
for i = 0; i < len(nodesName)-1; i++ {
|
||||||
node, ok := nodeMap[nodesName[i]]
|
node, ok := nodeMap[nodesName[i]]
|
||||||
if !ok || !node.Dir {
|
if !ok || !node.Dir {
|
||||||
return false
|
return false
|
||||||
@ -202,7 +202,7 @@ func (t *tree) delete(key string) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
node, ok := nodeMap[nodesName[i]]
|
node, ok := nodeMap[nodesName[i]]
|
||||||
if ok && !node.Dir{
|
if ok && !node.Dir {
|
||||||
delete(nodeMap, nodesName[i])
|
delete(nodeMap, nodesName[i])
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
@ -223,7 +223,7 @@ func (t *tree) traverse(f func(string, *Node), sort bool) {
|
|||||||
func dfs(key string, t *treeNode, f func(string, *Node)) {
|
func dfs(key string, t *treeNode, f func(string, *Node)) {
|
||||||
|
|
||||||
// base case
|
// base case
|
||||||
if len(t.NodeMap) == 0{
|
if len(t.NodeMap) == 0 {
|
||||||
f(key, &t.InternalNode)
|
f(key, &t.InternalNode)
|
||||||
|
|
||||||
// recursion
|
// recursion
|
||||||
@ -239,7 +239,7 @@ func dfs(key string, t *treeNode, f func(string, *Node)) {
|
|||||||
// apply the func f to each internal node
|
// apply the func f to each internal node
|
||||||
func sortDfs(key string, t *treeNode, f func(string, *Node)) {
|
func sortDfs(key string, t *treeNode, f func(string, *Node)) {
|
||||||
// base case
|
// base case
|
||||||
if len(t.NodeMap) == 0{
|
if len(t.NodeMap) == 0 {
|
||||||
f(key, &t.InternalNode)
|
f(key, &t.InternalNode)
|
||||||
|
|
||||||
// recursion
|
// recursion
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
package store
|
package store
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"fmt"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
"fmt"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestStoreGet(t *testing.T) {
|
func TestStoreGet(t *testing.T) {
|
||||||
@ -60,7 +60,6 @@ func TestStoreGet(t *testing.T) {
|
|||||||
t.Fatalf("Expect cannot delet /hello, but deleted! ")
|
t.Fatalf("Expect cannot delet /hello, but deleted! ")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// test list
|
// test list
|
||||||
ts.set("/hello/fooo", CreateTestNode("barbarbar"))
|
ts.set("/hello/fooo", CreateTestNode("barbarbar"))
|
||||||
ts.set("/hello/foooo/foo", CreateTestNode("barbarbar"))
|
ts.set("/hello/foooo/foo", CreateTestNode("barbarbar"))
|
||||||
@ -73,12 +72,12 @@ func TestStoreGet(t *testing.T) {
|
|||||||
length := len(nodes)
|
length := len(nodes)
|
||||||
|
|
||||||
for i := 0; i < length; i++ {
|
for i := 0; i < length; i++ {
|
||||||
fmt.Println(keys[i] , "=", nodes[i].Value, "[", dirs[i], "]")
|
fmt.Println(keys[i], "=", nodes[i].Value, "[", dirs[i], "]")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// speed test
|
// speed test
|
||||||
for i:=0; i < 100; i++ {
|
for i := 0; i < 100; i++ {
|
||||||
key := "/"
|
key := "/"
|
||||||
depth := rand.Intn(10)
|
depth := rand.Intn(10)
|
||||||
for j := 0; j < depth; j++ {
|
for j := 0; j < depth; j++ {
|
||||||
@ -100,10 +99,10 @@ func TestStoreGet(t *testing.T) {
|
|||||||
ts.traverse(f, true)
|
ts.traverse(f, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
func f (key string, n *Node) {
|
func f(key string, n *Node) {
|
||||||
fmt.Println(key, "=", n.Value)
|
fmt.Println(key, "=", n.Value)
|
||||||
}
|
}
|
||||||
|
|
||||||
func CreateTestNode(value string) Node{
|
func CreateTestNode(value string) Node {
|
||||||
return Node{value, time.Unix(0,0), nil}
|
return Node{value, time.Unix(0, 0), nil}
|
||||||
}
|
}
|
@ -5,6 +5,7 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// Typedefs
|
// Typedefs
|
||||||
@ -85,7 +86,6 @@ func checkResponse(prefix string, index uint64, resMap *map[string]Response) boo
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Notify the watcher a action happened
|
// Notify the watcher a action happened
|
||||||
func (w *WatcherHub) notify(resp Response) error {
|
func (w *WatcherHub) notify(resp Response) error {
|
||||||
resp.Key = path.Clean(resp.Key)
|
resp.Key = path.Clean(resp.Key)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user