-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmultiple_queue_code.go
181 lines (133 loc) · 4.35 KB
/
multiple_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
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
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
var mu = &sync.Mutex{}
//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 maxThread = 10
//Array of channels input and output
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 maxUser
number := Random( 1, maxUser )
//Allocate to appropriate channel number based on number by get the last number in the random number.
channelNumber := number % maxThread
account := "user" + strconv.Itoa( number )
go func () {
in[ channelNumber ] <- account
for {
select {
case result := <- out[ channelNumber ]:
if result.Account == account{
/*fmt.Printf("Result %s\n", result.Result)
fmt.Printf("Number is %d \n", channelNumber )*/
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[ channelNumber ] <- result
}
};
}
}()
wg.Wait()
}
func main() {
in = make([]chan string, maxThread)
out = make([]chan Result, maxThread)
for i := range in {
fmt.Printf("i %d \n", i )
in[i] = make(chan string)
out[i] = 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()
global_db.C("log").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")
}
}
fmt.Printf("len in is %d", len( in ))
fmt.Printf("len out is %d", len( out ))
//Create 10 go routine to handle for each channel
for i := range in {
go func ( subIn *chan string, index int ) {
for {
select{
case account := <-*subIn:
fmt.Printf("On worker %d \n", index + 1)
/*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[ index ] <- 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.00
err = global_db.C("bank").UpdateId(entry.Id, entry)
if err != nil{
//panic("update error")
out[ index ] <- Result{ Account: account, Result: "update error"}
}
//mu.Lock()
countWithdraw = countWithdraw + 1
fmt.Printf("countWithdraw %d\n", countWithdraw)
//mu.Unlock()
out[ index ] <- Result{ Account: account, Result: fmt.Sprintf("countWithdraw %d\n", countWithdraw)}
}
}
}
}(&in[i], i)
}
http.HandleFunc("/", withdraw)
http.ListenAndServe(":8000", nil)
}