forked from madari/go-socket.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transport_jsonppolling.go
110 lines (92 loc) · 2.53 KB
/
transport_jsonppolling.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
package socketio
import (
"http"
"os"
"io"
"net"
"strconv"
"json"
"fmt"
)
// The jsonp-polling transport.
type jsonpPollingTransport struct {
rtimeout int64 // The period during which the client must send a message.
wtimeout int64 // The period during which a write must succeed.
}
// Creates a new json-polling transport with the given read and write timeouts.
func NewJSONPPollingTransport(rtimeout, wtimeout int64) Transport {
return &jsonpPollingTransport{rtimeout, wtimeout}
}
// Returns the resource name.
func (t *jsonpPollingTransport) Resource() string {
return "jsonp-polling"
}
// Creates a new socket which can be used be a connection.
func (t *jsonpPollingTransport) newSocket() (s socket) {
return &jsonpPollingSocket{t: t}
}
// Implements the socket interface.
type jsonpPollingSocket struct {
t *jsonpPollingTransport
rwc io.ReadWriteCloser
index int
connected bool
}
// String returns the verbose representation of the transport instance.
func (s *jsonpPollingSocket) String() string {
return s.t.Resource()
}
// Transport return the transport the socket is based on.
func (s *jsonpPollingSocket) Transport() Transport {
return s.t
}
// Accepts a http connection & request pair. It hijacks the connection and calls
// proceed if succesfull.
func (s *jsonpPollingSocket) accept(w http.ResponseWriter, req *http.Request, proceed func()) (err os.Error) {
if s.connected {
return ErrConnected
}
rwc, _, err := w.Hijack()
if err == nil {
rwc.(*net.TCPConn).SetReadTimeout(s.t.rtimeout)
rwc.(*net.TCPConn).SetWriteTimeout(s.t.wtimeout)
s.rwc = rwc
s.connected = true
s.index = 0
if ts := req.FormValue("t"); ts != "" {
if index, err := strconv.Atoi(ts); err == nil {
s.index = index
}
}
proceed()
}
return
}
func (s *jsonpPollingSocket) Read(p []byte) (n int, err os.Error) {
if !s.connected {
return 0, ErrNotConnected
}
return s.rwc.Read(p)
}
// Write sends a single message to the wire and closes the connection.
func (s *jsonpPollingSocket) Write(p []byte) (n int, err os.Error) {
if !s.connected {
return 0, ErrNotConnected
}
defer s.Close()
var jp []byte
if jp, err = json.Marshal(string(p)); err != nil {
return
}
jsonp := fmt.Sprintf("io.JSONP[%d]._(%s);", s.index, string(jp))
return fmt.Fprintf(s.rwc,
"HTTP/1.0 200 OK\r\nContent-Type: text/javascript; charset=UTF-8\r\nContent-Length: %d\r\n\r\n%s",
len(jsonp), jsonp)
}
func (s *jsonpPollingSocket) Close() os.Error {
if !s.connected {
return ErrNotConnected
}
s.connected = false
return s.rwc.Close()
}