-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathqueue_code.go
146 lines (111 loc) · 3.3 KB
/
queue_code.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
package main
import (
"strconv"
"io"
"net/http"
"fmt"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"math/rand"
"time"
"sync"
)
var global_db *mgo.Database
//Get random number from range [ min, max ]
func Random(min, max int) int {
rand.Seed(time.Now().UTC().UnixNano())
return rand.Intn(max - min + 1) + min
}
type Currency struct {
Id bson.ObjectId `json:"id" bson:"_id,omitempty"`
Amount float64 `bson:"amount"`
Account string `bson:"account"`
Code string `bson:"code"`
}
var countWithdraw = 0
var maxUser = 100
var in chan string
var out chan Result
type Result struct{
Account string
Result string
}
func withdraw(w http.ResponseWriter, r *http.Request) {
var wg sync.WaitGroup
wg.Add(1)
// random user from 1 to 10
account := "user" + strconv.Itoa( Random( 1, maxUser ) )
go func () {
in <- account
for {
select {
case result := <- out:
if result.Account == account{
fmt.Printf("Result %s and countWithdraw is %d\n", result.Result, countWithdraw)
io.WriteString(w, result.Result)
wg.Done()
//should return, otherwise it's still pop out value from out channel
return
}else{
fmt.Printf("Dismatch: %s and %s\n", result.Account, account)
panic("why ?, Something went wrong")
//push to out again
//out <- result
}
};
}
}()
wg.Wait()
}
func main() {
in = make(chan string)
out = make(chan Result)
session, _ := mgo.Dial("localhost:27017")
fmt.Printf("Session is %p\n", session)
global_db = session.DB( "db_log" )
//make sure it is empty first
global_db.C("bank").DropCollection()
//Init maxUser with amount are 1000USD.
for i := 1; i <= maxUser; i++ {
user := Currency{ Account : "user" + strconv.Itoa( i ) , Amount: 1000.00, Code:"USD" }
err := global_db.C("bank").Insert(&user)
if err != nil{
panic("insert error")
}
}
go func ( in *chan string ) {
for {
select{
case account := <-*in:
/*count_queue += 1
fmt.Printf("count_queue %d\n", count_queue)*/
entry := Currency{}
err := global_db.C("bank").Find(bson.M{"account": account }).One(&entry)
//time.Sleep(100 * time.Millisecond)
if err != nil {
panic(err)
}
fmt.Printf("%+v\n", entry)
//step 2: check if balance is valid to widthdraw
if entry.Amount < 50.00 {
fmt.Printf("out_of_balance\n")
out <- Result{ Account: account, Result: "out_of_balance"}
//io.WriteString(w, "out_of_balance")
}else{
//step 3: subtract current balance and update back to database
entry.Amount = entry.Amount - 50.000
err = global_db.C("bank").UpdateId(entry.Id, entry)
if err != nil{
panic("update error")
out <- Result{ Account: account, Result: "update error"}
}
countWithdraw += 1
fmt.Printf("countWithdraw %d\n", countWithdraw)
out <- Result{ Account: account, Result: fmt.Sprintf("countWithdraw %d\n", countWithdraw)}
}
}
}
}(&in)
http.HandleFunc("/", withdraw)
http.ListenAndServe(":8000", nil)
}