blob: 86fb4dc055f7f11dc9794724e82975bb7399fb4d [file] [log] [blame]
// This file was auto-generated by the veyron vdl tool.
// Source: service.vdl
// Package rps is an example of veyron service for playing the game of
// Rock-Paper-Scissors. (http://en.wikipedia.org/wiki/Rock-paper-scissors)
//
// There are three different roles in the game:
//
// 1. Judge: A judge enforces the rules of the game and decides who
// the winner is. At the end of the game, the judge reports the
// final score to all the score keepers.
//
// 2. Player: A player can ask a judge to start a new game, it can
// challenge another player, and it can play a game.
//
// 3. ScoreKeeper: A score keeper receives the final score for a game
// after it ended.
package rps
import (
// VDL system imports
"io"
"v.io/core/veyron2"
"v.io/core/veyron2/context"
"v.io/core/veyron2/ipc"
"v.io/core/veyron2/vdl"
// VDL user imports
"v.io/core/veyron2/services/security/access"
)
// A GameID is used to uniquely identify a game within one Judge.
type GameID struct {
ID string
}
func (GameID) __VDLReflect(struct {
Name string "v.io/apps/rps.GameID"
}) {
}
// GameOptions specifies the parameters of a game.
type GameOptions struct {
NumRounds int32 // The number of rounds that a player must win to win the game.
GameType GameTypeTag // The type of game to play: Classic or LizardSpock.
}
func (GameOptions) __VDLReflect(struct {
Name string "v.io/apps/rps.GameOptions"
}) {
}
type GameTypeTag byte
func (GameTypeTag) __VDLReflect(struct {
Name string "v.io/apps/rps.GameTypeTag"
}) {
}
type PlayerAction struct {
Move string // The move that the player wants to make.
Quit bool // Whether the player wants to quit the game.
}
func (PlayerAction) __VDLReflect(struct {
Name string "v.io/apps/rps.PlayerAction"
}) {
}
type JudgeAction struct {
PlayerNum int32 // The player's number.
OpponentName string // The name of the opponent.
MoveOptions []string // A list of allowed moves that the player must choose from. Not always present.
RoundResult Round // The result of the previous round. Not always present.
Score ScoreCard // The result of the game. Not always present.
}
func (JudgeAction) __VDLReflect(struct {
Name string "v.io/apps/rps.JudgeAction"
}) {
}
type PlayersMoves [2]string
func (PlayersMoves) __VDLReflect(struct {
Name string "v.io/apps/rps.PlayersMoves"
}) {
}
// Round represents the state of a round.
type Round struct {
Moves PlayersMoves // Each player's move.
Comment string // A text comment from judge about the round.
Winner WinnerTag // Who won the round.
StartTimeNS int64 // The time at which the round started.
EndTimeNS int64 // The time at which the round ended.
}
func (Round) __VDLReflect(struct {
Name string "v.io/apps/rps.Round"
}) {
}
// WinnerTag is a type used to indicate whether a round or a game was a draw,
// was won by player 1 or was won by player 2.
type WinnerTag byte
func (WinnerTag) __VDLReflect(struct {
Name string "v.io/apps/rps.WinnerTag"
}) {
}
// PlayResult is the value returned by the Play method. It indicates the outcome of the game.
type PlayResult struct {
YouWon bool // True if the player receiving the result won the game.
}
func (PlayResult) __VDLReflect(struct {
Name string "v.io/apps/rps.PlayResult"
}) {
}
type ScoreCard struct {
Opts GameOptions // The game options.
Judge string // The name of the judge.
Players []string // The name of the players.
Rounds []Round // The outcome of each round.
StartTimeNS int64 // The time at which the game started.
EndTimeNS int64 // The time at which the game ended.
Winner WinnerTag // Who won the game.
}
func (ScoreCard) __VDLReflect(struct {
Name string "v.io/apps/rps.ScoreCard"
}) {
}
func init() {
vdl.Register(GameID{})
vdl.Register(GameOptions{})
vdl.Register(GameTypeTag(0))
vdl.Register(PlayerAction{})
vdl.Register(JudgeAction{})
vdl.Register(PlayersMoves{})
vdl.Register(Round{})
vdl.Register(WinnerTag(0))
vdl.Register(PlayResult{})
vdl.Register(ScoreCard{})
}
const Classic = GameTypeTag(0) // Rock-Paper-Scissors
const LizardSpock = GameTypeTag(1) // Rock-Paper-Scissors-Lizard-Spock
const Draw = WinnerTag(0)
const Player1 = WinnerTag(1)
const Player2 = WinnerTag(2)
// JudgeClientMethods is the client interface
// containing Judge methods.
type JudgeClientMethods interface {
// CreateGame creates a new game with the given game options and returns a game
// identifier that can be used by the players to join the game.
CreateGame(ctx *context.T, Opts GameOptions, opts ...ipc.CallOpt) (GameID, error)
// Play lets a player join an existing game and play.
Play(ctx *context.T, ID GameID, opts ...ipc.CallOpt) (JudgePlayCall, error)
}
// JudgeClientStub adds universal methods to JudgeClientMethods.
type JudgeClientStub interface {
JudgeClientMethods
ipc.UniversalServiceMethods
}
// JudgeClient returns a client stub for Judge.
func JudgeClient(name string, opts ...ipc.BindOpt) JudgeClientStub {
var client ipc.Client
for _, opt := range opts {
if clientOpt, ok := opt.(ipc.Client); ok {
client = clientOpt
}
}
return implJudgeClientStub{name, client}
}
type implJudgeClientStub struct {
name string
client ipc.Client
}
func (c implJudgeClientStub) c(ctx *context.T) ipc.Client {
if c.client != nil {
return c.client
}
return veyron2.GetClient(ctx)
}
func (c implJudgeClientStub) CreateGame(ctx *context.T, i0 GameOptions, opts ...ipc.CallOpt) (o0 GameID, err error) {
var call ipc.Call
if call, err = c.c(ctx).StartCall(ctx, c.name, "CreateGame", []interface{}{i0}, opts...); err != nil {
return
}
if ierr := call.Finish(&o0, &err); ierr != nil {
err = ierr
}
return
}
func (c implJudgeClientStub) Play(ctx *context.T, i0 GameID, opts ...ipc.CallOpt) (ocall JudgePlayCall, err error) {
var call ipc.Call
if call, err = c.c(ctx).StartCall(ctx, c.name, "Play", []interface{}{i0}, opts...); err != nil {
return
}
ocall = &implJudgePlayCall{Call: call}
return
}
// JudgePlayClientStream is the client stream for Judge.Play.
type JudgePlayClientStream interface {
// RecvStream returns the receiver side of the Judge.Play client stream.
RecvStream() interface {
// Advance stages an item so that it may be retrieved via Value. Returns
// true iff there is an item to retrieve. Advance must be called before
// Value is called. May block if an item is not available.
Advance() bool
// Value returns the item that was staged by Advance. May panic if Advance
// returned false or was not called. Never blocks.
Value() JudgeAction
// Err returns any error encountered by Advance. Never blocks.
Err() error
}
// SendStream returns the send side of the Judge.Play client stream.
SendStream() interface {
// Send places the item onto the output stream. Returns errors
// encountered while sending, or if Send is called after Close or
// the stream has been canceled. Blocks if there is no buffer
// space; will unblock when buffer space is available or after
// the stream has been canceled.
Send(item PlayerAction) error
// Close indicates to the server that no more items will be sent;
// server Recv calls will receive io.EOF after all sent items.
// This is an optional call - e.g. a client might call Close if it
// needs to continue receiving items from the server after it's
// done sending. Returns errors encountered while closing, or if
// Close is called after the stream has been canceled. Like Send,
// blocks if there is no buffer space available.
Close() error
}
}
// JudgePlayCall represents the call returned from Judge.Play.
type JudgePlayCall interface {
JudgePlayClientStream
// Finish performs the equivalent of SendStream().Close, then blocks until
// the server is done, and returns the positional return values for the call.
//
// Finish returns immediately if the call has been canceled; depending on the
// timing the output could either be an error signaling cancelation, or the
// valid positional return values from the server.
//
// Calling Finish is mandatory for releasing stream resources, unless the call
// has been canceled or any of the other methods return an error. Finish should
// be called at most once.
Finish() (PlayResult, error)
}
type implJudgePlayCall struct {
ipc.Call
valRecv JudgeAction
errRecv error
}
func (c *implJudgePlayCall) RecvStream() interface {
Advance() bool
Value() JudgeAction
Err() error
} {
return implJudgePlayCallRecv{c}
}
type implJudgePlayCallRecv struct {
c *implJudgePlayCall
}
func (c implJudgePlayCallRecv) Advance() bool {
c.c.valRecv = JudgeAction{}
c.c.errRecv = c.c.Recv(&c.c.valRecv)
return c.c.errRecv == nil
}
func (c implJudgePlayCallRecv) Value() JudgeAction {
return c.c.valRecv
}
func (c implJudgePlayCallRecv) Err() error {
if c.c.errRecv == io.EOF {
return nil
}
return c.c.errRecv
}
func (c *implJudgePlayCall) SendStream() interface {
Send(item PlayerAction) error
Close() error
} {
return implJudgePlayCallSend{c}
}
type implJudgePlayCallSend struct {
c *implJudgePlayCall
}
func (c implJudgePlayCallSend) Send(item PlayerAction) error {
return c.c.Send(item)
}
func (c implJudgePlayCallSend) Close() error {
return c.c.CloseSend()
}
func (c *implJudgePlayCall) Finish() (o0 PlayResult, err error) {
if ierr := c.Call.Finish(&o0, &err); ierr != nil {
err = ierr
}
return
}
// JudgeServerMethods is the interface a server writer
// implements for Judge.
type JudgeServerMethods interface {
// CreateGame creates a new game with the given game options and returns a game
// identifier that can be used by the players to join the game.
CreateGame(ctx ipc.ServerContext, Opts GameOptions) (GameID, error)
// Play lets a player join an existing game and play.
Play(ctx JudgePlayContext, ID GameID) (PlayResult, error)
}
// JudgeServerStubMethods is the server interface containing
// Judge methods, as expected by ipc.Server.
// The only difference between this interface and JudgeServerMethods
// is the streaming methods.
type JudgeServerStubMethods interface {
// CreateGame creates a new game with the given game options and returns a game
// identifier that can be used by the players to join the game.
CreateGame(ctx ipc.ServerContext, Opts GameOptions) (GameID, error)
// Play lets a player join an existing game and play.
Play(ctx *JudgePlayContextStub, ID GameID) (PlayResult, error)
}
// JudgeServerStub adds universal methods to JudgeServerStubMethods.
type JudgeServerStub interface {
JudgeServerStubMethods
// Describe the Judge interfaces.
Describe__() []ipc.InterfaceDesc
}
// JudgeServer returns a server stub for Judge.
// It converts an implementation of JudgeServerMethods into
// an object that may be used by ipc.Server.
func JudgeServer(impl JudgeServerMethods) JudgeServerStub {
stub := implJudgeServerStub{
impl: impl,
}
// Initialize GlobState; always check the stub itself first, to handle the
// case where the user has the Glob method defined in their VDL source.
if gs := ipc.NewGlobState(stub); gs != nil {
stub.gs = gs
} else if gs := ipc.NewGlobState(impl); gs != nil {
stub.gs = gs
}
return stub
}
type implJudgeServerStub struct {
impl JudgeServerMethods
gs *ipc.GlobState
}
func (s implJudgeServerStub) CreateGame(ctx ipc.ServerContext, i0 GameOptions) (GameID, error) {
return s.impl.CreateGame(ctx, i0)
}
func (s implJudgeServerStub) Play(ctx *JudgePlayContextStub, i0 GameID) (PlayResult, error) {
return s.impl.Play(ctx, i0)
}
func (s implJudgeServerStub) Globber() *ipc.GlobState {
return s.gs
}
func (s implJudgeServerStub) Describe__() []ipc.InterfaceDesc {
return []ipc.InterfaceDesc{JudgeDesc}
}
// JudgeDesc describes the Judge interface.
var JudgeDesc ipc.InterfaceDesc = descJudge
// descJudge hides the desc to keep godoc clean.
var descJudge = ipc.InterfaceDesc{
Name: "Judge",
PkgPath: "v.io/apps/rps",
Methods: []ipc.MethodDesc{
{
Name: "CreateGame",
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.",
InArgs: []ipc.ArgDesc{
{"Opts", ``}, // GameOptions
},
OutArgs: []ipc.ArgDesc{
{"", ``}, // GameID
{"", ``}, // error
},
Tags: []vdl.AnyRep{access.Tag("Write")},
},
{
Name: "Play",
Doc: "// Play lets a player join an existing game and play.",
InArgs: []ipc.ArgDesc{
{"ID", ``}, // GameID
},
OutArgs: []ipc.ArgDesc{
{"", ``}, // PlayResult
{"", ``}, // error
},
Tags: []vdl.AnyRep{access.Tag("Write")},
},
},
}
// JudgePlayServerStream is the server stream for Judge.Play.
type JudgePlayServerStream interface {
// RecvStream returns the receiver side of the Judge.Play server stream.
RecvStream() interface {
// Advance stages an item so that it may be retrieved via Value. Returns
// true iff there is an item to retrieve. Advance must be called before
// Value is called. May block if an item is not available.
Advance() bool
// Value returns the item that was staged by Advance. May panic if Advance
// returned false or was not called. Never blocks.
Value() PlayerAction
// Err returns any error encountered by Advance. Never blocks.
Err() error
}
// SendStream returns the send side of the Judge.Play server stream.
SendStream() interface {
// Send places the item onto the output stream. Returns errors encountered
// while sending. Blocks if there is no buffer space; will unblock when
// buffer space is available.
Send(item JudgeAction) error
}
}
// JudgePlayContext represents the context passed to Judge.Play.
type JudgePlayContext interface {
ipc.ServerContext
JudgePlayServerStream
}
// JudgePlayContextStub is a wrapper that converts ipc.ServerCall into
// a typesafe stub that implements JudgePlayContext.
type JudgePlayContextStub struct {
ipc.ServerCall
valRecv PlayerAction
errRecv error
}
// Init initializes JudgePlayContextStub from ipc.ServerCall.
func (s *JudgePlayContextStub) Init(call ipc.ServerCall) {
s.ServerCall = call
}
// RecvStream returns the receiver side of the Judge.Play server stream.
func (s *JudgePlayContextStub) RecvStream() interface {
Advance() bool
Value() PlayerAction
Err() error
} {
return implJudgePlayContextRecv{s}
}
type implJudgePlayContextRecv struct {
s *JudgePlayContextStub
}
func (s implJudgePlayContextRecv) Advance() bool {
s.s.valRecv = PlayerAction{}
s.s.errRecv = s.s.Recv(&s.s.valRecv)
return s.s.errRecv == nil
}
func (s implJudgePlayContextRecv) Value() PlayerAction {
return s.s.valRecv
}
func (s implJudgePlayContextRecv) Err() error {
if s.s.errRecv == io.EOF {
return nil
}
return s.s.errRecv
}
// SendStream returns the send side of the Judge.Play server stream.
func (s *JudgePlayContextStub) SendStream() interface {
Send(item JudgeAction) error
} {
return implJudgePlayContextSend{s}
}
type implJudgePlayContextSend struct {
s *JudgePlayContextStub
}
func (s implJudgePlayContextSend) Send(item JudgeAction) error {
return s.s.Send(item)
}
// PlayerClientMethods is the client interface
// containing Player methods.
//
// Player can receive challenges from other players.
type PlayerClientMethods interface {
// Challenge is used by other players to challenge this player to a game. If
// the challenge is accepted, the method returns nil.
Challenge(ctx *context.T, Address string, ID GameID, Opts GameOptions, opts ...ipc.CallOpt) error
}
// PlayerClientStub adds universal methods to PlayerClientMethods.
type PlayerClientStub interface {
PlayerClientMethods
ipc.UniversalServiceMethods
}
// PlayerClient returns a client stub for Player.
func PlayerClient(name string, opts ...ipc.BindOpt) PlayerClientStub {
var client ipc.Client
for _, opt := range opts {
if clientOpt, ok := opt.(ipc.Client); ok {
client = clientOpt
}
}
return implPlayerClientStub{name, client}
}
type implPlayerClientStub struct {
name string
client ipc.Client
}
func (c implPlayerClientStub) c(ctx *context.T) ipc.Client {
if c.client != nil {
return c.client
}
return veyron2.GetClient(ctx)
}
func (c implPlayerClientStub) Challenge(ctx *context.T, i0 string, i1 GameID, i2 GameOptions, opts ...ipc.CallOpt) (err error) {
var call ipc.Call
if call, err = c.c(ctx).StartCall(ctx, c.name, "Challenge", []interface{}{i0, i1, i2}, opts...); err != nil {
return
}
if ierr := call.Finish(&err); ierr != nil {
err = ierr
}
return
}
// PlayerServerMethods is the interface a server writer
// implements for Player.
//
// Player can receive challenges from other players.
type PlayerServerMethods interface {
// Challenge is used by other players to challenge this player to a game. If
// the challenge is accepted, the method returns nil.
Challenge(ctx ipc.ServerContext, Address string, ID GameID, Opts GameOptions) error
}
// PlayerServerStubMethods is the server interface containing
// Player methods, as expected by ipc.Server.
// There is no difference between this interface and PlayerServerMethods
// since there are no streaming methods.
type PlayerServerStubMethods PlayerServerMethods
// PlayerServerStub adds universal methods to PlayerServerStubMethods.
type PlayerServerStub interface {
PlayerServerStubMethods
// Describe the Player interfaces.
Describe__() []ipc.InterfaceDesc
}
// PlayerServer returns a server stub for Player.
// It converts an implementation of PlayerServerMethods into
// an object that may be used by ipc.Server.
func PlayerServer(impl PlayerServerMethods) PlayerServerStub {
stub := implPlayerServerStub{
impl: impl,
}
// Initialize GlobState; always check the stub itself first, to handle the
// case where the user has the Glob method defined in their VDL source.
if gs := ipc.NewGlobState(stub); gs != nil {
stub.gs = gs
} else if gs := ipc.NewGlobState(impl); gs != nil {
stub.gs = gs
}
return stub
}
type implPlayerServerStub struct {
impl PlayerServerMethods
gs *ipc.GlobState
}
func (s implPlayerServerStub) Challenge(ctx ipc.ServerContext, i0 string, i1 GameID, i2 GameOptions) error {
return s.impl.Challenge(ctx, i0, i1, i2)
}
func (s implPlayerServerStub) Globber() *ipc.GlobState {
return s.gs
}
func (s implPlayerServerStub) Describe__() []ipc.InterfaceDesc {
return []ipc.InterfaceDesc{PlayerDesc}
}
// PlayerDesc describes the Player interface.
var PlayerDesc ipc.InterfaceDesc = descPlayer
// descPlayer hides the desc to keep godoc clean.
var descPlayer = ipc.InterfaceDesc{
Name: "Player",
PkgPath: "v.io/apps/rps",
Doc: "// Player can receive challenges from other players.",
Methods: []ipc.MethodDesc{
{
Name: "Challenge",
Doc: "// Challenge is used by other players to challenge this player to a game. If\n// the challenge is accepted, the method returns nil.",
InArgs: []ipc.ArgDesc{
{"Address", ``}, // string
{"ID", ``}, // GameID
{"Opts", ``}, // GameOptions
},
OutArgs: []ipc.ArgDesc{
{"", ``}, // error
},
Tags: []vdl.AnyRep{access.Tag("Write")},
},
},
}
// ScoreKeeperClientMethods is the client interface
// containing ScoreKeeper methods.
//
// ScoreKeeper receives the outcome of games from Judges.
type ScoreKeeperClientMethods interface {
Record(ctx *context.T, Score ScoreCard, opts ...ipc.CallOpt) error
}
// ScoreKeeperClientStub adds universal methods to ScoreKeeperClientMethods.
type ScoreKeeperClientStub interface {
ScoreKeeperClientMethods
ipc.UniversalServiceMethods
}
// ScoreKeeperClient returns a client stub for ScoreKeeper.
func ScoreKeeperClient(name string, opts ...ipc.BindOpt) ScoreKeeperClientStub {
var client ipc.Client
for _, opt := range opts {
if clientOpt, ok := opt.(ipc.Client); ok {
client = clientOpt
}
}
return implScoreKeeperClientStub{name, client}
}
type implScoreKeeperClientStub struct {
name string
client ipc.Client
}
func (c implScoreKeeperClientStub) c(ctx *context.T) ipc.Client {
if c.client != nil {
return c.client
}
return veyron2.GetClient(ctx)
}
func (c implScoreKeeperClientStub) Record(ctx *context.T, i0 ScoreCard, opts ...ipc.CallOpt) (err error) {
var call ipc.Call
if call, err = c.c(ctx).StartCall(ctx, c.name, "Record", []interface{}{i0}, opts...); err != nil {
return
}
if ierr := call.Finish(&err); ierr != nil {
err = ierr
}
return
}
// ScoreKeeperServerMethods is the interface a server writer
// implements for ScoreKeeper.
//
// ScoreKeeper receives the outcome of games from Judges.
type ScoreKeeperServerMethods interface {
Record(ctx ipc.ServerContext, Score ScoreCard) error
}
// ScoreKeeperServerStubMethods is the server interface containing
// ScoreKeeper methods, as expected by ipc.Server.
// There is no difference between this interface and ScoreKeeperServerMethods
// since there are no streaming methods.
type ScoreKeeperServerStubMethods ScoreKeeperServerMethods
// ScoreKeeperServerStub adds universal methods to ScoreKeeperServerStubMethods.
type ScoreKeeperServerStub interface {
ScoreKeeperServerStubMethods
// Describe the ScoreKeeper interfaces.
Describe__() []ipc.InterfaceDesc
}
// ScoreKeeperServer returns a server stub for ScoreKeeper.
// It converts an implementation of ScoreKeeperServerMethods into
// an object that may be used by ipc.Server.
func ScoreKeeperServer(impl ScoreKeeperServerMethods) ScoreKeeperServerStub {
stub := implScoreKeeperServerStub{
impl: impl,
}
// Initialize GlobState; always check the stub itself first, to handle the
// case where the user has the Glob method defined in their VDL source.
if gs := ipc.NewGlobState(stub); gs != nil {
stub.gs = gs
} else if gs := ipc.NewGlobState(impl); gs != nil {
stub.gs = gs
}
return stub
}
type implScoreKeeperServerStub struct {
impl ScoreKeeperServerMethods
gs *ipc.GlobState
}
func (s implScoreKeeperServerStub) Record(ctx ipc.ServerContext, i0 ScoreCard) error {
return s.impl.Record(ctx, i0)
}
func (s implScoreKeeperServerStub) Globber() *ipc.GlobState {
return s.gs
}
func (s implScoreKeeperServerStub) Describe__() []ipc.InterfaceDesc {
return []ipc.InterfaceDesc{ScoreKeeperDesc}
}
// ScoreKeeperDesc describes the ScoreKeeper interface.
var ScoreKeeperDesc ipc.InterfaceDesc = descScoreKeeper
// descScoreKeeper hides the desc to keep godoc clean.
var descScoreKeeper = ipc.InterfaceDesc{
Name: "ScoreKeeper",
PkgPath: "v.io/apps/rps",
Doc: "// ScoreKeeper receives the outcome of games from Judges.",
Methods: []ipc.MethodDesc{
{
Name: "Record",
InArgs: []ipc.ArgDesc{
{"Score", ``}, // ScoreCard
},
OutArgs: []ipc.ArgDesc{
{"", ``}, // error
},
Tags: []vdl.AnyRep{access.Tag("Write")},
},
},
}
// RockPaperScissorsClientMethods is the client interface
// containing RockPaperScissors methods.
type RockPaperScissorsClientMethods interface {
JudgeClientMethods
// Player can receive challenges from other players.
PlayerClientMethods
// ScoreKeeper receives the outcome of games from Judges.
ScoreKeeperClientMethods
}
// RockPaperScissorsClientStub adds universal methods to RockPaperScissorsClientMethods.
type RockPaperScissorsClientStub interface {
RockPaperScissorsClientMethods
ipc.UniversalServiceMethods
}
// RockPaperScissorsClient returns a client stub for RockPaperScissors.
func RockPaperScissorsClient(name string, opts ...ipc.BindOpt) RockPaperScissorsClientStub {
var client ipc.Client
for _, opt := range opts {
if clientOpt, ok := opt.(ipc.Client); ok {
client = clientOpt
}
}
return implRockPaperScissorsClientStub{name, client, JudgeClient(name, client), PlayerClient(name, client), ScoreKeeperClient(name, client)}
}
type implRockPaperScissorsClientStub struct {
name string
client ipc.Client
JudgeClientStub
PlayerClientStub
ScoreKeeperClientStub
}
func (c implRockPaperScissorsClientStub) c(ctx *context.T) ipc.Client {
if c.client != nil {
return c.client
}
return veyron2.GetClient(ctx)
}
// RockPaperScissorsServerMethods is the interface a server writer
// implements for RockPaperScissors.
type RockPaperScissorsServerMethods interface {
JudgeServerMethods
// Player can receive challenges from other players.
PlayerServerMethods
// ScoreKeeper receives the outcome of games from Judges.
ScoreKeeperServerMethods
}
// RockPaperScissorsServerStubMethods is the server interface containing
// RockPaperScissors methods, as expected by ipc.Server.
// The only difference between this interface and RockPaperScissorsServerMethods
// is the streaming methods.
type RockPaperScissorsServerStubMethods interface {
JudgeServerStubMethods
// Player can receive challenges from other players.
PlayerServerStubMethods
// ScoreKeeper receives the outcome of games from Judges.
ScoreKeeperServerStubMethods
}
// RockPaperScissorsServerStub adds universal methods to RockPaperScissorsServerStubMethods.
type RockPaperScissorsServerStub interface {
RockPaperScissorsServerStubMethods
// Describe the RockPaperScissors interfaces.
Describe__() []ipc.InterfaceDesc
}
// RockPaperScissorsServer returns a server stub for RockPaperScissors.
// It converts an implementation of RockPaperScissorsServerMethods into
// an object that may be used by ipc.Server.
func RockPaperScissorsServer(impl RockPaperScissorsServerMethods) RockPaperScissorsServerStub {
stub := implRockPaperScissorsServerStub{
impl: impl,
JudgeServerStub: JudgeServer(impl),
PlayerServerStub: PlayerServer(impl),
ScoreKeeperServerStub: ScoreKeeperServer(impl),
}
// Initialize GlobState; always check the stub itself first, to handle the
// case where the user has the Glob method defined in their VDL source.
if gs := ipc.NewGlobState(stub); gs != nil {
stub.gs = gs
} else if gs := ipc.NewGlobState(impl); gs != nil {
stub.gs = gs
}
return stub
}
type implRockPaperScissorsServerStub struct {
impl RockPaperScissorsServerMethods
JudgeServerStub
PlayerServerStub
ScoreKeeperServerStub
gs *ipc.GlobState
}
func (s implRockPaperScissorsServerStub) Globber() *ipc.GlobState {
return s.gs
}
func (s implRockPaperScissorsServerStub) Describe__() []ipc.InterfaceDesc {
return []ipc.InterfaceDesc{RockPaperScissorsDesc, JudgeDesc, PlayerDesc, ScoreKeeperDesc}
}
// RockPaperScissorsDesc describes the RockPaperScissors interface.
var RockPaperScissorsDesc ipc.InterfaceDesc = descRockPaperScissors
// descRockPaperScissors hides the desc to keep godoc clean.
var descRockPaperScissors = ipc.InterfaceDesc{
Name: "RockPaperScissors",
PkgPath: "v.io/apps/rps",
Embeds: []ipc.EmbedDesc{
{"Judge", "v.io/apps/rps", ``},
{"Player", "v.io/apps/rps", "// Player can receive challenges from other players."},
{"ScoreKeeper", "v.io/apps/rps", "// ScoreKeeper receives the outcome of games from Judges."},
},
}