Jiri Simsa | d7616c9 | 2015-03-24 23:44:30 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Vanadium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 5 | package channel |
| 6 | |
| 7 | import ( |
| 8 | "fmt" |
| 9 | "sync" |
Todd Wang | 5ab0366 | 2015-02-19 21:03:01 -0800 | [diff] [blame] | 10 | |
Jiri Simsa | 1f1302c | 2015-02-23 16:18:34 -0800 | [diff] [blame] | 11 | "v.io/v23/vdl" |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 12 | ) |
| 13 | |
Todd Wang | 5ab0366 | 2015-02-19 21:03:01 -0800 | [diff] [blame] | 14 | type RequestHandler func(*vdl.Value) (*vdl.Value, error) |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 15 | |
| 16 | type MessageSender func(Message) |
| 17 | |
| 18 | type Channel struct { |
| 19 | messageHandler MessageSender |
| 20 | |
Benjamin Prosnitz | 86d5228 | 2014-12-19 15:48:38 -0800 | [diff] [blame] | 21 | lastSeq uint32 |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 22 | handlers map[string]RequestHandler |
Benjamin Prosnitz | 86d5228 | 2014-12-19 15:48:38 -0800 | [diff] [blame] | 23 | pendingResponses map[uint32]chan Response |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 24 | lock sync.Mutex |
| 25 | } |
| 26 | |
| 27 | func NewChannel(messageHandler MessageSender) *Channel { |
| 28 | return &Channel{ |
| 29 | messageHandler: messageHandler, |
| 30 | handlers: map[string]RequestHandler{}, |
Benjamin Prosnitz | 86d5228 | 2014-12-19 15:48:38 -0800 | [diff] [blame] | 31 | pendingResponses: map[uint32]chan Response{}, |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 32 | } |
| 33 | } |
| 34 | |
Todd Wang | 5ab0366 | 2015-02-19 21:03:01 -0800 | [diff] [blame] | 35 | func (c *Channel) PerformRpc(typ string, body *vdl.Value) (*vdl.Value, error) { |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 36 | c.lock.Lock() |
| 37 | c.lastSeq++ |
| 38 | lastSeq := c.lastSeq |
Todd Wang | bb6afc0 | 2014-11-21 11:24:20 -0800 | [diff] [blame] | 39 | m := MessageRequest{Request{ |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 40 | Type: typ, |
| 41 | Seq: lastSeq, |
| 42 | Body: body, |
Todd Wang | bb6afc0 | 2014-11-21 11:24:20 -0800 | [diff] [blame] | 43 | }} |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 44 | pending := make(chan Response, 1) |
| 45 | c.pendingResponses[lastSeq] = pending |
| 46 | c.lock.Unlock() |
| 47 | |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 48 | go c.messageHandler(m) |
| 49 | response := <-pending |
| 50 | |
| 51 | c.lock.Lock() |
| 52 | delete(c.pendingResponses, lastSeq) |
| 53 | c.lock.Unlock() |
| 54 | |
| 55 | if response.Err == "" { |
| 56 | return response.Body, nil |
| 57 | } |
| 58 | return response.Body, fmt.Errorf(response.Err) |
| 59 | } |
| 60 | |
| 61 | func (c *Channel) RegisterRequestHandler(typ string, handler RequestHandler) { |
| 62 | c.lock.Lock() |
| 63 | c.handlers[typ] = handler |
| 64 | c.lock.Unlock() |
| 65 | } |
| 66 | |
| 67 | func (c *Channel) handleRequest(req Request) { |
| 68 | // Call handler. |
| 69 | c.lock.Lock() |
| 70 | handler, ok := c.handlers[req.Type] |
| 71 | c.lock.Unlock() |
| 72 | if !ok { |
| 73 | panic(fmt.Errorf("Unknown handler: %s", req.Type)) |
| 74 | } |
| 75 | |
| 76 | result, err := handler(req.Body) |
| 77 | errMsg := "" |
| 78 | if err != nil { |
| 79 | errMsg = err.Error() |
| 80 | } |
Todd Wang | bb6afc0 | 2014-11-21 11:24:20 -0800 | [diff] [blame] | 81 | m := MessageResponse{Response{ |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 82 | ReqSeq: req.Seq, |
| 83 | Err: errMsg, |
| 84 | Body: result, |
Todd Wang | bb6afc0 | 2014-11-21 11:24:20 -0800 | [diff] [blame] | 85 | }} |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 86 | c.messageHandler(m) |
| 87 | } |
| 88 | |
| 89 | func (c *Channel) handleResponse(resp Response) { |
| 90 | seq := resp.ReqSeq |
| 91 | c.lock.Lock() |
| 92 | pendingResponse, ok := c.pendingResponses[seq] |
| 93 | c.lock.Unlock() |
| 94 | if !ok { |
| 95 | panic("Received invalid response code") |
| 96 | } |
| 97 | |
| 98 | pendingResponse <- resp |
| 99 | } |
| 100 | |
Todd Wang | bb6afc0 | 2014-11-21 11:24:20 -0800 | [diff] [blame] | 101 | func (c *Channel) HandleMessage(m Message) { |
| 102 | switch r := m.(type) { |
Nicolas LaCasse | f74ec6a | 2014-12-22 10:22:52 -0800 | [diff] [blame] | 103 | // Run the handlers in goroutines so we don't block the main thread. |
| 104 | // This is particularly important for the request handler, since it can |
| 105 | // potentially do a lot of work. |
Todd Wang | bb6afc0 | 2014-11-21 11:24:20 -0800 | [diff] [blame] | 106 | case MessageRequest: |
Nicolas LaCasse | f74ec6a | 2014-12-22 10:22:52 -0800 | [diff] [blame] | 107 | go c.handleRequest(r.Value) |
Todd Wang | bb6afc0 | 2014-11-21 11:24:20 -0800 | [diff] [blame] | 108 | case MessageResponse: |
Nicolas LaCasse | f74ec6a | 2014-12-22 10:22:52 -0800 | [diff] [blame] | 109 | go c.handleResponse(r.Value) |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 110 | default: |
Todd Wang | bb6afc0 | 2014-11-21 11:24:20 -0800 | [diff] [blame] | 111 | panic(fmt.Sprintf("Unknown message type: %T", m)) |
Benjamin Prosnitz | 809246c | 2014-10-29 14:24:11 -0700 | [diff] [blame] | 112 | } |
| 113 | } |