Skip to content

Commit 328f46c

Browse files
committed
chore: coding style
1 parent 004b867 commit 328f46c

File tree

2 files changed

+57
-60
lines changed

2 files changed

+57
-60
lines changed

dq/producer.go

+17-20
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ const (
1919

2020
type (
2121
Producer interface {
22-
atWithWrapper(body []byte, at time.Time) (string, error)
2322
At(body []byte, at time.Time) (string, error)
2423
Close() error
25-
delayWithWrapper(body []byte, delay time.Duration) (string, error)
2624
Delay(body []byte, delay time.Duration) (string, error)
2725
Revoke(ids string) error
26+
27+
at(body []byte, at time.Time) (string, error)
28+
delay(body []byte, delay time.Duration) (string, error)
2829
}
2930

3031
producerCluster struct {
@@ -57,9 +58,7 @@ func NewProducer(beanstalks []Beanstalk) Producer {
5758

5859
func (p *producerCluster) At(body []byte, at time.Time) (string, error) {
5960
wrapped := wrap(body, at)
60-
return p.insert(func(node Producer) (string, error) {
61-
return node.atWithWrapper(wrapped, at)
62-
})
61+
return p.at(wrapped, at)
6362
}
6463

6564
func (p *producerCluster) Close() error {
@@ -74,9 +73,7 @@ func (p *producerCluster) Close() error {
7473

7574
func (p *producerCluster) Delay(body []byte, delay time.Duration) (string, error) {
7675
wrapped := wrap(body, time.Now().Add(delay))
77-
return p.insert(func(node Producer) (string, error) {
78-
return node.delayWithWrapper(wrapped, delay)
79-
})
76+
return p.delay(wrapped, delay)
8077
}
8178

8279
func (p *producerCluster) Revoke(ids string) error {
@@ -98,10 +95,22 @@ func (p *producerCluster) Revoke(ids string) error {
9895
return be.Err()
9996
}
10097

98+
func (p *producerCluster) at(body []byte, at time.Time) (string, error) {
99+
return p.insert(func(node Producer) (string, error) {
100+
return node.at(body, at)
101+
})
102+
}
103+
101104
func (p *producerCluster) cloneNodes() []Producer {
102105
return append([]Producer(nil), p.nodes...)
103106
}
104107

108+
func (p *producerCluster) delay(body []byte, delay time.Duration) (string, error) {
109+
return p.insert(func(node Producer) (string, error) {
110+
return node.delay(body, delay)
111+
})
112+
}
113+
105114
func (p *producerCluster) getWriteNodes() []Producer {
106115
if len(p.nodes) <= replicaNodes {
107116
return p.nodes
@@ -156,15 +165,3 @@ func (p *producerCluster) insert(fn func(node Producer) (string, error)) (string
156165

157166
return "", be.Err()
158167
}
159-
160-
func (p *producerCluster) atWithWrapper(body []byte, at time.Time) (string, error) {
161-
return p.insert(func(node Producer) (string, error) {
162-
return node.atWithWrapper(body, at)
163-
})
164-
}
165-
166-
func (p *producerCluster) delayWithWrapper(body []byte, delay time.Duration) (string, error) {
167-
return p.insert(func(node Producer) (string, error) {
168-
return node.delayWithWrapper(body, delay)
169-
})
170-
}

dq/producernode.go

+40-40
Original file line numberDiff line numberDiff line change
@@ -28,28 +28,56 @@ func NewProducerNode(endpoint, tube string) Producer {
2828
}
2929

3030
func (p *producerNode) At(body []byte, at time.Time) (string, error) {
31-
return p.atWithWrapper(wrap(body, at), at)
31+
return p.at(wrap(body, at), at)
3232
}
3333

34-
func (p *producerNode) atWithWrapper(body []byte, at time.Time) (string, error) {
34+
func (p *producerNode) Close() error {
35+
return p.conn.Close()
36+
}
37+
38+
func (p *producerNode) Delay(body []byte, delay time.Duration) (string, error) {
39+
return p.delay(wrap(body, time.Now().Add(delay)), delay)
40+
}
41+
42+
func (p *producerNode) Revoke(jointId string) error {
43+
ids := strings.Split(jointId, idSep)
44+
for _, id := range ids {
45+
fields := strings.Split(id, "/")
46+
if len(fields) < 3 {
47+
continue
48+
}
49+
if fields[0] != p.endpoint || fields[1] != p.tube {
50+
continue
51+
}
52+
53+
conn, err := p.conn.get()
54+
if err != nil {
55+
return err
56+
}
57+
58+
n, err := strconv.ParseUint(fields[2], 10, 64)
59+
if err != nil {
60+
return err
61+
}
62+
63+
return conn.Delete(n)
64+
}
65+
66+
// if not in this beanstalk, ignore
67+
return nil
68+
}
69+
70+
func (p *producerNode) at(body []byte, at time.Time) (string, error) {
3571
now := time.Now()
3672
if at.Before(now) {
3773
return "", ErrTimeBeforeNow
3874
}
3975

4076
duration := at.Sub(now)
41-
return p.delayWithWrapper(body, duration)
77+
return p.delay(body, duration)
4278
}
4379

44-
func (p *producerNode) Close() error {
45-
return p.conn.Close()
46-
}
47-
48-
func (p *producerNode) Delay(body []byte, delay time.Duration) (string, error) {
49-
return p.delayWithWrapper(wrap(body, time.Now().Add(delay)), delay)
50-
}
51-
52-
func (p *producerNode) delayWithWrapper(body []byte, delay time.Duration) (string, error) {
80+
func (p *producerNode) delay(body []byte, delay time.Duration) (string, error) {
5381
conn, err := p.conn.get()
5482
if err != nil {
5583
return "", err
@@ -90,31 +118,3 @@ func (p *producerNode) delayWithWrapper(body []byte, delay time.Duration) (strin
90118

91119
return "", err
92120
}
93-
94-
func (p *producerNode) Revoke(jointId string) error {
95-
ids := strings.Split(jointId, idSep)
96-
for _, id := range ids {
97-
fields := strings.Split(id, "/")
98-
if len(fields) < 3 {
99-
continue
100-
}
101-
if fields[0] != p.endpoint || fields[1] != p.tube {
102-
continue
103-
}
104-
105-
conn, err := p.conn.get()
106-
if err != nil {
107-
return err
108-
}
109-
110-
n, err := strconv.ParseUint(fields[2], 10, 64)
111-
if err != nil {
112-
return err
113-
}
114-
115-
return conn.Delete(n)
116-
}
117-
118-
// if not in this beanstalk, ignore
119-
return nil
120-
}

0 commit comments

Comments
 (0)