-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.go
128 lines (108 loc) · 2.81 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
package main
import (
"encoding/json"
"flag"
"fmt"
"io"
"log"
"net/http"
"os"
"os/signal"
"time"
"gopkg.in/bsm/openrtb.v1"
)
const (
ACSIp string = "127.0.0.1"
ACSPort = 9986
BankerIp = "127.0.0.1"
BankerPort = 9985
BidderPort = 7654
BidderWin = 7653
BidderEvent = 7652
)
func timeTrack(start time.Time, name string) {
elapsed := time.Since(start)
log.Printf("%s request took %s", name, elapsed)
}
func track(fn http.HandlerFunc, name string) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
defer timeTrack(time.Now(), name)
fn(w, req)
}
}
func main() {
var agentsConfigFile = flag.String("config", "", "Configuration file in JSON.")
flag.Parse()
if *agentsConfigFile == "" {
log.Fatal("You should provide a configuration file.")
}
// http client to pace agents (note that it's pointer)
client := &http.Client{}
// load configuration
agents, err := LoadAgentsFromFile(*agentsConfigFile)
if err != nil {
log.Fatal(err)
}
for _, agent := range agents {
agent.RegisterAgent(client, ACSIp, ACSPort)
agent.StartPacer(client, BankerIp, BankerPort)
}
mux := http.NewServeMux()
mux.HandleFunc("/", track(func(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
var (
ok bool = true
tmpOk bool = true
)
enc := json.NewEncoder(w)
req, err := openrtb.ParseRequest(r.Body)
if err != nil {
log.Println("ERROR", err.Error())
w.WriteHeader(204) // respond with 'no bid'
return
}
log.Println("INFO Received bid request", *req.Id)
ids := externalIdsFromRequest(req)
res := emptyResponseWithOneSeat(req)
for _, agent := range agents {
res, tmpOk = agent.DoBid(req, res, ids)
ok = tmpOk || ok
}
if ok {
w.Header().Set("Content-type", "application/json")
w.Header().Add("x-openrtb-version", "2.1")
w.WriteHeader(http.StatusOK)
enc.Encode(res)
return
}
log.Println("No bid.")
w.WriteHeader(204)
}, "bidding"))
go http.ListenAndServe(fmt.Sprintf(":%d", BidderPort), mux)
evemux := http.NewServeMux()
evemux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
w.WriteHeader(http.StatusOK)
io.WriteString(w, "")
log.Println("Event!")
})
go http.ListenAndServe(fmt.Sprintf(":%d", BidderEvent), evemux)
winmux := http.NewServeMux()
winmux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
w.WriteHeader(http.StatusOK)
io.WriteString(w, "")
log.Println("Win!")
})
go http.ListenAndServe(fmt.Sprintf(":%d", BidderWin), winmux)
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, os.Kill)
select {
case <-c:
// Implement remove agent from ACS
for _, agent := range agents {
agent.UnregisterAgent(client, ACSIp, ACSPort)
}
fmt.Println("Leaving...")
}
}