blob: ab4a74576de98b24bd8aff6d2f23a0cbe975bc0a [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
4// Package rps is an example of veyron service for playing the game of
5// Rock-Paper-Scissors. (http://en.wikipedia.org/wiki/Rock-paper-scissors)
6//
7// There are three different roles in the game:
8//
9// 1. Judge: A judge enforces the rules of the game and decides who
10// the winner is. At the end of the game, the judge reports the
11// final score to all the score keepers.
12//
13// 2. Player: A player can ask a judge to start a new game, it can
14// challenge another player, and it can play a game.
15//
16// 3. ScoreKeeper: A score keeper receives the final score for a game
17// after it ended.
18package rps
19
20import (
Todd Wangd8cb55b2014-11-07 00:58:32 -080021 // The non-user imports are prefixed with "__" to prevent collisions.
22 __io "io"
23 __veyron2 "veyron.io/veyron/veyron2"
24 __context "veyron.io/veyron/veyron2/context"
25 __ipc "veyron.io/veyron/veyron2/ipc"
26 __vdlutil "veyron.io/veyron/veyron2/vdl/vdlutil"
27 __wiretype "veyron.io/veyron/veyron2/wiretype"
Jiri Simsa37cdfc02014-10-09 18:00:43 -070028)
29
Todd Wangd8cb55b2014-11-07 00:58:32 -080030// TODO(toddw): Remove this line once the new signature support is done.
31// It corrects a bug where __wiretype is unused in VDL pacakges where only
32// bootstrap types are used on interfaces.
33const _ = __wiretype.TypeIDInvalid
34
Jiri Simsa37cdfc02014-10-09 18:00:43 -070035// A GameID is used to uniquely identify a game within one Judge.
36type GameID struct {
37 ID string
38}
39
40// GameOptions specifies the parameters of a game.
41type GameOptions struct {
42 NumRounds int32 // The number of rounds that a player must win to win the game.
43 GameType GameTypeTag // The type of game to play: Classic or LizardSpock.
44}
45
46type GameTypeTag byte
47
48type PlayerAction struct {
49 Move string // The move that the player wants to make.
50 Quit bool // Whether the player wants to quit the game.
51}
52
53type JudgeAction struct {
54 PlayerNum int32 // The player's number.
55 OpponentName string // The name of the opponent.
56 MoveOptions []string // A list of allowed moves that the player must choose from. Not always present.
57 RoundResult Round // The result of the previous round. Not always present.
58 Score ScoreCard // The result of the game. Not always present.
59}
60
61// Round represents the state of a round.
62type Round struct {
63 Moves [2]string // Each player's move.
64 Comment string // A text comment from judge about the round.
65 Winner WinnerTag // Who won the round.
66 StartTimeNS int64 // The time at which the round started.
67 EndTimeNS int64 // The time at which the round ended.
68}
69
70// WinnerTag is a type used to indicate whether a round or a game was a draw,
71// was won by player 1 or was won by player 2.
72type WinnerTag byte
73
74// PlayResult is the value returned by the Play method. It indicates the outcome of the game.
75type PlayResult struct {
76 YouWon bool // True if the player receiving the result won the game.
77}
78
79type ScoreCard struct {
80 Opts GameOptions // The game options.
81 Judge string // The name of the judge.
82 Players []string // The name of the players.
83 Rounds []Round // The outcome of each round.
84 StartTimeNS int64 // The time at which the game started.
85 EndTimeNS int64 // The time at which the game ended.
86 Winner WinnerTag // Who won the game.
87}
88
89const Classic = GameTypeTag(0) // Rock-Paper-Scissors
90
91const LizardSpock = GameTypeTag(1) // Rock-Paper-Scissors-Lizard-Spock
92
93const Draw = WinnerTag(0)
94
95const Player1 = WinnerTag(1)
96
97const Player2 = WinnerTag(2)
98
Todd Wangd8cb55b2014-11-07 00:58:32 -080099// JudgeClientMethods is the client interface
100// containing Judge methods.
101type JudgeClientMethods interface {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700102 // CreateGame creates a new game with the given game options and returns a game
103 // identifier that can be used by the players to join the game.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800104 CreateGame(ctx __context.T, Opts GameOptions, opts ...__ipc.CallOpt) (GameID, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700105 // Play lets a player join an existing game and play.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800106 Play(ctx __context.T, ID GameID, opts ...__ipc.CallOpt) (JudgePlayCall, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700107}
108
Todd Wangd8cb55b2014-11-07 00:58:32 -0800109// JudgeClientStub adds universal methods to JudgeClientMethods.
110type JudgeClientStub interface {
111 JudgeClientMethods
112 __ipc.UniversalServiceMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700113}
114
Todd Wangd8cb55b2014-11-07 00:58:32 -0800115// JudgeClient returns a client stub for Judge.
116func JudgeClient(name string, opts ...__ipc.BindOpt) JudgeClientStub {
117 var client __ipc.Client
118 for _, opt := range opts {
119 if clientOpt, ok := opt.(__ipc.Client); ok {
120 client = clientOpt
121 }
122 }
123 return implJudgeClientStub{name, client}
124}
125
126type implJudgeClientStub struct {
127 name string
128 client __ipc.Client
129}
130
131func (c implJudgeClientStub) c(ctx __context.T) __ipc.Client {
132 if c.client != nil {
133 return c.client
134 }
135 return __veyron2.RuntimeFromContext(ctx).Client()
136}
137
138func (c implJudgeClientStub) CreateGame(ctx __context.T, i0 GameOptions, opts ...__ipc.CallOpt) (o0 GameID, err error) {
139 var call __ipc.Call
140 if call, err = c.c(ctx).StartCall(ctx, c.name, "CreateGame", []interface{}{i0}, opts...); err != nil {
141 return
142 }
143 if ierr := call.Finish(&o0, &err); ierr != nil {
144 err = ierr
145 }
146 return
147}
148
149func (c implJudgeClientStub) Play(ctx __context.T, i0 GameID, opts ...__ipc.CallOpt) (ocall JudgePlayCall, err error) {
150 var call __ipc.Call
151 if call, err = c.c(ctx).StartCall(ctx, c.name, "Play", []interface{}{i0}, opts...); err != nil {
152 return
153 }
Todd Wang5cd27352014-11-11 20:27:39 -0800154 ocall = &implJudgePlayCall{Call: call}
Todd Wangd8cb55b2014-11-07 00:58:32 -0800155 return
156}
157
158func (c implJudgeClientStub) Signature(ctx __context.T, opts ...__ipc.CallOpt) (o0 __ipc.ServiceSignature, err error) {
159 var call __ipc.Call
160 if call, err = c.c(ctx).StartCall(ctx, c.name, "Signature", nil, opts...); err != nil {
161 return
162 }
163 if ierr := call.Finish(&o0, &err); ierr != nil {
164 err = ierr
165 }
166 return
167}
168
169func (c implJudgeClientStub) GetMethodTags(ctx __context.T, method string, opts ...__ipc.CallOpt) (o0 []interface{}, err error) {
170 var call __ipc.Call
171 if call, err = c.c(ctx).StartCall(ctx, c.name, "GetMethodTags", []interface{}{method}, opts...); err != nil {
172 return
173 }
174 if ierr := call.Finish(&o0, &err); ierr != nil {
175 err = ierr
176 }
177 return
178}
179
180// JudgePlayClientStream is the client stream for Judge.Play.
181type JudgePlayClientStream interface {
Todd Wang5cd27352014-11-11 20:27:39 -0800182 // RecvStream returns the receiver side of the Judge.Play client stream.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700183 RecvStream() interface {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800184 // Advance stages an item so that it may be retrieved via Value. Returns
185 // true iff there is an item to retrieve. Advance must be called before
186 // Value is called. May block if an item is not available.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700187 Advance() bool
Todd Wangd8cb55b2014-11-07 00:58:32 -0800188 // Value returns the item that was staged by Advance. May panic if Advance
189 // returned false or was not called. Never blocks.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700190 Value() JudgeAction
Todd Wangd8cb55b2014-11-07 00:58:32 -0800191 // Err returns any error encountered by Advance. Never blocks.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700192 Err() error
193 }
Todd Wang5cd27352014-11-11 20:27:39 -0800194 // SendStream returns the send side of the Judge.Play client stream.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700195 SendStream() interface {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800196 // Send places the item onto the output stream. Returns errors encountered
197 // while sending, or if Send is called after Close or Cancel. Blocks if
198 // there is no buffer space; will unblock when buffer space is available or
199 // after Cancel.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700200 Send(item PlayerAction) error
Todd Wangd8cb55b2014-11-07 00:58:32 -0800201 // Close indicates to the server that no more items will be sent; server
202 // Recv calls will receive io.EOF after all sent items. This is an optional
203 // call - e.g. a client might call Close if it needs to continue receiving
204 // items from the server after it's done sending. Returns errors
205 // encountered while closing, or if Close is called after Cancel. Like
206 // Send, blocks if there is no buffer space available.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700207 Close() error
208 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800209}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700210
Todd Wangd8cb55b2014-11-07 00:58:32 -0800211// JudgePlayCall represents the call returned from Judge.Play.
212type JudgePlayCall interface {
213 JudgePlayClientStream
214 // Finish performs the equivalent of SendStream().Close, then blocks until
215 // the server is done, and returns the positional return values for the call.
216 //
217 // Finish returns immediately if Cancel has been called; depending on the
218 // timing the output could either be an error signaling cancelation, or the
219 // valid positional return values from the server.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700220 //
221 // Calling Finish is mandatory for releasing stream resources, unless Cancel
Todd Wangd8cb55b2014-11-07 00:58:32 -0800222 // has been called or any of the other methods return an error. Finish should
223 // be called at most once.
224 Finish() (PlayResult, error)
225 // Cancel cancels the RPC, notifying the server to stop processing. It is
226 // safe to call Cancel concurrently with any of the other stream methods.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700227 // Calling Cancel after Finish has returned is a no-op.
228 Cancel()
229}
230
Todd Wangd8cb55b2014-11-07 00:58:32 -0800231type implJudgePlayCall struct {
Todd Wang5cd27352014-11-11 20:27:39 -0800232 __ipc.Call
233 valRecv JudgeAction
234 errRecv error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700235}
236
237func (c *implJudgePlayCall) RecvStream() interface {
238 Advance() bool
239 Value() JudgeAction
240 Err() error
241} {
Todd Wang5cd27352014-11-11 20:27:39 -0800242 return implJudgePlayCallRecv{c}
243}
244
245type implJudgePlayCallRecv struct {
246 c *implJudgePlayCall
247}
248
249func (c implJudgePlayCallRecv) Advance() bool {
250 c.c.valRecv = JudgeAction{}
251 c.c.errRecv = c.c.Recv(&c.c.valRecv)
252 return c.c.errRecv == nil
253}
254func (c implJudgePlayCallRecv) Value() JudgeAction {
255 return c.c.valRecv
256}
257func (c implJudgePlayCallRecv) Err() error {
258 if c.c.errRecv == __io.EOF {
259 return nil
260 }
261 return c.c.errRecv
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700262}
Todd Wangd8cb55b2014-11-07 00:58:32 -0800263func (c *implJudgePlayCall) SendStream() interface {
264 Send(item PlayerAction) error
265 Close() error
266} {
Todd Wang5cd27352014-11-11 20:27:39 -0800267 return implJudgePlayCallSend{c}
268}
269
270type implJudgePlayCallSend struct {
271 c *implJudgePlayCall
272}
273
274func (c implJudgePlayCallSend) Send(item PlayerAction) error {
275 return c.c.Send(item)
276}
277func (c implJudgePlayCallSend) Close() error {
278 return c.c.CloseSend()
Todd Wangd8cb55b2014-11-07 00:58:32 -0800279}
280func (c *implJudgePlayCall) Finish() (o0 PlayResult, err error) {
Todd Wang5cd27352014-11-11 20:27:39 -0800281 if ierr := c.Call.Finish(&o0, &err); ierr != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700282 err = ierr
283 }
284 return
285}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700286
Todd Wangd8cb55b2014-11-07 00:58:32 -0800287// JudgeServerMethods is the interface a server writer
288// implements for Judge.
289type JudgeServerMethods interface {
290 // CreateGame creates a new game with the given game options and returns a game
291 // identifier that can be used by the players to join the game.
292 CreateGame(ctx __ipc.ServerContext, Opts GameOptions) (GameID, error)
293 // Play lets a player join an existing game and play.
294 Play(ctx JudgePlayContext, ID GameID) (PlayResult, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700295}
296
Todd Wangd8cb55b2014-11-07 00:58:32 -0800297// JudgeServerStubMethods is the server interface containing
Todd Wang5cd27352014-11-11 20:27:39 -0800298// Judge methods, as expected by ipc.Server.
299// The only difference between this interface and JudgeServerMethods
300// is the streaming methods.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800301type JudgeServerStubMethods interface {
302 // CreateGame creates a new game with the given game options and returns a game
303 // identifier that can be used by the players to join the game.
Todd Wang5cd27352014-11-11 20:27:39 -0800304 CreateGame(ctx __ipc.ServerContext, Opts GameOptions) (GameID, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800305 // Play lets a player join an existing game and play.
Todd Wang5cd27352014-11-11 20:27:39 -0800306 Play(ctx *JudgePlayContextStub, ID GameID) (PlayResult, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700307}
308
Todd Wangd8cb55b2014-11-07 00:58:32 -0800309// JudgeServerStub adds universal methods to JudgeServerStubMethods.
310type JudgeServerStub interface {
311 JudgeServerStubMethods
312 // GetMethodTags will be replaced with DescribeInterfaces.
Todd Wang5cd27352014-11-11 20:27:39 -0800313 GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800314 // Signature will be replaced with DescribeInterfaces.
Todd Wang5cd27352014-11-11 20:27:39 -0800315 Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700316}
317
Todd Wangd8cb55b2014-11-07 00:58:32 -0800318// JudgeServer returns a server stub for Judge.
319// It converts an implementation of JudgeServerMethods into
320// an object that may be used by ipc.Server.
321func JudgeServer(impl JudgeServerMethods) JudgeServerStub {
322 stub := implJudgeServerStub{
323 impl: impl,
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700324 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800325 // Initialize GlobState; always check the stub itself first, to handle the
326 // case where the user has the Glob method defined in their VDL source.
327 if gs := __ipc.NewGlobState(stub); gs != nil {
328 stub.gs = gs
329 } else if gs := __ipc.NewGlobState(impl); gs != nil {
330 stub.gs = gs
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700331 }
Robin Thellenda7548452014-11-05 18:10:24 -0800332 return stub
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700333}
334
Todd Wangd8cb55b2014-11-07 00:58:32 -0800335type implJudgeServerStub struct {
336 impl JudgeServerMethods
337 gs *__ipc.GlobState
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700338}
339
Todd Wang5cd27352014-11-11 20:27:39 -0800340func (s implJudgeServerStub) CreateGame(ctx __ipc.ServerContext, i0 GameOptions) (GameID, error) {
341 return s.impl.CreateGame(ctx, i0)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700342}
343
Todd Wang5cd27352014-11-11 20:27:39 -0800344func (s implJudgeServerStub) Play(ctx *JudgePlayContextStub, i0 GameID) (PlayResult, error) {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800345 return s.impl.Play(ctx, i0)
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700346}
347
Todd Wangd8cb55b2014-11-07 00:58:32 -0800348func (s implJudgeServerStub) VGlob() *__ipc.GlobState {
349 return s.gs
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700350}
351
Todd Wang5cd27352014-11-11 20:27:39 -0800352func (s implJudgeServerStub) GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800353 // TODO(toddw): Replace with new DescribeInterfaces implementation.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700354 switch method {
355 case "CreateGame":
356 return []interface{}{}, nil
357 case "Play":
358 return []interface{}{}, nil
359 default:
360 return nil, nil
361 }
362}
363
Todd Wang5cd27352014-11-11 20:27:39 -0800364func (s implJudgeServerStub) Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800365 // TODO(toddw) Replace with new DescribeInterfaces implementation.
366 result := __ipc.ServiceSignature{Methods: make(map[string]__ipc.MethodSignature)}
367 result.Methods["CreateGame"] = __ipc.MethodSignature{
368 InArgs: []__ipc.MethodArgument{
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700369 {Name: "Opts", Type: 66},
370 },
Todd Wangd8cb55b2014-11-07 00:58:32 -0800371 OutArgs: []__ipc.MethodArgument{
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700372 {Name: "", Type: 67},
373 {Name: "", Type: 68},
374 },
375 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800376 result.Methods["Play"] = __ipc.MethodSignature{
377 InArgs: []__ipc.MethodArgument{
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700378 {Name: "ID", Type: 67},
379 },
Todd Wangd8cb55b2014-11-07 00:58:32 -0800380 OutArgs: []__ipc.MethodArgument{
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700381 {Name: "", Type: 69},
382 {Name: "", Type: 68},
383 },
384 InStream: 70,
385 OutStream: 76,
386 }
387
Todd Wangd8cb55b2014-11-07 00:58:32 -0800388 result.TypeDefs = []__vdlutil.Any{
389 __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.GameTypeTag", Tags: []string(nil)}, __wiretype.StructType{
390 []__wiretype.FieldType{
391 __wiretype.FieldType{Type: 0x24, Name: "NumRounds"},
392 __wiretype.FieldType{Type: 0x41, Name: "GameType"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700393 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700394 "veyron.io/apps/rps.GameOptions", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800395 __wiretype.StructType{
396 []__wiretype.FieldType{
397 __wiretype.FieldType{Type: 0x3, Name: "ID"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700398 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700399 "veyron.io/apps/rps.GameID", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800400 __wiretype.NamedPrimitiveType{Type: 0x1, Name: "error", Tags: []string(nil)}, __wiretype.StructType{
401 []__wiretype.FieldType{
402 __wiretype.FieldType{Type: 0x2, Name: "YouWon"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700403 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700404 "veyron.io/apps/rps.PlayResult", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800405 __wiretype.StructType{
406 []__wiretype.FieldType{
407 __wiretype.FieldType{Type: 0x3, Name: "Move"},
408 __wiretype.FieldType{Type: 0x2, Name: "Quit"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700409 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700410 "veyron.io/apps/rps.PlayerAction", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800411 __wiretype.ArrayType{Elem: 0x3, Len: 0x2, Name: "", Tags: []string(nil)}, __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.WinnerTag", Tags: []string(nil)}, __wiretype.StructType{
412 []__wiretype.FieldType{
413 __wiretype.FieldType{Type: 0x47, Name: "Moves"},
414 __wiretype.FieldType{Type: 0x3, Name: "Comment"},
415 __wiretype.FieldType{Type: 0x48, Name: "Winner"},
416 __wiretype.FieldType{Type: 0x25, Name: "StartTimeNS"},
417 __wiretype.FieldType{Type: 0x25, Name: "EndTimeNS"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700418 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700419 "veyron.io/apps/rps.Round", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800420 __wiretype.SliceType{Elem: 0x49, Name: "", Tags: []string(nil)}, __wiretype.StructType{
421 []__wiretype.FieldType{
422 __wiretype.FieldType{Type: 0x42, Name: "Opts"},
423 __wiretype.FieldType{Type: 0x3, Name: "Judge"},
424 __wiretype.FieldType{Type: 0x3d, Name: "Players"},
425 __wiretype.FieldType{Type: 0x4a, Name: "Rounds"},
426 __wiretype.FieldType{Type: 0x25, Name: "StartTimeNS"},
427 __wiretype.FieldType{Type: 0x25, Name: "EndTimeNS"},
428 __wiretype.FieldType{Type: 0x48, Name: "Winner"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700429 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700430 "veyron.io/apps/rps.ScoreCard", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800431 __wiretype.StructType{
432 []__wiretype.FieldType{
433 __wiretype.FieldType{Type: 0x24, Name: "PlayerNum"},
434 __wiretype.FieldType{Type: 0x3, Name: "OpponentName"},
435 __wiretype.FieldType{Type: 0x3d, Name: "MoveOptions"},
436 __wiretype.FieldType{Type: 0x49, Name: "RoundResult"},
437 __wiretype.FieldType{Type: 0x4b, Name: "Score"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700438 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700439 "veyron.io/apps/rps.JudgeAction", []string(nil)},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700440 }
441
442 return result, nil
443}
444
Todd Wangd8cb55b2014-11-07 00:58:32 -0800445// JudgePlayServerStream is the server stream for Judge.Play.
446type JudgePlayServerStream interface {
Todd Wang5cd27352014-11-11 20:27:39 -0800447 // RecvStream returns the receiver side of the Judge.Play server stream.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800448 RecvStream() interface {
449 // Advance stages an item so that it may be retrieved via Value. Returns
450 // true iff there is an item to retrieve. Advance must be called before
451 // Value is called. May block if an item is not available.
452 Advance() bool
453 // Value returns the item that was staged by Advance. May panic if Advance
454 // returned false or was not called. Never blocks.
455 Value() PlayerAction
456 // Err returns any error encountered by Advance. Never blocks.
457 Err() error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700458 }
Todd Wang5cd27352014-11-11 20:27:39 -0800459 // SendStream returns the send side of the Judge.Play server stream.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800460 SendStream() interface {
461 // Send places the item onto the output stream. Returns errors encountered
462 // while sending. Blocks if there is no buffer space; will unblock when
463 // buffer space is available.
464 Send(item JudgeAction) error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700465 }
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700466}
467
Todd Wangd8cb55b2014-11-07 00:58:32 -0800468// JudgePlayContext represents the context passed to Judge.Play.
469type JudgePlayContext interface {
470 __ipc.ServerContext
471 JudgePlayServerStream
Robin Thellenda7548452014-11-05 18:10:24 -0800472}
473
Todd Wang5cd27352014-11-11 20:27:39 -0800474// JudgePlayContextStub is a wrapper that converts ipc.ServerCall into
475// a typesafe stub that implements JudgePlayContext.
476type JudgePlayContextStub struct {
477 __ipc.ServerCall
478 valRecv PlayerAction
479 errRecv error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700480}
481
Todd Wang5cd27352014-11-11 20:27:39 -0800482// Init initializes JudgePlayContextStub from ipc.ServerCall.
483func (s *JudgePlayContextStub) Init(call __ipc.ServerCall) {
484 s.ServerCall = call
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700485}
486
Todd Wang5cd27352014-11-11 20:27:39 -0800487// RecvStream returns the receiver side of the Judge.Play server stream.
488func (s *JudgePlayContextStub) RecvStream() interface {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800489 Advance() bool
490 Value() PlayerAction
491 Err() error
492} {
Todd Wang5cd27352014-11-11 20:27:39 -0800493 return implJudgePlayContextRecv{s}
Todd Wangd8cb55b2014-11-07 00:58:32 -0800494}
Todd Wang5cd27352014-11-11 20:27:39 -0800495
496type implJudgePlayContextRecv struct {
497 s *JudgePlayContextStub
498}
499
500func (s implJudgePlayContextRecv) Advance() bool {
501 s.s.valRecv = PlayerAction{}
502 s.s.errRecv = s.s.Recv(&s.s.valRecv)
503 return s.s.errRecv == nil
504}
505func (s implJudgePlayContextRecv) Value() PlayerAction {
506 return s.s.valRecv
507}
508func (s implJudgePlayContextRecv) Err() error {
509 if s.s.errRecv == __io.EOF {
510 return nil
511 }
512 return s.s.errRecv
513}
514
515// SendStream returns the send side of the Judge.Play server stream.
516func (s *JudgePlayContextStub) SendStream() interface {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800517 Send(item JudgeAction) error
518} {
Todd Wang5cd27352014-11-11 20:27:39 -0800519 return implJudgePlayContextSend{s}
520}
521
522type implJudgePlayContextSend struct {
523 s *JudgePlayContextStub
524}
525
526func (s implJudgePlayContextSend) Send(item JudgeAction) error {
527 return s.s.Send(item)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800528}
529
530// PlayerClientMethods is the client interface
531// containing Player methods.
532//
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700533// Player can receive challenges from other players.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800534type PlayerClientMethods interface {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700535 // Challenge is used by other players to challenge this player to a game. If
536 // the challenge is accepted, the method returns nil.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800537 Challenge(ctx __context.T, Address string, ID GameID, Opts GameOptions, opts ...__ipc.CallOpt) error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700538}
539
Todd Wangd8cb55b2014-11-07 00:58:32 -0800540// PlayerClientStub adds universal methods to PlayerClientMethods.
541type PlayerClientStub interface {
542 PlayerClientMethods
543 __ipc.UniversalServiceMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700544}
545
Todd Wangd8cb55b2014-11-07 00:58:32 -0800546// PlayerClient returns a client stub for Player.
547func PlayerClient(name string, opts ...__ipc.BindOpt) PlayerClientStub {
548 var client __ipc.Client
549 for _, opt := range opts {
550 if clientOpt, ok := opt.(__ipc.Client); ok {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700551 client = clientOpt
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700552 }
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700553 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800554 return implPlayerClientStub{name, client}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700555}
556
Todd Wangd8cb55b2014-11-07 00:58:32 -0800557type implPlayerClientStub struct {
558 name string
559 client __ipc.Client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700560}
561
Todd Wangd8cb55b2014-11-07 00:58:32 -0800562func (c implPlayerClientStub) c(ctx __context.T) __ipc.Client {
563 if c.client != nil {
564 return c.client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700565 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800566 return __veyron2.RuntimeFromContext(ctx).Client()
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700567}
568
Todd Wangd8cb55b2014-11-07 00:58:32 -0800569func (c implPlayerClientStub) Challenge(ctx __context.T, i0 string, i1 GameID, i2 GameOptions, opts ...__ipc.CallOpt) (err error) {
570 var call __ipc.Call
571 if call, err = c.c(ctx).StartCall(ctx, c.name, "Challenge", []interface{}{i0, i1, i2}, opts...); err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700572 return
573 }
574 if ierr := call.Finish(&err); ierr != nil {
575 err = ierr
576 }
577 return
578}
579
Todd Wangd8cb55b2014-11-07 00:58:32 -0800580func (c implPlayerClientStub) Signature(ctx __context.T, opts ...__ipc.CallOpt) (o0 __ipc.ServiceSignature, err error) {
581 var call __ipc.Call
582 if call, err = c.c(ctx).StartCall(ctx, c.name, "Signature", nil, opts...); err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700583 return
584 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800585 if ierr := call.Finish(&o0, &err); ierr != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700586 err = ierr
587 }
588 return
589}
590
Todd Wangd8cb55b2014-11-07 00:58:32 -0800591func (c implPlayerClientStub) GetMethodTags(ctx __context.T, method string, opts ...__ipc.CallOpt) (o0 []interface{}, err error) {
592 var call __ipc.Call
593 if call, err = c.c(ctx).StartCall(ctx, c.name, "GetMethodTags", []interface{}{method}, opts...); err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700594 return
595 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800596 if ierr := call.Finish(&o0, &err); ierr != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700597 err = ierr
598 }
599 return
600}
601
Todd Wangd8cb55b2014-11-07 00:58:32 -0800602// PlayerServerMethods is the interface a server writer
603// implements for Player.
604//
605// Player can receive challenges from other players.
606type PlayerServerMethods interface {
607 // Challenge is used by other players to challenge this player to a game. If
608 // the challenge is accepted, the method returns nil.
609 Challenge(ctx __ipc.ServerContext, Address string, ID GameID, Opts GameOptions) error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700610}
611
Todd Wangd8cb55b2014-11-07 00:58:32 -0800612// PlayerServerStubMethods is the server interface containing
Todd Wang5cd27352014-11-11 20:27:39 -0800613// Player methods, as expected by ipc.Server.
614// There is no difference between this interface and PlayerServerMethods
615// since there are no streaming methods.
616type PlayerServerStubMethods PlayerServerMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700617
Todd Wangd8cb55b2014-11-07 00:58:32 -0800618// PlayerServerStub adds universal methods to PlayerServerStubMethods.
619type PlayerServerStub interface {
620 PlayerServerStubMethods
621 // GetMethodTags will be replaced with DescribeInterfaces.
Todd Wang5cd27352014-11-11 20:27:39 -0800622 GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800623 // Signature will be replaced with DescribeInterfaces.
Todd Wang5cd27352014-11-11 20:27:39 -0800624 Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800625}
626
627// PlayerServer returns a server stub for Player.
628// It converts an implementation of PlayerServerMethods into
629// an object that may be used by ipc.Server.
630func PlayerServer(impl PlayerServerMethods) PlayerServerStub {
631 stub := implPlayerServerStub{
632 impl: impl,
633 }
634 // Initialize GlobState; always check the stub itself first, to handle the
635 // case where the user has the Glob method defined in their VDL source.
636 if gs := __ipc.NewGlobState(stub); gs != nil {
637 stub.gs = gs
638 } else if gs := __ipc.NewGlobState(impl); gs != nil {
639 stub.gs = gs
640 }
641 return stub
642}
643
644type implPlayerServerStub struct {
645 impl PlayerServerMethods
646 gs *__ipc.GlobState
647}
648
Todd Wang5cd27352014-11-11 20:27:39 -0800649func (s implPlayerServerStub) Challenge(ctx __ipc.ServerContext, i0 string, i1 GameID, i2 GameOptions) error {
650 return s.impl.Challenge(ctx, i0, i1, i2)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800651}
652
653func (s implPlayerServerStub) VGlob() *__ipc.GlobState {
654 return s.gs
655}
656
Todd Wang5cd27352014-11-11 20:27:39 -0800657func (s implPlayerServerStub) GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800658 // TODO(toddw): Replace with new DescribeInterfaces implementation.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700659 switch method {
660 case "Challenge":
661 return []interface{}{}, nil
662 default:
663 return nil, nil
664 }
665}
666
Todd Wang5cd27352014-11-11 20:27:39 -0800667func (s implPlayerServerStub) Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800668 // TODO(toddw) Replace with new DescribeInterfaces implementation.
669 result := __ipc.ServiceSignature{Methods: make(map[string]__ipc.MethodSignature)}
670 result.Methods["Challenge"] = __ipc.MethodSignature{
671 InArgs: []__ipc.MethodArgument{
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700672 {Name: "Address", Type: 3},
673 {Name: "ID", Type: 65},
674 {Name: "Opts", Type: 67},
675 },
Todd Wangd8cb55b2014-11-07 00:58:32 -0800676 OutArgs: []__ipc.MethodArgument{
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700677 {Name: "", Type: 68},
678 },
679 }
680
Todd Wangd8cb55b2014-11-07 00:58:32 -0800681 result.TypeDefs = []__vdlutil.Any{
682 __wiretype.StructType{
683 []__wiretype.FieldType{
684 __wiretype.FieldType{Type: 0x3, Name: "ID"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700685 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700686 "veyron.io/apps/rps.GameID", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800687 __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.GameTypeTag", Tags: []string(nil)}, __wiretype.StructType{
688 []__wiretype.FieldType{
689 __wiretype.FieldType{Type: 0x24, Name: "NumRounds"},
690 __wiretype.FieldType{Type: 0x42, Name: "GameType"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700691 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700692 "veyron.io/apps/rps.GameOptions", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800693 __wiretype.NamedPrimitiveType{Type: 0x1, Name: "error", Tags: []string(nil)}}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700694
695 return result, nil
696}
697
Todd Wangd8cb55b2014-11-07 00:58:32 -0800698// ScoreKeeperClientMethods is the client interface
699// containing ScoreKeeper methods.
700//
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700701// ScoreKeeper receives the outcome of games from Judges.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800702type ScoreKeeperClientMethods interface {
703 Record(ctx __context.T, Score ScoreCard, opts ...__ipc.CallOpt) error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700704}
705
Todd Wangd8cb55b2014-11-07 00:58:32 -0800706// ScoreKeeperClientStub adds universal methods to ScoreKeeperClientMethods.
707type ScoreKeeperClientStub interface {
708 ScoreKeeperClientMethods
709 __ipc.UniversalServiceMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700710}
711
Todd Wangd8cb55b2014-11-07 00:58:32 -0800712// ScoreKeeperClient returns a client stub for ScoreKeeper.
713func ScoreKeeperClient(name string, opts ...__ipc.BindOpt) ScoreKeeperClientStub {
714 var client __ipc.Client
715 for _, opt := range opts {
716 if clientOpt, ok := opt.(__ipc.Client); ok {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700717 client = clientOpt
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700718 }
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700719 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800720 return implScoreKeeperClientStub{name, client}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700721}
722
Todd Wangd8cb55b2014-11-07 00:58:32 -0800723type implScoreKeeperClientStub struct {
724 name string
725 client __ipc.Client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700726}
727
Todd Wangd8cb55b2014-11-07 00:58:32 -0800728func (c implScoreKeeperClientStub) c(ctx __context.T) __ipc.Client {
729 if c.client != nil {
730 return c.client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700731 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800732 return __veyron2.RuntimeFromContext(ctx).Client()
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700733}
734
Todd Wangd8cb55b2014-11-07 00:58:32 -0800735func (c implScoreKeeperClientStub) Record(ctx __context.T, i0 ScoreCard, opts ...__ipc.CallOpt) (err error) {
736 var call __ipc.Call
737 if call, err = c.c(ctx).StartCall(ctx, c.name, "Record", []interface{}{i0}, opts...); err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700738 return
739 }
740 if ierr := call.Finish(&err); ierr != nil {
741 err = ierr
742 }
743 return
744}
745
Todd Wangd8cb55b2014-11-07 00:58:32 -0800746func (c implScoreKeeperClientStub) Signature(ctx __context.T, opts ...__ipc.CallOpt) (o0 __ipc.ServiceSignature, err error) {
747 var call __ipc.Call
748 if call, err = c.c(ctx).StartCall(ctx, c.name, "Signature", nil, opts...); err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700749 return
750 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800751 if ierr := call.Finish(&o0, &err); ierr != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700752 err = ierr
753 }
754 return
755}
756
Todd Wangd8cb55b2014-11-07 00:58:32 -0800757func (c implScoreKeeperClientStub) GetMethodTags(ctx __context.T, method string, opts ...__ipc.CallOpt) (o0 []interface{}, err error) {
758 var call __ipc.Call
759 if call, err = c.c(ctx).StartCall(ctx, c.name, "GetMethodTags", []interface{}{method}, opts...); err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700760 return
761 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800762 if ierr := call.Finish(&o0, &err); ierr != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700763 err = ierr
764 }
765 return
766}
767
Todd Wangd8cb55b2014-11-07 00:58:32 -0800768// ScoreKeeperServerMethods is the interface a server writer
769// implements for ScoreKeeper.
770//
771// ScoreKeeper receives the outcome of games from Judges.
772type ScoreKeeperServerMethods interface {
773 Record(ctx __ipc.ServerContext, Score ScoreCard) error
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700774}
775
Todd Wangd8cb55b2014-11-07 00:58:32 -0800776// ScoreKeeperServerStubMethods is the server interface containing
Todd Wang5cd27352014-11-11 20:27:39 -0800777// ScoreKeeper methods, as expected by ipc.Server.
778// There is no difference between this interface and ScoreKeeperServerMethods
779// since there are no streaming methods.
780type ScoreKeeperServerStubMethods ScoreKeeperServerMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700781
Todd Wangd8cb55b2014-11-07 00:58:32 -0800782// ScoreKeeperServerStub adds universal methods to ScoreKeeperServerStubMethods.
783type ScoreKeeperServerStub interface {
784 ScoreKeeperServerStubMethods
785 // GetMethodTags will be replaced with DescribeInterfaces.
Todd Wang5cd27352014-11-11 20:27:39 -0800786 GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800787 // Signature will be replaced with DescribeInterfaces.
Todd Wang5cd27352014-11-11 20:27:39 -0800788 Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800789}
790
791// ScoreKeeperServer returns a server stub for ScoreKeeper.
792// It converts an implementation of ScoreKeeperServerMethods into
793// an object that may be used by ipc.Server.
794func ScoreKeeperServer(impl ScoreKeeperServerMethods) ScoreKeeperServerStub {
795 stub := implScoreKeeperServerStub{
796 impl: impl,
797 }
798 // Initialize GlobState; always check the stub itself first, to handle the
799 // case where the user has the Glob method defined in their VDL source.
800 if gs := __ipc.NewGlobState(stub); gs != nil {
801 stub.gs = gs
802 } else if gs := __ipc.NewGlobState(impl); gs != nil {
803 stub.gs = gs
804 }
805 return stub
806}
807
808type implScoreKeeperServerStub struct {
809 impl ScoreKeeperServerMethods
810 gs *__ipc.GlobState
811}
812
Todd Wang5cd27352014-11-11 20:27:39 -0800813func (s implScoreKeeperServerStub) Record(ctx __ipc.ServerContext, i0 ScoreCard) error {
814 return s.impl.Record(ctx, i0)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800815}
816
817func (s implScoreKeeperServerStub) VGlob() *__ipc.GlobState {
818 return s.gs
819}
820
Todd Wang5cd27352014-11-11 20:27:39 -0800821func (s implScoreKeeperServerStub) GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800822 // TODO(toddw): Replace with new DescribeInterfaces implementation.
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700823 switch method {
824 case "Record":
825 return []interface{}{}, nil
826 default:
827 return nil, nil
828 }
829}
830
Todd Wang5cd27352014-11-11 20:27:39 -0800831func (s implScoreKeeperServerStub) Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) {
Todd Wangd8cb55b2014-11-07 00:58:32 -0800832 // TODO(toddw) Replace with new DescribeInterfaces implementation.
833 result := __ipc.ServiceSignature{Methods: make(map[string]__ipc.MethodSignature)}
834 result.Methods["Record"] = __ipc.MethodSignature{
835 InArgs: []__ipc.MethodArgument{
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700836 {Name: "Score", Type: 71},
837 },
Todd Wangd8cb55b2014-11-07 00:58:32 -0800838 OutArgs: []__ipc.MethodArgument{
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700839 {Name: "", Type: 72},
840 },
841 }
842
Todd Wangd8cb55b2014-11-07 00:58:32 -0800843 result.TypeDefs = []__vdlutil.Any{
844 __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.GameTypeTag", Tags: []string(nil)}, __wiretype.StructType{
845 []__wiretype.FieldType{
846 __wiretype.FieldType{Type: 0x24, Name: "NumRounds"},
847 __wiretype.FieldType{Type: 0x41, Name: "GameType"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700848 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700849 "veyron.io/apps/rps.GameOptions", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800850 __wiretype.ArrayType{Elem: 0x3, Len: 0x2, Name: "", Tags: []string(nil)}, __wiretype.NamedPrimitiveType{Type: 0x32, Name: "veyron.io/apps/rps.WinnerTag", Tags: []string(nil)}, __wiretype.StructType{
851 []__wiretype.FieldType{
852 __wiretype.FieldType{Type: 0x43, Name: "Moves"},
853 __wiretype.FieldType{Type: 0x3, Name: "Comment"},
854 __wiretype.FieldType{Type: 0x44, Name: "Winner"},
855 __wiretype.FieldType{Type: 0x25, Name: "StartTimeNS"},
856 __wiretype.FieldType{Type: 0x25, Name: "EndTimeNS"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700857 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700858 "veyron.io/apps/rps.Round", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800859 __wiretype.SliceType{Elem: 0x45, Name: "", Tags: []string(nil)}, __wiretype.StructType{
860 []__wiretype.FieldType{
861 __wiretype.FieldType{Type: 0x42, Name: "Opts"},
862 __wiretype.FieldType{Type: 0x3, Name: "Judge"},
863 __wiretype.FieldType{Type: 0x3d, Name: "Players"},
864 __wiretype.FieldType{Type: 0x46, Name: "Rounds"},
865 __wiretype.FieldType{Type: 0x25, Name: "StartTimeNS"},
866 __wiretype.FieldType{Type: 0x25, Name: "EndTimeNS"},
867 __wiretype.FieldType{Type: 0x44, Name: "Winner"},
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700868 },
Ali Ghassemi85ed8fa2014-10-22 15:46:10 -0700869 "veyron.io/apps/rps.ScoreCard", []string(nil)},
Todd Wangd8cb55b2014-11-07 00:58:32 -0800870 __wiretype.NamedPrimitiveType{Type: 0x1, Name: "error", Tags: []string(nil)}}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700871
872 return result, nil
873}
874
Todd Wangd8cb55b2014-11-07 00:58:32 -0800875// RockPaperScissorsClientMethods is the client interface
876// containing RockPaperScissors methods.
877type RockPaperScissorsClientMethods interface {
878 JudgeClientMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700879 // Player can receive challenges from other players.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800880 PlayerClientMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700881 // ScoreKeeper receives the outcome of games from Judges.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800882 ScoreKeeperClientMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700883}
884
Todd Wangd8cb55b2014-11-07 00:58:32 -0800885// RockPaperScissorsClientStub adds universal methods to RockPaperScissorsClientMethods.
886type RockPaperScissorsClientStub interface {
887 RockPaperScissorsClientMethods
888 __ipc.UniversalServiceMethods
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700889}
890
Todd Wangd8cb55b2014-11-07 00:58:32 -0800891// RockPaperScissorsClient returns a client stub for RockPaperScissors.
892func RockPaperScissorsClient(name string, opts ...__ipc.BindOpt) RockPaperScissorsClientStub {
893 var client __ipc.Client
894 for _, opt := range opts {
895 if clientOpt, ok := opt.(__ipc.Client); ok {
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700896 client = clientOpt
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700897 }
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700898 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800899 return implRockPaperScissorsClientStub{name, client, JudgeClient(name, client), PlayerClient(name, client), ScoreKeeperClient(name, client)}
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700900}
901
Todd Wangd8cb55b2014-11-07 00:58:32 -0800902type implRockPaperScissorsClientStub struct {
903 name string
904 client __ipc.Client
905
906 JudgeClientStub
907 PlayerClientStub
908 ScoreKeeperClientStub
909}
910
911func (c implRockPaperScissorsClientStub) c(ctx __context.T) __ipc.Client {
912 if c.client != nil {
913 return c.client
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700914 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800915 return __veyron2.RuntimeFromContext(ctx).Client()
916}
917
918func (c implRockPaperScissorsClientStub) Signature(ctx __context.T, opts ...__ipc.CallOpt) (o0 __ipc.ServiceSignature, err error) {
919 var call __ipc.Call
920 if call, err = c.c(ctx).StartCall(ctx, c.name, "Signature", nil, opts...); err != nil {
921 return
Robin Thellenda7548452014-11-05 18:10:24 -0800922 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800923 if ierr := call.Finish(&o0, &err); ierr != nil {
924 err = ierr
Robin Thellenda7548452014-11-05 18:10:24 -0800925 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800926 return
927}
928
929func (c implRockPaperScissorsClientStub) GetMethodTags(ctx __context.T, method string, opts ...__ipc.CallOpt) (o0 []interface{}, err error) {
930 var call __ipc.Call
931 if call, err = c.c(ctx).StartCall(ctx, c.name, "GetMethodTags", []interface{}{method}, opts...); err != nil {
932 return
Robin Thellenda7548452014-11-05 18:10:24 -0800933 }
Todd Wangd8cb55b2014-11-07 00:58:32 -0800934 if ierr := call.Finish(&o0, &err); ierr != nil {
935 err = ierr
936 }
937 return
938}
939
940// RockPaperScissorsServerMethods is the interface a server writer
941// implements for RockPaperScissors.
942type RockPaperScissorsServerMethods interface {
943 JudgeServerMethods
944 // Player can receive challenges from other players.
945 PlayerServerMethods
946 // ScoreKeeper receives the outcome of games from Judges.
947 ScoreKeeperServerMethods
948}
949
950// RockPaperScissorsServerStubMethods is the server interface containing
Todd Wang5cd27352014-11-11 20:27:39 -0800951// RockPaperScissors methods, as expected by ipc.Server.
952// The only difference between this interface and RockPaperScissorsServerMethods
953// is the streaming methods.
Todd Wangd8cb55b2014-11-07 00:58:32 -0800954type RockPaperScissorsServerStubMethods interface {
955 JudgeServerStubMethods
956 // Player can receive challenges from other players.
957 PlayerServerStubMethods
958 // ScoreKeeper receives the outcome of games from Judges.
959 ScoreKeeperServerStubMethods
960}
961
962// RockPaperScissorsServerStub adds universal methods to RockPaperScissorsServerStubMethods.
963type RockPaperScissorsServerStub interface {
964 RockPaperScissorsServerStubMethods
965 // GetMethodTags will be replaced with DescribeInterfaces.
Todd Wang5cd27352014-11-11 20:27:39 -0800966 GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800967 // Signature will be replaced with DescribeInterfaces.
Todd Wang5cd27352014-11-11 20:27:39 -0800968 Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error)
Todd Wangd8cb55b2014-11-07 00:58:32 -0800969}
970
971// RockPaperScissorsServer returns a server stub for RockPaperScissors.
972// It converts an implementation of RockPaperScissorsServerMethods into
973// an object that may be used by ipc.Server.
974func RockPaperScissorsServer(impl RockPaperScissorsServerMethods) RockPaperScissorsServerStub {
975 stub := implRockPaperScissorsServerStub{
976 impl: impl,
977 JudgeServerStub: JudgeServer(impl),
978 PlayerServerStub: PlayerServer(impl),
979 ScoreKeeperServerStub: ScoreKeeperServer(impl),
980 }
981 // Initialize GlobState; always check the stub itself first, to handle the
982 // case where the user has the Glob method defined in their VDL source.
983 if gs := __ipc.NewGlobState(stub); gs != nil {
984 stub.gs = gs
985 } else if gs := __ipc.NewGlobState(impl); gs != nil {
986 stub.gs = gs
987 }
Robin Thellenda7548452014-11-05 18:10:24 -0800988 return stub
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700989}
990
Todd Wangd8cb55b2014-11-07 00:58:32 -0800991type implRockPaperScissorsServerStub struct {
992 impl RockPaperScissorsServerMethods
Todd Wangd8cb55b2014-11-07 00:58:32 -0800993 JudgeServerStub
994 PlayerServerStub
995 ScoreKeeperServerStub
Todd Wang5cd27352014-11-11 20:27:39 -0800996 gs *__ipc.GlobState
Jiri Simsa37cdfc02014-10-09 18:00:43 -0700997}
998
Todd Wangd8cb55b2014-11-07 00:58:32 -0800999func (s implRockPaperScissorsServerStub) VGlob() *__ipc.GlobState {
1000 return s.gs
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001001}
1002
Todd Wang5cd27352014-11-11 20:27:39 -08001003func (s implRockPaperScissorsServerStub) GetMethodTags(ctx __ipc.ServerContext, method string) ([]interface{}, error) {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001004 // TODO(toddw): Replace with new DescribeInterfaces implementation.
Todd Wang5cd27352014-11-11 20:27:39 -08001005 if resp, err := s.JudgeServerStub.GetMethodTags(ctx, method); resp != nil || err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001006 return resp, err
1007 }
Todd Wang5cd27352014-11-11 20:27:39 -08001008 if resp, err := s.PlayerServerStub.GetMethodTags(ctx, method); resp != nil || err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001009 return resp, err
1010 }
Todd Wang5cd27352014-11-11 20:27:39 -08001011 if resp, err := s.ScoreKeeperServerStub.GetMethodTags(ctx, method); resp != nil || err != nil {
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001012 return resp, err
1013 }
1014 return nil, nil
1015}
1016
Todd Wang5cd27352014-11-11 20:27:39 -08001017func (s implRockPaperScissorsServerStub) Signature(ctx __ipc.ServerContext) (__ipc.ServiceSignature, error) {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001018 // TODO(toddw) Replace with new DescribeInterfaces implementation.
1019 result := __ipc.ServiceSignature{Methods: make(map[string]__ipc.MethodSignature)}
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001020
Todd Wangd8cb55b2014-11-07 00:58:32 -08001021 result.TypeDefs = []__vdlutil.Any{}
1022 var ss __ipc.ServiceSignature
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001023 var firstAdded int
Todd Wang5cd27352014-11-11 20:27:39 -08001024 ss, _ = s.JudgeServerStub.Signature(ctx)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001025 firstAdded = len(result.TypeDefs)
1026 for k, v := range ss.Methods {
1027 for i, _ := range v.InArgs {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001028 if v.InArgs[i].Type >= __wiretype.TypeIDFirst {
1029 v.InArgs[i].Type += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001030 }
1031 }
1032 for i, _ := range v.OutArgs {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001033 if v.OutArgs[i].Type >= __wiretype.TypeIDFirst {
1034 v.OutArgs[i].Type += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001035 }
1036 }
Todd Wangd8cb55b2014-11-07 00:58:32 -08001037 if v.InStream >= __wiretype.TypeIDFirst {
1038 v.InStream += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001039 }
Todd Wangd8cb55b2014-11-07 00:58:32 -08001040 if v.OutStream >= __wiretype.TypeIDFirst {
1041 v.OutStream += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001042 }
1043 result.Methods[k] = v
1044 }
1045 //TODO(bprosnitz) combine type definitions from embeded interfaces in a way that doesn't cause duplication.
1046 for _, d := range ss.TypeDefs {
1047 switch wt := d.(type) {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001048 case __wiretype.SliceType:
1049 if wt.Elem >= __wiretype.TypeIDFirst {
1050 wt.Elem += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001051 }
1052 d = wt
Todd Wangd8cb55b2014-11-07 00:58:32 -08001053 case __wiretype.ArrayType:
1054 if wt.Elem >= __wiretype.TypeIDFirst {
1055 wt.Elem += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001056 }
1057 d = wt
Todd Wangd8cb55b2014-11-07 00:58:32 -08001058 case __wiretype.MapType:
1059 if wt.Key >= __wiretype.TypeIDFirst {
1060 wt.Key += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001061 }
Todd Wangd8cb55b2014-11-07 00:58:32 -08001062 if wt.Elem >= __wiretype.TypeIDFirst {
1063 wt.Elem += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001064 }
1065 d = wt
Todd Wangd8cb55b2014-11-07 00:58:32 -08001066 case __wiretype.StructType:
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001067 for i, fld := range wt.Fields {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001068 if fld.Type >= __wiretype.TypeIDFirst {
1069 wt.Fields[i].Type += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001070 }
1071 }
1072 d = wt
1073 // NOTE: other types are missing, but we are upgrading anyways.
1074 }
1075 result.TypeDefs = append(result.TypeDefs, d)
1076 }
Todd Wang5cd27352014-11-11 20:27:39 -08001077 ss, _ = s.PlayerServerStub.Signature(ctx)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001078 firstAdded = len(result.TypeDefs)
1079 for k, v := range ss.Methods {
1080 for i, _ := range v.InArgs {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001081 if v.InArgs[i].Type >= __wiretype.TypeIDFirst {
1082 v.InArgs[i].Type += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001083 }
1084 }
1085 for i, _ := range v.OutArgs {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001086 if v.OutArgs[i].Type >= __wiretype.TypeIDFirst {
1087 v.OutArgs[i].Type += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001088 }
1089 }
Todd Wangd8cb55b2014-11-07 00:58:32 -08001090 if v.InStream >= __wiretype.TypeIDFirst {
1091 v.InStream += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001092 }
Todd Wangd8cb55b2014-11-07 00:58:32 -08001093 if v.OutStream >= __wiretype.TypeIDFirst {
1094 v.OutStream += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001095 }
1096 result.Methods[k] = v
1097 }
1098 //TODO(bprosnitz) combine type definitions from embeded interfaces in a way that doesn't cause duplication.
1099 for _, d := range ss.TypeDefs {
1100 switch wt := d.(type) {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001101 case __wiretype.SliceType:
1102 if wt.Elem >= __wiretype.TypeIDFirst {
1103 wt.Elem += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001104 }
1105 d = wt
Todd Wangd8cb55b2014-11-07 00:58:32 -08001106 case __wiretype.ArrayType:
1107 if wt.Elem >= __wiretype.TypeIDFirst {
1108 wt.Elem += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001109 }
1110 d = wt
Todd Wangd8cb55b2014-11-07 00:58:32 -08001111 case __wiretype.MapType:
1112 if wt.Key >= __wiretype.TypeIDFirst {
1113 wt.Key += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001114 }
Todd Wangd8cb55b2014-11-07 00:58:32 -08001115 if wt.Elem >= __wiretype.TypeIDFirst {
1116 wt.Elem += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001117 }
1118 d = wt
Todd Wangd8cb55b2014-11-07 00:58:32 -08001119 case __wiretype.StructType:
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001120 for i, fld := range wt.Fields {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001121 if fld.Type >= __wiretype.TypeIDFirst {
1122 wt.Fields[i].Type += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001123 }
1124 }
1125 d = wt
1126 // NOTE: other types are missing, but we are upgrading anyways.
1127 }
1128 result.TypeDefs = append(result.TypeDefs, d)
1129 }
Todd Wang5cd27352014-11-11 20:27:39 -08001130 ss, _ = s.ScoreKeeperServerStub.Signature(ctx)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001131 firstAdded = len(result.TypeDefs)
1132 for k, v := range ss.Methods {
1133 for i, _ := range v.InArgs {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001134 if v.InArgs[i].Type >= __wiretype.TypeIDFirst {
1135 v.InArgs[i].Type += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001136 }
1137 }
1138 for i, _ := range v.OutArgs {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001139 if v.OutArgs[i].Type >= __wiretype.TypeIDFirst {
1140 v.OutArgs[i].Type += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001141 }
1142 }
Todd Wangd8cb55b2014-11-07 00:58:32 -08001143 if v.InStream >= __wiretype.TypeIDFirst {
1144 v.InStream += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001145 }
Todd Wangd8cb55b2014-11-07 00:58:32 -08001146 if v.OutStream >= __wiretype.TypeIDFirst {
1147 v.OutStream += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001148 }
1149 result.Methods[k] = v
1150 }
1151 //TODO(bprosnitz) combine type definitions from embeded interfaces in a way that doesn't cause duplication.
1152 for _, d := range ss.TypeDefs {
1153 switch wt := d.(type) {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001154 case __wiretype.SliceType:
1155 if wt.Elem >= __wiretype.TypeIDFirst {
1156 wt.Elem += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001157 }
1158 d = wt
Todd Wangd8cb55b2014-11-07 00:58:32 -08001159 case __wiretype.ArrayType:
1160 if wt.Elem >= __wiretype.TypeIDFirst {
1161 wt.Elem += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001162 }
1163 d = wt
Todd Wangd8cb55b2014-11-07 00:58:32 -08001164 case __wiretype.MapType:
1165 if wt.Key >= __wiretype.TypeIDFirst {
1166 wt.Key += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001167 }
Todd Wangd8cb55b2014-11-07 00:58:32 -08001168 if wt.Elem >= __wiretype.TypeIDFirst {
1169 wt.Elem += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001170 }
1171 d = wt
Todd Wangd8cb55b2014-11-07 00:58:32 -08001172 case __wiretype.StructType:
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001173 for i, fld := range wt.Fields {
Todd Wangd8cb55b2014-11-07 00:58:32 -08001174 if fld.Type >= __wiretype.TypeIDFirst {
1175 wt.Fields[i].Type += __wiretype.TypeID(firstAdded)
Jiri Simsa37cdfc02014-10-09 18:00:43 -07001176 }
1177 }
1178 d = wt
1179 // NOTE: other types are missing, but we are upgrading anyways.
1180 }
1181 result.TypeDefs = append(result.TypeDefs, d)
1182 }
1183
1184 return result, nil
1185}