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 | |
Robin Thellend | 320af42 | 2015-03-09 17:18:15 -0700 | [diff] [blame] | 4 | // Package rps is an example of vanadium service for playing the game of |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 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 | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 21 | // VDL system imports |
| 22 | "io" |
Jiri Simsa | 386ce3e | 2015-02-23 16:14:20 -0800 | [diff] [blame] | 23 | "v.io/v23" |
| 24 | "v.io/v23/context" |
| 25 | "v.io/v23/ipc" |
| 26 | "v.io/v23/vdl" |
Asim Shankar | 4794c93 | 2014-11-24 17:45:56 -0800 | [diff] [blame] | 27 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 28 | // VDL user imports |
Jiri Simsa | 386ce3e | 2015-02-23 16:14:20 -0800 | [diff] [blame] | 29 | "v.io/v23/services/security/access" |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 30 | ) |
| 31 | |
| 32 | // A GameID is used to uniquely identify a game within one Judge. |
| 33 | type GameID struct { |
| 34 | ID string |
| 35 | } |
| 36 | |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 37 | func (GameID) __VDLReflect(struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 38 | Name string "v.io/x/ref/examples/rps.GameID" |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 39 | }) { |
| 40 | } |
| 41 | |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 42 | // GameOptions specifies the parameters of a game. |
| 43 | type GameOptions struct { |
| 44 | NumRounds int32 // The number of rounds that a player must win to win the game. |
| 45 | GameType GameTypeTag // The type of game to play: Classic or LizardSpock. |
| 46 | } |
| 47 | |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 48 | func (GameOptions) __VDLReflect(struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 49 | Name string "v.io/x/ref/examples/rps.GameOptions" |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 50 | }) { |
| 51 | } |
| 52 | |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 53 | type GameTypeTag byte |
| 54 | |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 55 | func (GameTypeTag) __VDLReflect(struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 56 | Name string "v.io/x/ref/examples/rps.GameTypeTag" |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 57 | }) { |
| 58 | } |
| 59 | |
Robin Thellend | 636b360 | 2015-02-11 14:57:44 -0800 | [diff] [blame] | 60 | type ( |
| 61 | // PlayerAction represents any single field of the PlayerAction union type. |
| 62 | PlayerAction interface { |
| 63 | // Index returns the field index. |
| 64 | Index() int |
| 65 | // Interface returns the field value as an interface. |
| 66 | Interface() interface{} |
| 67 | // Name returns the field name. |
| 68 | Name() string |
| 69 | // __VDLReflect describes the PlayerAction union type. |
| 70 | __VDLReflect(__PlayerActionReflect) |
| 71 | } |
| 72 | // PlayerActionMove represents field Move of the PlayerAction union type. |
| 73 | PlayerActionMove struct{ Value string } // The move that the player wants to make. |
| 74 | // PlayerActionQuit represents field Quit of the PlayerAction union type. |
| 75 | PlayerActionQuit struct{ Value unused } // Indicates that the player is quitting the game. |
| 76 | // __PlayerActionReflect describes the PlayerAction union type. |
| 77 | __PlayerActionReflect struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 78 | Name string "v.io/x/ref/examples/rps.PlayerAction" |
Robin Thellend | 636b360 | 2015-02-11 14:57:44 -0800 | [diff] [blame] | 79 | Type PlayerAction |
| 80 | Union struct { |
| 81 | Move PlayerActionMove |
| 82 | Quit PlayerActionQuit |
| 83 | } |
| 84 | } |
| 85 | ) |
| 86 | |
| 87 | func (x PlayerActionMove) Index() int { return 0 } |
| 88 | func (x PlayerActionMove) Interface() interface{} { return x.Value } |
| 89 | func (x PlayerActionMove) Name() string { return "Move" } |
| 90 | func (x PlayerActionMove) __VDLReflect(__PlayerActionReflect) {} |
| 91 | |
| 92 | func (x PlayerActionQuit) Index() int { return 1 } |
| 93 | func (x PlayerActionQuit) Interface() interface{} { return x.Value } |
| 94 | func (x PlayerActionQuit) Name() string { return "Quit" } |
| 95 | func (x PlayerActionQuit) __VDLReflect(__PlayerActionReflect) {} |
| 96 | |
| 97 | type unused struct { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Robin Thellend | 636b360 | 2015-02-11 14:57:44 -0800 | [diff] [blame] | 100 | func (unused) __VDLReflect(struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 101 | Name string "v.io/x/ref/examples/rps.unused" |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 102 | }) { |
| 103 | } |
| 104 | |
Robin Thellend | 636b360 | 2015-02-11 14:57:44 -0800 | [diff] [blame] | 105 | type ( |
| 106 | // JudgeAction represents any single field of the JudgeAction union type. |
| 107 | JudgeAction interface { |
| 108 | // Index returns the field index. |
| 109 | Index() int |
| 110 | // Interface returns the field value as an interface. |
| 111 | Interface() interface{} |
| 112 | // Name returns the field name. |
| 113 | Name() string |
| 114 | // __VDLReflect describes the JudgeAction union type. |
| 115 | __VDLReflect(__JudgeActionReflect) |
| 116 | } |
| 117 | // JudgeActionPlayerNum represents field PlayerNum of the JudgeAction union type. |
| 118 | JudgeActionPlayerNum struct{ Value int32 } // The player's number. |
| 119 | // JudgeActionOpponentName represents field OpponentName of the JudgeAction union type. |
| 120 | JudgeActionOpponentName struct{ Value string } // The name of the opponent. |
| 121 | // JudgeActionMoveOptions represents field MoveOptions of the JudgeAction union type. |
| 122 | JudgeActionMoveOptions struct{ Value []string } // A list of allowed moves that the player must choose from. |
| 123 | // JudgeActionRoundResult represents field RoundResult of the JudgeAction union type. |
| 124 | JudgeActionRoundResult struct{ Value Round } // The result of the previous round. |
| 125 | // JudgeActionScore represents field Score of the JudgeAction union type. |
| 126 | JudgeActionScore struct{ Value ScoreCard } // The result of the game. |
| 127 | // __JudgeActionReflect describes the JudgeAction union type. |
| 128 | __JudgeActionReflect struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 129 | Name string "v.io/x/ref/examples/rps.JudgeAction" |
Robin Thellend | 636b360 | 2015-02-11 14:57:44 -0800 | [diff] [blame] | 130 | Type JudgeAction |
| 131 | Union struct { |
| 132 | PlayerNum JudgeActionPlayerNum |
| 133 | OpponentName JudgeActionOpponentName |
| 134 | MoveOptions JudgeActionMoveOptions |
| 135 | RoundResult JudgeActionRoundResult |
| 136 | Score JudgeActionScore |
| 137 | } |
| 138 | } |
| 139 | ) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 140 | |
Robin Thellend | 636b360 | 2015-02-11 14:57:44 -0800 | [diff] [blame] | 141 | func (x JudgeActionPlayerNum) Index() int { return 0 } |
| 142 | func (x JudgeActionPlayerNum) Interface() interface{} { return x.Value } |
| 143 | func (x JudgeActionPlayerNum) Name() string { return "PlayerNum" } |
| 144 | func (x JudgeActionPlayerNum) __VDLReflect(__JudgeActionReflect) {} |
| 145 | |
| 146 | func (x JudgeActionOpponentName) Index() int { return 1 } |
| 147 | func (x JudgeActionOpponentName) Interface() interface{} { return x.Value } |
| 148 | func (x JudgeActionOpponentName) Name() string { return "OpponentName" } |
| 149 | func (x JudgeActionOpponentName) __VDLReflect(__JudgeActionReflect) {} |
| 150 | |
| 151 | func (x JudgeActionMoveOptions) Index() int { return 2 } |
| 152 | func (x JudgeActionMoveOptions) Interface() interface{} { return x.Value } |
| 153 | func (x JudgeActionMoveOptions) Name() string { return "MoveOptions" } |
| 154 | func (x JudgeActionMoveOptions) __VDLReflect(__JudgeActionReflect) {} |
| 155 | |
| 156 | func (x JudgeActionRoundResult) Index() int { return 3 } |
| 157 | func (x JudgeActionRoundResult) Interface() interface{} { return x.Value } |
| 158 | func (x JudgeActionRoundResult) Name() string { return "RoundResult" } |
| 159 | func (x JudgeActionRoundResult) __VDLReflect(__JudgeActionReflect) {} |
| 160 | |
| 161 | func (x JudgeActionScore) Index() int { return 4 } |
| 162 | func (x JudgeActionScore) Interface() interface{} { return x.Value } |
| 163 | func (x JudgeActionScore) Name() string { return "Score" } |
| 164 | func (x JudgeActionScore) __VDLReflect(__JudgeActionReflect) {} |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 165 | |
Sergey Rogulenko | 2f64f98 | 2015-02-05 14:14:46 -0800 | [diff] [blame] | 166 | type PlayersMoves [2]string |
| 167 | |
| 168 | func (PlayersMoves) __VDLReflect(struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 169 | Name string "v.io/x/ref/examples/rps.PlayersMoves" |
Sergey Rogulenko | 2f64f98 | 2015-02-05 14:14:46 -0800 | [diff] [blame] | 170 | }) { |
| 171 | } |
| 172 | |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 173 | // Round represents the state of a round. |
| 174 | type Round struct { |
Sergey Rogulenko | 2f64f98 | 2015-02-05 14:14:46 -0800 | [diff] [blame] | 175 | Moves PlayersMoves // Each player's move. |
| 176 | Comment string // A text comment from judge about the round. |
| 177 | Winner WinnerTag // Who won the round. |
| 178 | StartTimeNS int64 // The time at which the round started. |
| 179 | EndTimeNS int64 // The time at which the round ended. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 180 | } |
| 181 | |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 182 | func (Round) __VDLReflect(struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 183 | Name string "v.io/x/ref/examples/rps.Round" |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 184 | }) { |
| 185 | } |
| 186 | |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 187 | // WinnerTag is a type used to indicate whether a round or a game was a draw, |
| 188 | // was won by player 1 or was won by player 2. |
| 189 | type WinnerTag byte |
| 190 | |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 191 | func (WinnerTag) __VDLReflect(struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 192 | Name string "v.io/x/ref/examples/rps.WinnerTag" |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 193 | }) { |
| 194 | } |
| 195 | |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 196 | // PlayResult is the value returned by the Play method. It indicates the outcome of the game. |
| 197 | type PlayResult struct { |
| 198 | YouWon bool // True if the player receiving the result won the game. |
| 199 | } |
| 200 | |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 201 | func (PlayResult) __VDLReflect(struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 202 | Name string "v.io/x/ref/examples/rps.PlayResult" |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 203 | }) { |
| 204 | } |
| 205 | |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 206 | type ScoreCard struct { |
| 207 | Opts GameOptions // The game options. |
| 208 | Judge string // The name of the judge. |
| 209 | Players []string // The name of the players. |
| 210 | Rounds []Round // The outcome of each round. |
| 211 | StartTimeNS int64 // The time at which the game started. |
| 212 | EndTimeNS int64 // The time at which the game ended. |
| 213 | Winner WinnerTag // Who won the game. |
| 214 | } |
| 215 | |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 216 | func (ScoreCard) __VDLReflect(struct { |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 217 | Name string "v.io/x/ref/examples/rps.ScoreCard" |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 218 | }) { |
| 219 | } |
| 220 | |
| 221 | func init() { |
Todd Wang | 83f63ba | 2015-02-09 13:30:43 -0800 | [diff] [blame] | 222 | vdl.Register((*GameID)(nil)) |
| 223 | vdl.Register((*GameOptions)(nil)) |
| 224 | vdl.Register((*GameTypeTag)(nil)) |
| 225 | vdl.Register((*PlayerAction)(nil)) |
Robin Thellend | 636b360 | 2015-02-11 14:57:44 -0800 | [diff] [blame] | 226 | vdl.Register((*unused)(nil)) |
Todd Wang | 83f63ba | 2015-02-09 13:30:43 -0800 | [diff] [blame] | 227 | vdl.Register((*JudgeAction)(nil)) |
| 228 | vdl.Register((*PlayersMoves)(nil)) |
| 229 | vdl.Register((*Round)(nil)) |
| 230 | vdl.Register((*WinnerTag)(nil)) |
| 231 | vdl.Register((*PlayResult)(nil)) |
| 232 | vdl.Register((*ScoreCard)(nil)) |
Todd Wang | 24983c7 | 2014-11-26 15:07:25 -0800 | [diff] [blame] | 233 | } |
| 234 | |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 235 | const Classic = GameTypeTag(0) // Rock-Paper-Scissors |
| 236 | |
| 237 | const LizardSpock = GameTypeTag(1) // Rock-Paper-Scissors-Lizard-Spock |
| 238 | |
| 239 | const Draw = WinnerTag(0) |
| 240 | |
| 241 | const Player1 = WinnerTag(1) |
| 242 | |
| 243 | const Player2 = WinnerTag(2) |
| 244 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 245 | // JudgeClientMethods is the client interface |
| 246 | // containing Judge methods. |
| 247 | type JudgeClientMethods interface { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 248 | // CreateGame creates a new game with the given game options and returns a game |
| 249 | // identifier that can be used by the players to join the game. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 250 | CreateGame(ctx *context.T, Opts GameOptions, opts ...ipc.CallOpt) (GameID, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 251 | // Play lets a player join an existing game and play. |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 252 | Play(ctx *context.T, ID GameID, opts ...ipc.CallOpt) (JudgePlayClientCall, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 253 | } |
| 254 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 255 | // JudgeClientStub adds universal methods to JudgeClientMethods. |
| 256 | type JudgeClientStub interface { |
| 257 | JudgeClientMethods |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 258 | ipc.UniversalServiceMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 261 | // JudgeClient returns a client stub for Judge. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 262 | func JudgeClient(name string, opts ...ipc.BindOpt) JudgeClientStub { |
| 263 | var client ipc.Client |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 264 | for _, opt := range opts { |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 265 | if clientOpt, ok := opt.(ipc.Client); ok { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 266 | client = clientOpt |
| 267 | } |
| 268 | } |
| 269 | return implJudgeClientStub{name, client} |
| 270 | } |
| 271 | |
| 272 | type implJudgeClientStub struct { |
| 273 | name string |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 274 | client ipc.Client |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 275 | } |
| 276 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 277 | func (c implJudgeClientStub) c(ctx *context.T) ipc.Client { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 278 | if c.client != nil { |
| 279 | return c.client |
| 280 | } |
Jiri Simsa | 386ce3e | 2015-02-23 16:14:20 -0800 | [diff] [blame] | 281 | return v23.GetClient(ctx) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 282 | } |
| 283 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 284 | func (c implJudgeClientStub) CreateGame(ctx *context.T, i0 GameOptions, opts ...ipc.CallOpt) (o0 GameID, err error) { |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 285 | var call ipc.ClientCall |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 286 | if call, err = c.c(ctx).StartCall(ctx, c.name, "CreateGame", []interface{}{i0}, opts...); err != nil { |
| 287 | return |
| 288 | } |
Todd Wang | 8f9f7f1 | 2015-02-18 13:21:09 -0800 | [diff] [blame] | 289 | err = call.Finish(&o0) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 290 | return |
| 291 | } |
| 292 | |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 293 | func (c implJudgeClientStub) Play(ctx *context.T, i0 GameID, opts ...ipc.CallOpt) (ocall JudgePlayClientCall, err error) { |
| 294 | var call ipc.ClientCall |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 295 | if call, err = c.c(ctx).StartCall(ctx, c.name, "Play", []interface{}{i0}, opts...); err != nil { |
| 296 | return |
| 297 | } |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 298 | ocall = &implJudgePlayClientCall{ClientCall: call} |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 299 | return |
| 300 | } |
| 301 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 302 | // JudgePlayClientStream is the client stream for Judge.Play. |
| 303 | type JudgePlayClientStream interface { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 304 | // RecvStream returns the receiver side of the Judge.Play client stream. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 305 | RecvStream() interface { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 306 | // Advance stages an item so that it may be retrieved via Value. Returns |
| 307 | // true iff there is an item to retrieve. Advance must be called before |
| 308 | // Value is called. May block if an item is not available. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 309 | Advance() bool |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 310 | // Value returns the item that was staged by Advance. May panic if Advance |
| 311 | // returned false or was not called. Never blocks. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 312 | Value() JudgeAction |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 313 | // Err returns any error encountered by Advance. Never blocks. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 314 | Err() error |
| 315 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 316 | // SendStream returns the send side of the Judge.Play client stream. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 317 | SendStream() interface { |
Todd Wang | 04f97dd | 2014-12-18 18:52:07 -0800 | [diff] [blame] | 318 | // Send places the item onto the output stream. Returns errors |
| 319 | // encountered while sending, or if Send is called after Close or |
| 320 | // the stream has been canceled. Blocks if there is no buffer |
| 321 | // space; will unblock when buffer space is available or after |
| 322 | // the stream has been canceled. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 323 | Send(item PlayerAction) error |
Todd Wang | 04f97dd | 2014-12-18 18:52:07 -0800 | [diff] [blame] | 324 | // Close indicates to the server that no more items will be sent; |
| 325 | // server Recv calls will receive io.EOF after all sent items. |
| 326 | // This is an optional call - e.g. a client might call Close if it |
| 327 | // needs to continue receiving items from the server after it's |
| 328 | // done sending. Returns errors encountered while closing, or if |
| 329 | // Close is called after the stream has been canceled. Like Send, |
| 330 | // blocks if there is no buffer space available. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 331 | Close() error |
| 332 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 333 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 334 | |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 335 | // JudgePlayClientCall represents the call returned from Judge.Play. |
| 336 | type JudgePlayClientCall interface { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 337 | JudgePlayClientStream |
| 338 | // Finish performs the equivalent of SendStream().Close, then blocks until |
| 339 | // the server is done, and returns the positional return values for the call. |
| 340 | // |
Todd Wang | 04f97dd | 2014-12-18 18:52:07 -0800 | [diff] [blame] | 341 | // Finish returns immediately if the call has been canceled; depending on the |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 342 | // timing the output could either be an error signaling cancelation, or the |
| 343 | // valid positional return values from the server. |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 344 | // |
Todd Wang | 04f97dd | 2014-12-18 18:52:07 -0800 | [diff] [blame] | 345 | // Calling Finish is mandatory for releasing stream resources, unless the call |
| 346 | // has been canceled or any of the other methods return an error. Finish should |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 347 | // be called at most once. |
| 348 | Finish() (PlayResult, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 349 | } |
| 350 | |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 351 | type implJudgePlayClientCall struct { |
| 352 | ipc.ClientCall |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 353 | valRecv JudgeAction |
| 354 | errRecv error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 357 | func (c *implJudgePlayClientCall) RecvStream() interface { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 358 | Advance() bool |
| 359 | Value() JudgeAction |
| 360 | Err() error |
| 361 | } { |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 362 | return implJudgePlayClientCallRecv{c} |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 363 | } |
| 364 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 365 | type implJudgePlayClientCallRecv struct { |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 366 | c *implJudgePlayClientCall |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 367 | } |
| 368 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 369 | func (c implJudgePlayClientCallRecv) Advance() bool { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 370 | c.c.errRecv = c.c.Recv(&c.c.valRecv) |
| 371 | return c.c.errRecv == nil |
| 372 | } |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 373 | func (c implJudgePlayClientCallRecv) Value() JudgeAction { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 374 | return c.c.valRecv |
| 375 | } |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 376 | func (c implJudgePlayClientCallRecv) Err() error { |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 377 | if c.c.errRecv == io.EOF { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 378 | return nil |
| 379 | } |
| 380 | return c.c.errRecv |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 381 | } |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 382 | func (c *implJudgePlayClientCall) SendStream() interface { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 383 | Send(item PlayerAction) error |
| 384 | Close() error |
| 385 | } { |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 386 | return implJudgePlayClientCallSend{c} |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 387 | } |
| 388 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 389 | type implJudgePlayClientCallSend struct { |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 390 | c *implJudgePlayClientCall |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 391 | } |
| 392 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 393 | func (c implJudgePlayClientCallSend) Send(item PlayerAction) error { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 394 | return c.c.Send(item) |
| 395 | } |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 396 | func (c implJudgePlayClientCallSend) Close() error { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 397 | return c.c.CloseSend() |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 398 | } |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 399 | func (c *implJudgePlayClientCall) Finish() (o0 PlayResult, err error) { |
| 400 | err = c.ClientCall.Finish(&o0) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 401 | return |
| 402 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 403 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 404 | // JudgeServerMethods is the interface a server writer |
| 405 | // implements for Judge. |
| 406 | type JudgeServerMethods interface { |
| 407 | // CreateGame creates a new game with the given game options and returns a game |
| 408 | // identifier that can be used by the players to join the game. |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 409 | CreateGame(call ipc.ServerCall, Opts GameOptions) (GameID, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 410 | // Play lets a player join an existing game and play. |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 411 | Play(call JudgePlayServerCall, ID GameID) (PlayResult, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 412 | } |
| 413 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 414 | // JudgeServerStubMethods is the server interface containing |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 415 | // Judge methods, as expected by ipc.Server. |
| 416 | // The only difference between this interface and JudgeServerMethods |
| 417 | // is the streaming methods. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 418 | type JudgeServerStubMethods interface { |
| 419 | // CreateGame creates a new game with the given game options and returns a game |
| 420 | // identifier that can be used by the players to join the game. |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 421 | CreateGame(call ipc.ServerCall, Opts GameOptions) (GameID, error) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 422 | // Play lets a player join an existing game and play. |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 423 | Play(call *JudgePlayServerCallStub, ID GameID) (PlayResult, error) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 424 | } |
| 425 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 426 | // JudgeServerStub adds universal methods to JudgeServerStubMethods. |
| 427 | type JudgeServerStub interface { |
| 428 | JudgeServerStubMethods |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 429 | // Describe the Judge interfaces. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 430 | Describe__() []ipc.InterfaceDesc |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 433 | // JudgeServer returns a server stub for Judge. |
| 434 | // It converts an implementation of JudgeServerMethods into |
| 435 | // an object that may be used by ipc.Server. |
| 436 | func JudgeServer(impl JudgeServerMethods) JudgeServerStub { |
| 437 | stub := implJudgeServerStub{ |
| 438 | impl: impl, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 439 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 440 | // Initialize GlobState; always check the stub itself first, to handle the |
| 441 | // case where the user has the Glob method defined in their VDL source. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 442 | if gs := ipc.NewGlobState(stub); gs != nil { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 443 | stub.gs = gs |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 444 | } else if gs := ipc.NewGlobState(impl); gs != nil { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 445 | stub.gs = gs |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 446 | } |
Robin Thellend | a754845 | 2014-11-05 18:10:24 -0800 | [diff] [blame] | 447 | return stub |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 448 | } |
| 449 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 450 | type implJudgeServerStub struct { |
| 451 | impl JudgeServerMethods |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 452 | gs *ipc.GlobState |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 453 | } |
| 454 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 455 | func (s implJudgeServerStub) CreateGame(call ipc.ServerCall, i0 GameOptions) (GameID, error) { |
| 456 | return s.impl.CreateGame(call, i0) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 457 | } |
| 458 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 459 | func (s implJudgeServerStub) Play(call *JudgePlayServerCallStub, i0 GameID) (PlayResult, error) { |
| 460 | return s.impl.Play(call, i0) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 463 | func (s implJudgeServerStub) Globber() *ipc.GlobState { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 464 | return s.gs |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 465 | } |
| 466 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 467 | func (s implJudgeServerStub) Describe__() []ipc.InterfaceDesc { |
| 468 | return []ipc.InterfaceDesc{JudgeDesc} |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | // JudgeDesc describes the Judge interface. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 472 | var JudgeDesc ipc.InterfaceDesc = descJudge |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 473 | |
| 474 | // descJudge hides the desc to keep godoc clean. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 475 | var descJudge = ipc.InterfaceDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 476 | Name: "Judge", |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 477 | PkgPath: "v.io/x/ref/examples/rps", |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 478 | Methods: []ipc.MethodDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 479 | { |
| 480 | Name: "CreateGame", |
| 481 | Doc: "// CreateGame creates a new game with the given game options and returns a game\n// identifier that can be used by the players to join the game.", |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 482 | InArgs: []ipc.ArgDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 483 | {"Opts", ``}, // GameOptions |
| 484 | }, |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 485 | OutArgs: []ipc.ArgDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 486 | {"", ``}, // GameID |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 487 | }, |
Todd Wang | cab990d | 2015-02-19 19:54:06 -0800 | [diff] [blame] | 488 | Tags: []*vdl.Value{vdl.ValueOf(access.Tag("Write"))}, |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 489 | }, |
| 490 | { |
| 491 | Name: "Play", |
| 492 | Doc: "// Play lets a player join an existing game and play.", |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 493 | InArgs: []ipc.ArgDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 494 | {"ID", ``}, // GameID |
| 495 | }, |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 496 | OutArgs: []ipc.ArgDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 497 | {"", ``}, // PlayResult |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 498 | }, |
Todd Wang | cab990d | 2015-02-19 19:54:06 -0800 | [diff] [blame] | 499 | Tags: []*vdl.Value{vdl.ValueOf(access.Tag("Write"))}, |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 500 | }, |
| 501 | }, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 502 | } |
| 503 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 504 | // JudgePlayServerStream is the server stream for Judge.Play. |
| 505 | type JudgePlayServerStream interface { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 506 | // RecvStream returns the receiver side of the Judge.Play server stream. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 507 | RecvStream() interface { |
| 508 | // Advance stages an item so that it may be retrieved via Value. Returns |
| 509 | // true iff there is an item to retrieve. Advance must be called before |
| 510 | // Value is called. May block if an item is not available. |
| 511 | Advance() bool |
| 512 | // Value returns the item that was staged by Advance. May panic if Advance |
| 513 | // returned false or was not called. Never blocks. |
| 514 | Value() PlayerAction |
| 515 | // Err returns any error encountered by Advance. Never blocks. |
| 516 | Err() error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 517 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 518 | // SendStream returns the send side of the Judge.Play server stream. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 519 | SendStream() interface { |
| 520 | // Send places the item onto the output stream. Returns errors encountered |
| 521 | // while sending. Blocks if there is no buffer space; will unblock when |
| 522 | // buffer space is available. |
| 523 | Send(item JudgeAction) error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 524 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 525 | } |
| 526 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 527 | // JudgePlayServerCall represents the context passed to Judge.Play. |
| 528 | type JudgePlayServerCall interface { |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 529 | ipc.ServerCall |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 530 | JudgePlayServerStream |
Robin Thellend | a754845 | 2014-11-05 18:10:24 -0800 | [diff] [blame] | 531 | } |
| 532 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 533 | // JudgePlayServerCallStub is a wrapper that converts ipc.StreamServerCall into |
| 534 | // a typesafe stub that implements JudgePlayServerCall. |
| 535 | type JudgePlayServerCallStub struct { |
Matt Rosencrantz | 9ef0f2d | 2015-02-27 11:04:32 -0800 | [diff] [blame] | 536 | ipc.StreamServerCall |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 537 | valRecv PlayerAction |
| 538 | errRecv error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 539 | } |
| 540 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 541 | // Init initializes JudgePlayServerCallStub from ipc.StreamServerCall. |
| 542 | func (s *JudgePlayServerCallStub) Init(call ipc.StreamServerCall) { |
Matt Rosencrantz | 9ef0f2d | 2015-02-27 11:04:32 -0800 | [diff] [blame] | 543 | s.StreamServerCall = call |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 544 | } |
| 545 | |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 546 | // RecvStream returns the receiver side of the Judge.Play server stream. |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 547 | func (s *JudgePlayServerCallStub) RecvStream() interface { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 548 | Advance() bool |
| 549 | Value() PlayerAction |
| 550 | Err() error |
| 551 | } { |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 552 | return implJudgePlayServerCallRecv{s} |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 553 | } |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 554 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 555 | type implJudgePlayServerCallRecv struct { |
| 556 | s *JudgePlayServerCallStub |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 557 | } |
| 558 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 559 | func (s implJudgePlayServerCallRecv) Advance() bool { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 560 | s.s.errRecv = s.s.Recv(&s.s.valRecv) |
| 561 | return s.s.errRecv == nil |
| 562 | } |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 563 | func (s implJudgePlayServerCallRecv) Value() PlayerAction { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 564 | return s.s.valRecv |
| 565 | } |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 566 | func (s implJudgePlayServerCallRecv) Err() error { |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 567 | if s.s.errRecv == io.EOF { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 568 | return nil |
| 569 | } |
| 570 | return s.s.errRecv |
| 571 | } |
| 572 | |
| 573 | // SendStream returns the send side of the Judge.Play server stream. |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 574 | func (s *JudgePlayServerCallStub) SendStream() interface { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 575 | Send(item JudgeAction) error |
| 576 | } { |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 577 | return implJudgePlayServerCallSend{s} |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 578 | } |
| 579 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 580 | type implJudgePlayServerCallSend struct { |
| 581 | s *JudgePlayServerCallStub |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 582 | } |
| 583 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 584 | func (s implJudgePlayServerCallSend) Send(item JudgeAction) error { |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 585 | return s.s.Send(item) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | // PlayerClientMethods is the client interface |
| 589 | // containing Player methods. |
| 590 | // |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 591 | // Player can receive challenges from other players. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 592 | type PlayerClientMethods interface { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 593 | // Challenge is used by other players to challenge this player to a game. If |
| 594 | // the challenge is accepted, the method returns nil. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 595 | 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] | 596 | } |
| 597 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 598 | // PlayerClientStub adds universal methods to PlayerClientMethods. |
| 599 | type PlayerClientStub interface { |
| 600 | PlayerClientMethods |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 601 | ipc.UniversalServiceMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 602 | } |
| 603 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 604 | // PlayerClient returns a client stub for Player. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 605 | func PlayerClient(name string, opts ...ipc.BindOpt) PlayerClientStub { |
| 606 | var client ipc.Client |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 607 | for _, opt := range opts { |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 608 | if clientOpt, ok := opt.(ipc.Client); ok { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 609 | client = clientOpt |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 610 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 611 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 612 | return implPlayerClientStub{name, client} |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 613 | } |
| 614 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 615 | type implPlayerClientStub struct { |
| 616 | name string |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 617 | client ipc.Client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 618 | } |
| 619 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 620 | func (c implPlayerClientStub) c(ctx *context.T) ipc.Client { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 621 | if c.client != nil { |
| 622 | return c.client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 623 | } |
Jiri Simsa | 386ce3e | 2015-02-23 16:14:20 -0800 | [diff] [blame] | 624 | return v23.GetClient(ctx) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 625 | } |
| 626 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 627 | func (c implPlayerClientStub) Challenge(ctx *context.T, i0 string, i1 GameID, i2 GameOptions, opts ...ipc.CallOpt) (err error) { |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 628 | var call ipc.ClientCall |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 629 | 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] | 630 | return |
| 631 | } |
Todd Wang | 8f9f7f1 | 2015-02-18 13:21:09 -0800 | [diff] [blame] | 632 | err = call.Finish() |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 633 | return |
| 634 | } |
| 635 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 636 | // PlayerServerMethods is the interface a server writer |
| 637 | // implements for Player. |
| 638 | // |
| 639 | // Player can receive challenges from other players. |
| 640 | type PlayerServerMethods interface { |
| 641 | // Challenge is used by other players to challenge this player to a game. If |
| 642 | // the challenge is accepted, the method returns nil. |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 643 | Challenge(call ipc.ServerCall, Address string, ID GameID, Opts GameOptions) error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 646 | // PlayerServerStubMethods is the server interface containing |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 647 | // Player methods, as expected by ipc.Server. |
| 648 | // There is no difference between this interface and PlayerServerMethods |
| 649 | // since there are no streaming methods. |
| 650 | type PlayerServerStubMethods PlayerServerMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 651 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 652 | // PlayerServerStub adds universal methods to PlayerServerStubMethods. |
| 653 | type PlayerServerStub interface { |
| 654 | PlayerServerStubMethods |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 655 | // Describe the Player interfaces. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 656 | Describe__() []ipc.InterfaceDesc |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | // PlayerServer returns a server stub for Player. |
| 660 | // It converts an implementation of PlayerServerMethods into |
| 661 | // an object that may be used by ipc.Server. |
| 662 | func PlayerServer(impl PlayerServerMethods) PlayerServerStub { |
| 663 | stub := implPlayerServerStub{ |
| 664 | impl: impl, |
| 665 | } |
| 666 | // Initialize GlobState; always check the stub itself first, to handle the |
| 667 | // case where the user has the Glob method defined in their VDL source. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 668 | if gs := ipc.NewGlobState(stub); gs != nil { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 669 | stub.gs = gs |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 670 | } else if gs := ipc.NewGlobState(impl); gs != nil { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 671 | stub.gs = gs |
| 672 | } |
| 673 | return stub |
| 674 | } |
| 675 | |
| 676 | type implPlayerServerStub struct { |
| 677 | impl PlayerServerMethods |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 678 | gs *ipc.GlobState |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 679 | } |
| 680 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 681 | func (s implPlayerServerStub) Challenge(call ipc.ServerCall, i0 string, i1 GameID, i2 GameOptions) error { |
| 682 | return s.impl.Challenge(call, i0, i1, i2) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 683 | } |
| 684 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 685 | func (s implPlayerServerStub) Globber() *ipc.GlobState { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 686 | return s.gs |
| 687 | } |
| 688 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 689 | func (s implPlayerServerStub) Describe__() []ipc.InterfaceDesc { |
| 690 | return []ipc.InterfaceDesc{PlayerDesc} |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 691 | } |
| 692 | |
| 693 | // PlayerDesc describes the Player interface. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 694 | var PlayerDesc ipc.InterfaceDesc = descPlayer |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 695 | |
| 696 | // descPlayer hides the desc to keep godoc clean. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 697 | var descPlayer = ipc.InterfaceDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 698 | Name: "Player", |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 699 | PkgPath: "v.io/x/ref/examples/rps", |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 700 | Doc: "// Player can receive challenges from other players.", |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 701 | Methods: []ipc.MethodDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 702 | { |
| 703 | Name: "Challenge", |
| 704 | Doc: "// Challenge is used by other players to challenge this player to a game. If\n// the challenge is accepted, the method returns nil.", |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 705 | InArgs: []ipc.ArgDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 706 | {"Address", ``}, // string |
| 707 | {"ID", ``}, // GameID |
| 708 | {"Opts", ``}, // GameOptions |
| 709 | }, |
Todd Wang | cab990d | 2015-02-19 19:54:06 -0800 | [diff] [blame] | 710 | Tags: []*vdl.Value{vdl.ValueOf(access.Tag("Write"))}, |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 711 | }, |
| 712 | }, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 713 | } |
| 714 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 715 | // ScoreKeeperClientMethods is the client interface |
| 716 | // containing ScoreKeeper methods. |
| 717 | // |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 718 | // ScoreKeeper receives the outcome of games from Judges. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 719 | type ScoreKeeperClientMethods interface { |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 720 | Record(ctx *context.T, Score ScoreCard, opts ...ipc.CallOpt) error |
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 | // ScoreKeeperClientStub adds universal methods to ScoreKeeperClientMethods. |
| 724 | type ScoreKeeperClientStub interface { |
| 725 | ScoreKeeperClientMethods |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 726 | ipc.UniversalServiceMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 727 | } |
| 728 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 729 | // ScoreKeeperClient returns a client stub for ScoreKeeper. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 730 | func ScoreKeeperClient(name string, opts ...ipc.BindOpt) ScoreKeeperClientStub { |
| 731 | var client ipc.Client |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 732 | for _, opt := range opts { |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 733 | if clientOpt, ok := opt.(ipc.Client); ok { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 734 | client = clientOpt |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 735 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 736 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 737 | return implScoreKeeperClientStub{name, client} |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 738 | } |
| 739 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 740 | type implScoreKeeperClientStub struct { |
| 741 | name string |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 742 | client ipc.Client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 743 | } |
| 744 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 745 | func (c implScoreKeeperClientStub) c(ctx *context.T) ipc.Client { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 746 | if c.client != nil { |
| 747 | return c.client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 748 | } |
Jiri Simsa | 386ce3e | 2015-02-23 16:14:20 -0800 | [diff] [blame] | 749 | return v23.GetClient(ctx) |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 750 | } |
| 751 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 752 | func (c implScoreKeeperClientStub) Record(ctx *context.T, i0 ScoreCard, opts ...ipc.CallOpt) (err error) { |
Matt Rosencrantz | 72a1561 | 2015-02-27 22:22:41 -0800 | [diff] [blame] | 753 | var call ipc.ClientCall |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 754 | 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] | 755 | return |
| 756 | } |
Todd Wang | 8f9f7f1 | 2015-02-18 13:21:09 -0800 | [diff] [blame] | 757 | err = call.Finish() |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 758 | return |
| 759 | } |
| 760 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 761 | // ScoreKeeperServerMethods is the interface a server writer |
| 762 | // implements for ScoreKeeper. |
| 763 | // |
| 764 | // ScoreKeeper receives the outcome of games from Judges. |
| 765 | type ScoreKeeperServerMethods interface { |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 766 | Record(call ipc.ServerCall, Score ScoreCard) error |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 767 | } |
| 768 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 769 | // ScoreKeeperServerStubMethods is the server interface containing |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 770 | // ScoreKeeper methods, as expected by ipc.Server. |
| 771 | // There is no difference between this interface and ScoreKeeperServerMethods |
| 772 | // since there are no streaming methods. |
| 773 | type ScoreKeeperServerStubMethods ScoreKeeperServerMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 774 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 775 | // ScoreKeeperServerStub adds universal methods to ScoreKeeperServerStubMethods. |
| 776 | type ScoreKeeperServerStub interface { |
| 777 | ScoreKeeperServerStubMethods |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 778 | // Describe the ScoreKeeper interfaces. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 779 | Describe__() []ipc.InterfaceDesc |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | // ScoreKeeperServer returns a server stub for ScoreKeeper. |
| 783 | // It converts an implementation of ScoreKeeperServerMethods into |
| 784 | // an object that may be used by ipc.Server. |
| 785 | func ScoreKeeperServer(impl ScoreKeeperServerMethods) ScoreKeeperServerStub { |
| 786 | stub := implScoreKeeperServerStub{ |
| 787 | impl: impl, |
| 788 | } |
| 789 | // Initialize GlobState; always check the stub itself first, to handle the |
| 790 | // case where the user has the Glob method defined in their VDL source. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 791 | if gs := ipc.NewGlobState(stub); gs != nil { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 792 | stub.gs = gs |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 793 | } else if gs := ipc.NewGlobState(impl); gs != nil { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 794 | stub.gs = gs |
| 795 | } |
| 796 | return stub |
| 797 | } |
| 798 | |
| 799 | type implScoreKeeperServerStub struct { |
| 800 | impl ScoreKeeperServerMethods |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 801 | gs *ipc.GlobState |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 802 | } |
| 803 | |
Suharsh Sivakumar | 31f4985 | 2015-03-03 16:13:20 -0800 | [diff] [blame] | 804 | func (s implScoreKeeperServerStub) Record(call ipc.ServerCall, i0 ScoreCard) error { |
| 805 | return s.impl.Record(call, i0) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 806 | } |
| 807 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 808 | func (s implScoreKeeperServerStub) Globber() *ipc.GlobState { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 809 | return s.gs |
| 810 | } |
| 811 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 812 | func (s implScoreKeeperServerStub) Describe__() []ipc.InterfaceDesc { |
| 813 | return []ipc.InterfaceDesc{ScoreKeeperDesc} |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 814 | } |
| 815 | |
| 816 | // ScoreKeeperDesc describes the ScoreKeeper interface. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 817 | var ScoreKeeperDesc ipc.InterfaceDesc = descScoreKeeper |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 818 | |
| 819 | // descScoreKeeper hides the desc to keep godoc clean. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 820 | var descScoreKeeper = ipc.InterfaceDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 821 | Name: "ScoreKeeper", |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 822 | PkgPath: "v.io/x/ref/examples/rps", |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 823 | Doc: "// ScoreKeeper receives the outcome of games from Judges.", |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 824 | Methods: []ipc.MethodDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 825 | { |
| 826 | Name: "Record", |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 827 | InArgs: []ipc.ArgDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 828 | {"Score", ``}, // ScoreCard |
| 829 | }, |
Todd Wang | cab990d | 2015-02-19 19:54:06 -0800 | [diff] [blame] | 830 | Tags: []*vdl.Value{vdl.ValueOf(access.Tag("Write"))}, |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 831 | }, |
| 832 | }, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 833 | } |
| 834 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 835 | // RockPaperScissorsClientMethods is the client interface |
| 836 | // containing RockPaperScissors methods. |
| 837 | type RockPaperScissorsClientMethods interface { |
| 838 | JudgeClientMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 839 | // Player can receive challenges from other players. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 840 | PlayerClientMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 841 | // ScoreKeeper receives the outcome of games from Judges. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 842 | ScoreKeeperClientMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 843 | } |
| 844 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 845 | // RockPaperScissorsClientStub adds universal methods to RockPaperScissorsClientMethods. |
| 846 | type RockPaperScissorsClientStub interface { |
| 847 | RockPaperScissorsClientMethods |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 848 | ipc.UniversalServiceMethods |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 849 | } |
| 850 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 851 | // RockPaperScissorsClient returns a client stub for RockPaperScissors. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 852 | func RockPaperScissorsClient(name string, opts ...ipc.BindOpt) RockPaperScissorsClientStub { |
| 853 | var client ipc.Client |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 854 | for _, opt := range opts { |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 855 | if clientOpt, ok := opt.(ipc.Client); ok { |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 856 | client = clientOpt |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 857 | } |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 858 | } |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 859 | 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] | 860 | } |
| 861 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 862 | type implRockPaperScissorsClientStub struct { |
| 863 | name string |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 864 | client ipc.Client |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 865 | |
| 866 | JudgeClientStub |
| 867 | PlayerClientStub |
| 868 | ScoreKeeperClientStub |
| 869 | } |
| 870 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 871 | func (c implRockPaperScissorsClientStub) c(ctx *context.T) ipc.Client { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 872 | if c.client != nil { |
| 873 | return c.client |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 874 | } |
Jiri Simsa | 386ce3e | 2015-02-23 16:14:20 -0800 | [diff] [blame] | 875 | return v23.GetClient(ctx) |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 876 | } |
| 877 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 878 | // RockPaperScissorsServerMethods is the interface a server writer |
| 879 | // implements for RockPaperScissors. |
| 880 | type RockPaperScissorsServerMethods interface { |
| 881 | JudgeServerMethods |
| 882 | // Player can receive challenges from other players. |
| 883 | PlayerServerMethods |
| 884 | // ScoreKeeper receives the outcome of games from Judges. |
| 885 | ScoreKeeperServerMethods |
| 886 | } |
| 887 | |
| 888 | // RockPaperScissorsServerStubMethods is the server interface containing |
Todd Wang | 5cd2735 | 2014-11-11 20:27:39 -0800 | [diff] [blame] | 889 | // RockPaperScissors methods, as expected by ipc.Server. |
| 890 | // The only difference between this interface and RockPaperScissorsServerMethods |
| 891 | // is the streaming methods. |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 892 | type RockPaperScissorsServerStubMethods interface { |
| 893 | JudgeServerStubMethods |
| 894 | // Player can receive challenges from other players. |
| 895 | PlayerServerStubMethods |
| 896 | // ScoreKeeper receives the outcome of games from Judges. |
| 897 | ScoreKeeperServerStubMethods |
| 898 | } |
| 899 | |
| 900 | // RockPaperScissorsServerStub adds universal methods to RockPaperScissorsServerStubMethods. |
| 901 | type RockPaperScissorsServerStub interface { |
| 902 | RockPaperScissorsServerStubMethods |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 903 | // Describe the RockPaperScissors interfaces. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 904 | Describe__() []ipc.InterfaceDesc |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | // RockPaperScissorsServer returns a server stub for RockPaperScissors. |
| 908 | // It converts an implementation of RockPaperScissorsServerMethods into |
| 909 | // an object that may be used by ipc.Server. |
| 910 | func RockPaperScissorsServer(impl RockPaperScissorsServerMethods) RockPaperScissorsServerStub { |
| 911 | stub := implRockPaperScissorsServerStub{ |
| 912 | impl: impl, |
| 913 | JudgeServerStub: JudgeServer(impl), |
| 914 | PlayerServerStub: PlayerServer(impl), |
| 915 | ScoreKeeperServerStub: ScoreKeeperServer(impl), |
| 916 | } |
| 917 | // Initialize GlobState; always check the stub itself first, to handle the |
| 918 | // case where the user has the Glob method defined in their VDL source. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 919 | if gs := ipc.NewGlobState(stub); gs != nil { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 920 | stub.gs = gs |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 921 | } else if gs := ipc.NewGlobState(impl); gs != nil { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 922 | stub.gs = gs |
| 923 | } |
Robin Thellend | a754845 | 2014-11-05 18:10:24 -0800 | [diff] [blame] | 924 | return stub |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 925 | } |
| 926 | |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 927 | type implRockPaperScissorsServerStub struct { |
| 928 | impl RockPaperScissorsServerMethods |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 929 | JudgeServerStub |
| 930 | PlayerServerStub |
| 931 | ScoreKeeperServerStub |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 932 | gs *ipc.GlobState |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 933 | } |
| 934 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 935 | func (s implRockPaperScissorsServerStub) Globber() *ipc.GlobState { |
Todd Wang | d8cb55b | 2014-11-07 00:58:32 -0800 | [diff] [blame] | 936 | return s.gs |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 937 | } |
| 938 | |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 939 | func (s implRockPaperScissorsServerStub) Describe__() []ipc.InterfaceDesc { |
| 940 | return []ipc.InterfaceDesc{RockPaperScissorsDesc, JudgeDesc, PlayerDesc, ScoreKeeperDesc} |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 941 | } |
| 942 | |
| 943 | // RockPaperScissorsDesc describes the RockPaperScissors interface. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 944 | var RockPaperScissorsDesc ipc.InterfaceDesc = descRockPaperScissors |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 945 | |
| 946 | // descRockPaperScissors hides the desc to keep godoc clean. |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 947 | var descRockPaperScissors = ipc.InterfaceDesc{ |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 948 | Name: "RockPaperScissors", |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 949 | PkgPath: "v.io/x/ref/examples/rps", |
Todd Wang | d1779a5 | 2015-02-05 11:46:12 -0800 | [diff] [blame] | 950 | Embeds: []ipc.EmbedDesc{ |
Jiri Simsa | 3b91302 | 2015-02-27 15:19:25 -0800 | [diff] [blame] | 951 | {"Judge", "v.io/x/ref/examples/rps", ``}, |
| 952 | {"Player", "v.io/x/ref/examples/rps", "// Player can receive challenges from other players."}, |
| 953 | {"ScoreKeeper", "v.io/x/ref/examples/rps", "// ScoreKeeper receives the outcome of games from Judges."}, |
Todd Wang | dddc1fb | 2014-11-16 21:39:02 -0800 | [diff] [blame] | 954 | }, |
Jiri Simsa | 37cdfc0 | 2014-10-09 18:00:43 -0700 | [diff] [blame] | 955 | } |