-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroshiapp.go
138 lines (123 loc) · 2.49 KB
/
roshiapp.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package roshiapp
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"log"
"net/http"
"strconv"
"strings"
"time"
"github.com/shayanh/roshi/common"
)
const key = "pgo"
type Element struct {
Node int
Round int
}
func parseElement(s string) (Element, error) {
words := strings.Split(s, ",")
if len(words) != 2 {
return Element{}, errors.New("unexpected element format")
}
node, err := strconv.Atoi(words[0])
if err != nil {
return Element{}, err
}
round, err := strconv.Atoi(words[1])
if err != nil {
return Element{}, err
}
return Element{Node: node, Round: round}, err
}
func (e Element) String() string {
return fmt.Sprintf("%d,%d", e.Node, e.Round)
}
type Client struct {
server string
client *http.Client
}
func NewClient(server string) *Client {
return &Client{
server: server,
client: &http.Client{},
}
}
func (c *Client) Add(e Element) error {
items := []common.KeyScoreMember{
{
Key: key,
Score: float64(time.Now().UnixNano()),
Member: e.String(),
},
}
reqBody, err := json.Marshal(items)
if err != nil {
return err
}
resp, err := c.client.Post(c.server, "application/json", bytes.NewBuffer(reqBody))
if err != nil {
return err
}
defer func() {
if err := resp.Body.Close(); err != nil {
log.Println(err)
}
}()
if resp.StatusCode != http.StatusOK {
return fmt.Errorf("non 200 response: %v", resp)
}
return nil
}
type ReadResponse struct {
Duration string `json:"duration"`
Records map[string][]common.KeyScoreMember `json:"records"`
}
func (c *Client) Read() ([]Element, error) {
keys := [][]byte{
[]byte("pgo"),
}
reqBody, err := json.Marshal(keys)
if err != nil {
return nil, err
}
req, err := http.NewRequest("GET", c.server, bytes.NewBuffer(reqBody))
if err != nil {
return nil, err
}
q := req.URL.Query()
q.Add("limit", "10000")
req.URL.RawQuery = q.Encode()
resp, err := c.client.Do(req)
if err != nil {
return nil, err
}
defer func() {
if err := resp.Body.Close(); err != nil {
log.Println(err)
}
}()
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("non 200 response: %s", resp.Status)
}
var data ReadResponse
err = json.NewDecoder(resp.Body).Decode(&data)
if err != nil {
return nil, err
}
pgoData, ok := data.Records["pgo"]
if !ok {
return nil, nil
}
var elems []Element
for _, ksm := range pgoData {
element, err := parseElement(ksm.Member)
if err != nil {
log.Println(err)
} else {
elems = append(elems, element)
}
}
return elems, nil
}