blob: e7f5146e22beee667c76502ddf058e6d1d484a9d [file] [log] [blame]
Todd Wange5d67b42014-05-27 10:48:07 -07001// This file was auto-generated by the veyron vdl tool.
Tilak Sharma43395f32014-05-27 11:33:38 -07002// Source: tunnel.vdl
Jiri Simsa5293dcb2014-05-10 09:56:38 -07003
4package tunnel
5
6import (
7 "veyron2/security"
8
9 // The non-user imports are prefixed with "_gen_" to prevent collisions.
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -070010 _gen_io "io"
Cosmos Nicolaoub07fa772014-05-16 08:07:02 -070011 _gen_veyron2 "veyron2"
Matt Rosencrantz29147f72014-06-06 12:46:01 -070012 _gen_context "veyron2/context"
Jiri Simsa5293dcb2014-05-10 09:56:38 -070013 _gen_ipc "veyron2/ipc"
14 _gen_naming "veyron2/naming"
Cosmos Nicolaouae678942014-05-17 17:21:43 -070015 _gen_rt "veyron2/rt"
Todd Wang0ecdd7a2014-07-14 16:24:38 -070016 _gen_vdlutil "veyron2/vdl/vdlutil"
Jiri Simsa5293dcb2014-05-10 09:56:38 -070017 _gen_wiretype "veyron2/wiretype"
18)
19
20type ShellOpts struct {
21 UsePty bool // Whether to open a pseudo-terminal
22 Environment []string // Environment variables to pass to the remote shell.
23 Rows uint32 // Window size.
24 Cols uint32
25}
Todd Wange5d67b42014-05-27 10:48:07 -070026
Jiri Simsa5293dcb2014-05-10 09:56:38 -070027type ClientShellPacket struct {
28 // Bytes going to the shell's stdin.
29 Stdin []byte
30 // A dynamic update of the window size. The default value of 0 means no-change.
31 Rows uint32
32 Cols uint32
33}
Todd Wange5d67b42014-05-27 10:48:07 -070034
Jiri Simsa5293dcb2014-05-10 09:56:38 -070035type ServerShellPacket struct {
36 // Bytes coming from the shell's stdout.
37 Stdout []byte
38 // Bytes coming from the shell's stderr.
39 Stderr []byte
40}
41
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -070042// TODO(bprosnitz) Remove this line once signatures are updated to use typevals.
43// It corrects a bug where _gen_wiretype is unused in VDL pacakges where only bootstrap types are used on interfaces.
44const _ = _gen_wiretype.TypeIDInvalid
45
Jiri Simsa5293dcb2014-05-10 09:56:38 -070046// Tunnel is the interface the client binds and uses.
Benjamin Prosnitzdcddb932014-05-27 15:55:58 -070047// Tunnel_ExcludingUniversal is the interface without internal framework-added methods
48// to enable embedding without method collisions. Not to be used directly by clients.
49type Tunnel_ExcludingUniversal interface {
Jiri Simsa5293dcb2014-05-10 09:56:38 -070050 // The Forward method is used for network forwarding. All the data sent over
51 // the byte stream is forwarded to the requested network address and all the
52 // data received from that network connection is sent back in the reply
53 // stream.
Matt Rosencrantz29147f72014-06-06 12:46:01 -070054 Forward(ctx _gen_context.T, network string, address string, opts ..._gen_ipc.CallOpt) (reply TunnelForwardStream, err error)
Jiri Simsa5293dcb2014-05-10 09:56:38 -070055 // The Shell method is used to either run shell commands remotely, or to open
56 // an interactive shell. The data received over the byte stream is sent to the
57 // shell's stdin, and the data received from the shell's stdout and stderr is
58 // sent back in the reply stream. It returns the exit status of the shell
59 // command.
Matt Rosencrantz29147f72014-06-06 12:46:01 -070060 Shell(ctx _gen_context.T, command string, shellOpts ShellOpts, opts ..._gen_ipc.CallOpt) (reply TunnelShellStream, err error)
Jiri Simsa5293dcb2014-05-10 09:56:38 -070061}
62type Tunnel interface {
Benjamin Prosnitzdcddb932014-05-27 15:55:58 -070063 _gen_ipc.UniversalServiceMethods
64 Tunnel_ExcludingUniversal
Jiri Simsa5293dcb2014-05-10 09:56:38 -070065}
66
67// TunnelService is the interface the server implements.
68type TunnelService interface {
69
70 // The Forward method is used for network forwarding. All the data sent over
71 // the byte stream is forwarded to the requested network address and all the
72 // data received from that network connection is sent back in the reply
73 // stream.
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -070074 Forward(context _gen_ipc.ServerContext, network string, address string, stream TunnelServiceForwardStream) (err error)
Jiri Simsa5293dcb2014-05-10 09:56:38 -070075 // The Shell method is used to either run shell commands remotely, or to open
76 // an interactive shell. The data received over the byte stream is sent to the
77 // shell's stdin, and the data received from the shell's stdout and stderr is
78 // sent back in the reply stream. It returns the exit status of the shell
79 // command.
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -070080 Shell(context _gen_ipc.ServerContext, command string, shellOpts ShellOpts, stream TunnelServiceShellStream) (reply int32, err error)
Jiri Simsa5293dcb2014-05-10 09:56:38 -070081}
82
83// TunnelForwardStream is the interface for streaming responses of the method
84// Forward in the service interface Tunnel.
85type TunnelForwardStream interface {
86
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -070087 // Send places the item onto the output stream, blocking if there is no
88 // buffer space available. Calls to Send after having called CloseSend
89 // or Cancel will fail. Any blocked Send calls will be unblocked upon
90 // calling Cancel.
Jiri Simsa5293dcb2014-05-10 09:56:38 -070091 Send(item []byte) error
92
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -070093 // CloseSend indicates to the server that no more items will be sent;
94 // server Recv calls will receive io.EOF after all sent items. This is
95 // an optional call - it's used by streaming clients that need the
96 // server to receive the io.EOF terminator before the client calls
97 // Finish (for example, if the client needs to continue receiving items
98 // from the server after having finished sending).
99 // Calls to CloseSend after having called Cancel will fail.
100 // Like Send, CloseSend blocks when there's no buffer space available.
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700101 CloseSend() error
102
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700103 // Advance stages an element so the client can retrieve it
104 // with Value. Advance returns true iff there is an
105 // element to retrieve. The client must call Advance before
106 // calling Value. The client must call Cancel if it does
107 // not iterate through all elements (i.e. until Advance
108 // returns false). Advance may block if an element is not
109 // immediately available.
110 Advance() bool
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700111
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700112 // Value returns the element that was staged by Advance.
113 // Value may panic if Advance returned false or was not
114 // called at all. Value does not block.
115 Value() []byte
116
117 // Err returns a non-nil error iff the stream encountered
118 // any errors. Err does not block.
119 Err() error
120
121 // Finish performs the equivalent of CloseSend, then blocks until the server
122 // is done, and returns the positional return values for call.
123 //
124 // If Cancel has been called, Finish will return immediately; the output of
125 // Finish could either be an error signalling cancelation, or the correct
126 // positional return values from the server depending on the timing of the
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700127 // call.
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700128 //
129 // Calling Finish is mandatory for releasing stream resources, unless Cancel
130 // has been called or any of the other methods return a non-EOF error.
131 // Finish should be called at most once.
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700132 Finish() (err error)
133
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700134 // Cancel cancels the RPC, notifying the server to stop processing. It
135 // is safe to call Cancel concurrently with any of the other stream methods.
136 // Calling Cancel after Finish has returned is a no-op.
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700137 Cancel()
138}
139
140// Implementation of the TunnelForwardStream interface that is not exported.
141type implTunnelForwardStream struct {
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -0700142 clientCall _gen_ipc.Call
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700143 val []byte
144 err error
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700145}
146
147func (c *implTunnelForwardStream) Send(item []byte) error {
148 return c.clientCall.Send(item)
149}
150
151func (c *implTunnelForwardStream) CloseSend() error {
152 return c.clientCall.CloseSend()
153}
154
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700155func (c *implTunnelForwardStream) Advance() bool {
156 c.err = c.clientCall.Recv(&c.val)
157 return c.err == nil
158}
159
160func (c *implTunnelForwardStream) Value() []byte {
161 return c.val
162}
163
164func (c *implTunnelForwardStream) Err() error {
165 if c.err == _gen_io.EOF {
166 return nil
167 }
168 return c.err
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700169}
170
171func (c *implTunnelForwardStream) Finish() (err error) {
172 if ierr := c.clientCall.Finish(&err); ierr != nil {
173 err = ierr
174 }
175 return
176}
177
178func (c *implTunnelForwardStream) Cancel() {
179 c.clientCall.Cancel()
180}
181
182// TunnelServiceForwardStream is the interface for streaming responses of the method
183// Forward in the service interface Tunnel.
184type TunnelServiceForwardStream interface {
185 // Send places the item onto the output stream, blocking if there is no buffer
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700186 // space available. If the client has canceled, an error is returned.
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700187 Send(item []byte) error
188
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700189 // Advance stages an element so the client can retrieve it
190 // with Value. Advance returns true iff there is an
191 // element to retrieve. The client must call Advance before
192 // calling Value. The client must call Cancel if it does
193 // not iterate through all elements (i.e. until Advance
194 // returns false). Advance may block if an element is not
195 // immediately available.
196 Advance() bool
197
198 // Value returns the element that was staged by Advance.
199 // Value may panic if Advance returned false or was not
200 // called at all. Value does not block.
201 //
202 // In general, Value is undefined if the underlying collection
203 // of elements changes while iteration is in progress. If
204 // <DataProvider> supports concurrent modification, it should
205 // document its behavior.
206 Value() []byte
207
208 // Err returns a non-nil error iff the stream encountered
209 // any errors. Err does not block.
210 Err() error
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700211}
212
213// Implementation of the TunnelServiceForwardStream interface that is not exported.
214type implTunnelServiceForwardStream struct {
215 serverCall _gen_ipc.ServerCall
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700216 val []byte
217 err error
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700218}
219
220func (s *implTunnelServiceForwardStream) Send(item []byte) error {
221 return s.serverCall.Send(item)
222}
223
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700224func (s *implTunnelServiceForwardStream) Advance() bool {
225 s.err = s.serverCall.Recv(&s.val)
226 return s.err == nil
227}
228
229func (s *implTunnelServiceForwardStream) Value() []byte {
230 return s.val
231}
232
233func (s *implTunnelServiceForwardStream) Err() error {
234 if s.err == _gen_io.EOF {
235 return nil
236 }
237 return s.err
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700238}
239
240// TunnelShellStream is the interface for streaming responses of the method
241// Shell in the service interface Tunnel.
242type TunnelShellStream interface {
243
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700244 // Send places the item onto the output stream, blocking if there is no
245 // buffer space available. Calls to Send after having called CloseSend
246 // or Cancel will fail. Any blocked Send calls will be unblocked upon
247 // calling Cancel.
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700248 Send(item ClientShellPacket) error
249
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700250 // CloseSend indicates to the server that no more items will be sent;
251 // server Recv calls will receive io.EOF after all sent items. This is
252 // an optional call - it's used by streaming clients that need the
253 // server to receive the io.EOF terminator before the client calls
254 // Finish (for example, if the client needs to continue receiving items
255 // from the server after having finished sending).
256 // Calls to CloseSend after having called Cancel will fail.
257 // Like Send, CloseSend blocks when there's no buffer space available.
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700258 CloseSend() error
259
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700260 // Advance stages an element so the client can retrieve it
261 // with Value. Advance returns true iff there is an
262 // element to retrieve. The client must call Advance before
263 // calling Value. The client must call Cancel if it does
264 // not iterate through all elements (i.e. until Advance
265 // returns false). Advance may block if an element is not
266 // immediately available.
267 Advance() bool
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700268
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700269 // Value returns the element that was staged by Advance.
270 // Value may panic if Advance returned false or was not
271 // called at all. Value does not block.
272 Value() ServerShellPacket
273
274 // Err returns a non-nil error iff the stream encountered
275 // any errors. Err does not block.
276 Err() error
277
278 // Finish performs the equivalent of CloseSend, then blocks until the server
279 // is done, and returns the positional return values for call.
280 //
281 // If Cancel has been called, Finish will return immediately; the output of
282 // Finish could either be an error signalling cancelation, or the correct
283 // positional return values from the server depending on the timing of the
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700284 // call.
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700285 //
286 // Calling Finish is mandatory for releasing stream resources, unless Cancel
287 // has been called or any of the other methods return a non-EOF error.
288 // Finish should be called at most once.
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700289 Finish() (reply int32, err error)
290
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700291 // Cancel cancels the RPC, notifying the server to stop processing. It
292 // is safe to call Cancel concurrently with any of the other stream methods.
293 // Calling Cancel after Finish has returned is a no-op.
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700294 Cancel()
295}
296
297// Implementation of the TunnelShellStream interface that is not exported.
298type implTunnelShellStream struct {
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -0700299 clientCall _gen_ipc.Call
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700300 val ServerShellPacket
301 err error
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700302}
303
304func (c *implTunnelShellStream) Send(item ClientShellPacket) error {
305 return c.clientCall.Send(item)
306}
307
308func (c *implTunnelShellStream) CloseSend() error {
309 return c.clientCall.CloseSend()
310}
311
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700312func (c *implTunnelShellStream) Advance() bool {
313 c.val = ServerShellPacket{}
314 c.err = c.clientCall.Recv(&c.val)
315 return c.err == nil
316}
317
318func (c *implTunnelShellStream) Value() ServerShellPacket {
319 return c.val
320}
321
322func (c *implTunnelShellStream) Err() error {
323 if c.err == _gen_io.EOF {
324 return nil
325 }
326 return c.err
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700327}
328
329func (c *implTunnelShellStream) Finish() (reply int32, err error) {
330 if ierr := c.clientCall.Finish(&reply, &err); ierr != nil {
331 err = ierr
332 }
333 return
334}
335
336func (c *implTunnelShellStream) Cancel() {
337 c.clientCall.Cancel()
338}
339
340// TunnelServiceShellStream is the interface for streaming responses of the method
341// Shell in the service interface Tunnel.
342type TunnelServiceShellStream interface {
343 // Send places the item onto the output stream, blocking if there is no buffer
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700344 // space available. If the client has canceled, an error is returned.
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700345 Send(item ServerShellPacket) error
346
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700347 // Advance stages an element so the client can retrieve it
348 // with Value. Advance returns true iff there is an
349 // element to retrieve. The client must call Advance before
350 // calling Value. The client must call Cancel if it does
351 // not iterate through all elements (i.e. until Advance
352 // returns false). Advance may block if an element is not
353 // immediately available.
354 Advance() bool
355
356 // Value returns the element that was staged by Advance.
357 // Value may panic if Advance returned false or was not
358 // called at all. Value does not block.
359 //
360 // In general, Value is undefined if the underlying collection
361 // of elements changes while iteration is in progress. If
362 // <DataProvider> supports concurrent modification, it should
363 // document its behavior.
364 Value() ClientShellPacket
365
366 // Err returns a non-nil error iff the stream encountered
367 // any errors. Err does not block.
368 Err() error
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700369}
370
371// Implementation of the TunnelServiceShellStream interface that is not exported.
372type implTunnelServiceShellStream struct {
373 serverCall _gen_ipc.ServerCall
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700374 val ClientShellPacket
375 err error
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700376}
377
378func (s *implTunnelServiceShellStream) Send(item ServerShellPacket) error {
379 return s.serverCall.Send(item)
380}
381
Shyam Jayaramanc4aed6e2014-07-22 14:25:06 -0700382func (s *implTunnelServiceShellStream) Advance() bool {
383 s.val = ClientShellPacket{}
384 s.err = s.serverCall.Recv(&s.val)
385 return s.err == nil
386}
387
388func (s *implTunnelServiceShellStream) Value() ClientShellPacket {
389 return s.val
390}
391
392func (s *implTunnelServiceShellStream) Err() error {
393 if s.err == _gen_io.EOF {
394 return nil
395 }
396 return s.err
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700397}
398
399// BindTunnel returns the client stub implementing the Tunnel
400// interface.
401//
402// If no _gen_ipc.Client is specified, the default _gen_ipc.Client in the
403// global Runtime is used.
404func BindTunnel(name string, opts ..._gen_ipc.BindOpt) (Tunnel, error) {
405 var client _gen_ipc.Client
406 switch len(opts) {
407 case 0:
408 client = _gen_rt.R().Client()
409 case 1:
410 switch o := opts[0].(type) {
Cosmos Nicolaoub07fa772014-05-16 08:07:02 -0700411 case _gen_veyron2.Runtime:
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700412 client = o.Client()
413 case _gen_ipc.Client:
414 client = o
415 default:
Todd Wang0ecdd7a2014-07-14 16:24:38 -0700416 return nil, _gen_vdlutil.ErrUnrecognizedOption
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700417 }
418 default:
Todd Wang0ecdd7a2014-07-14 16:24:38 -0700419 return nil, _gen_vdlutil.ErrTooManyOptionsToBind
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700420 }
421 stub := &clientStubTunnel{client: client, name: name}
422
423 return stub, nil
424}
425
426// NewServerTunnel creates a new server stub.
427//
428// It takes a regular server implementing the TunnelService
429// interface, and returns a new server stub.
430func NewServerTunnel(server TunnelService) interface{} {
431 return &ServerStubTunnel{
432 service: server,
433 }
434}
435
436// clientStubTunnel implements Tunnel.
437type clientStubTunnel struct {
438 client _gen_ipc.Client
439 name string
440}
441
Matt Rosencrantz29147f72014-06-06 12:46:01 -0700442func (__gen_c *clientStubTunnel) Forward(ctx _gen_context.T, network string, address string, opts ..._gen_ipc.CallOpt) (reply TunnelForwardStream, err error) {
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -0700443 var call _gen_ipc.Call
444 if call, err = __gen_c.client.StartCall(ctx, __gen_c.name, "Forward", []interface{}{network, address}, opts...); err != nil {
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700445 return
446 }
447 reply = &implTunnelForwardStream{clientCall: call}
448 return
449}
450
Matt Rosencrantz29147f72014-06-06 12:46:01 -0700451func (__gen_c *clientStubTunnel) Shell(ctx _gen_context.T, command string, shellOpts ShellOpts, opts ..._gen_ipc.CallOpt) (reply TunnelShellStream, err error) {
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -0700452 var call _gen_ipc.Call
453 if call, err = __gen_c.client.StartCall(ctx, __gen_c.name, "Shell", []interface{}{command, shellOpts}, opts...); err != nil {
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700454 return
455 }
456 reply = &implTunnelShellStream{clientCall: call}
457 return
458}
459
Matt Rosencrantz29147f72014-06-06 12:46:01 -0700460func (__gen_c *clientStubTunnel) UnresolveStep(ctx _gen_context.T, opts ..._gen_ipc.CallOpt) (reply []string, err error) {
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -0700461 var call _gen_ipc.Call
462 if call, err = __gen_c.client.StartCall(ctx, __gen_c.name, "UnresolveStep", nil, opts...); err != nil {
Benjamin Prosnitzdcddb932014-05-27 15:55:58 -0700463 return
464 }
465 if ierr := call.Finish(&reply, &err); ierr != nil {
466 err = ierr
467 }
468 return
469}
470
Matt Rosencrantz29147f72014-06-06 12:46:01 -0700471func (__gen_c *clientStubTunnel) Signature(ctx _gen_context.T, opts ..._gen_ipc.CallOpt) (reply _gen_ipc.ServiceSignature, err error) {
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -0700472 var call _gen_ipc.Call
473 if call, err = __gen_c.client.StartCall(ctx, __gen_c.name, "Signature", nil, opts...); err != nil {
Benjamin Prosnitzdcddb932014-05-27 15:55:58 -0700474 return
475 }
476 if ierr := call.Finish(&reply, &err); ierr != nil {
477 err = ierr
478 }
479 return
480}
481
Matt Rosencrantz29147f72014-06-06 12:46:01 -0700482func (__gen_c *clientStubTunnel) GetMethodTags(ctx _gen_context.T, method string, opts ..._gen_ipc.CallOpt) (reply []interface{}, err error) {
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -0700483 var call _gen_ipc.Call
484 if call, err = __gen_c.client.StartCall(ctx, __gen_c.name, "GetMethodTags", []interface{}{method}, opts...); err != nil {
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700485 return
486 }
487 if ierr := call.Finish(&reply, &err); ierr != nil {
488 err = ierr
489 }
490 return
491}
492
493// ServerStubTunnel wraps a server that implements
494// TunnelService and provides an object that satisfies
495// the requirements of veyron2/ipc.ReflectInvoker.
496type ServerStubTunnel struct {
497 service TunnelService
498}
499
Benjamin Prosnitzdcddb932014-05-27 15:55:58 -0700500func (__gen_s *ServerStubTunnel) GetMethodTags(call _gen_ipc.ServerCall, method string) ([]interface{}, error) {
501 // TODO(bprosnitz) GetMethodTags() will be replaces with Signature().
502 // Note: This exhibits some weird behavior like returning a nil error if the method isn't found.
503 // This will change when it is replaced with Signature().
504 switch method {
505 case "Forward":
506 return []interface{}{security.Label(4)}, nil
507 case "Shell":
508 return []interface{}{security.Label(4)}, nil
509 default:
510 return nil, nil
511 }
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700512}
513
Benjamin Prosnitzdcddb932014-05-27 15:55:58 -0700514func (__gen_s *ServerStubTunnel) Signature(call _gen_ipc.ServerCall) (_gen_ipc.ServiceSignature, error) {
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700515 result := _gen_ipc.ServiceSignature{Methods: make(map[string]_gen_ipc.MethodSignature)}
516 result.Methods["Forward"] = _gen_ipc.MethodSignature{
517 InArgs: []_gen_ipc.MethodArgument{
518 {Name: "network", Type: 3},
519 {Name: "address", Type: 3},
520 },
521 OutArgs: []_gen_ipc.MethodArgument{
522 {Name: "", Type: 65},
523 },
524 InStream: 67,
525 OutStream: 67,
526 }
527 result.Methods["Shell"] = _gen_ipc.MethodSignature{
528 InArgs: []_gen_ipc.MethodArgument{
529 {Name: "command", Type: 3},
530 {Name: "shellOpts", Type: 68},
531 },
532 OutArgs: []_gen_ipc.MethodArgument{
533 {Name: "", Type: 36},
534 {Name: "", Type: 65},
535 },
536 InStream: 69,
537 OutStream: 70,
538 }
539
Todd Wang0ecdd7a2014-07-14 16:24:38 -0700540 result.TypeDefs = []_gen_vdlutil.Any{
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700541 _gen_wiretype.NamedPrimitiveType{Type: 0x1, Name: "error", Tags: []string(nil)}, _gen_wiretype.NamedPrimitiveType{Type: 0x32, Name: "byte", Tags: []string(nil)}, _gen_wiretype.SliceType{Elem: 0x42, Name: "", Tags: []string(nil)}, _gen_wiretype.StructType{
542 []_gen_wiretype.FieldType{
543 _gen_wiretype.FieldType{Type: 0x2, Name: "UsePty"},
544 _gen_wiretype.FieldType{Type: 0x3d, Name: "Environment"},
545 _gen_wiretype.FieldType{Type: 0x34, Name: "Rows"},
546 _gen_wiretype.FieldType{Type: 0x34, Name: "Cols"},
547 },
Todd Wange5d67b42014-05-27 10:48:07 -0700548 "veyron/examples/tunnel.ShellOpts", []string(nil)},
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700549 _gen_wiretype.StructType{
550 []_gen_wiretype.FieldType{
551 _gen_wiretype.FieldType{Type: 0x43, Name: "Stdin"},
552 _gen_wiretype.FieldType{Type: 0x34, Name: "Rows"},
553 _gen_wiretype.FieldType{Type: 0x34, Name: "Cols"},
554 },
Todd Wange5d67b42014-05-27 10:48:07 -0700555 "veyron/examples/tunnel.ClientShellPacket", []string(nil)},
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700556 _gen_wiretype.StructType{
557 []_gen_wiretype.FieldType{
558 _gen_wiretype.FieldType{Type: 0x43, Name: "Stdout"},
559 _gen_wiretype.FieldType{Type: 0x43, Name: "Stderr"},
560 },
Todd Wange5d67b42014-05-27 10:48:07 -0700561 "veyron/examples/tunnel.ServerShellPacket", []string(nil)},
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700562 }
563
564 return result, nil
565}
566
Benjamin Prosnitzdcddb932014-05-27 15:55:58 -0700567func (__gen_s *ServerStubTunnel) UnresolveStep(call _gen_ipc.ServerCall) (reply []string, err error) {
568 if unresolver, ok := __gen_s.service.(_gen_ipc.Unresolver); ok {
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700569 return unresolver.UnresolveStep(call)
570 }
571 if call.Server() == nil {
572 return
573 }
574 var published []string
575 if published, err = call.Server().Published(); err != nil || published == nil {
576 return
577 }
578 reply = make([]string, len(published))
579 for i, p := range published {
580 reply[i] = _gen_naming.Join(p, call.Name())
581 }
582 return
583}
584
585func (__gen_s *ServerStubTunnel) Forward(call _gen_ipc.ServerCall, network string, address string) (err error) {
586 stream := &implTunnelServiceForwardStream{serverCall: call}
587 err = __gen_s.service.Forward(call, network, address, stream)
588 return
589}
590
591func (__gen_s *ServerStubTunnel) Shell(call _gen_ipc.ServerCall, command string, shellOpts ShellOpts) (reply int32, err error) {
592 stream := &implTunnelServiceShellStream{serverCall: call}
593 reply, err = __gen_s.service.Shell(call, command, shellOpts, stream)
594 return
595}