Jiri Simsa | 3f4e92d | 2015-03-24 21:26:37 -0700 | [diff] [blame] | 1 | // 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 Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 5 | // This file was auto-generated via go generate. |
| 6 | // DO NOT UPDATE MANUALLY |
| 7 | |
| 8 | /* |
Todd Wang | 6ed3b6c | 2015-04-08 14:37:04 -0700 | [diff] [blame] | 9 | Command vrpc sends and receives Vanadium remote procedure calls. It is used as |
| 10 | a generic client to interact with any Vanadium server. |
Matt Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 11 | |
| 12 | Usage: |
| 13 | vrpc <command> |
| 14 | |
| 15 | The 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 Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 20 | |
| 21 | The global flags are: |
Todd Wang | 1624bf9 | 2015-04-22 16:53:57 -0700 | [diff] [blame] | 22 | -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 Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 25 | -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 Simsa | 26f1c4d | 2015-08-09 17:49:40 -0700 | [diff] [blame] | 35 | -metadata=<just specify -metadata to activate> |
| 36 | Displays metadata for the program and exits. |
Matt Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 37 | -stderrthreshold=2 |
| 38 | logs at or above this threshold go to stderr |
| 39 | -v=0 |
| 40 | log level for V logs |
Asim Shankar | f32d24d | 2015-04-01 16:34:26 -0700 | [diff] [blame] | 41 | -v23.credentials= |
| 42 | directory to use for storing security credentials |
| 43 | -v23.i18n-catalogue= |
| 44 | 18n catalogue files to load, comma separated |
Asim Shankar | f32d24d | 2015-04-01 16:34:26 -0700 | [diff] [blame] | 45 | -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 Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 61 | -vmodule= |
Cosmos Nicolaou | 6c36388 | 2015-06-02 11:51:27 -0700 | [diff] [blame] | 62 | 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 Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 65 | |
Todd Wang | 1144045 | 2015-05-29 18:05:29 -0700 | [diff] [blame] | 66 | Vrpc signature - Describe the interfaces of a Vanadium server |
Matt Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 67 | |
| 68 | Signature connects to the Vanadium server identified by <server>. |
| 69 | |
| 70 | If no [method] is provided, returns all interfaces implemented by the server. |
| 71 | |
| 72 | If a [method] is provided, returns the signature of just that method. |
| 73 | |
| 74 | Usage: |
Asim Shankar | 1c448c5 | 2015-04-01 17:02:38 -0700 | [diff] [blame] | 75 | vrpc signature [flags] <server> [method] |
Matt Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 76 | |
| 77 | <server> identifies a Vanadium server. It can either be the object address of |
| 78 | the server, or an object name that will be resolved to an end-point. |
| 79 | |
| 80 | [method] is the optional server method name. |
| 81 | |
Asim Shankar | 1c448c5 | 2015-04-01 17:02:38 -0700 | [diff] [blame] | 82 | The 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 Nicolaou | 28343a2 | 2015-04-15 11:01:09 -0700 | [diff] [blame] | 86 | -show-reserved=false |
| 87 | if true, also show the signatures of reserved methods |
Asim Shankar | 1c448c5 | 2015-04-01 17:02:38 -0700 | [diff] [blame] | 88 | |
Todd Wang | 1144045 | 2015-05-29 18:05:29 -0700 | [diff] [blame] | 89 | Vrpc call - Call a method of a Vanadium server |
Matt Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 90 | |
| 91 | Call connects to the Vanadium server identified by <server> and calls the |
| 92 | <method> with the given positional [args...], returning results on stdout. |
| 93 | |
| 94 | TODO(toddw): stdin is read for streaming arguments sent to the server. An EOF |
| 95 | on stdin (e.g. via ^D) causes the send stream to be closed. |
| 96 | |
| 97 | Regardless of whether the call is streaming, the main goroutine blocks for |
| 98 | streaming and positional results received from the server. |
| 99 | |
| 100 | All input arguments (both positional and streaming) are specified as VDL |
| 101 | expressions, with commas separating multiple expressions. Positional arguments |
| 102 | may also be specified as separate command-line arguments. Streaming arguments |
| 103 | may also be specified as separate newline-terminated expressions. |
| 104 | |
| 105 | The method signature is always retrieved from the server as a first step. This |
| 106 | makes it easier to input complex typed arguments, since the top-level type for |
| 107 | each argument is implicit and doesn't need to be specified. |
| 108 | |
| 109 | Usage: |
| 110 | vrpc call <server> <method> [args...] |
| 111 | |
| 112 | <server> identifies a Vanadium server. It can either be the object address of |
| 113 | the 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 Wang | 1144045 | 2015-05-29 18:05:29 -0700 | [diff] [blame] | 119 | Vrpc identify - Reveal blessings presented by a Vanadium server |
Matt Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 120 | |
| 121 | Identify connects to the Vanadium server identified by <server> and dumps out |
| 122 | the blessings presented by that server (and the subset of those that are |
| 123 | considered valid by the principal running this tool) to standard output. |
| 124 | |
| 125 | Usage: |
Asim Shankar | 1c448c5 | 2015-04-01 17:02:38 -0700 | [diff] [blame] | 126 | vrpc identify [flags] <server> |
Matt Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 127 | |
| 128 | <server> identifies a Vanadium server. It can either be the object address of |
| 129 | the server, or an object name that will be resolved to an end-point. |
| 130 | |
Asim Shankar | 1c448c5 | 2015-04-01 17:02:38 -0700 | [diff] [blame] | 131 | The 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 Wang | 1144045 | 2015-05-29 18:05:29 -0700 | [diff] [blame] | 136 | Vrpc help - Display help for commands or topics |
Matt Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 137 | |
| 138 | Help with no args displays the usage of the parent command. |
| 139 | |
| 140 | Help 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 Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 144 | Usage: |
| 145 | vrpc help [flags] [command/topic ...] |
| 146 | |
| 147 | [command/topic ...] optionally identifies a specific sub-command or help topic. |
| 148 | |
| 149 | The vrpc help flags are: |
Todd Wang | 1624bf9 | 2015-04-22 16:53:57 -0700 | [diff] [blame] | 150 | -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 Wang | 338f90c | 2015-05-07 19:42:46 -0700 | [diff] [blame] | 156 | -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 Rosencrantz | bca4981 | 2015-03-01 21:32:54 -0800 | [diff] [blame] | 160 | */ |
| 161 | package main |