forked from madari/go-socket.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transport_xhrpolling.go
110 lines (89 loc) · 2.53 KB
/
transport_xhrpolling.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"
"bytes"
"os"
"io"
"net"
"fmt"
)
// The xhr-polling transport.
type xhrPollingTransport 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 xhr-polling transport with the given read and write timeouts.
func NewXHRPollingTransport(rtimeout, wtimeout int64) Transport {
return &xhrPollingTransport{rtimeout, wtimeout}
}
// Returns the resource name.
func (t *xhrPollingTransport) Resource() string {
return "xhr-polling"
}
// Creates a new socket that can be used with a connection.
func (t *xhrPollingTransport) newSocket() socket {
return &xhrPollingSocket{t: t}
}
// Implements the socket interface for xhr-polling transports.
type xhrPollingSocket struct {
t *xhrPollingTransport
rwc io.ReadWriteCloser
req *http.Request
connected bool
}
// String returns the verbose representation of the socket.
func (s *xhrPollingSocket) String() string {
return s.t.Resource()
}
// Transport returns the transport the socket is based on.
func (s *xhrPollingSocket) Transport() Transport {
return s.t
}
// Accepts a http connection & request pair. It hijacks the connection and calls
// proceed if succesfull.
func (s *xhrPollingSocket) accept(w http.ResponseWriter, req *http.Request, proceed func()) (err os.Error) {
if s.connected {
return ErrConnected
}
s.req = req
s.rwc, _, err = w.Hijack()
if err == nil {
s.rwc.(*net.TCPConn).SetReadTimeout(s.t.rtimeout)
s.rwc.(*net.TCPConn).SetWriteTimeout(s.t.wtimeout)
s.connected = true
proceed()
}
return
}
func (s *xhrPollingSocket) Read(p []byte) (int, 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 *xhrPollingSocket) Write(p []byte) (int, os.Error) {
if !s.connected {
return 0, ErrNotConnected
}
defer s.Close()
buf := new(bytes.Buffer)
buf.WriteString("HTTP/1.0 200 OK\r\n")
buf.WriteString("Content-Type: text/plain; charset=UTF-8\r\n")
fmt.Fprintf(buf, "Content-Length: %d\r\n", len(p))
if origin, ok := s.req.Header["Origin"]; ok {
fmt.Fprintf(buf, "Access-Control-Allow-Origin: %s\r\n", origin)
buf.WriteString("Access-Control-Allow-Credentials: true\r\n")
}
buf.WriteString("\r\n")
buf.Write(p)
nr, err := buf.WriteTo(s.rwc)
return int(nr), err
}
func (s *xhrPollingSocket) Close() os.Error {
if !s.connected {
return ErrNotConnected
}
s.connected = false
return s.rwc.Close()
}