2012-04-29 05:25:57 +02:00
|
|
|
package xgb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2012-05-06 00:22:24 +02:00
|
|
|
// cookieBuffer represents the queue size of cookies existing at any
|
|
|
|
// point in time. The size of the buffer is really only important when
|
|
|
|
// there are many requests without replies made in sequence. Once the
|
|
|
|
// buffer fills, a round trip request is made to clear the buffer.
|
|
|
|
cookieBuffer = 1000
|
2012-04-29 05:25:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// A Conn represents a connection to an X server.
|
|
|
|
type Conn struct {
|
|
|
|
host string
|
|
|
|
conn net.Conn
|
|
|
|
display string
|
|
|
|
defaultScreen int
|
|
|
|
Setup SetupInfo
|
|
|
|
|
2012-05-07 07:00:45 +02:00
|
|
|
eventChan chan eventOrError
|
2012-05-06 00:22:24 +02:00
|
|
|
cookieChan chan *cookie
|
2012-05-07 07:00:45 +02:00
|
|
|
xidChan chan xid
|
|
|
|
seqChan chan uint16
|
|
|
|
reqChan chan *request
|
2012-05-05 08:56:15 +02:00
|
|
|
|
2012-05-07 07:00:45 +02:00
|
|
|
extLock sync.Mutex
|
|
|
|
extensions map[string]byte
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
|
2012-05-04 04:47:50 +02:00
|
|
|
// NewConn creates a new connection instance. It initializes locks, data
|
|
|
|
// structures, and performs the initial handshake. (The code for the handshake
|
|
|
|
// has been relegated to conn.go.)
|
|
|
|
func NewConn() (*Conn, error) {
|
|
|
|
return NewConnDisplay("")
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewConnDisplay is just like NewConn, but allows a specific DISPLAY
|
|
|
|
// string to be used.
|
|
|
|
// If 'display' is empty it will be taken from os.Getenv("DISPLAY").
|
|
|
|
//
|
|
|
|
// Examples:
|
2012-05-07 07:11:41 +02:00
|
|
|
// NewConn(":1") -> net.Dial("unix", "", "/tmp/.X11-unix/X1")
|
|
|
|
// NewConn("/tmp/launch-123/:0") -> net.Dial("unix", "", "/tmp/launch-123/:0")
|
|
|
|
// NewConn("hostname:2.1") -> net.Dial("tcp", "", "hostname:6002")
|
|
|
|
// NewConn("tcp/hostname:1.0") -> net.Dial("tcp", "", "hostname:6001")
|
2012-05-04 04:47:50 +02:00
|
|
|
func NewConnDisplay(display string) (*Conn, error) {
|
|
|
|
conn := &Conn{}
|
|
|
|
|
|
|
|
// First connect. This reads authority, checks DISPLAY environment
|
|
|
|
// variable, and loads the initial Setup info.
|
|
|
|
err := conn.connect(display)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
conn.extensions = make(map[string]byte)
|
|
|
|
|
2012-05-06 00:22:24 +02:00
|
|
|
conn.cookieChan = make(chan *cookie, cookieBuffer)
|
2012-05-05 08:56:15 +02:00
|
|
|
conn.xidChan = make(chan xid, 5)
|
|
|
|
conn.seqChan = make(chan uint16, 20)
|
|
|
|
conn.reqChan = make(chan *request, 100)
|
|
|
|
conn.eventChan = make(chan eventOrError, 100)
|
|
|
|
|
|
|
|
go conn.generateXIds()
|
|
|
|
go conn.generateSeqIds()
|
|
|
|
go conn.sendRequests()
|
|
|
|
go conn.readResponses()
|
2012-05-04 04:47:50 +02:00
|
|
|
|
|
|
|
return conn, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close closes the connection to the X server.
|
|
|
|
func (c *Conn) Close() {
|
|
|
|
c.conn.Close()
|
|
|
|
}
|
|
|
|
|
2012-05-06 00:22:24 +02:00
|
|
|
// DefaultScreen returns the Screen info for the default screen, which is
|
|
|
|
// 0 or the one given in the display argument to Dial.
|
|
|
|
func (c *Conn) DefaultScreen() *ScreenInfo {
|
|
|
|
return &c.Setup.Roots[c.defaultScreen]
|
|
|
|
}
|
|
|
|
|
2012-04-29 05:25:57 +02:00
|
|
|
// Id is used for all X identifiers, such as windows, pixmaps, and GCs.
|
|
|
|
type Id uint32
|
|
|
|
|
2012-04-29 09:38:29 +02:00
|
|
|
// Event is an interface that can contain any of the events returned by the
|
|
|
|
// server. Use a type assertion switch to extract the Event structs.
|
|
|
|
type Event interface {
|
|
|
|
ImplementsEvent()
|
2012-05-05 08:56:15 +02:00
|
|
|
Bytes() []byte
|
2012-05-06 00:22:24 +02:00
|
|
|
String() string
|
2012-04-29 09:38:29 +02:00
|
|
|
}
|
|
|
|
|
2012-05-07 07:00:45 +02:00
|
|
|
type newEventFun func(buf []byte) Event
|
|
|
|
|
2012-04-29 09:38:29 +02:00
|
|
|
// newEventFuncs is a map from event numbers to functions that create
|
|
|
|
// the corresponding event.
|
2012-05-07 07:00:45 +02:00
|
|
|
var newEventFuncs = make(map[int]newEventFun)
|
|
|
|
|
|
|
|
// newExtEventFuncs is a temporary map that stores event constructor functions
|
|
|
|
// for each extension. When an extension is initialize, each event for that
|
|
|
|
// extension is added to the 'newEventFuncs' map.
|
|
|
|
var newExtEventFuncs = make(map[string]map[int]newEventFun)
|
2012-04-29 05:25:57 +02:00
|
|
|
|
2012-05-03 07:00:01 +02:00
|
|
|
// Error is an interface that can contain any of the errors returned by
|
2012-04-29 09:38:29 +02:00
|
|
|
// the server. Use a type assertion switch to extract the Error structs.
|
2012-05-03 07:00:01 +02:00
|
|
|
type Error interface {
|
2012-04-29 09:38:29 +02:00
|
|
|
ImplementsError()
|
2012-05-03 07:00:01 +02:00
|
|
|
SequenceId() uint16
|
|
|
|
BadId() Id
|
|
|
|
Error() string
|
2012-04-29 09:38:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// newErrorFuncs is a map from error numbers to functions that create
|
|
|
|
// the corresponding error.
|
2012-05-03 07:00:01 +02:00
|
|
|
var newErrorFuncs = map[int]func(buf []byte) Error{}
|
2012-04-29 05:25:57 +02:00
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// eventOrError corresponds to values that can be either an event or an
|
|
|
|
// error.
|
|
|
|
type eventOrError interface{}
|
|
|
|
|
2012-04-29 05:25:57 +02:00
|
|
|
// NewID generates a new unused ID for use with requests like CreateWindow.
|
2012-05-04 04:47:50 +02:00
|
|
|
// If no new ids can be generated, the id returned is 0 and error is non-nil.
|
|
|
|
func (c *Conn) NewId() (Id, error) {
|
|
|
|
xid := <-c.xidChan
|
|
|
|
if xid.err != nil {
|
|
|
|
return 0, xid.err
|
|
|
|
}
|
|
|
|
return xid.id, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// xid encapsulates a resource identifier being sent over the Conn.xidChan
|
2012-05-05 08:56:15 +02:00
|
|
|
// channel. If no new resource id can be generated, id is set to 0 and a
|
2012-05-04 04:47:50 +02:00
|
|
|
// non-nil error is set in xid.err.
|
|
|
|
type xid struct {
|
2012-05-07 07:00:45 +02:00
|
|
|
id Id
|
2012-05-04 04:47:50 +02:00
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
// generateXids sends new Ids down the channel for NewId to use.
|
|
|
|
// This needs to be updated to use the XC Misc extension once we run out of
|
|
|
|
// new ids.
|
2012-05-05 08:56:15 +02:00
|
|
|
// Thanks to libxcb/src/xcb_xid.c. This code is greatly inspired by it.
|
|
|
|
func (conn *Conn) generateXIds() {
|
|
|
|
// This requires some explanation. From the horse's mouth:
|
|
|
|
// "The resource-id-mask contains a single contiguous set of bits (at least
|
|
|
|
// 18). The client allocates resource IDs for types WINDOW, PIXMAP,
|
|
|
|
// CURSOR, FONT, GCONTEXT, and COLORMAP by choosing a value with only some
|
|
|
|
// subset of these bits set and ORing it with resource-id-base. Only values
|
|
|
|
// constructed in this way can be used to name newly created resources over
|
|
|
|
// this connection."
|
|
|
|
// So for example (using 8 bit integers), the mask might look like:
|
|
|
|
// 00111000
|
|
|
|
// So that valid values would be 00101000, 00110000, 00001000, and so on.
|
|
|
|
// Thus, the idea is to increment it by the place of the last least
|
|
|
|
// significant '1'. In this case, that value would be 00001000. To get
|
|
|
|
// that value, we can AND the original mask with its two's complement:
|
|
|
|
// 00111000 & 11001000 = 00001000.
|
|
|
|
// And we use that value to increment the last resource id to get a new one.
|
|
|
|
// (And then, of course, we OR it with resource-id-base.)
|
2012-05-04 04:47:50 +02:00
|
|
|
inc := conn.Setup.ResourceIdMask & -conn.Setup.ResourceIdMask
|
|
|
|
max := conn.Setup.ResourceIdMask
|
|
|
|
last := uint32(0)
|
|
|
|
for {
|
|
|
|
// TODO: Use the XC Misc extension to look for released ids.
|
2012-05-07 07:00:45 +02:00
|
|
|
if last > 0 && last >= max-inc+1 {
|
2012-05-04 04:47:50 +02:00
|
|
|
conn.xidChan <- xid{
|
|
|
|
id: Id(0),
|
|
|
|
err: errors.New("There are no more available resource" +
|
|
|
|
"identifiers."),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
last += inc
|
|
|
|
conn.xidChan <- xid{
|
2012-05-07 07:00:45 +02:00
|
|
|
id: Id(last | conn.Setup.ResourceIdBase),
|
2012-05-04 04:47:50 +02:00
|
|
|
err: nil,
|
|
|
|
}
|
|
|
|
}
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// newSeqId fetches the next sequence id from the Conn.seqChan channel.
|
|
|
|
func (c *Conn) newSequenceId() uint16 {
|
|
|
|
return <-c.seqChan
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// generateSeqIds returns new sequence ids.
|
|
|
|
// A sequence id is generated for *every* request. It's the identifier used
|
|
|
|
// to match up replies with requests.
|
|
|
|
// Since sequence ids can only be 16 bit integers we start over at zero when it
|
|
|
|
// comes time to wrap.
|
2012-05-06 00:22:24 +02:00
|
|
|
// N.B. As long as the cookie buffer is less than 2^16, there are no limitations
|
|
|
|
// on the number (or kind) of requests made in sequence.
|
2012-05-05 08:56:15 +02:00
|
|
|
func (c *Conn) generateSeqIds() {
|
|
|
|
seqid := uint16(1)
|
|
|
|
for {
|
|
|
|
c.seqChan <- seqid
|
2012-05-07 07:00:45 +02:00
|
|
|
if seqid == uint16((1<<16)-1) {
|
2012-05-05 08:56:15 +02:00
|
|
|
seqid = 0
|
2012-04-29 05:25:57 +02:00
|
|
|
} else {
|
2012-05-05 08:56:15 +02:00
|
|
|
seqid++
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// request encapsulates a buffer of raw bytes (containing the request data)
|
|
|
|
// and a cookie, which when combined represents a single request.
|
|
|
|
// The cookie is used to match up the reply/error.
|
|
|
|
type request struct {
|
2012-05-07 07:00:45 +02:00
|
|
|
buf []byte
|
2012-05-06 00:22:24 +02:00
|
|
|
cookie *cookie
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// newRequest takes the bytes an a cookie, constructs a request type,
|
2012-05-06 00:22:24 +02:00
|
|
|
// and sends it over the Conn.reqChan channel.
|
|
|
|
// Note that the sequence number is added to the cookie after it is sent
|
|
|
|
// over the request channel.
|
|
|
|
func (c *Conn) newRequest(buf []byte, cookie *cookie) {
|
2012-05-05 08:56:15 +02:00
|
|
|
c.reqChan <- &request{buf: buf, cookie: cookie}
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// sendRequests is run as a single goroutine that takes requests and writes
|
|
|
|
// the bytes to the wire and adds the cookie to the cookie queue.
|
|
|
|
func (c *Conn) sendRequests() {
|
|
|
|
for req := range c.reqChan {
|
2012-05-06 00:22:24 +02:00
|
|
|
// ho there! if the cookie channel is nearly full, force a round
|
|
|
|
// trip to clear out the cookie buffer.
|
|
|
|
// Note that we circumvent the request channel, because we're *in*
|
|
|
|
// the request channel.
|
2012-05-07 07:00:45 +02:00
|
|
|
if len(c.cookieChan) == cookieBuffer-1 {
|
2012-05-06 00:22:24 +02:00
|
|
|
cookie := c.newCookie(true, true)
|
|
|
|
cookie.Sequence = c.newSequenceId()
|
|
|
|
c.cookieChan <- cookie
|
|
|
|
if !c.writeBuffer(c.getInputFocusRequest()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
GetInputFocusCookie{cookie}.Reply() // wait for the buffer to clear
|
|
|
|
}
|
|
|
|
|
|
|
|
req.cookie.Sequence = c.newSequenceId()
|
2012-05-05 08:56:15 +02:00
|
|
|
c.cookieChan <- req.cookie
|
2012-05-06 00:22:24 +02:00
|
|
|
if !c.writeBuffer(req.buf) {
|
2012-05-05 08:56:15 +02:00
|
|
|
return
|
|
|
|
}
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-06 00:22:24 +02:00
|
|
|
// writeBuffer is a convenience function for writing a byte slice to the wire.
|
|
|
|
func (c *Conn) writeBuffer(buf []byte) bool {
|
|
|
|
if _, err := c.conn.Write(buf); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "x protocol write error: %s\n", err)
|
|
|
|
close(c.reqChan)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// readResponses is a goroutine that reads events, errors and
|
|
|
|
// replies off the wire.
|
|
|
|
// When an event is read, it is always added to the event channel.
|
|
|
|
// When an error is read, if it corresponds to an existing checked cookie,
|
|
|
|
// it is sent to that cookie's error channel. Otherwise it is added to the
|
|
|
|
// event channel.
|
|
|
|
// When a reply is read, it is added to the corresponding cookie's reply
|
|
|
|
// channel. (It is an error if no such cookie exists in this case.)
|
|
|
|
// Finally, cookies that came "before" this reply are always cleaned up.
|
|
|
|
func (c *Conn) readResponses() {
|
|
|
|
var (
|
2012-05-07 07:00:45 +02:00
|
|
|
err Error
|
|
|
|
event Event
|
|
|
|
seq uint16
|
2012-05-05 08:56:15 +02:00
|
|
|
replyBytes []byte
|
|
|
|
)
|
|
|
|
|
|
|
|
buf := make([]byte, 32)
|
|
|
|
for {
|
|
|
|
err, event, seq = nil, nil, 0
|
2012-04-29 05:25:57 +02:00
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
if _, err := io.ReadFull(c.conn, buf); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "x protocol read error: %s\n", err)
|
|
|
|
close(c.eventChan)
|
|
|
|
break
|
|
|
|
}
|
2012-04-29 05:25:57 +02:00
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
switch buf[0] {
|
|
|
|
case 0: // This is an error
|
|
|
|
// Use the constructor function for this error (that is auto
|
|
|
|
// generated) by looking it up by the error number.
|
2012-05-06 00:22:24 +02:00
|
|
|
newErrFun, ok := newErrorFuncs[int(buf[1])]
|
|
|
|
if !ok {
|
|
|
|
fmt.Fprintf(os.Stderr,
|
2012-05-07 07:00:45 +02:00
|
|
|
"BUG: "+
|
|
|
|
"Could not find error constructor function for error "+
|
|
|
|
"with number %d.\n", buf[1])
|
2012-05-06 00:22:24 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
err = newErrFun(buf)
|
2012-05-05 08:56:15 +02:00
|
|
|
seq = err.SequenceId()
|
|
|
|
|
|
|
|
// This error is either sent to the event channel or a specific
|
|
|
|
// cookie's error channel below.
|
|
|
|
case 1: // This is a reply
|
|
|
|
seq = Get16(buf[2:])
|
|
|
|
|
|
|
|
// check to see if this reply has more bytes to be read
|
|
|
|
size := Get32(buf[4:])
|
|
|
|
if size > 0 {
|
2012-05-07 07:00:45 +02:00
|
|
|
byteCount := 32 + size*4
|
2012-05-05 08:56:15 +02:00
|
|
|
biggerBuf := make([]byte, byteCount)
|
|
|
|
copy(biggerBuf[:32], buf)
|
|
|
|
if _, err := io.ReadFull(c.conn, biggerBuf[32:]); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "x protocol read error: %s\n", err)
|
|
|
|
close(c.eventChan)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
replyBytes = biggerBuf
|
|
|
|
} else {
|
|
|
|
replyBytes = buf
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// This reply is sent to its corresponding cookie below.
|
|
|
|
default: // This is an event
|
|
|
|
// Use the constructor function for this event (like for errors,
|
|
|
|
// and is also auto generated) by looking it up by the event number.
|
|
|
|
// Note that we AND the event number with 127 so that we ignore
|
|
|
|
// the most significant bit (which is set when it was sent from
|
|
|
|
// a SendEvent request).
|
2012-05-06 00:22:24 +02:00
|
|
|
evNum := int(buf[0] & 127)
|
|
|
|
newEventFun, ok := newEventFuncs[evNum]
|
|
|
|
if !ok {
|
|
|
|
fmt.Fprintf(os.Stderr,
|
2012-05-07 07:00:45 +02:00
|
|
|
"BUG: "+
|
|
|
|
"Could not find event constructor function for event "+
|
|
|
|
"with number %d.", evNum)
|
2012-05-06 00:22:24 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
event = newEventFun(buf)
|
2012-05-05 08:56:15 +02:00
|
|
|
|
|
|
|
// Put the event into the queue.
|
|
|
|
c.eventChan <- event
|
|
|
|
|
|
|
|
// No more processing for events.
|
|
|
|
continue
|
|
|
|
}
|
2012-04-29 05:25:57 +02:00
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// At this point, we have a sequence number and we're either
|
|
|
|
// processing an error or a reply, which are both responses to
|
|
|
|
// requests. So all we have to do is find the cookie corresponding
|
|
|
|
// to this error/reply, and send the appropriate data to it.
|
|
|
|
// In doing so, we make sure that any cookies that came before it
|
|
|
|
// are marked as successful if they are void and checked.
|
|
|
|
// If there's a cookie that requires a reply that is before this
|
|
|
|
// reply, then something is wrong.
|
|
|
|
for cookie := range c.cookieChan {
|
|
|
|
// This is the cookie we're looking for. Process and break.
|
|
|
|
if cookie.Sequence == seq {
|
|
|
|
if err != nil { // this is an error to a request
|
|
|
|
// synchronous processing
|
|
|
|
if cookie.errorChan != nil {
|
|
|
|
cookie.errorChan <- err
|
|
|
|
} else { // asynchronous processing
|
|
|
|
c.eventChan <- err
|
2012-05-06 00:22:24 +02:00
|
|
|
// if this is an unchecked reply, ping the cookie too
|
|
|
|
if cookie.pingChan != nil {
|
|
|
|
cookie.pingChan <- true
|
|
|
|
}
|
2012-05-05 08:56:15 +02:00
|
|
|
}
|
|
|
|
} else { // this is a reply
|
|
|
|
if cookie.replyChan == nil {
|
2012-04-29 05:25:57 +02:00
|
|
|
fmt.Fprintf(os.Stderr,
|
2012-05-07 07:00:45 +02:00
|
|
|
"Reply with sequence id %d does not have a "+
|
|
|
|
"cookie with a valid reply channel.\n", seq)
|
2012-05-06 00:22:24 +02:00
|
|
|
continue
|
2012-05-05 08:56:15 +02:00
|
|
|
} else {
|
|
|
|
cookie.replyChan <- replyBytes
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
}
|
2012-05-05 08:56:15 +02:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
switch {
|
|
|
|
// Checked requests with replies
|
|
|
|
case cookie.replyChan != nil && cookie.errorChan != nil:
|
|
|
|
fmt.Fprintf(os.Stderr,
|
2012-05-07 07:00:45 +02:00
|
|
|
"Found cookie with sequence id %d that is expecting a "+
|
|
|
|
"reply but will never get it. Currently on sequence "+
|
|
|
|
"number %d\n", cookie.Sequence, seq)
|
2012-05-05 08:56:15 +02:00
|
|
|
// Unchecked requests with replies
|
|
|
|
case cookie.replyChan != nil && cookie.pingChan != nil:
|
2012-05-06 00:22:24 +02:00
|
|
|
fmt.Fprintf(os.Stderr,
|
2012-05-07 07:00:45 +02:00
|
|
|
"Found cookie with sequence id %d that is expecting a "+
|
|
|
|
"reply (and not an error) but will never get it. "+
|
2012-05-07 07:11:41 +02:00
|
|
|
"Currently on sequence number %d\n",
|
|
|
|
cookie.Sequence, seq)
|
2012-05-05 08:56:15 +02:00
|
|
|
// Checked requests without replies
|
|
|
|
case cookie.pingChan != nil && cookie.errorChan != nil:
|
|
|
|
cookie.pingChan <- true
|
2012-05-07 07:00:45 +02:00
|
|
|
// Unchecked requests without replies don't have any channels,
|
|
|
|
// so we can't do anything with them except let them pass by.
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
}
|
2012-05-05 08:56:15 +02:00
|
|
|
}
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
|
2012-05-05 08:56:15 +02:00
|
|
|
// processEventOrError takes an eventOrError, type switches on it,
|
|
|
|
// and returns it in Go idiomatic style.
|
|
|
|
func processEventOrError(everr eventOrError) (Event, Error) {
|
|
|
|
switch ee := everr.(type) {
|
|
|
|
case Event:
|
|
|
|
return ee, nil
|
|
|
|
case Error:
|
|
|
|
return nil, ee
|
|
|
|
default:
|
|
|
|
fmt.Fprintf(os.Stderr, "Invalid event/error type: %T\n", everr)
|
2012-05-06 00:22:24 +02:00
|
|
|
return nil, nil
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
panic("unreachable")
|
|
|
|
}
|
|
|
|
|
|
|
|
// WaitForEvent returns the next event from the server.
|
|
|
|
// It will block until an event is available.
|
2012-05-05 08:56:15 +02:00
|
|
|
func (c *Conn) WaitForEvent() (Event, Error) {
|
|
|
|
return processEventOrError(<-c.eventChan)
|
|
|
|
}
|
|
|
|
|
|
|
|
// PollForEvent returns the next event from the server if one is available in
|
|
|
|
// the internal queue.
|
|
|
|
// It will not block.
|
|
|
|
func (c *Conn) PollForEvent() (Event, Error) {
|
|
|
|
select {
|
|
|
|
case everr := <-c.eventChan:
|
|
|
|
return processEventOrError(everr)
|
|
|
|
default:
|
|
|
|
return nil, nil
|
2012-04-29 05:25:57 +02:00
|
|
|
}
|
|
|
|
panic("unreachable")
|
|
|
|
}
|