You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
762 B
37 lines
762 B
package donut
|
|
|
|
import (
|
|
"errors"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
type donutBucket struct {
|
|
nodes []string
|
|
objects map[string][]byte
|
|
}
|
|
|
|
// GetNodes - get list of associated nodes for a given bucket
|
|
func (b donutBucket) GetNodes() ([]string, error) {
|
|
var nodes []string
|
|
for _, node := range b.nodes {
|
|
nodes = append(nodes, node)
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (b donutBucket) AddNode(nodeID, bucketID string) error {
|
|
tokens := strings.Split(bucketID, ":")
|
|
if len(tokens) != 3 {
|
|
return errors.New("Bucket ID malformed: " + bucketID)
|
|
}
|
|
// bucketName := tokens[0]
|
|
// aggregate := tokens[1]
|
|
// aggregate := "0"
|
|
part, err := strconv.Atoi(tokens[2])
|
|
if err != nil {
|
|
return errors.New("Part malformed: " + tokens[2])
|
|
}
|
|
b.nodes[part] = nodeID
|
|
return nil
|
|
}
|
|
|