]>
Commit | Line | Data |
---|---|---|
520c21fd SW |
1 | /* reliable-chat - multipath chat |
2 | * Copyright (C) 2012 Scott Worley <sworley@chkno.net> | |
3 | * | |
4 | * This program is free software: you can redistribute it and/or modify | |
5 | * it under the terms of the GNU Affero General Public License as | |
6 | * published by the Free Software Foundation, either version 3 of the | |
7 | * License, or (at your option) any later version. | |
8 | * | |
9 | * This program is distributed in the hope that it will be useful, | |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | * GNU Affero General Public License for more details. | |
13 | * | |
14 | * You should have received a copy of the GNU Affero General Public License | |
15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | */ | |
17 | ||
92d1d6ac SW |
18 | package main |
19 | ||
20 | import "container/list" | |
21 | import "encoding/json" | |
03513e5c | 22 | import "expvar" |
24a546cf | 23 | import "flag" |
92d1d6ac SW |
24 | import "log" |
25 | import "net/http" | |
24a546cf | 26 | import "strconv" |
92d1d6ac SW |
27 | import "time" |
28 | ||
24a546cf SW |
29 | var port = flag.Int("port", 21059, "Port to listen on") |
30 | ||
a69e0831 | 31 | var frame_count = expvar.NewInt("frame_count") |
03513e5c SW |
32 | var speak_count = expvar.NewInt("speak_count") |
33 | var fetch_count = expvar.NewInt("fetch_count") | |
34 | var fetch_wait_count = expvar.NewInt("fetch_wait_count") | |
35 | var fetch_wake_count = expvar.NewInt("fetch_wake_count") | |
36 | ||
92d1d6ac SW |
37 | type Message struct { |
38 | Time time.Time | |
b199796a | 39 | ID string |
92d1d6ac SW |
40 | Text string |
41 | } | |
42 | ||
92d1d6ac SW |
43 | type StoreRequest struct { |
44 | StartTime time.Time | |
45 | Messages chan<- []Message | |
46 | } | |
47 | ||
48 | type Store struct { | |
fa5e7c1b SW |
49 | Add chan *Message |
50 | Get chan *StoreRequest | |
92d1d6ac SW |
51 | } |
52 | ||
53 | // TODO: Monotonic clock | |
54 | ||
55 | func manage_store(store Store) { | |
56 | messages := list.New() | |
57 | message_count := 0 | |
58 | max_messages := 1000 | |
59 | waiting := list.New() | |
c282d878 | 60 | main: |
92d1d6ac SW |
61 | for { |
62 | select { | |
c282d878 SW |
63 | case new_message, ok := <-store.Add: |
64 | if !ok { | |
65 | break main | |
66 | } | |
03513e5c | 67 | speak_count.Add(1) |
92d1d6ac | 68 | for waiter := waiting.Front(); waiter != nil; waiter = waiter.Next() { |
fa5e7c1b SW |
69 | waiter.Value.(*StoreRequest).Messages <- []Message{*new_message} |
70 | close(waiter.Value.(*StoreRequest).Messages) | |
03513e5c | 71 | fetch_wake_count.Add(1) |
92d1d6ac SW |
72 | } |
73 | waiting.Init() | |
03513e5c | 74 | messages.PushBack(new_message) |
92d1d6ac SW |
75 | if message_count < max_messages { |
76 | message_count++ | |
77 | } else { | |
78 | messages.Remove(messages.Front()) | |
79 | } | |
c282d878 SW |
80 | case request, ok := <-store.Get: |
81 | if !ok { | |
82 | break main | |
83 | } | |
03513e5c | 84 | fetch_count.Add(1) |
fa5e7c1b | 85 | if messages.Back() == nil || !request.StartTime.Before(messages.Back().Value.(*Message).Time) { |
92d1d6ac | 86 | waiting.PushBack(request) |
03513e5c | 87 | fetch_wait_count.Add(1) |
92d1d6ac SW |
88 | } else { |
89 | start := messages.Back() | |
90 | response_size := 1 | |
fa5e7c1b | 91 | if messages.Front().Value.(*Message).Time.After(request.StartTime) { |
92d1d6ac SW |
92 | start = messages.Front() |
93 | response_size = message_count | |
94 | } else { | |
fa5e7c1b | 95 | for start.Prev().Value.(*Message).Time.After(request.StartTime) { |
92d1d6ac SW |
96 | start = start.Prev() |
97 | response_size++ | |
98 | } | |
99 | } | |
100 | response_messages := make([]Message, 0, response_size) | |
101 | for m := start; m != nil; m = m.Next() { | |
fa5e7c1b | 102 | response_messages = append(response_messages, *m.Value.(*Message)) |
92d1d6ac SW |
103 | } |
104 | request.Messages <- response_messages | |
105 | } | |
106 | } | |
107 | } | |
108 | } | |
109 | ||
110 | func start_store() Store { | |
fa5e7c1b | 111 | store := Store{make(chan *Message, 20), make(chan *StoreRequest, 20)} |
92d1d6ac SW |
112 | go manage_store(store) |
113 | return store | |
114 | } | |
115 | ||
f0e385c7 SW |
116 | const frame_html = `<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" |
117 | "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
118 | ||
119 | <html xmlns="http://www.w3.org/1999/xhtml"> | |
120 | <head> | |
121 | <script type="text/javascript"><!--//--><![CDATA[//><!-- | |
122 | var since; | |
123 | function go() { | |
124 | var delay = 10000; | |
125 | var xhr = new XMLHttpRequest(); | |
126 | xhr.onreadystatechange = function() { | |
127 | if (this.readyState == this.DONE) { | |
128 | if (this.status == 200) { | |
129 | var rtxt = this.responseText; | |
130 | if (rtxt != null) { | |
131 | var r = JSON.parse(rtxt); | |
132 | if (r != null) { | |
133 | window.parent.postMessage(rtxt, "*"); | |
134 | delay = 40; | |
135 | if (r.length >= 1 && "Time" in r[r.length-1]) { | |
136 | since = r[r.length-1]["Time"]; | |
137 | } | |
138 | } | |
139 | } | |
140 | } | |
141 | window.setTimeout(go, delay); | |
142 | } | |
143 | } | |
144 | var uri = "/fetch"; | |
145 | if (since) { | |
146 | uri += '?since="' + since + '"'; | |
147 | } | |
148 | xhr.open("GET", uri); | |
149 | xhr.send(); | |
150 | } | |
151 | //--><!]]></script> | |
152 | </head> | |
153 | <body onload="go()"> | |
154 | </body> | |
155 | </html> | |
156 | ` | |
157 | ||
92d1d6ac SW |
158 | func start_server(store Store) { |
159 | http.HandleFunc("/fetch", func(w http.ResponseWriter, r *http.Request) { | |
87ac1d98 SW |
160 | var since time.Time |
161 | url_since := r.FormValue("since") | |
162 | if url_since != "" { | |
163 | err := json.Unmarshal([]byte(url_since), &since) | |
164 | if err != nil { | |
165 | log.Print("fetch: parse since: ", err) | |
166 | w.WriteHeader(http.StatusBadRequest) | |
167 | w.Write([]byte("Could not parse since as date")) | |
168 | return | |
169 | } | |
170 | } | |
92d1d6ac | 171 | messages_from_store := make(chan []Message, 1) |
fa5e7c1b | 172 | store.Get <- &StoreRequest{since, messages_from_store} |
92d1d6ac | 173 | |
9b33d853 | 174 | json_encoded, err := json.Marshal(<-messages_from_store) |
92d1d6ac SW |
175 | if err != nil { |
176 | log.Print("json encode: ", err) | |
177 | w.WriteHeader(http.StatusInternalServerError) | |
178 | return | |
179 | } | |
180 | w.Header().Add("Content-Type", "application/json") | |
79ced6f1 | 181 | w.Header().Add("Access-Control-Allow-Origin", "*") |
92d1d6ac SW |
182 | w.Write(json_encoded) |
183 | }) | |
184 | ||
185 | http.HandleFunc("/speak", func(w http.ResponseWriter, r *http.Request) { | |
b199796a SW |
186 | store.Add <- &Message{ |
187 | time.Now(), | |
188 | r.FormValue("id"), | |
189 | r.FormValue("text")} | |
92d1d6ac SW |
190 | }) |
191 | ||
f0e385c7 | 192 | http.HandleFunc("/frame", func(w http.ResponseWriter, r *http.Request) { |
a69e0831 | 193 | frame_count.Add(1) |
f0e385c7 SW |
194 | w.Write([]byte(frame_html)); |
195 | }) | |
196 | ||
86945f8d | 197 | log.Fatal(http.ListenAndServe(":"+strconv.Itoa(*port), nil)) |
92d1d6ac SW |
198 | } |
199 | ||
200 | func main() { | |
bc44b6bc | 201 | flag.Parse() |
92d1d6ac SW |
202 | store := start_store() |
203 | start_server(store) | |
204 | } |