blob: ff84dc9927abea6a7345ca74a70edb831b87f2b9 [file] [log] [blame]
Jiri Simsa3f4e92d2015-03-24 21:26:37 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Matt Rosencrantzbca49812015-03-01 21:32:54 -08005// This file was auto-generated via go generate.
6// DO NOT UPDATE MANUALLY
7
8/*
Todd Wang6ed3b6c2015-04-08 14:37:04 -07009Command vrpc sends and receives Vanadium remote procedure calls. It is used as
10a generic client to interact with any Vanadium server.
Matt Rosencrantzbca49812015-03-01 21:32:54 -080011
12Usage:
13 vrpc <command>
14
15The vrpc commands are:
16 signature Describe the interfaces of a Vanadium server
17 call Call a method of a Vanadium server
18 identify Reveal blessings presented by a Vanadium server
19 help Display help for commands or topics
Matt Rosencrantzbca49812015-03-01 21:32:54 -080020
21The global flags are:
Todd Wang1624bf92015-04-22 16:53:57 -070022 -v23.namespace.root=[/(dev.v.io/role/vprod/service/mounttabled)@ns.dev.v.io:8101]
23 local namespace root; can be repeated to provided multiple roots
24
Matt Rosencrantzbca49812015-03-01 21:32:54 -080025 -alsologtostderr=true
26 log to standard error as well as files
27 -log_backtrace_at=:0
28 when logging hits line file:N, emit a stack trace
29 -log_dir=
30 if non-empty, write log files to this directory
31 -logtostderr=false
32 log to standard error instead of files
33 -max_stack_buf_size=4292608
34 max size in bytes of the buffer to use for logging stack traces
Jiri Simsa26f1c4d2015-08-09 17:49:40 -070035 -metadata=<just specify -metadata to activate>
36 Displays metadata for the program and exits.
Matt Rosencrantzbca49812015-03-01 21:32:54 -080037 -stderrthreshold=2
38 logs at or above this threshold go to stderr
39 -v=0
40 log level for V logs
Asim Shankarf32d24d2015-04-01 16:34:26 -070041 -v23.credentials=
42 directory to use for storing security credentials
43 -v23.i18n-catalogue=
44 18n catalogue files to load, comma separated
Asim Shankarf32d24d2015-04-01 16:34:26 -070045 -v23.proxy=
46 object name of proxy service to use to export services across network
47 boundaries
48 -v23.tcp.address=
49 address to listen on
50 -v23.tcp.protocol=wsh
51 protocol to listen with
52 -v23.vtrace.cache-size=1024
53 The number of vtrace traces to store in memory.
54 -v23.vtrace.collect-regexp=
55 Spans and annotations that match this regular expression will trigger trace
56 collection.
57 -v23.vtrace.dump-on-shutdown=true
58 If true, dump all stored traces on runtime shutdown.
59 -v23.vtrace.sample-rate=0
60 Rate (from 0.0 to 1.0) to sample vtrace traces.
Matt Rosencrantzbca49812015-03-01 21:32:54 -080061 -vmodule=
Cosmos Nicolaou6c363882015-06-02 11:51:27 -070062 comma-separated list of pattern=N settings for filename-filtered logging
63 -vpath=
64 comma-separated list of pattern=N settings for file pathname-filtered logging
Matt Rosencrantzbca49812015-03-01 21:32:54 -080065
Todd Wang11440452015-05-29 18:05:29 -070066Vrpc signature - Describe the interfaces of a Vanadium server
Matt Rosencrantzbca49812015-03-01 21:32:54 -080067
68Signature connects to the Vanadium server identified by <server>.
69
70If no [method] is provided, returns all interfaces implemented by the server.
71
72If a [method] is provided, returns the signature of just that method.
73
74Usage:
Asim Shankar1c448c52015-04-01 17:02:38 -070075 vrpc signature [flags] <server> [method]
Matt Rosencrantzbca49812015-03-01 21:32:54 -080076
77<server> identifies a Vanadium server. It can either be the object address of
78the server, or an object name that will be resolved to an end-point.
79
80[method] is the optional server method name.
81
Asim Shankar1c448c52015-04-01 17:02:38 -070082The vrpc signature flags are:
83 -insecure=false
84 If true, skip server authentication. This means that the client will reveal
85 its blessings to servers that it may not recognize.
Cosmos Nicolaou28343a22015-04-15 11:01:09 -070086 -show-reserved=false
87 if true, also show the signatures of reserved methods
Asim Shankar1c448c52015-04-01 17:02:38 -070088
Todd Wang11440452015-05-29 18:05:29 -070089Vrpc call - Call a method of a Vanadium server
Matt Rosencrantzbca49812015-03-01 21:32:54 -080090
91Call connects to the Vanadium server identified by <server> and calls the
92<method> with the given positional [args...], returning results on stdout.
93
94TODO(toddw): stdin is read for streaming arguments sent to the server. An EOF
95on stdin (e.g. via ^D) causes the send stream to be closed.
96
97Regardless of whether the call is streaming, the main goroutine blocks for
98streaming and positional results received from the server.
99
100All input arguments (both positional and streaming) are specified as VDL
101expressions, with commas separating multiple expressions. Positional arguments
102may also be specified as separate command-line arguments. Streaming arguments
103may also be specified as separate newline-terminated expressions.
104
105The method signature is always retrieved from the server as a first step. This
106makes it easier to input complex typed arguments, since the top-level type for
107each argument is implicit and doesn't need to be specified.
108
109Usage:
110 vrpc call <server> <method> [args...]
111
112<server> identifies a Vanadium server. It can either be the object address of
113the server, or an object name that will be resolved to an end-point.
114
115<method> is the server method to call.
116
117[args...] are the positional input arguments, specified as VDL expressions.
118
Todd Wang11440452015-05-29 18:05:29 -0700119Vrpc identify - Reveal blessings presented by a Vanadium server
Matt Rosencrantzbca49812015-03-01 21:32:54 -0800120
121Identify connects to the Vanadium server identified by <server> and dumps out
122the blessings presented by that server (and the subset of those that are
123considered valid by the principal running this tool) to standard output.
124
125Usage:
Asim Shankar1c448c52015-04-01 17:02:38 -0700126 vrpc identify [flags] <server>
Matt Rosencrantzbca49812015-03-01 21:32:54 -0800127
128<server> identifies a Vanadium server. It can either be the object address of
129the server, or an object name that will be resolved to an end-point.
130
Asim Shankar1c448c52015-04-01 17:02:38 -0700131The vrpc identify flags are:
132 -insecure=false
133 If true, skip server authentication. This means that the client will reveal
134 its blessings to servers that it may not recognize.
135
Todd Wang11440452015-05-29 18:05:29 -0700136Vrpc help - Display help for commands or topics
Matt Rosencrantzbca49812015-03-01 21:32:54 -0800137
138Help with no args displays the usage of the parent command.
139
140Help with args displays the usage of the specified sub-command or help topic.
141
142"help ..." recursively displays help for all commands and topics.
143
Matt Rosencrantzbca49812015-03-01 21:32:54 -0800144Usage:
145 vrpc help [flags] [command/topic ...]
146
147[command/topic ...] optionally identifies a specific sub-command or help topic.
148
149The vrpc help flags are:
Todd Wang1624bf92015-04-22 16:53:57 -0700150 -style=compact
151 The formatting style for help output:
152 compact - Good for compact cmdline output.
153 full - Good for cmdline output, shows all global flags.
154 godoc - Good for godoc processing.
155 Override the default by setting the CMDLINE_STYLE environment variable.
Todd Wang338f90c2015-05-07 19:42:46 -0700156 -width=<terminal width>
157 Format output to this target width in runes, or unlimited if width < 0.
158 Defaults to the terminal width if available. Override the default by setting
159 the CMDLINE_WIDTH environment variable.
Matt Rosencrantzbca49812015-03-01 21:32:54 -0800160*/
161package main