Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1 | // This file was auto-generated by the veyron vdl tool. |
| 2 | // Source: service.vdl |
| 3 | |
| 4 | // Package rps is an example of veyron service for playing the game of |
| 5 | // Rock-Paper-Scissors. (http://en.wikipedia.org/wiki/Rock-paper-scissors) |
| 6 | // |
| 7 | // There are three different roles in the game: |
| 8 | // |
| 9 | // 1. Judge: A judge enforces the rules of the game and decides who |
| 10 | // the winner is. At the end of the game, the judge reports the |
| 11 | // final score to all the score keepers. |
| 12 | // |
| 13 | // 2. Player: A player can ask a judge to start a new game, it can |
| 14 | // challenge another player, and it can play a game. |
| 15 | // |
| 16 | // 3. ScoreKeeper: A score keeper receives the final score for a game |
| 17 | // after it ended. |
| 18 | package rps |
| 19 | |
| 20 | import ( |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 21 | // The non-user imports are prefixed with "__" to prevent collisions. |
| 22 | __io "io" |
| 23 | __veyron2 "veyron.io/veyron/veyron2" |
| 24 | __context "veyron.io/veyron/veyron2/context" |
| 25 | __ipc "veyron.io/veyron/veyron2/ipc" |
| 26 | __vdlutil "veyron.io/veyron/veyron2/vdl/vdlutil" |
| 27 | __wiretype "veyron.io/veyron/veyron2/wiretype" |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 28 | ) |
| 29 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 30 | // TODO(toddw): Remove this line once the new signature support is done. |
| 31 | // It corrects a bug where __wiretype is unused in VDL pacakges where only |
| 32 | // bootstrap types are used on interfaces. |
| 33 | const _ = __wiretype.TypeIDInvalid |
| 34 | |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 35 | // A GameID is used to uniquely identify a game within one Judge. |
| 36 | type GameID struct { |
| 37 | ID string |
| 38 | } |
| 39 | |
| 40 | // GameOptions specifies the parameters of a game. |
| 41 | type GameOptions struct { |
| 42 | NumRounds int32 // The number of rounds that a player must win to win the game. |
| 43 | GameType GameTypeTag // The type of game to play: Classic or LizardSpock. |
| 44 | } |
| 45 | |
| 46 | type GameTypeTag byte |
| 47 | |
| 48 | type PlayerAction struct { |
| 49 | Move string // The move that the player wants to make. |
| 50 | Quit bool // Whether the player wants to quit the game. |
| 51 | } |
| 52 | |
| 53 | type JudgeAction struct { |
| 54 | PlayerNum int32 // The player's number. |
| 55 | OpponentName string // The name of the opponent. |
| 56 | MoveOptions []string // A list of allowed moves that the player must choose from. Not always present. |
| 57 | RoundResult Round // The result of the previous round. Not always present. |
| 58 | Score ScoreCard // The result of the game. Not always present. |
| 59 | } |
| 60 | |
| 61 | // Round represents the state of a round. |
| 62 | type Round struct { |
| 63 | Moves [2]string // Each player's move. |
| 64 | Comment string // A text comment from judge about the round. |
| 65 | Winner WinnerTag // Who won the round. |
| 66 | StartTimeNS int64 // The time at which the round started. |
| 67 | EndTimeNS int64 // The time at which the round ended. |
| 68 | } |
| 69 | |
| 70 | // WinnerTag is a type used to indicate whether a round or a game was a draw, |
| 71 | // was won by player 1 or was won by player 2. |
| 72 | type WinnerTag byte |
| 73 | |
| 74 | // PlayResult is the value returned by the Play method. It indicates the outcome of the game. |
| 75 | type PlayResult struct { |
| 76 | YouWon bool // True if the player receiving the result won the game. |
| 77 | } |
| 78 | |
| 79 | type ScoreCard struct { |
| 80 | Opts GameOptions // The game options. |
| 81 | Judge string // The name of the judge. |
| 82 | Players []string // The name of the players. |
| 83 | Rounds []Round // The outcome of each round. |
| 84 | StartTimeNS int64 // The time at which the game started. |
| 85 | EndTimeNS int64 // The time at which the game ended. |
| 86 | Winner WinnerTag // Who won the game. |
| 87 | } |
| 88 | |
| 89 | const Classic = GameTypeTag(0) // Rock-Paper-Scissors |
| 90 | |
| 91 | const LizardSpock = GameTypeTag(1) // Rock-Paper-Scissors-Lizard-Spock |
| 92 | |
| 93 | const Draw = WinnerTag(0) |
| 94 | |
| 95 | const Player1 = WinnerTag(1) |
| 96 | |
| 97 | const Player2 = WinnerTag(2) |
| 98 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 99 | // JudgeClientMethods is the client interface |
| 100 | // containing Judge methods. |
| 101 | type JudgeClientMethods interface { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 102 | // CreateGame creates a new game with the given game options and returns a game |
| 103 | // identifier that can be used by the players to join the game. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 104 | CreateGame(ctx __context.T, Opts GameOptions, opts ...__ipc.CallOpt) (GameID, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 105 | // Play lets a player join an existing game and play. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 106 | Play(ctx __context.T, ID GameID, opts ...__ipc.CallOpt) (JudgePlayCall, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 109 | // JudgeClientStub adds universal methods to JudgeClientMethods. |
| 110 | type JudgeClientStub interface { |
| 111 | JudgeClientMethods |
| 112 | __ipc.UniversalServiceMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 115 | // JudgeClient returns a client stub for Judge. |
| 116 | func JudgeClient(name string, opts ...__ipc.BindOpt) JudgeClientStub { |
| 117 | var client __ipc.Client |
| 118 | for _, opt := range opts { |
| 119 | if clientOpt, ok := opt.(__ipc.Client); ok { |
| 120 | client = clientOpt |
| 121 | } |
| 122 | } |
| 123 | return implJudgeClientStub{name, client} |
| 124 | } |
| 125 | |
| 126 | type implJudgeClientStub struct { |
| 127 | name string |
| 128 | client __ipc.Client |
| 129 | } |
| 130 | |
| 131 | func (c implJudgeClientStub) c(ctx __context.T) __ipc.Client { |
| 132 | if c.client != nil { |
| 133 | return c.client |
| 134 | } |
| 135 | return __veyron2.RuntimeFromContext(ctx).Client() |
| 136 | } |
| 137 | |
| 138 | func (c implJudgeClientStub) CreateGame(ctx __context.T, i0 GameOptions, opts ...__ipc.CallOpt) (o0 GameID, err error) { |
| 139 | var call __ipc.Call |
| 140 | if call, err = c.c(ctx).StartCall(ctx, c.name, "CreateGame", []interface{}{i0}, opts...); err != nil { |
| 141 | return |
| 142 | } |
| 143 | if ierr := call.Finish(&o0, &err); ierr != nil { |
| 144 | err = ierr |
| 145 | } |
| 146 | return |
| 147 | } |
| 148 | |
| 149 | func (c implJudgeClientStub) Play(ctx __context.T, i0 GameID, opts ...__ipc.CallOpt) (ocall JudgePlayCall, err error) { |
| 150 | var call __ipc.Call |
| 151 | if call, err = c.c(ctx).StartCall(ctx, c.name, "Play", []interface{}{i0}, opts...); err != nil { |
| 152 | return |
| 153 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 154 | ocall = &implJudgePlayCall{Call: call} |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 155 | return |
| 156 | } |
| 157 | |
| 158 | func (c implJudgeClientStub) Signature(ctx __context.T, opts ...__ipc.CallOpt) (o0 __ipc.ServiceSignature, err error) { |
| 159 | var call __ipc.Call |
| 160 | if call, err = c.c(ctx).StartCall(ctx, c.name, "Signature", nil, opts...); err != nil { |
| 161 | return |
| 162 | } |
| 163 | if ierr := call.Finish(&o0, &err); ierr != nil { |
| 164 | err = ierr |
| 165 | } |
| 166 | return |
| 167 | } |
| 168 | |
| 169 | func (c implJudgeClientStub) GetMethodTags(ctx __context.T, method string, opts ...__ipc.CallOpt) (o0 []interface{}, err error) { |
| 170 | var call __ipc.Call |
| 171 | if call, err = c.c(ctx).StartCall(ctx, c.name, "GetMethodTags", []interface{}{method}, opts...); err != nil { |
| 172 | return |
| 173 | } |
| 174 | if ierr := call.Finish(&o0, &err); ierr != nil { |
| 175 | err = ierr |
| 176 | } |
| 177 | return |
| 178 | } |
| 179 | |
| 180 | // JudgePlayClientStream is the client stream for Judge.Play. |
| 181 | type JudgePlayClientStream interface { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 182 | // RecvStream returns the receiver side of the Judge.Play client stream. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 183 | RecvStream() interface { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 184 | // Advance stages an item so that it may be retrieved via Value. Returns |
| 185 | // true iff there is an item to retrieve. Advance must be called before |
| 186 | // Value is called. May block if an item is not available. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 187 | Advance() bool |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 188 | // Value returns the item that was staged by Advance. May panic if Advance |
| 189 | // returned false or was not called. Never blocks. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 190 | Value() JudgeAction |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 191 | // Err returns any error encountered by Advance. Never blocks. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 192 | Err() error |
| 193 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 194 | // SendStream returns the send side of the Judge.Play client stream. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 195 | SendStream() interface { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 196 | // Send places the item onto the output stream. Returns errors encountered |
| 197 | // while sending, or if Send is called after Close or Cancel. Blocks if |
| 198 | // there is no buffer space; will unblock when buffer space is available or |
| 199 | // after Cancel. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 200 | Send(item PlayerAction) error |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 201 | // Close indicates to the server that no more items will be sent; server |
| 202 | // Recv calls will receive io.EOF after all sent items. This is an optional |
| 203 | // call - e.g. a client might call Close if it needs to continue receiving |
| 204 | // items from the server after it's done sending. Returns errors |
| 205 | // encountered while closing, or if Close is called after Cancel. Like |
| 206 | // Send, blocks if there is no buffer space available. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 207 | Close() error |
| 208 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 209 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 210 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 211 | // JudgePlayCall represents the call returned from Judge.Play. |
| 212 | type JudgePlayCall interface { |
| 213 | JudgePlayClientStream |
| 214 | // Finish performs the equivalent of SendStream().Close, then blocks until |
| 215 | // the server is done, and returns the positional return values for the call. |
| 216 | // |
| 217 | // Finish returns immediately if Cancel has been called; depending on the |
| 218 | // timing the output could either be an error signaling cancelation, or the |
| 219 | // valid positional return values from the server. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 220 | // |
| 221 | // Calling Finish is mandatory for releasing stream resources, unless Cancel |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 222 | // has been called or any of the other methods return an error. Finish should |
| 223 | // be called at most once. |
| 224 | Finish() (PlayResult, error) |
| 225 | // Cancel cancels the RPC, notifying the server to stop processing. It is |
| 226 | // safe to call Cancel concurrently with any of the other stream methods. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 227 | // Calling Cancel after Finish has returned is a no-op. |
| 228 | Cancel() |
| 229 | } |
| 230 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 231 | type implJudgePlayCall struct { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 232 | __ipc.Call |
| 233 | valRecv JudgeAction |
| 234 | errRecv error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | func (c *implJudgePlayCall) RecvStream() interface { |
| 238 | Advance() bool |
| 239 | Value() JudgeAction |
| 240 | Err() error |
| 241 | } { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 242 | return implJudgePlayCallRecv{c} |
| 243 | } |
| 244 | |
| 245 | type implJudgePlayCallRecv struct { |
| 246 | c *implJudgePlayCall |
| 247 | } |
| 248 | |
| 249 | func (c implJudgePlayCallRecv) Advance() bool { |
| 250 | c.c.valRecv = JudgeAction{} |
| 251 | c.c.errRecv = c.c.Recv(&c.c.valRecv) |
| 252 | return c.c.errRecv == nil |
| 253 | } |
| 254 | func (c implJudgePlayCallRecv) Value() JudgeAction { |
| 255 | return c.c.valRecv |
| 256 | } |
| 257 | func (c implJudgePlayCallRecv) Err() error { |
| 258 | if c.c.errRecv == __io.EOF { |
| 259 | return nil |
| 260 | } |
| 261 | return c.c.errRecv |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 262 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 263 | func (c *implJudgePlayCall) SendStream() interface { |
| 264 | Send(item PlayerAction) error |
| 265 | Close() error |
| 266 | } { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 267 | return implJudgePlayCallSend{c} |
| 268 | } |
| 269 | |
| 270 | type implJudgePlayCallSend struct { |
| 271 | c *implJudgePlayCall |
| 272 | } |
| 273 | |
| 274 | func (c implJudgePlayCallSend) Send(item PlayerAction) error { |
| 275 | return c.c.Send(item) |
| 276 | } |
| 277 | func (c implJudgePlayCallSend) Close() error { |
| 278 | return c.c.CloseSend() |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 279 | } |
| 280 | func (c *implJudgePlayCall) Finish() (o0 PlayResult, err error) { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 281 | if ierr := c.Call.Finish(&o0, &err); ierr != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 282 | err = ierr |
| 283 | } |
| 284 | return |
| 285 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 286 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 287 | // JudgeServerMethods is the interface a server writer |
| 288 | // implements for Judge. |
| 289 | type JudgeServerMethods interface { |
| 290 | // CreateGame creates a new game with the given game options and returns a game |
| 291 | // identifier that can be used by the players to join the game. |
| 292 | CreateGame(ctx __ipc.ServerContext, Opts GameOptions) (GameID, error) |
| 293 | // Play lets a player join an existing game and play. |
| 294 | Play(ctx JudgePlayContext, ID GameID) (PlayResult, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 297 | // JudgeServerStubMethods is the server interface containing |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 298 | // Judge methods, as expected by ipc.Server. |
| 299 | // The only difference between this interface and JudgeServerMethods |
| 300 | // is the streaming methods. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 301 | type JudgeServerStubMethods interface { |
| 302 | // CreateGame creates a new game with the given game options and returns a game |
| 303 | // identifier that can be used by the players to join the game. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 304 | CreateGame(ctx __ipc.ServerContext, Opts GameOptions) (GameID, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 305 | // Play lets a player join an existing game and play. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 306 | Play(ctx *JudgePlayContextStub, ID GameID) (PlayResult, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 307 | } |
| 308 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 309 | // JudgeServerStub adds universal methods to JudgeServerStubMethods. |
| 310 | type JudgeServerStub interface { |
| 311 | JudgeServerStubMethods |
| 312 | // GetMethodTags will be replaced with DescribeInterfaces. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 313 | GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 314 | // Signature will be replaced with DescribeInterfaces. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 315 | Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 318 | // JudgeServer returns a server stub for Judge. |
| 319 | // It converts an implementation of JudgeServerMethods into |
| 320 | // an object that may be used by ipc.Server. |
| 321 | func JudgeServer(impl JudgeServerMethods) JudgeServerStub { |
| 322 | stub := implJudgeServerStub{ |
| 323 | impl: impl, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 324 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 325 | // Initialize GlobState; always check the stub itself first, to handle the |
| 326 | // case where the user has the Glob method defined in their VDL source. |
| 327 | if gs := __ipc.NewGlobState(stub); gs != nil { |
| 328 | stub.gs = gs |
| 329 | } else if gs := __ipc.NewGlobState(impl); gs != nil { |
| 330 | stub.gs = gs |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 331 | } |
Robin Thellend | a754845 | 2014-11-05 18:10:24 -0800 | [diff] [blame] | 332 | return stub |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 333 | } |
| 334 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 335 | type implJudgeServerStub struct { |
| 336 | impl JudgeServerMethods |
| 337 | gs *__ipc.GlobState |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 338 | } |
| 339 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 340 | func (s implJudgeServerStub) CreateGame(ctx __ipc.ServerContext, i0 GameOptions) (GameID, error) { |
| 341 | return s.impl.CreateGame(ctx, i0) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 344 | func (s implJudgeServerStub) Play(ctx *JudgePlayContextStub, i0 GameID) (PlayResult, error) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 345 | return s.impl.Play(ctx, i0) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 346 | } |
| 347 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 348 | func (s implJudgeServerStub) VGlob() *__ipc.GlobState { |
| 349 | return s.gs |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 352 | func (s implJudgeServerStub) GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 353 | // TODO(toddw): Replace with new DescribeInterfaces implementation. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 354 | switch method { |
| 355 | case "CreateGame": |
| 356 | return []interface{}{}, nil |
| 357 | case "Play": |
| 358 | return []interface{}{}, nil |
| 359 | default: |
| 360 | return nil, nil |
| 361 | } |
| 362 | } |
| 363 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 364 | func (s implJudgeServerStub) Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 365 | // TODO(toddw) Replace with new DescribeInterfaces implementation. |
| 366 | result := __ipc.ServiceSignature{Methods: make(map[string]__ipc.MethodSignature)} |
| 367 | result.Methods["CreateGame"] = __ipc.MethodSignature{ |
| 368 | InArgs: []__ipc.MethodArgument{ |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 369 | {Name: "Opts", Type: 66}, |
| 370 | }, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 371 | OutArgs: []__ipc.MethodArgument{ |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 372 | {Name: "", Type: 67}, |
| 373 | {Name: "", Type: 68}, |
| 374 | }, |
| 375 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 376 | result.Methods["Play"] = __ipc.MethodSignature{ |
| 377 | InArgs: []__ipc.MethodArgument{ |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 378 | {Name: "ID", Type: 67}, |
| 379 | }, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 380 | OutArgs: []__ipc.MethodArgument{ |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 381 | {Name: "", Type: 69}, |
| 382 | {Name: "", Type: 68}, |
| 383 | }, |
| 384 | InStream: 70, |
| 385 | OutStream: 76, |
| 386 | } |
| 387 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 388 | result.TypeDefs = []__vdlutil.Any{ |
| 389 | __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.GameTypeTag", Tags: []string(nil)}, __wiretype.StructType{ |
| 390 | []__wiretype.FieldType{ |
| 391 | __wiretype.FieldType{Type: 0x24, Name: "NumRounds"}, |
| 392 | __wiretype.FieldType{Type: 0x41, Name: "GameType"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 393 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 394 | "veyron.io/apps/rps.GameOptions", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 395 | __wiretype.StructType{ |
| 396 | []__wiretype.FieldType{ |
| 397 | __wiretype.FieldType{Type: 0x3, Name: "ID"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 398 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 399 | "veyron.io/apps/rps.GameID", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 400 | __wiretype.NamedPrimitiveType{Type: 0x1, Name: "error", Tags: []string(nil)}, __wiretype.StructType{ |
| 401 | []__wiretype.FieldType{ |
| 402 | __wiretype.FieldType{Type: 0x2, Name: "YouWon"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 403 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 404 | "veyron.io/apps/rps.PlayResult", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 405 | __wiretype.StructType{ |
| 406 | []__wiretype.FieldType{ |
| 407 | __wiretype.FieldType{Type: 0x3, Name: "Move"}, |
| 408 | __wiretype.FieldType{Type: 0x2, Name: "Quit"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 409 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 410 | "veyron.io/apps/rps.PlayerAction", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 411 | __wiretype.ArrayType{Elem: 0x3, Len: 0x2, Name: "", Tags: []string(nil)}, __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.WinnerTag", Tags: []string(nil)}, __wiretype.StructType{ |
| 412 | []__wiretype.FieldType{ |
| 413 | __wiretype.FieldType{Type: 0x47, Name: "Moves"}, |
| 414 | __wiretype.FieldType{Type: 0x3, Name: "Comment"}, |
| 415 | __wiretype.FieldType{Type: 0x48, Name: "Winner"}, |
| 416 | __wiretype.FieldType{Type: 0x25, Name: "StartTimeNS"}, |
| 417 | __wiretype.FieldType{Type: 0x25, Name: "EndTimeNS"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 418 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 419 | "veyron.io/apps/rps.Round", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 420 | __wiretype.SliceType{Elem: 0x49, Name: "", Tags: []string(nil)}, __wiretype.StructType{ |
| 421 | []__wiretype.FieldType{ |
| 422 | __wiretype.FieldType{Type: 0x42, Name: "Opts"}, |
| 423 | __wiretype.FieldType{Type: 0x3, Name: "Judge"}, |
| 424 | __wiretype.FieldType{Type: 0x3d, Name: "Players"}, |
| 425 | __wiretype.FieldType{Type: 0x4a, Name: "Rounds"}, |
| 426 | __wiretype.FieldType{Type: 0x25, Name: "StartTimeNS"}, |
| 427 | __wiretype.FieldType{Type: 0x25, Name: "EndTimeNS"}, |
| 428 | __wiretype.FieldType{Type: 0x48, Name: "Winner"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 429 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 430 | "veyron.io/apps/rps.ScoreCard", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 431 | __wiretype.StructType{ |
| 432 | []__wiretype.FieldType{ |
| 433 | __wiretype.FieldType{Type: 0x24, Name: "PlayerNum"}, |
| 434 | __wiretype.FieldType{Type: 0x3, Name: "OpponentName"}, |
| 435 | __wiretype.FieldType{Type: 0x3d, Name: "MoveOptions"}, |
| 436 | __wiretype.FieldType{Type: 0x49, Name: "RoundResult"}, |
| 437 | __wiretype.FieldType{Type: 0x4b, Name: "Score"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 438 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 439 | "veyron.io/apps/rps.JudgeAction", []string(nil)}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | return result, nil |
| 443 | } |
| 444 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 445 | // JudgePlayServerStream is the server stream for Judge.Play. |
| 446 | type JudgePlayServerStream interface { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 447 | // RecvStream returns the receiver side of the Judge.Play server stream. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 448 | RecvStream() interface { |
| 449 | // Advance stages an item so that it may be retrieved via Value. Returns |
| 450 | // true iff there is an item to retrieve. Advance must be called before |
| 451 | // Value is called. May block if an item is not available. |
| 452 | Advance() bool |
| 453 | // Value returns the item that was staged by Advance. May panic if Advance |
| 454 | // returned false or was not called. Never blocks. |
| 455 | Value() PlayerAction |
| 456 | // Err returns any error encountered by Advance. Never blocks. |
| 457 | Err() error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 458 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 459 | // SendStream returns the send side of the Judge.Play server stream. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 460 | SendStream() interface { |
| 461 | // Send places the item onto the output stream. Returns errors encountered |
| 462 | // while sending. Blocks if there is no buffer space; will unblock when |
| 463 | // buffer space is available. |
| 464 | Send(item JudgeAction) error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 465 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 466 | } |
| 467 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 468 | // JudgePlayContext represents the context passed to Judge.Play. |
| 469 | type JudgePlayContext interface { |
| 470 | __ipc.ServerContext |
| 471 | JudgePlayServerStream |
Robin Thellend | a754845 | 2014-11-05 18:10:24 -0800 | [diff] [blame] | 472 | } |
| 473 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 474 | // JudgePlayContextStub is a wrapper that converts ipc.ServerCall into |
| 475 | // a typesafe stub that implements JudgePlayContext. |
| 476 | type JudgePlayContextStub struct { |
| 477 | __ipc.ServerCall |
| 478 | valRecv PlayerAction |
| 479 | errRecv error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 480 | } |
| 481 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 482 | // Init initializes JudgePlayContextStub from ipc.ServerCall. |
| 483 | func (s *JudgePlayContextStub) Init(call __ipc.ServerCall) { |
| 484 | s.ServerCall = call |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 485 | } |
| 486 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 487 | // RecvStream returns the receiver side of the Judge.Play server stream. |
| 488 | func (s *JudgePlayContextStub) RecvStream() interface { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 489 | Advance() bool |
| 490 | Value() PlayerAction |
| 491 | Err() error |
| 492 | } { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 493 | return implJudgePlayContextRecv{s} |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 494 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 495 | |
| 496 | type implJudgePlayContextRecv struct { |
| 497 | s *JudgePlayContextStub |
| 498 | } |
| 499 | |
| 500 | func (s implJudgePlayContextRecv) Advance() bool { |
| 501 | s.s.valRecv = PlayerAction{} |
| 502 | s.s.errRecv = s.s.Recv(&s.s.valRecv) |
| 503 | return s.s.errRecv == nil |
| 504 | } |
| 505 | func (s implJudgePlayContextRecv) Value() PlayerAction { |
| 506 | return s.s.valRecv |
| 507 | } |
| 508 | func (s implJudgePlayContextRecv) Err() error { |
| 509 | if s.s.errRecv == __io.EOF { |
| 510 | return nil |
| 511 | } |
| 512 | return s.s.errRecv |
| 513 | } |
| 514 | |
| 515 | // SendStream returns the send side of the Judge.Play server stream. |
| 516 | func (s *JudgePlayContextStub) SendStream() interface { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 517 | Send(item JudgeAction) error |
| 518 | } { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 519 | return implJudgePlayContextSend{s} |
| 520 | } |
| 521 | |
| 522 | type implJudgePlayContextSend struct { |
| 523 | s *JudgePlayContextStub |
| 524 | } |
| 525 | |
| 526 | func (s implJudgePlayContextSend) Send(item JudgeAction) error { |
| 527 | return s.s.Send(item) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | // PlayerClientMethods is the client interface |
| 531 | // containing Player methods. |
| 532 | // |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 533 | // Player can receive challenges from other players. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 534 | type PlayerClientMethods interface { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 535 | // Challenge is used by other players to challenge this player to a game. If |
| 536 | // the challenge is accepted, the method returns nil. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 537 | Challenge(ctx __context.T, Address string, ID GameID, Opts GameOptions, opts ...__ipc.CallOpt) error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 540 | // PlayerClientStub adds universal methods to PlayerClientMethods. |
| 541 | type PlayerClientStub interface { |
| 542 | PlayerClientMethods |
| 543 | __ipc.UniversalServiceMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 544 | } |
| 545 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 546 | // PlayerClient returns a client stub for Player. |
| 547 | func PlayerClient(name string, opts ...__ipc.BindOpt) PlayerClientStub { |
| 548 | var client __ipc.Client |
| 549 | for _, opt := range opts { |
| 550 | if clientOpt, ok := opt.(__ipc.Client); ok { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 551 | client = clientOpt |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 552 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 553 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 554 | return implPlayerClientStub{name, client} |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 555 | } |
| 556 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 557 | type implPlayerClientStub struct { |
| 558 | name string |
| 559 | client __ipc.Client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 560 | } |
| 561 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 562 | func (c implPlayerClientStub) c(ctx __context.T) __ipc.Client { |
| 563 | if c.client != nil { |
| 564 | return c.client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 565 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 566 | return __veyron2.RuntimeFromContext(ctx).Client() |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 569 | func (c implPlayerClientStub) Challenge(ctx __context.T, i0 string, i1 GameID, i2 GameOptions, opts ...__ipc.CallOpt) (err error) { |
| 570 | var call __ipc.Call |
| 571 | if call, err = c.c(ctx).StartCall(ctx, c.name, "Challenge", []interface{}{i0, i1, i2}, opts...); err != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 572 | return |
| 573 | } |
| 574 | if ierr := call.Finish(&err); ierr != nil { |
| 575 | err = ierr |
| 576 | } |
| 577 | return |
| 578 | } |
| 579 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 580 | func (c implPlayerClientStub) Signature(ctx __context.T, opts ...__ipc.CallOpt) (o0 __ipc.ServiceSignature, err error) { |
| 581 | var call __ipc.Call |
| 582 | if call, err = c.c(ctx).StartCall(ctx, c.name, "Signature", nil, opts...); err != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 583 | return |
| 584 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 585 | if ierr := call.Finish(&o0, &err); ierr != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 586 | err = ierr |
| 587 | } |
| 588 | return |
| 589 | } |
| 590 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 591 | func (c implPlayerClientStub) GetMethodTags(ctx __context.T, method string, opts ...__ipc.CallOpt) (o0 []interface{}, err error) { |
| 592 | var call __ipc.Call |
| 593 | if call, err = c.c(ctx).StartCall(ctx, c.name, "GetMethodTags", []interface{}{method}, opts...); err != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 594 | return |
| 595 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 596 | if ierr := call.Finish(&o0, &err); ierr != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 597 | err = ierr |
| 598 | } |
| 599 | return |
| 600 | } |
| 601 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 602 | // PlayerServerMethods is the interface a server writer |
| 603 | // implements for Player. |
| 604 | // |
| 605 | // Player can receive challenges from other players. |
| 606 | type PlayerServerMethods interface { |
| 607 | // Challenge is used by other players to challenge this player to a game. If |
| 608 | // the challenge is accepted, the method returns nil. |
| 609 | Challenge(ctx __ipc.ServerContext, Address string, ID GameID, Opts GameOptions) error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 610 | } |
| 611 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 612 | // PlayerServerStubMethods is the server interface containing |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 613 | // Player methods, as expected by ipc.Server. |
| 614 | // There is no difference between this interface and PlayerServerMethods |
| 615 | // since there are no streaming methods. |
| 616 | type PlayerServerStubMethods PlayerServerMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 617 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 618 | // PlayerServerStub adds universal methods to PlayerServerStubMethods. |
| 619 | type PlayerServerStub interface { |
| 620 | PlayerServerStubMethods |
| 621 | // GetMethodTags will be replaced with DescribeInterfaces. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 622 | GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 623 | // Signature will be replaced with DescribeInterfaces. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 624 | Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | // PlayerServer returns a server stub for Player. |
| 628 | // It converts an implementation of PlayerServerMethods into |
| 629 | // an object that may be used by ipc.Server. |
| 630 | func PlayerServer(impl PlayerServerMethods) PlayerServerStub { |
| 631 | stub := implPlayerServerStub{ |
| 632 | impl: impl, |
| 633 | } |
| 634 | // Initialize GlobState; always check the stub itself first, to handle the |
| 635 | // case where the user has the Glob method defined in their VDL source. |
| 636 | if gs := __ipc.NewGlobState(stub); gs != nil { |
| 637 | stub.gs = gs |
| 638 | } else if gs := __ipc.NewGlobState(impl); gs != nil { |
| 639 | stub.gs = gs |
| 640 | } |
| 641 | return stub |
| 642 | } |
| 643 | |
| 644 | type implPlayerServerStub struct { |
| 645 | impl PlayerServerMethods |
| 646 | gs *__ipc.GlobState |
| 647 | } |
| 648 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 649 | func (s implPlayerServerStub) Challenge(ctx __ipc.ServerContext, i0 string, i1 GameID, i2 GameOptions) error { |
| 650 | return s.impl.Challenge(ctx, i0, i1, i2) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 651 | } |
| 652 | |
| 653 | func (s implPlayerServerStub) VGlob() *__ipc.GlobState { |
| 654 | return s.gs |
| 655 | } |
| 656 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 657 | func (s implPlayerServerStub) GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 658 | // TODO(toddw): Replace with new DescribeInterfaces implementation. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 659 | switch method { |
| 660 | case "Challenge": |
| 661 | return []interface{}{}, nil |
| 662 | default: |
| 663 | return nil, nil |
| 664 | } |
| 665 | } |
| 666 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 667 | func (s implPlayerServerStub) Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 668 | // TODO(toddw) Replace with new DescribeInterfaces implementation. |
| 669 | result := __ipc.ServiceSignature{Methods: make(map[string]__ipc.MethodSignature)} |
| 670 | result.Methods["Challenge"] = __ipc.MethodSignature{ |
| 671 | InArgs: []__ipc.MethodArgument{ |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 672 | {Name: "Address", Type: 3}, |
| 673 | {Name: "ID", Type: 65}, |
| 674 | {Name: "Opts", Type: 67}, |
| 675 | }, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 676 | OutArgs: []__ipc.MethodArgument{ |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 677 | {Name: "", Type: 68}, |
| 678 | }, |
| 679 | } |
| 680 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 681 | result.TypeDefs = []__vdlutil.Any{ |
| 682 | __wiretype.StructType{ |
| 683 | []__wiretype.FieldType{ |
| 684 | __wiretype.FieldType{Type: 0x3, Name: "ID"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 685 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 686 | "veyron.io/apps/rps.GameID", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 687 | __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.GameTypeTag", Tags: []string(nil)}, __wiretype.StructType{ |
| 688 | []__wiretype.FieldType{ |
| 689 | __wiretype.FieldType{Type: 0x24, Name: "NumRounds"}, |
| 690 | __wiretype.FieldType{Type: 0x42, Name: "GameType"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 691 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 692 | "veyron.io/apps/rps.GameOptions", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 693 | __wiretype.NamedPrimitiveType{Type: 0x1, Name: "error", Tags: []string(nil)}} |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 694 | |
| 695 | return result, nil |
| 696 | } |
| 697 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 698 | // ScoreKeeperClientMethods is the client interface |
| 699 | // containing ScoreKeeper methods. |
| 700 | // |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 701 | // ScoreKeeper receives the outcome of games from Judges. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 702 | type ScoreKeeperClientMethods interface { |
| 703 | Record(ctx __context.T, Score ScoreCard, opts ...__ipc.CallOpt) error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 704 | } |
| 705 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 706 | // ScoreKeeperClientStub adds universal methods to ScoreKeeperClientMethods. |
| 707 | type ScoreKeeperClientStub interface { |
| 708 | ScoreKeeperClientMethods |
| 709 | __ipc.UniversalServiceMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 710 | } |
| 711 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 712 | // ScoreKeeperClient returns a client stub for ScoreKeeper. |
| 713 | func ScoreKeeperClient(name string, opts ...__ipc.BindOpt) ScoreKeeperClientStub { |
| 714 | var client __ipc.Client |
| 715 | for _, opt := range opts { |
| 716 | if clientOpt, ok := opt.(__ipc.Client); ok { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 717 | client = clientOpt |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 718 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 719 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 720 | return implScoreKeeperClientStub{name, client} |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 721 | } |
| 722 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 723 | type implScoreKeeperClientStub struct { |
| 724 | name string |
| 725 | client __ipc.Client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 726 | } |
| 727 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 728 | func (c implScoreKeeperClientStub) c(ctx __context.T) __ipc.Client { |
| 729 | if c.client != nil { |
| 730 | return c.client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 731 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 732 | return __veyron2.RuntimeFromContext(ctx).Client() |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 733 | } |
| 734 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 735 | func (c implScoreKeeperClientStub) Record(ctx __context.T, i0 ScoreCard, opts ...__ipc.CallOpt) (err error) { |
| 736 | var call __ipc.Call |
| 737 | if call, err = c.c(ctx).StartCall(ctx, c.name, "Record", []interface{}{i0}, opts...); err != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 738 | return |
| 739 | } |
| 740 | if ierr := call.Finish(&err); ierr != nil { |
| 741 | err = ierr |
| 742 | } |
| 743 | return |
| 744 | } |
| 745 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 746 | func (c implScoreKeeperClientStub) Signature(ctx __context.T, opts ...__ipc.CallOpt) (o0 __ipc.ServiceSignature, err error) { |
| 747 | var call __ipc.Call |
| 748 | if call, err = c.c(ctx).StartCall(ctx, c.name, "Signature", nil, opts...); err != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 749 | return |
| 750 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 751 | if ierr := call.Finish(&o0, &err); ierr != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 752 | err = ierr |
| 753 | } |
| 754 | return |
| 755 | } |
| 756 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 757 | func (c implScoreKeeperClientStub) GetMethodTags(ctx __context.T, method string, opts ...__ipc.CallOpt) (o0 []interface{}, err error) { |
| 758 | var call __ipc.Call |
| 759 | if call, err = c.c(ctx).StartCall(ctx, c.name, "GetMethodTags", []interface{}{method}, opts...); err != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 760 | return |
| 761 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 762 | if ierr := call.Finish(&o0, &err); ierr != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 763 | err = ierr |
| 764 | } |
| 765 | return |
| 766 | } |
| 767 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 768 | // ScoreKeeperServerMethods is the interface a server writer |
| 769 | // implements for ScoreKeeper. |
| 770 | // |
| 771 | // ScoreKeeper receives the outcome of games from Judges. |
| 772 | type ScoreKeeperServerMethods interface { |
| 773 | Record(ctx __ipc.ServerContext, Score ScoreCard) error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 774 | } |
| 775 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 776 | // ScoreKeeperServerStubMethods is the server interface containing |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 777 | // ScoreKeeper methods, as expected by ipc.Server. |
| 778 | // There is no difference between this interface and ScoreKeeperServerMethods |
| 779 | // since there are no streaming methods. |
| 780 | type ScoreKeeperServerStubMethods ScoreKeeperServerMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 781 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 782 | // ScoreKeeperServerStub adds universal methods to ScoreKeeperServerStubMethods. |
| 783 | type ScoreKeeperServerStub interface { |
| 784 | ScoreKeeperServerStubMethods |
| 785 | // GetMethodTags will be replaced with DescribeInterfaces. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 786 | GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 787 | // Signature will be replaced with DescribeInterfaces. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 788 | Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 789 | } |
| 790 | |
| 791 | // ScoreKeeperServer returns a server stub for ScoreKeeper. |
| 792 | // It converts an implementation of ScoreKeeperServerMethods into |
| 793 | // an object that may be used by ipc.Server. |
| 794 | func ScoreKeeperServer(impl ScoreKeeperServerMethods) ScoreKeeperServerStub { |
| 795 | stub := implScoreKeeperServerStub{ |
| 796 | impl: impl, |
| 797 | } |
| 798 | // Initialize GlobState; always check the stub itself first, to handle the |
| 799 | // case where the user has the Glob method defined in their VDL source. |
| 800 | if gs := __ipc.NewGlobState(stub); gs != nil { |
| 801 | stub.gs = gs |
| 802 | } else if gs := __ipc.NewGlobState(impl); gs != nil { |
| 803 | stub.gs = gs |
| 804 | } |
| 805 | return stub |
| 806 | } |
| 807 | |
| 808 | type implScoreKeeperServerStub struct { |
| 809 | impl ScoreKeeperServerMethods |
| 810 | gs *__ipc.GlobState |
| 811 | } |
| 812 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 813 | func (s implScoreKeeperServerStub) Record(ctx __ipc.ServerContext, i0 ScoreCard) error { |
| 814 | return s.impl.Record(ctx, i0) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 815 | } |
| 816 | |
| 817 | func (s implScoreKeeperServerStub) VGlob() *__ipc.GlobState { |
| 818 | return s.gs |
| 819 | } |
| 820 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 821 | func (s implScoreKeeperServerStub) GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 822 | // TODO(toddw): Replace with new DescribeInterfaces implementation. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 823 | switch method { |
| 824 | case "Record": |
| 825 | return []interface{}{}, nil |
| 826 | default: |
| 827 | return nil, nil |
| 828 | } |
| 829 | } |
| 830 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 831 | func (s implScoreKeeperServerStub) Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 832 | // TODO(toddw) Replace with new DescribeInterfaces implementation. |
| 833 | result := __ipc.ServiceSignature{Methods: make(map[string]__ipc.MethodSignature)} |
| 834 | result.Methods["Record"] = __ipc.MethodSignature{ |
| 835 | InArgs: []__ipc.MethodArgument{ |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 836 | {Name: "Score", Type: 71}, |
| 837 | }, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 838 | OutArgs: []__ipc.MethodArgument{ |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 839 | {Name: "", Type: 72}, |
| 840 | }, |
| 841 | } |
| 842 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 843 | result.TypeDefs = []__vdlutil.Any{ |
| 844 | __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.GameTypeTag", Tags: []string(nil)}, __wiretype.StructType{ |
| 845 | []__wiretype.FieldType{ |
| 846 | __wiretype.FieldType{Type: 0x24, Name: "NumRounds"}, |
| 847 | __wiretype.FieldType{Type: 0x41, Name: "GameType"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 848 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 849 | "veyron.io/apps/rps.GameOptions", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 850 | __wiretype.ArrayType{Elem: 0x3, Len: 0x2, Name: "", Tags: []string(nil)}, __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.WinnerTag", Tags: []string(nil)}, __wiretype.StructType{ |
| 851 | []__wiretype.FieldType{ |
| 852 | __wiretype.FieldType{Type: 0x43, Name: "Moves"}, |
| 853 | __wiretype.FieldType{Type: 0x3, Name: "Comment"}, |
| 854 | __wiretype.FieldType{Type: 0x44, Name: "Winner"}, |
| 855 | __wiretype.FieldType{Type: 0x25, Name: "StartTimeNS"}, |
| 856 | __wiretype.FieldType{Type: 0x25, Name: "EndTimeNS"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 857 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 858 | "veyron.io/apps/rps.Round", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 859 | __wiretype.SliceType{Elem: 0x45, Name: "", Tags: []string(nil)}, __wiretype.StructType{ |
| 860 | []__wiretype.FieldType{ |
| 861 | __wiretype.FieldType{Type: 0x42, Name: "Opts"}, |
| 862 | __wiretype.FieldType{Type: 0x3, Name: "Judge"}, |
| 863 | __wiretype.FieldType{Type: 0x3d, Name: "Players"}, |
| 864 | __wiretype.FieldType{Type: 0x46, Name: "Rounds"}, |
| 865 | __wiretype.FieldType{Type: 0x25, Name: "StartTimeNS"}, |
| 866 | __wiretype.FieldType{Type: 0x25, Name: "EndTimeNS"}, |
| 867 | __wiretype.FieldType{Type: 0x44, Name: "Winner"}, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 868 | }, |
Ali Ghassemi | 85ed8fa | 2014-10-22 15:46:10 -0700 | [diff] [blame] | 869 | "veyron.io/apps/rps.ScoreCard", []string(nil)}, |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 870 | __wiretype.NamedPrimitiveType{Type: 0x1, Name: "error", Tags: []string(nil)}} |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 871 | |
| 872 | return result, nil |
| 873 | } |
| 874 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 875 | // RockPaperScissorsClientMethods is the client interface |
| 876 | // containing RockPaperScissors methods. |
| 877 | type RockPaperScissorsClientMethods interface { |
| 878 | JudgeClientMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 879 | // Player can receive challenges from other players. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 880 | PlayerClientMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 881 | // ScoreKeeper receives the outcome of games from Judges. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 882 | ScoreKeeperClientMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 883 | } |
| 884 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 885 | // RockPaperScissorsClientStub adds universal methods to RockPaperScissorsClientMethods. |
| 886 | type RockPaperScissorsClientStub interface { |
| 887 | RockPaperScissorsClientMethods |
| 888 | __ipc.UniversalServiceMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 889 | } |
| 890 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 891 | // RockPaperScissorsClient returns a client stub for RockPaperScissors. |
| 892 | func RockPaperScissorsClient(name string, opts ...__ipc.BindOpt) RockPaperScissorsClientStub { |
| 893 | var client __ipc.Client |
| 894 | for _, opt := range opts { |
| 895 | if clientOpt, ok := opt.(__ipc.Client); ok { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 896 | client = clientOpt |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 897 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 898 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 899 | return implRockPaperScissorsClientStub{name, client, JudgeClient(name, client), PlayerClient(name, client), ScoreKeeperClient(name, client)} |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 900 | } |
| 901 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 902 | type implRockPaperScissorsClientStub struct { |
| 903 | name string |
| 904 | client __ipc.Client |
| 905 | |
| 906 | JudgeClientStub |
| 907 | PlayerClientStub |
| 908 | ScoreKeeperClientStub |
| 909 | } |
| 910 | |
| 911 | func (c implRockPaperScissorsClientStub) c(ctx __context.T) __ipc.Client { |
| 912 | if c.client != nil { |
| 913 | return c.client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 914 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 915 | return __veyron2.RuntimeFromContext(ctx).Client() |
| 916 | } |
| 917 | |
| 918 | func (c implRockPaperScissorsClientStub) Signature(ctx __context.T, opts ...__ipc.CallOpt) (o0 __ipc.ServiceSignature, err error) { |
| 919 | var call __ipc.Call |
| 920 | if call, err = c.c(ctx).StartCall(ctx, c.name, "Signature", nil, opts...); err != nil { |
| 921 | return |
Robin Thellend | a754845 | 2014-11-05 18:10:24 -0800 | [diff] [blame] | 922 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 923 | if ierr := call.Finish(&o0, &err); ierr != nil { |
| 924 | err = ierr |
Robin Thellend | a754845 | 2014-11-05 18:10:24 -0800 | [diff] [blame] | 925 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 926 | return |
| 927 | } |
| 928 | |
| 929 | func (c implRockPaperScissorsClientStub) GetMethodTags(ctx __context.T, method string, opts ...__ipc.CallOpt) (o0 []interface{}, err error) { |
| 930 | var call __ipc.Call |
| 931 | if call, err = c.c(ctx).StartCall(ctx, c.name, "GetMethodTags", []interface{}{method}, opts...); err != nil { |
| 932 | return |
Robin Thellend | a754845 | 2014-11-05 18:10:24 -0800 | [diff] [blame] | 933 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 934 | if ierr := call.Finish(&o0, &err); ierr != nil { |
| 935 | err = ierr |
| 936 | } |
| 937 | return |
| 938 | } |
| 939 | |
| 940 | // RockPaperScissorsServerMethods is the interface a server writer |
| 941 | // implements for RockPaperScissors. |
| 942 | type RockPaperScissorsServerMethods interface { |
| 943 | JudgeServerMethods |
| 944 | // Player can receive challenges from other players. |
| 945 | PlayerServerMethods |
| 946 | // ScoreKeeper receives the outcome of games from Judges. |
| 947 | ScoreKeeperServerMethods |
| 948 | } |
| 949 | |
| 950 | // RockPaperScissorsServerStubMethods is the server interface containing |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 951 | // RockPaperScissors methods, as expected by ipc.Server. |
| 952 | // The only difference between this interface and RockPaperScissorsServerMethods |
| 953 | // is the streaming methods. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 954 | type RockPaperScissorsServerStubMethods interface { |
| 955 | JudgeServerStubMethods |
| 956 | // Player can receive challenges from other players. |
| 957 | PlayerServerStubMethods |
| 958 | // ScoreKeeper receives the outcome of games from Judges. |
| 959 | ScoreKeeperServerStubMethods |
| 960 | } |
| 961 | |
| 962 | // RockPaperScissorsServerStub adds universal methods to RockPaperScissorsServerStubMethods. |
| 963 | type RockPaperScissorsServerStub interface { |
| 964 | RockPaperScissorsServerStubMethods |
| 965 | // GetMethodTags will be replaced with DescribeInterfaces. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 966 | GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 967 | // Signature will be replaced with DescribeInterfaces. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 968 | Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | // RockPaperScissorsServer returns a server stub for RockPaperScissors. |
| 972 | // It converts an implementation of RockPaperScissorsServerMethods into |
| 973 | // an object that may be used by ipc.Server. |
| 974 | func RockPaperScissorsServer(impl RockPaperScissorsServerMethods) RockPaperScissorsServerStub { |
| 975 | stub := implRockPaperScissorsServerStub{ |
| 976 | impl: impl, |
| 977 | JudgeServerStub: JudgeServer(impl), |
| 978 | PlayerServerStub: PlayerServer(impl), |
| 979 | ScoreKeeperServerStub: ScoreKeeperServer(impl), |
| 980 | } |
| 981 | // Initialize GlobState; always check the stub itself first, to handle the |
| 982 | // case where the user has the Glob method defined in their VDL source. |
| 983 | if gs := __ipc.NewGlobState(stub); gs != nil { |
| 984 | stub.gs = gs |
| 985 | } else if gs := __ipc.NewGlobState(impl); gs != nil { |
| 986 | stub.gs = gs |
| 987 | } |
Robin Thellend | a754845 | 2014-11-05 18:10:24 -0800 | [diff] [blame] | 988 | return stub |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 989 | } |
| 990 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 991 | type implRockPaperScissorsServerStub struct { |
| 992 | impl RockPaperScissorsServerMethods |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 993 | JudgeServerStub |
| 994 | PlayerServerStub |
| 995 | ScoreKeeperServerStub |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 996 | gs *__ipc.GlobState |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 997 | } |
| 998 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 999 | func (s implRockPaperScissorsServerStub) VGlob() *__ipc.GlobState { |
| 1000 | return s.gs |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1001 | } |
| 1002 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 1003 | func (s implRockPaperScissorsServerStub) GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1004 | // TODO(toddw): Replace with new DescribeInterfaces implementation. |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 1005 | if resp, err := s.JudgeServerStub.GetMethodTags(ctx, method); resp != nil || err != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1006 | return resp, err |
| 1007 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 1008 | if resp, err := s.PlayerServerStub.GetMethodTags(ctx, method); resp != nil || err != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1009 | return resp, err |
| 1010 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 1011 | if resp, err := s.ScoreKeeperServerStub.GetMethodTags(ctx, method); resp != nil || err != nil { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1012 | return resp, err |
| 1013 | } |
| 1014 | return nil, nil |
| 1015 | } |
| 1016 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 1017 | func (s implRockPaperScissorsServerStub) Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1018 | // TODO(toddw) Replace with new DescribeInterfaces implementation. |
| 1019 | result := __ipc.ServiceSignature{Methods: make(map[string]__ipc.MethodSignature)} |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1020 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1021 | result.TypeDefs = []__vdlutil.Any{} |
| 1022 | var ss __ipc.ServiceSignature |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1023 | var firstAdded int |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 1024 | ss, _ = s.JudgeServerStub.Signature(ctx) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1025 | firstAdded = len(result.TypeDefs) |
| 1026 | for k, v := range ss.Methods { |
| 1027 | for i, _ := range v.InArgs { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1028 | if v.InArgs[i].Type >= __wiretype.TypeIDFirst { |
| 1029 | v.InArgs[i].Type += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1030 | } |
| 1031 | } |
| 1032 | for i, _ := range v.OutArgs { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1033 | if v.OutArgs[i].Type >= __wiretype.TypeIDFirst { |
| 1034 | v.OutArgs[i].Type += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1035 | } |
| 1036 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1037 | if v.InStream >= __wiretype.TypeIDFirst { |
| 1038 | v.InStream += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1039 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1040 | if v.OutStream >= __wiretype.TypeIDFirst { |
| 1041 | v.OutStream += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1042 | } |
| 1043 | result.Methods[k] = v |
| 1044 | } |
| 1045 | //TODO(bprosnitz) combine type definitions from embeded interfaces in a way that doesn't cause duplication. |
| 1046 | for _, d := range ss.TypeDefs { |
| 1047 | switch wt := d.(type) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1048 | case __wiretype.SliceType: |
| 1049 | if wt.Elem >= __wiretype.TypeIDFirst { |
| 1050 | wt.Elem += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1051 | } |
| 1052 | d = wt |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1053 | case __wiretype.ArrayType: |
| 1054 | if wt.Elem >= __wiretype.TypeIDFirst { |
| 1055 | wt.Elem += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1056 | } |
| 1057 | d = wt |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1058 | case __wiretype.MapType: |
| 1059 | if wt.Key >= __wiretype.TypeIDFirst { |
| 1060 | wt.Key += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1061 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1062 | if wt.Elem >= __wiretype.TypeIDFirst { |
| 1063 | wt.Elem += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1064 | } |
| 1065 | d = wt |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1066 | case __wiretype.StructType: |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1067 | for i, fld := range wt.Fields { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1068 | if fld.Type >= __wiretype.TypeIDFirst { |
| 1069 | wt.Fields[i].Type += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1070 | } |
| 1071 | } |
| 1072 | d = wt |
| 1073 | // NOTE: other types are missing, but we are upgrading anyways. |
| 1074 | } |
| 1075 | result.TypeDefs = append(result.TypeDefs, d) |
| 1076 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 1077 | ss, _ = s.PlayerServerStub.Signature(ctx) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1078 | firstAdded = len(result.TypeDefs) |
| 1079 | for k, v := range ss.Methods { |
| 1080 | for i, _ := range v.InArgs { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1081 | if v.InArgs[i].Type >= __wiretype.TypeIDFirst { |
| 1082 | v.InArgs[i].Type += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1083 | } |
| 1084 | } |
| 1085 | for i, _ := range v.OutArgs { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1086 | if v.OutArgs[i].Type >= __wiretype.TypeIDFirst { |
| 1087 | v.OutArgs[i].Type += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1088 | } |
| 1089 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1090 | if v.InStream >= __wiretype.TypeIDFirst { |
| 1091 | v.InStream += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1092 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1093 | if v.OutStream >= __wiretype.TypeIDFirst { |
| 1094 | v.OutStream += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1095 | } |
| 1096 | result.Methods[k] = v |
| 1097 | } |
| 1098 | //TODO(bprosnitz) combine type definitions from embeded interfaces in a way that doesn't cause duplication. |
| 1099 | for _, d := range ss.TypeDefs { |
| 1100 | switch wt := d.(type) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1101 | case __wiretype.SliceType: |
| 1102 | if wt.Elem >= __wiretype.TypeIDFirst { |
| 1103 | wt.Elem += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1104 | } |
| 1105 | d = wt |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1106 | case __wiretype.ArrayType: |
| 1107 | if wt.Elem >= __wiretype.TypeIDFirst { |
| 1108 | wt.Elem += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1109 | } |
| 1110 | d = wt |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1111 | case __wiretype.MapType: |
| 1112 | if wt.Key >= __wiretype.TypeIDFirst { |
| 1113 | wt.Key += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1114 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1115 | if wt.Elem >= __wiretype.TypeIDFirst { |
| 1116 | wt.Elem += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1117 | } |
| 1118 | d = wt |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1119 | case __wiretype.StructType: |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1120 | for i, fld := range wt.Fields { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1121 | if fld.Type >= __wiretype.TypeIDFirst { |
| 1122 | wt.Fields[i].Type += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1123 | } |
| 1124 | } |
| 1125 | d = wt |
| 1126 | // NOTE: other types are missing, but we are upgrading anyways. |
| 1127 | } |
| 1128 | result.TypeDefs = append(result.TypeDefs, d) |
| 1129 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame^] | 1130 | ss, _ = s.ScoreKeeperServerStub.Signature(ctx) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1131 | firstAdded = len(result.TypeDefs) |
| 1132 | for k, v := range ss.Methods { |
| 1133 | for i, _ := range v.InArgs { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1134 | if v.InArgs[i].Type >= __wiretype.TypeIDFirst { |
| 1135 | v.InArgs[i].Type += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1136 | } |
| 1137 | } |
| 1138 | for i, _ := range v.OutArgs { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1139 | if v.OutArgs[i].Type >= __wiretype.TypeIDFirst { |
| 1140 | v.OutArgs[i].Type += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1141 | } |
| 1142 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1143 | if v.InStream >= __wiretype.TypeIDFirst { |
| 1144 | v.InStream += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1145 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1146 | if v.OutStream >= __wiretype.TypeIDFirst { |
| 1147 | v.OutStream += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1148 | } |
| 1149 | result.Methods[k] = v |
| 1150 | } |
| 1151 | //TODO(bprosnitz) combine type definitions from embeded interfaces in a way that doesn't cause duplication. |
| 1152 | for _, d := range ss.TypeDefs { |
| 1153 | switch wt := d.(type) { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1154 | case __wiretype.SliceType: |
| 1155 | if wt.Elem >= __wiretype.TypeIDFirst { |
| 1156 | wt.Elem += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1157 | } |
| 1158 | d = wt |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1159 | case __wiretype.ArrayType: |
| 1160 | if wt.Elem >= __wiretype.TypeIDFirst { |
| 1161 | wt.Elem += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1162 | } |
| 1163 | d = wt |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1164 | case __wiretype.MapType: |
| 1165 | if wt.Key >= __wiretype.TypeIDFirst { |
| 1166 | wt.Key += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1167 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1168 | if wt.Elem >= __wiretype.TypeIDFirst { |
| 1169 | wt.Elem += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1170 | } |
| 1171 | d = wt |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1172 | case __wiretype.StructType: |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1173 | for i, fld := range wt.Fields { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 1174 | if fld.Type >= __wiretype.TypeIDFirst { |
| 1175 | wt.Fields[i].Type += __wiretype.TypeID(firstAdded) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 1176 | } |
| 1177 | } |
| 1178 | d = wt |
| 1179 | // NOTE: other types are missing, but we are upgrading anyways. |
| 1180 | } |
| 1181 | result.TypeDefs = append(result.TypeDefs, d) |
| 1182 | } |
| 1183 | |
| 1184 | return result, nil |
| 1185 | } |