-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmain.go
215 lines (183 loc) · 4.49 KB
/
main.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package main
import (
"context"
"errors"
"fmt"
"log"
"os"
"runtime/trace"
"sync"
"time"
"golang.org/x/sync/errgroup"
)
type (
Bean int
GroundBean int
Water int
HotWater int
Coffee int
)
const (
GramBeans Bean = 1
GramGroundBeans GroundBean = 1
MilliLiterWater Water = 1
MilliLiterHotWater HotWater = 1
CupsCoffee Coffee = 1
)
func (w Water) String() string {
return fmt.Sprintf("%d[ml] water", int(w))
}
func (hw HotWater) String() string {
return fmt.Sprintf("%d[ml] hot water", int(hw))
}
func (b Bean) String() string {
return fmt.Sprintf("%d[g] beans", int(b))
}
func (gb GroundBean) String() string {
return fmt.Sprintf("%d[g] ground beans", int(gb))
}
func (cups Coffee) String() string {
return fmt.Sprintf("%d cup(s) coffee", int(cups))
}
// 1カップのコーヒーを淹れるのに必要な水の量
func (cups Coffee) Water() Water {
return Water(180*cups) / MilliLiterWater
}
// 1カップのコーヒーを淹れるのに必要なお湯の量
func (cups Coffee) HotWater() HotWater {
return HotWater(180*cups) / MilliLiterHotWater
}
// 1カップのコーヒーを淹れるのに必要な豆の量
func (cups Coffee) Beans() Bean {
return Bean(20*cups) / GramBeans
}
// 1カップのコーヒーを淹れるのに必要な粉の量
func (cups Coffee) GroundBeans() GroundBean {
return GroundBean(20*cups) / GramGroundBeans
}
func main() {
f, err := os.Create("trace.out")
if err != nil {
log.Fatalln("Error:", err)
}
defer func() {
if err := f.Close(); err != nil {
log.Fatalln("Error:", err)
}
}()
if err := trace.Start(f); err != nil {
log.Fatalln("Error:", err)
}
defer trace.Stop()
_main()
}
func _main() {
// 作るコーヒーの数
const amountCoffee = 20 * CupsCoffee
ctx, task := trace.NewTask(context.Background(), "make coffe")
defer task.End()
// 材料
water := amountCoffee.Water()
beans := amountCoffee.Beans()
fmt.Println(water)
fmt.Println(beans)
var eg errgroup.Group
// お湯を沸かす
var hotWater HotWater
var hwmu sync.Mutex
for water > 0 {
water -= 600 * MilliLiterWater
eg.Go(func() error {
hw, err := boil(ctx, 600*MilliLiterWater)
if err != nil {
return err
}
hwmu.Lock()
defer hwmu.Unlock()
hotWater += hw
return nil
})
}
// 豆を挽く
var groundBeans GroundBean
var gbmu sync.Mutex
for beans > 0 {
beans -= 20 * GramBeans
eg.Go(func() error {
gb, err := grind(ctx, 20*GramBeans)
if err != nil {
return err
}
gbmu.Lock()
defer gbmu.Unlock()
groundBeans += gb
return nil
})
}
if err := eg.Wait(); err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
return
}
fmt.Println(hotWater)
fmt.Println(groundBeans)
// コーヒーを淹れる
var eg2 errgroup.Group
var coffee Coffee
var cfmu sync.Mutex
cups := 4 * CupsCoffee
for hotWater >= cups.HotWater() && groundBeans >= cups.GroundBeans() {
hotWater -= cups.HotWater()
groundBeans -= cups.GroundBeans()
eg2.Go(func() error {
cf, err := brew(ctx, cups.HotWater(), cups.GroundBeans())
if err != nil {
return err
}
cfmu.Lock()
defer cfmu.Unlock()
coffee += cf
return nil
})
}
if err := eg2.Wait(); err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
return
}
fmt.Println(coffee)
}
// お湯を沸かす
func boil(ctx context.Context, water Water) (HotWater, error) {
defer trace.StartRegion(ctx, "boil").End()
if water > 600*MilliLiterWater {
return 0, errors.New("1度に沸かすことのできるお湯は600[ml]までです")
}
time.Sleep(400 * time.Millisecond)
return HotWater(water), nil
}
// コーヒー豆を挽く
func grind(ctx context.Context, beans Bean) (GroundBean, error) {
defer trace.StartRegion(ctx, "grind").End()
if beans > 20*GramBeans {
return 0, errors.New("1度に挽くことのできる豆は20[g]までです")
}
time.Sleep(200 * time.Millisecond)
return GroundBean(beans), nil
}
// コーヒーを淹れる
func brew(ctx context.Context, hotWater HotWater, groundBeans GroundBean) (Coffee, error) {
defer trace.StartRegion(ctx, "brew").End()
if hotWater < (1 * CupsCoffee).HotWater() {
return 0, errors.New("お湯が足りません")
}
if groundBeans < (1 * CupsCoffee).GroundBeans() {
return 0, errors.New("粉が足りません")
}
time.Sleep(1 * time.Second)
// 少ない方を優先する
cups1 := Coffee(hotWater / (1 * CupsCoffee).HotWater())
cups2 := Coffee(groundBeans / (1 * CupsCoffee).GroundBeans())
if cups1 < cups2 {
return cups1, nil
}
return cups2, nil
}