blob: 1cb6535bce59fc245a9d2086d99f4dadae3c1faf [file] [log] [blame]
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001// This file was auto-generated by the veyron vdl tool.
2// Source: service.vdl
3
Robin Thellend320af422015-03-09 17:18:15 -07004// Package rps is an example of vanadium service for playing the game of
Jiri Simsa37cdfc02014-10-09 18:00:43 -07005// 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.
18package rps
19
20import (
Todd Wangd1779a52015-02-05 11:46:12 -080021 // VDL system imports
22 "io"
Jiri Simsa386ce3e2015-02-23 16:14:20 -080023 "v.io/v23"
24 "v.io/v23/context"
25 "v.io/v23/ipc"
26 "v.io/v23/vdl"
Asim Shankar4794c932014-11-24 17:45:56 -080027
Todd Wangd1779a52015-02-05 11:46:12 -080028 // VDL user imports
Jiri Simsa386ce3e2015-02-23 16:14:20 -080029 "v.io/v23/services/security/access"
Jiri Simsa37cdfc02014-10-09 18:00:43 -070030)
31
32// A GameID is used to uniquely identify a game within one Judge.
33type GameID struct {
34 ID string
35}
36
Todd Wang24983c72014-11-26 15:07:25 -080037func (GameID) __VDLReflect(struct {
Jiri Simsa3b913022015-02-27 15:19:25 -080038 Name string "v.io/x/ref/examples/rps.GameID"
Todd Wang24983c72014-11-26 15:07:25 -080039}) {
40}
41
Jiri Simsa37cdfc02014-10-09 18:00:43 -070042// GameOptions specifies the parameters of a game.
43type 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 Wang24983c72014-11-26 15:07:25 -080048func (GameOptions) __VDLReflect(struct {
Jiri Simsa3b913022015-02-27 15:19:25 -080049 Name string "v.io/x/ref/examples/rps.GameOptions"
Todd Wang24983c72014-11-26 15:07:25 -080050}) {
51}
52
Jiri Simsa37cdfc02014-10-09 18:00:43 -070053type GameTypeTag byte
54
Todd Wang24983c72014-11-26 15:07:25 -080055func (GameTypeTag) __VDLReflect(struct {
Jiri Simsa3b913022015-02-27 15:19:25 -080056 Name string "v.io/x/ref/examples/rps.GameTypeTag"
Todd Wang24983c72014-11-26 15:07:25 -080057}) {
58}
59
Robin Thellend636b3602015-02-11 14:57:44 -080060type (
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 Simsa3b913022015-02-27 15:19:25 -080078 Name string "v.io/x/ref/examples/rps.PlayerAction"
Robin Thellend636b3602015-02-11 14:57:44 -080079 Type PlayerAction
80 Union struct {
81 Move PlayerActionMove
82 Quit PlayerActionQuit
83 }
84 }
85)
86
87func (x PlayerActionMove) Index() int { return 0 }
88func (x PlayerActionMove) Interface() interface{} { return x.Value }
89func (x PlayerActionMove) Name() string { return "Move" }
90func (x PlayerActionMove) __VDLReflect(__PlayerActionReflect) {}
91
92func (x PlayerActionQuit) Index() int { return 1 }
93func (x PlayerActionQuit) Interface() interface{} { return x.Value }
94func (x PlayerActionQuit) Name() string { return "Quit" }
95func (x PlayerActionQuit) __VDLReflect(__PlayerActionReflect) {}
96
97type unused struct {
Jiri Simsa37cdfc02014-10-09 18:00:43 -070098}
99
Robin Thellend636b3602015-02-11 14:57:44 -0800100func (unused) __VDLReflect(struct {
Jiri Simsa3b913022015-02-27 15:19:25 -0800101 Name string "v.io/x/ref/examples/rps.unused"
Todd Wang24983c72014-11-26 15:07:25 -0800102}) {
103}
104
Robin Thellend636b3602015-02-11 14:57:44 -0800105type (
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 Simsa3b913022015-02-27 15:19:25 -0800129 Name string "v.io/x/ref/examples/rps.JudgeAction"
Robin Thellend636b3602015-02-11 14:57:44 -0800130 Type JudgeAction
131 Union struct {
132 PlayerNum JudgeActionPlayerNum
133 OpponentName JudgeActionOpponentName
134 MoveOptions JudgeActionMoveOptions
135 RoundResult JudgeActionRoundResult
136 Score JudgeActionScore
137 }
138 }
139)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700140
Robin Thellend636b3602015-02-11 14:57:44 -0800141func (x JudgeActionPlayerNum) Index() int { return 0 }
142func (x JudgeActionPlayerNum) Interface() interface{} { return x.Value }
143func (x JudgeActionPlayerNum) Name() string { return "PlayerNum" }
144func (x JudgeActionPlayerNum) __VDLReflect(__JudgeActionReflect) {}
145
146func (x JudgeActionOpponentName) Index() int { return 1 }
147func (x JudgeActionOpponentName) Interface() interface{} { return x.Value }
148func (x JudgeActionOpponentName) Name() string { return "OpponentName" }
149func (x JudgeActionOpponentName) __VDLReflect(__JudgeActionReflect) {}
150
151func (x JudgeActionMoveOptions) Index() int { return 2 }
152func (x JudgeActionMoveOptions) Interface() interface{} { return x.Value }
153func (x JudgeActionMoveOptions) Name() string { return "MoveOptions" }
154func (x JudgeActionMoveOptions) __VDLReflect(__JudgeActionReflect) {}
155
156func (x JudgeActionRoundResult) Index() int { return 3 }
157func (x JudgeActionRoundResult) Interface() interface{} { return x.Value }
158func (x JudgeActionRoundResult) Name() string { return "RoundResult" }
159func (x JudgeActionRoundResult) __VDLReflect(__JudgeActionReflect) {}
160
161func (x JudgeActionScore) Index() int { return 4 }
162func (x JudgeActionScore) Interface() interface{} { return x.Value }
163func (x JudgeActionScore) Name() string { return "Score" }
164func (x JudgeActionScore) __VDLReflect(__JudgeActionReflect) {}
Todd Wang24983c72014-11-26 15:07:25 -0800165
Sergey Rogulenko2f64f982015-02-05 14:14:46 -0800166type PlayersMoves [2]string
167
168func (PlayersMoves) __VDLReflect(struct {
Jiri Simsa3b913022015-02-27 15:19:25 -0800169 Name string "v.io/x/ref/examples/rps.PlayersMoves"
Sergey Rogulenko2f64f982015-02-05 14:14:46 -0800170}) {
171}
172
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700173// Round represents the state of a round.
174type Round struct {
Sergey Rogulenko2f64f982015-02-05 14:14:46 -0800175 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 Simsa37cdfc02014-10-09 18:00:43 -0700180}
181
Todd Wang24983c72014-11-26 15:07:25 -0800182func (Round) __VDLReflect(struct {
Jiri Simsa3b913022015-02-27 15:19:25 -0800183 Name string "v.io/x/ref/examples/rps.Round"
Todd Wang24983c72014-11-26 15:07:25 -0800184}) {
185}
186
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700187// 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.
189type WinnerTag byte
190
Todd Wang24983c72014-11-26 15:07:25 -0800191func (WinnerTag) __VDLReflect(struct {
Jiri Simsa3b913022015-02-27 15:19:25 -0800192 Name string "v.io/x/ref/examples/rps.WinnerTag"
Todd Wang24983c72014-11-26 15:07:25 -0800193}) {
194}
195
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700196// PlayResult is the value returned by the Play method. It indicates the outcome of the game.
197type PlayResult struct {
198 YouWon bool // True if the player receiving the result won the game.
199}
200
Todd Wang24983c72014-11-26 15:07:25 -0800201func (PlayResult) __VDLReflect(struct {
Jiri Simsa3b913022015-02-27 15:19:25 -0800202 Name string "v.io/x/ref/examples/rps.PlayResult"
Todd Wang24983c72014-11-26 15:07:25 -0800203}) {
204}
205
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700206type 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 Wang24983c72014-11-26 15:07:25 -0800216func (ScoreCard) __VDLReflect(struct {
Jiri Simsa3b913022015-02-27 15:19:25 -0800217 Name string "v.io/x/ref/examples/rps.ScoreCard"
Todd Wang24983c72014-11-26 15:07:25 -0800218}) {
219}
220
221func init() {
Todd Wang83f63ba2015-02-09 13:30:43 -0800222 vdl.Register((*GameID)(nil))
223 vdl.Register((*GameOptions)(nil))
224 vdl.Register((*GameTypeTag)(nil))
225 vdl.Register((*PlayerAction)(nil))
Robin Thellend636b3602015-02-11 14:57:44 -0800226 vdl.Register((*unused)(nil))
Todd Wang83f63ba2015-02-09 13:30:43 -0800227 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 Wang24983c72014-11-26 15:07:25 -0800233}
234
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700235const Classic = GameTypeTag(0) // Rock-Paper-Scissors
236
237const LizardSpock = GameTypeTag(1) // Rock-Paper-Scissors-Lizard-Spock
238
239const Draw = WinnerTag(0)
240
241const Player1 = WinnerTag(1)
242
243const Player2 = WinnerTag(2)
244
Todd Wangd8cb55b2014-11-07 00:58:32 -0800245// JudgeClientMethods is the client interface
246// containing Judge methods.
247type JudgeClientMethods interface {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700248 // 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 Wangd1779a52015-02-05 11:46:12 -0800250 CreateGame(ctx *context.T, Opts GameOptions, opts ...ipc.CallOpt) (GameID, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700251 // Play lets a player join an existing game and play.
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800252 Play(ctx *context.T, ID GameID, opts ...ipc.CallOpt) (JudgePlayClientCall, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700253}
254
Todd Wangd8cb55b2014-11-07 00:58:32 -0800255// JudgeClientStub adds universal methods to JudgeClientMethods.
256type JudgeClientStub interface {
257 JudgeClientMethods
Todd Wangd1779a52015-02-05 11:46:12 -0800258 ipc.UniversalServiceMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700259}
260
Todd Wangd8cb55b2014-11-07 00:58:32 -0800261// JudgeClient returns a client stub for Judge.
Todd Wangd1779a52015-02-05 11:46:12 -0800262func JudgeClient(name string, opts ...ipc.BindOpt) JudgeClientStub {
263 var client ipc.Client
Todd Wangd8cb55b2014-11-07 00:58:32 -0800264 for _, opt := range opts {
Todd Wangd1779a52015-02-05 11:46:12 -0800265 if clientOpt, ok := opt.(ipc.Client); ok {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800266 client = clientOpt
267 }
268 }
269 return implJudgeClientStub{name, client}
270}
271
272type implJudgeClientStub struct {
273 name string
Todd Wangd1779a52015-02-05 11:46:12 -0800274 client ipc.Client
Todd Wangd8cb55b2014-11-07 00:58:32 -0800275}
276
Todd Wangd1779a52015-02-05 11:46:12 -0800277func (c implJudgeClientStub) c(ctx *context.T) ipc.Client {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800278 if c.client != nil {
279 return c.client
280 }
Jiri Simsa386ce3e2015-02-23 16:14:20 -0800281 return v23.GetClient(ctx)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800282}
283
Todd Wangd1779a52015-02-05 11:46:12 -0800284func (c implJudgeClientStub) CreateGame(ctx *context.T, i0 GameOptions, opts ...ipc.CallOpt) (o0 GameID, err error) {
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800285 var call ipc.ClientCall
Todd Wangd8cb55b2014-11-07 00:58:32 -0800286 if call, err = c.c(ctx).StartCall(ctx, c.name, "CreateGame", []interface{}{i0}, opts...); err != nil {
287 return
288 }
Todd Wang8f9f7f12015-02-18 13:21:09 -0800289 err = call.Finish(&o0)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800290 return
291}
292
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800293func (c implJudgeClientStub) Play(ctx *context.T, i0 GameID, opts ...ipc.CallOpt) (ocall JudgePlayClientCall, err error) {
294 var call ipc.ClientCall
Todd Wangd8cb55b2014-11-07 00:58:32 -0800295 if call, err = c.c(ctx).StartCall(ctx, c.name, "Play", []interface{}{i0}, opts...); err != nil {
296 return
297 }
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800298 ocall = &implJudgePlayClientCall{ClientCall: call}
Todd Wangd8cb55b2014-11-07 00:58:32 -0800299 return
300}
301
Todd Wangd8cb55b2014-11-07 00:58:32 -0800302// JudgePlayClientStream is the client stream for Judge.Play.
303type JudgePlayClientStream interface {
Todd Wang5cd27352014-11-11 20:27:39 -0800304 // RecvStream returns the receiver side of the Judge.Play client stream.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700305 RecvStream() interface {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800306 // 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 Simsa37cdfc02014-10-09 18:00:43 -0700309 Advance() bool
Todd Wangd8cb55b2014-11-07 00:58:32 -0800310 // Value returns the item that was staged by Advance. May panic if Advance
311 // returned false or was not called. Never blocks.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700312 Value() JudgeAction
Todd Wangd8cb55b2014-11-07 00:58:32 -0800313 // Err returns any error encountered by Advance. Never blocks.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700314 Err() error
315 }
Todd Wang5cd27352014-11-11 20:27:39 -0800316 // SendStream returns the send side of the Judge.Play client stream.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700317 SendStream() interface {
Todd Wang04f97dd2014-12-18 18:52:07 -0800318 // 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 Simsa37cdfc02014-10-09 18:00:43 -0700323 Send(item PlayerAction) error
Todd Wang04f97dd2014-12-18 18:52:07 -0800324 // 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 Simsa37cdfc02014-10-09 18:00:43 -0700331 Close() error
332 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800333}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700334
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800335// JudgePlayClientCall represents the call returned from Judge.Play.
336type JudgePlayClientCall interface {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800337 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 Wang04f97dd2014-12-18 18:52:07 -0800341 // Finish returns immediately if the call has been canceled; depending on the
Todd Wangd8cb55b2014-11-07 00:58:32 -0800342 // timing the output could either be an error signaling cancelation, or the
343 // valid positional return values from the server.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700344 //
Todd Wang04f97dd2014-12-18 18:52:07 -0800345 // 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 Wangd8cb55b2014-11-07 00:58:32 -0800347 // be called at most once.
348 Finish() (PlayResult, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700349}
350
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800351type implJudgePlayClientCall struct {
352 ipc.ClientCall
Todd Wang5cd27352014-11-11 20:27:39 -0800353 valRecv JudgeAction
354 errRecv error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700355}
356
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800357func (c *implJudgePlayClientCall) RecvStream() interface {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700358 Advance() bool
359 Value() JudgeAction
360 Err() error
361} {
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800362 return implJudgePlayClientCallRecv{c}
Todd Wang5cd27352014-11-11 20:27:39 -0800363}
364
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800365type implJudgePlayClientCallRecv struct {
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800366 c *implJudgePlayClientCall
Todd Wang5cd27352014-11-11 20:27:39 -0800367}
368
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800369func (c implJudgePlayClientCallRecv) Advance() bool {
Todd Wang5cd27352014-11-11 20:27:39 -0800370 c.c.errRecv = c.c.Recv(&c.c.valRecv)
371 return c.c.errRecv == nil
372}
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800373func (c implJudgePlayClientCallRecv) Value() JudgeAction {
Todd Wang5cd27352014-11-11 20:27:39 -0800374 return c.c.valRecv
375}
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800376func (c implJudgePlayClientCallRecv) Err() error {
Todd Wangd1779a52015-02-05 11:46:12 -0800377 if c.c.errRecv == io.EOF {
Todd Wang5cd27352014-11-11 20:27:39 -0800378 return nil
379 }
380 return c.c.errRecv
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700381}
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800382func (c *implJudgePlayClientCall) SendStream() interface {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800383 Send(item PlayerAction) error
384 Close() error
385} {
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800386 return implJudgePlayClientCallSend{c}
Todd Wang5cd27352014-11-11 20:27:39 -0800387}
388
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800389type implJudgePlayClientCallSend struct {
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800390 c *implJudgePlayClientCall
Todd Wang5cd27352014-11-11 20:27:39 -0800391}
392
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800393func (c implJudgePlayClientCallSend) Send(item PlayerAction) error {
Todd Wang5cd27352014-11-11 20:27:39 -0800394 return c.c.Send(item)
395}
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800396func (c implJudgePlayClientCallSend) Close() error {
Todd Wang5cd27352014-11-11 20:27:39 -0800397 return c.c.CloseSend()
Todd Wangd8cb55b2014-11-07 00:58:32 -0800398}
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800399func (c *implJudgePlayClientCall) Finish() (o0 PlayResult, err error) {
400 err = c.ClientCall.Finish(&o0)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700401 return
402}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700403
Todd Wangd8cb55b2014-11-07 00:58:32 -0800404// JudgeServerMethods is the interface a server writer
405// implements for Judge.
406type 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 Sivakumar31f49852015-03-03 16:13:20 -0800409 CreateGame(call ipc.ServerCall, Opts GameOptions) (GameID, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800410 // Play lets a player join an existing game and play.
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800411 Play(call JudgePlayServerCall, ID GameID) (PlayResult, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700412}
413
Todd Wangd8cb55b2014-11-07 00:58:32 -0800414// JudgeServerStubMethods is the server interface containing
Todd Wang5cd27352014-11-11 20:27:39 -0800415// Judge methods, as expected by ipc.Server.
416// The only difference between this interface and JudgeServerMethods
417// is the streaming methods.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800418type 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 Sivakumar31f49852015-03-03 16:13:20 -0800421 CreateGame(call ipc.ServerCall, Opts GameOptions) (GameID, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800422 // Play lets a player join an existing game and play.
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800423 Play(call *JudgePlayServerCallStub, ID GameID) (PlayResult, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700424}
425
Todd Wangd8cb55b2014-11-07 00:58:32 -0800426// JudgeServerStub adds universal methods to JudgeServerStubMethods.
427type JudgeServerStub interface {
428 JudgeServerStubMethods
Todd Wangdddc1fb2014-11-16 21:39:02 -0800429 // Describe the Judge interfaces.
Todd Wangd1779a52015-02-05 11:46:12 -0800430 Describe__() []ipc.InterfaceDesc
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700431}
432
Todd Wangd8cb55b2014-11-07 00:58:32 -0800433// 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.
436func JudgeServer(impl JudgeServerMethods) JudgeServerStub {
437 stub := implJudgeServerStub{
438 impl: impl,
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700439 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800440 // 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 Wangd1779a52015-02-05 11:46:12 -0800442 if gs := ipc.NewGlobState(stub); gs != nil {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800443 stub.gs = gs
Todd Wangd1779a52015-02-05 11:46:12 -0800444 } else if gs := ipc.NewGlobState(impl); gs != nil {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800445 stub.gs = gs
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700446 }
Robin Thellenda7548452014-11-05 18:10:24 -0800447 return stub
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700448}
449
Todd Wangd8cb55b2014-11-07 00:58:32 -0800450type implJudgeServerStub struct {
451 impl JudgeServerMethods
Todd Wangd1779a52015-02-05 11:46:12 -0800452 gs *ipc.GlobState
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700453}
454
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800455func (s implJudgeServerStub) CreateGame(call ipc.ServerCall, i0 GameOptions) (GameID, error) {
456 return s.impl.CreateGame(call, i0)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700457}
458
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800459func (s implJudgeServerStub) Play(call *JudgePlayServerCallStub, i0 GameID) (PlayResult, error) {
460 return s.impl.Play(call, i0)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700461}
462
Todd Wangd1779a52015-02-05 11:46:12 -0800463func (s implJudgeServerStub) Globber() *ipc.GlobState {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800464 return s.gs
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700465}
466
Todd Wangd1779a52015-02-05 11:46:12 -0800467func (s implJudgeServerStub) Describe__() []ipc.InterfaceDesc {
468 return []ipc.InterfaceDesc{JudgeDesc}
Todd Wangdddc1fb2014-11-16 21:39:02 -0800469}
470
471// JudgeDesc describes the Judge interface.
Todd Wangd1779a52015-02-05 11:46:12 -0800472var JudgeDesc ipc.InterfaceDesc = descJudge
Todd Wangdddc1fb2014-11-16 21:39:02 -0800473
474// descJudge hides the desc to keep godoc clean.
Todd Wangd1779a52015-02-05 11:46:12 -0800475var descJudge = ipc.InterfaceDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800476 Name: "Judge",
Jiri Simsa3b913022015-02-27 15:19:25 -0800477 PkgPath: "v.io/x/ref/examples/rps",
Todd Wangd1779a52015-02-05 11:46:12 -0800478 Methods: []ipc.MethodDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800479 {
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 Wangd1779a52015-02-05 11:46:12 -0800482 InArgs: []ipc.ArgDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800483 {"Opts", ``}, // GameOptions
484 },
Todd Wangd1779a52015-02-05 11:46:12 -0800485 OutArgs: []ipc.ArgDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800486 {"", ``}, // GameID
Todd Wangdddc1fb2014-11-16 21:39:02 -0800487 },
Todd Wangcab990d2015-02-19 19:54:06 -0800488 Tags: []*vdl.Value{vdl.ValueOf(access.Tag("Write"))},
Todd Wangdddc1fb2014-11-16 21:39:02 -0800489 },
490 {
491 Name: "Play",
492 Doc: "// Play lets a player join an existing game and play.",
Todd Wangd1779a52015-02-05 11:46:12 -0800493 InArgs: []ipc.ArgDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800494 {"ID", ``}, // GameID
495 },
Todd Wangd1779a52015-02-05 11:46:12 -0800496 OutArgs: []ipc.ArgDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800497 {"", ``}, // PlayResult
Todd Wangdddc1fb2014-11-16 21:39:02 -0800498 },
Todd Wangcab990d2015-02-19 19:54:06 -0800499 Tags: []*vdl.Value{vdl.ValueOf(access.Tag("Write"))},
Todd Wangdddc1fb2014-11-16 21:39:02 -0800500 },
501 },
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700502}
503
Todd Wangd8cb55b2014-11-07 00:58:32 -0800504// JudgePlayServerStream is the server stream for Judge.Play.
505type JudgePlayServerStream interface {
Todd Wang5cd27352014-11-11 20:27:39 -0800506 // RecvStream returns the receiver side of the Judge.Play server stream.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800507 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 Simsa37cdfc02014-10-09 18:00:43 -0700517 }
Todd Wang5cd27352014-11-11 20:27:39 -0800518 // SendStream returns the send side of the Judge.Play server stream.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800519 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 Simsa37cdfc02014-10-09 18:00:43 -0700524 }
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700525}
526
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800527// JudgePlayServerCall represents the context passed to Judge.Play.
528type JudgePlayServerCall interface {
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800529 ipc.ServerCall
Todd Wangd8cb55b2014-11-07 00:58:32 -0800530 JudgePlayServerStream
Robin Thellenda7548452014-11-05 18:10:24 -0800531}
532
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800533// JudgePlayServerCallStub is a wrapper that converts ipc.StreamServerCall into
534// a typesafe stub that implements JudgePlayServerCall.
535type JudgePlayServerCallStub struct {
Matt Rosencrantz9ef0f2d2015-02-27 11:04:32 -0800536 ipc.StreamServerCall
Todd Wang5cd27352014-11-11 20:27:39 -0800537 valRecv PlayerAction
538 errRecv error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700539}
540
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800541// Init initializes JudgePlayServerCallStub from ipc.StreamServerCall.
542func (s *JudgePlayServerCallStub) Init(call ipc.StreamServerCall) {
Matt Rosencrantz9ef0f2d2015-02-27 11:04:32 -0800543 s.StreamServerCall = call
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700544}
545
Todd Wang5cd27352014-11-11 20:27:39 -0800546// RecvStream returns the receiver side of the Judge.Play server stream.
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800547func (s *JudgePlayServerCallStub) RecvStream() interface {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800548 Advance() bool
549 Value() PlayerAction
550 Err() error
551} {
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800552 return implJudgePlayServerCallRecv{s}
Todd Wangd8cb55b2014-11-07 00:58:32 -0800553}
Todd Wang5cd27352014-11-11 20:27:39 -0800554
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800555type implJudgePlayServerCallRecv struct {
556 s *JudgePlayServerCallStub
Todd Wang5cd27352014-11-11 20:27:39 -0800557}
558
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800559func (s implJudgePlayServerCallRecv) Advance() bool {
Todd Wang5cd27352014-11-11 20:27:39 -0800560 s.s.errRecv = s.s.Recv(&s.s.valRecv)
561 return s.s.errRecv == nil
562}
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800563func (s implJudgePlayServerCallRecv) Value() PlayerAction {
Todd Wang5cd27352014-11-11 20:27:39 -0800564 return s.s.valRecv
565}
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800566func (s implJudgePlayServerCallRecv) Err() error {
Todd Wangd1779a52015-02-05 11:46:12 -0800567 if s.s.errRecv == io.EOF {
Todd Wang5cd27352014-11-11 20:27:39 -0800568 return nil
569 }
570 return s.s.errRecv
571}
572
573// SendStream returns the send side of the Judge.Play server stream.
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800574func (s *JudgePlayServerCallStub) SendStream() interface {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800575 Send(item JudgeAction) error
576} {
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800577 return implJudgePlayServerCallSend{s}
Todd Wang5cd27352014-11-11 20:27:39 -0800578}
579
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800580type implJudgePlayServerCallSend struct {
581 s *JudgePlayServerCallStub
Todd Wang5cd27352014-11-11 20:27:39 -0800582}
583
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800584func (s implJudgePlayServerCallSend) Send(item JudgeAction) error {
Todd Wang5cd27352014-11-11 20:27:39 -0800585 return s.s.Send(item)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800586}
587
588// PlayerClientMethods is the client interface
589// containing Player methods.
590//
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700591// Player can receive challenges from other players.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800592type PlayerClientMethods interface {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700593 // Challenge is used by other players to challenge this player to a game. If
594 // the challenge is accepted, the method returns nil.
Todd Wangd1779a52015-02-05 11:46:12 -0800595 Challenge(ctx *context.T, Address string, ID GameID, Opts GameOptions, opts ...ipc.CallOpt) error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700596}
597
Todd Wangd8cb55b2014-11-07 00:58:32 -0800598// PlayerClientStub adds universal methods to PlayerClientMethods.
599type PlayerClientStub interface {
600 PlayerClientMethods
Todd Wangd1779a52015-02-05 11:46:12 -0800601 ipc.UniversalServiceMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700602}
603
Todd Wangd8cb55b2014-11-07 00:58:32 -0800604// PlayerClient returns a client stub for Player.
Todd Wangd1779a52015-02-05 11:46:12 -0800605func PlayerClient(name string, opts ...ipc.BindOpt) PlayerClientStub {
606 var client ipc.Client
Todd Wangd8cb55b2014-11-07 00:58:32 -0800607 for _, opt := range opts {
Todd Wangd1779a52015-02-05 11:46:12 -0800608 if clientOpt, ok := opt.(ipc.Client); ok {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700609 client = clientOpt
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700610 }
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700611 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800612 return implPlayerClientStub{name, client}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700613}
614
Todd Wangd8cb55b2014-11-07 00:58:32 -0800615type implPlayerClientStub struct {
616 name string
Todd Wangd1779a52015-02-05 11:46:12 -0800617 client ipc.Client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700618}
619
Todd Wangd1779a52015-02-05 11:46:12 -0800620func (c implPlayerClientStub) c(ctx *context.T) ipc.Client {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800621 if c.client != nil {
622 return c.client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700623 }
Jiri Simsa386ce3e2015-02-23 16:14:20 -0800624 return v23.GetClient(ctx)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700625}
626
Todd Wangd1779a52015-02-05 11:46:12 -0800627func (c implPlayerClientStub) Challenge(ctx *context.T, i0 string, i1 GameID, i2 GameOptions, opts ...ipc.CallOpt) (err error) {
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800628 var call ipc.ClientCall
Todd Wangd8cb55b2014-11-07 00:58:32 -0800629 if call, err = c.c(ctx).StartCall(ctx, c.name, "Challenge", []interface{}{i0, i1, i2}, opts...); err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700630 return
631 }
Todd Wang8f9f7f12015-02-18 13:21:09 -0800632 err = call.Finish()
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700633 return
634}
635
Todd Wangd8cb55b2014-11-07 00:58:32 -0800636// PlayerServerMethods is the interface a server writer
637// implements for Player.
638//
639// Player can receive challenges from other players.
640type 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 Sivakumar31f49852015-03-03 16:13:20 -0800643 Challenge(call ipc.ServerCall, Address string, ID GameID, Opts GameOptions) error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700644}
645
Todd Wangd8cb55b2014-11-07 00:58:32 -0800646// PlayerServerStubMethods is the server interface containing
Todd Wang5cd27352014-11-11 20:27:39 -0800647// Player methods, as expected by ipc.Server.
648// There is no difference between this interface and PlayerServerMethods
649// since there are no streaming methods.
650type PlayerServerStubMethods PlayerServerMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700651
Todd Wangd8cb55b2014-11-07 00:58:32 -0800652// PlayerServerStub adds universal methods to PlayerServerStubMethods.
653type PlayerServerStub interface {
654 PlayerServerStubMethods
Todd Wangdddc1fb2014-11-16 21:39:02 -0800655 // Describe the Player interfaces.
Todd Wangd1779a52015-02-05 11:46:12 -0800656 Describe__() []ipc.InterfaceDesc
Todd Wangd8cb55b2014-11-07 00:58:32 -0800657}
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.
662func 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 Wangd1779a52015-02-05 11:46:12 -0800668 if gs := ipc.NewGlobState(stub); gs != nil {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800669 stub.gs = gs
Todd Wangd1779a52015-02-05 11:46:12 -0800670 } else if gs := ipc.NewGlobState(impl); gs != nil {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800671 stub.gs = gs
672 }
673 return stub
674}
675
676type implPlayerServerStub struct {
677 impl PlayerServerMethods
Todd Wangd1779a52015-02-05 11:46:12 -0800678 gs *ipc.GlobState
Todd Wangd8cb55b2014-11-07 00:58:32 -0800679}
680
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800681func (s implPlayerServerStub) Challenge(call ipc.ServerCall, i0 string, i1 GameID, i2 GameOptions) error {
682 return s.impl.Challenge(call, i0, i1, i2)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800683}
684
Todd Wangd1779a52015-02-05 11:46:12 -0800685func (s implPlayerServerStub) Globber() *ipc.GlobState {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800686 return s.gs
687}
688
Todd Wangd1779a52015-02-05 11:46:12 -0800689func (s implPlayerServerStub) Describe__() []ipc.InterfaceDesc {
690 return []ipc.InterfaceDesc{PlayerDesc}
Todd Wangdddc1fb2014-11-16 21:39:02 -0800691}
692
693// PlayerDesc describes the Player interface.
Todd Wangd1779a52015-02-05 11:46:12 -0800694var PlayerDesc ipc.InterfaceDesc = descPlayer
Todd Wangdddc1fb2014-11-16 21:39:02 -0800695
696// descPlayer hides the desc to keep godoc clean.
Todd Wangd1779a52015-02-05 11:46:12 -0800697var descPlayer = ipc.InterfaceDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800698 Name: "Player",
Jiri Simsa3b913022015-02-27 15:19:25 -0800699 PkgPath: "v.io/x/ref/examples/rps",
Todd Wangdddc1fb2014-11-16 21:39:02 -0800700 Doc: "// Player can receive challenges from other players.",
Todd Wangd1779a52015-02-05 11:46:12 -0800701 Methods: []ipc.MethodDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800702 {
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 Wangd1779a52015-02-05 11:46:12 -0800705 InArgs: []ipc.ArgDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800706 {"Address", ``}, // string
707 {"ID", ``}, // GameID
708 {"Opts", ``}, // GameOptions
709 },
Todd Wangcab990d2015-02-19 19:54:06 -0800710 Tags: []*vdl.Value{vdl.ValueOf(access.Tag("Write"))},
Todd Wangdddc1fb2014-11-16 21:39:02 -0800711 },
712 },
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700713}
714
Todd Wangd8cb55b2014-11-07 00:58:32 -0800715// ScoreKeeperClientMethods is the client interface
716// containing ScoreKeeper methods.
717//
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700718// ScoreKeeper receives the outcome of games from Judges.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800719type ScoreKeeperClientMethods interface {
Todd Wangd1779a52015-02-05 11:46:12 -0800720 Record(ctx *context.T, Score ScoreCard, opts ...ipc.CallOpt) error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700721}
722
Todd Wangd8cb55b2014-11-07 00:58:32 -0800723// ScoreKeeperClientStub adds universal methods to ScoreKeeperClientMethods.
724type ScoreKeeperClientStub interface {
725 ScoreKeeperClientMethods
Todd Wangd1779a52015-02-05 11:46:12 -0800726 ipc.UniversalServiceMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700727}
728
Todd Wangd8cb55b2014-11-07 00:58:32 -0800729// ScoreKeeperClient returns a client stub for ScoreKeeper.
Todd Wangd1779a52015-02-05 11:46:12 -0800730func ScoreKeeperClient(name string, opts ...ipc.BindOpt) ScoreKeeperClientStub {
731 var client ipc.Client
Todd Wangd8cb55b2014-11-07 00:58:32 -0800732 for _, opt := range opts {
Todd Wangd1779a52015-02-05 11:46:12 -0800733 if clientOpt, ok := opt.(ipc.Client); ok {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700734 client = clientOpt
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700735 }
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700736 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800737 return implScoreKeeperClientStub{name, client}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700738}
739
Todd Wangd8cb55b2014-11-07 00:58:32 -0800740type implScoreKeeperClientStub struct {
741 name string
Todd Wangd1779a52015-02-05 11:46:12 -0800742 client ipc.Client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700743}
744
Todd Wangd1779a52015-02-05 11:46:12 -0800745func (c implScoreKeeperClientStub) c(ctx *context.T) ipc.Client {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800746 if c.client != nil {
747 return c.client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700748 }
Jiri Simsa386ce3e2015-02-23 16:14:20 -0800749 return v23.GetClient(ctx)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700750}
751
Todd Wangd1779a52015-02-05 11:46:12 -0800752func (c implScoreKeeperClientStub) Record(ctx *context.T, i0 ScoreCard, opts ...ipc.CallOpt) (err error) {
Matt Rosencrantz72a15612015-02-27 22:22:41 -0800753 var call ipc.ClientCall
Todd Wangd8cb55b2014-11-07 00:58:32 -0800754 if call, err = c.c(ctx).StartCall(ctx, c.name, "Record", []interface{}{i0}, opts...); err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700755 return
756 }
Todd Wang8f9f7f12015-02-18 13:21:09 -0800757 err = call.Finish()
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700758 return
759}
760
Todd Wangd8cb55b2014-11-07 00:58:32 -0800761// ScoreKeeperServerMethods is the interface a server writer
762// implements for ScoreKeeper.
763//
764// ScoreKeeper receives the outcome of games from Judges.
765type ScoreKeeperServerMethods interface {
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800766 Record(call ipc.ServerCall, Score ScoreCard) error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700767}
768
Todd Wangd8cb55b2014-11-07 00:58:32 -0800769// ScoreKeeperServerStubMethods is the server interface containing
Todd Wang5cd27352014-11-11 20:27:39 -0800770// ScoreKeeper methods, as expected by ipc.Server.
771// There is no difference between this interface and ScoreKeeperServerMethods
772// since there are no streaming methods.
773type ScoreKeeperServerStubMethods ScoreKeeperServerMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700774
Todd Wangd8cb55b2014-11-07 00:58:32 -0800775// ScoreKeeperServerStub adds universal methods to ScoreKeeperServerStubMethods.
776type ScoreKeeperServerStub interface {
777 ScoreKeeperServerStubMethods
Todd Wangdddc1fb2014-11-16 21:39:02 -0800778 // Describe the ScoreKeeper interfaces.
Todd Wangd1779a52015-02-05 11:46:12 -0800779 Describe__() []ipc.InterfaceDesc
Todd Wangd8cb55b2014-11-07 00:58:32 -0800780}
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.
785func 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 Wangd1779a52015-02-05 11:46:12 -0800791 if gs := ipc.NewGlobState(stub); gs != nil {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800792 stub.gs = gs
Todd Wangd1779a52015-02-05 11:46:12 -0800793 } else if gs := ipc.NewGlobState(impl); gs != nil {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800794 stub.gs = gs
795 }
796 return stub
797}
798
799type implScoreKeeperServerStub struct {
800 impl ScoreKeeperServerMethods
Todd Wangd1779a52015-02-05 11:46:12 -0800801 gs *ipc.GlobState
Todd Wangd8cb55b2014-11-07 00:58:32 -0800802}
803
Suharsh Sivakumar31f49852015-03-03 16:13:20 -0800804func (s implScoreKeeperServerStub) Record(call ipc.ServerCall, i0 ScoreCard) error {
805 return s.impl.Record(call, i0)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800806}
807
Todd Wangd1779a52015-02-05 11:46:12 -0800808func (s implScoreKeeperServerStub) Globber() *ipc.GlobState {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800809 return s.gs
810}
811
Todd Wangd1779a52015-02-05 11:46:12 -0800812func (s implScoreKeeperServerStub) Describe__() []ipc.InterfaceDesc {
813 return []ipc.InterfaceDesc{ScoreKeeperDesc}
Todd Wangdddc1fb2014-11-16 21:39:02 -0800814}
815
816// ScoreKeeperDesc describes the ScoreKeeper interface.
Todd Wangd1779a52015-02-05 11:46:12 -0800817var ScoreKeeperDesc ipc.InterfaceDesc = descScoreKeeper
Todd Wangdddc1fb2014-11-16 21:39:02 -0800818
819// descScoreKeeper hides the desc to keep godoc clean.
Todd Wangd1779a52015-02-05 11:46:12 -0800820var descScoreKeeper = ipc.InterfaceDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800821 Name: "ScoreKeeper",
Jiri Simsa3b913022015-02-27 15:19:25 -0800822 PkgPath: "v.io/x/ref/examples/rps",
Todd Wangdddc1fb2014-11-16 21:39:02 -0800823 Doc: "// ScoreKeeper receives the outcome of games from Judges.",
Todd Wangd1779a52015-02-05 11:46:12 -0800824 Methods: []ipc.MethodDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800825 {
826 Name: "Record",
Todd Wangd1779a52015-02-05 11:46:12 -0800827 InArgs: []ipc.ArgDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800828 {"Score", ``}, // ScoreCard
829 },
Todd Wangcab990d2015-02-19 19:54:06 -0800830 Tags: []*vdl.Value{vdl.ValueOf(access.Tag("Write"))},
Todd Wangdddc1fb2014-11-16 21:39:02 -0800831 },
832 },
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700833}
834
Todd Wangd8cb55b2014-11-07 00:58:32 -0800835// RockPaperScissorsClientMethods is the client interface
836// containing RockPaperScissors methods.
837type RockPaperScissorsClientMethods interface {
838 JudgeClientMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700839 // Player can receive challenges from other players.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800840 PlayerClientMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700841 // ScoreKeeper receives the outcome of games from Judges.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800842 ScoreKeeperClientMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700843}
844
Todd Wangd8cb55b2014-11-07 00:58:32 -0800845// RockPaperScissorsClientStub adds universal methods to RockPaperScissorsClientMethods.
846type RockPaperScissorsClientStub interface {
847 RockPaperScissorsClientMethods
Todd Wangd1779a52015-02-05 11:46:12 -0800848 ipc.UniversalServiceMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700849}
850
Todd Wangd8cb55b2014-11-07 00:58:32 -0800851// RockPaperScissorsClient returns a client stub for RockPaperScissors.
Todd Wangd1779a52015-02-05 11:46:12 -0800852func RockPaperScissorsClient(name string, opts ...ipc.BindOpt) RockPaperScissorsClientStub {
853 var client ipc.Client
Todd Wangd8cb55b2014-11-07 00:58:32 -0800854 for _, opt := range opts {
Todd Wangd1779a52015-02-05 11:46:12 -0800855 if clientOpt, ok := opt.(ipc.Client); ok {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700856 client = clientOpt
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700857 }
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700858 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800859 return implRockPaperScissorsClientStub{name, client, JudgeClient(name, client), PlayerClient(name, client), ScoreKeeperClient(name, client)}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700860}
861
Todd Wangd8cb55b2014-11-07 00:58:32 -0800862type implRockPaperScissorsClientStub struct {
863 name string
Todd Wangd1779a52015-02-05 11:46:12 -0800864 client ipc.Client
Todd Wangd8cb55b2014-11-07 00:58:32 -0800865
866 JudgeClientStub
867 PlayerClientStub
868 ScoreKeeperClientStub
869}
870
Todd Wangd1779a52015-02-05 11:46:12 -0800871func (c implRockPaperScissorsClientStub) c(ctx *context.T) ipc.Client {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800872 if c.client != nil {
873 return c.client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700874 }
Jiri Simsa386ce3e2015-02-23 16:14:20 -0800875 return v23.GetClient(ctx)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800876}
877
Todd Wangd8cb55b2014-11-07 00:58:32 -0800878// RockPaperScissorsServerMethods is the interface a server writer
879// implements for RockPaperScissors.
880type 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 Wang5cd27352014-11-11 20:27:39 -0800889// RockPaperScissors methods, as expected by ipc.Server.
890// The only difference between this interface and RockPaperScissorsServerMethods
891// is the streaming methods.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800892type 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.
901type RockPaperScissorsServerStub interface {
902 RockPaperScissorsServerStubMethods
Todd Wangdddc1fb2014-11-16 21:39:02 -0800903 // Describe the RockPaperScissors interfaces.
Todd Wangd1779a52015-02-05 11:46:12 -0800904 Describe__() []ipc.InterfaceDesc
Todd Wangd8cb55b2014-11-07 00:58:32 -0800905}
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.
910func 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 Wangd1779a52015-02-05 11:46:12 -0800919 if gs := ipc.NewGlobState(stub); gs != nil {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800920 stub.gs = gs
Todd Wangd1779a52015-02-05 11:46:12 -0800921 } else if gs := ipc.NewGlobState(impl); gs != nil {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800922 stub.gs = gs
923 }
Robin Thellenda7548452014-11-05 18:10:24 -0800924 return stub
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700925}
926
Todd Wangd8cb55b2014-11-07 00:58:32 -0800927type implRockPaperScissorsServerStub struct {
928 impl RockPaperScissorsServerMethods
Todd Wangd8cb55b2014-11-07 00:58:32 -0800929 JudgeServerStub
930 PlayerServerStub
931 ScoreKeeperServerStub
Todd Wangd1779a52015-02-05 11:46:12 -0800932 gs *ipc.GlobState
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700933}
934
Todd Wangd1779a52015-02-05 11:46:12 -0800935func (s implRockPaperScissorsServerStub) Globber() *ipc.GlobState {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800936 return s.gs
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700937}
938
Todd Wangd1779a52015-02-05 11:46:12 -0800939func (s implRockPaperScissorsServerStub) Describe__() []ipc.InterfaceDesc {
940 return []ipc.InterfaceDesc{RockPaperScissorsDesc, JudgeDesc, PlayerDesc, ScoreKeeperDesc}
Todd Wangdddc1fb2014-11-16 21:39:02 -0800941}
942
943// RockPaperScissorsDesc describes the RockPaperScissors interface.
Todd Wangd1779a52015-02-05 11:46:12 -0800944var RockPaperScissorsDesc ipc.InterfaceDesc = descRockPaperScissors
Todd Wangdddc1fb2014-11-16 21:39:02 -0800945
946// descRockPaperScissors hides the desc to keep godoc clean.
Todd Wangd1779a52015-02-05 11:46:12 -0800947var descRockPaperScissors = ipc.InterfaceDesc{
Todd Wangdddc1fb2014-11-16 21:39:02 -0800948 Name: "RockPaperScissors",
Jiri Simsa3b913022015-02-27 15:19:25 -0800949 PkgPath: "v.io/x/ref/examples/rps",
Todd Wangd1779a52015-02-05 11:46:12 -0800950 Embeds: []ipc.EmbedDesc{
Jiri Simsa3b913022015-02-27 15:19:25 -0800951 {"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 Wangdddc1fb2014-11-16 21:39:02 -0800954 },
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700955}