2 import "goby/middleware/protobuf/app_config.proto";
3 import "goby/protobuf/option_extensions.proto";
5 package goby.apps.middleware.protobuf;
9 option (goby.msg).cfg.tool = {
15 optional goby.middleware.protobuf.AppConfig app = 1
16 [(goby.field) = { cfg { action: DEVELOPER } }];
21 help = 0 [(goby.ev).cfg = {
22 short_help_msg: "Print usage information",
23 full_help_msg: "Usage: \"goby help [action]\"\n"
24 "Provides detailed usage information on the provided action.\n"
25 "Example: \"goby help log\" provides help in the 'log' action\n"
27 "You can also override the help command line flag used by running, for example, \"goby help -hh log\" to pass \"-hh\" to \"goby log\" in order to show advanced command line options"
30 log = 1 [(goby.ev).cfg = {
31 short_help_msg: "Manage goby log files",
33 launch = 2 [(goby.ev).cfg = {
34 short_help_msg: "Launch goby *.launch files",
35 external_command: "goby_launch"
36 include_binary_flag: false
39 // middleware/transport
40 zeromq = 10 [(goby.ev).cfg = {
41 short_help_msg: "Interact with ZeroMQ Goby pub/sub",
42 external_command: "goby_zeromq_tool"
45 // middleware/marshalling
46 protobuf = 20 [(goby.ev).cfg = {
47 short_help_msg: "Tools for the Google Protocol Buffers (protobuf) marshalling scheme"
50 optional Action action = 2 [
53 description: "The action this tool should take [can omit --action if 1st parameter]",
54 cfg { position: { enable: true }, cli_short: "A", action: HIDDEN }