4// Toby Schneider <toby@gobysoft.org>
7// This file is part of the JaiaBot Project Binaries
8// ("The Jaia Binaries").
10// The Jaia Binaries are free software: you can redistribute them and/or modify
11// them under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 2 of the License, or
13// (at your option) any later version.
15// The Jaia Binaries are distributed in the hope that they will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
20// You should have received a copy of the GNU General Public License
21// along with the Jaia Binaries. If not, see <http://www.gnu.org/licenses/>.
25import "goby/middleware/protobuf/app_config.proto";
26import "goby/zeromq/protobuf/interprocess_config.proto";
27import "goby/middleware/protobuf/udp_config.proto";
28import "goby/middleware/protobuf/pty_config.proto";
29import "goby/middleware/protobuf/serial_config.proto";
30import "goby/middleware/protobuf/tcp_config.proto";
31import "jaiabot/messages/link.proto";
32import "jaiabot/messages/link_config.proto";
33import "goby/acomms/protobuf/buffer.proto";
35package jaiabot.config;
39 // required parameters for ApplicationBase3 class
40 optional goby.middleware.protobuf.AppConfig app = 1;
41 // required parameters for connecting to 'gobyd'
42 optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2;
46 repeated int32 id = 1;
48 optional ExpectedHubs expected_hubs = 18;
50 required jaiabot.protobuf.LinkAwareBufferConfig status_buffer = 11;
51 required jaiabot.protobuf.LinkAwareBufferConfig task_packet_buffer = 12;
52 required jaiabot.protobuf.LinkAwareBufferConfig engineering_status_buffer =
54 required goby.acomms.protobuf.DynamicBufferConfig hub2hub_buffer = 19;
56 optional int32 hub_id = 14 [default = 0];
57 optional int32 fleet_id = 15 [default = 0];
58 optional int32 health_report_timeout_seconds = 16 [default = 20];
60 message VirtualFleetData
62 // used by VirtualHub to shut down system after idle (no commands
63 // received) to avoid running up EC2 costs unexpectedly
64 required int32 shutdown_after_last_command_seconds = 1 [default = 3600];
65 // delay shutting down hub after this time since last BotStatus
67 required int32 hub_shutdown_delay_seconds = 2 [default = 300];
69 optional VirtualFleetData vfleet = 20;
72 required string data_offload_script = 30;
73 optional string log_staging_dir = 31 [default = "/var/log/jaiabot/staging"];
74 optional string log_offload_dir = 32
75 [default = "/var/log/jaiabot/bot_offload"];
76 optional int32 bot_start_ip = 33 [default = 100];
77 optional string class_b_network = 34 [default = "10.23"];
78 optional bool use_localhost_for_data_offload = 35 [default = false];
80 required string hub_gpsd_device = 40; // gpsd device for hub itself
84 required string gpsd_device = 1;
85 required int32 contact = 2;
86 optional bool use_cog = 3 [default = false];
88 repeated ContactGPS contact_gps =
89 41; // GPSD device feeds for contacts to
90 // send to vehicles (e.g., to trail, to avoid, etc.)
94 optional int32 bot_id = 1;
97 goby.middleware.protobuf.UDPPointToPointConfig udp = 2;
98 goby.middleware.protobuf.PTYConfig pty = 3;
99 goby.middleware.protobuf.SerialConfig serial = 4;
100 goby.middleware.protobuf.TCPClientConfig tcp_client = 5;
101 goby.middleware.protobuf.TCPServerConfig tcp_server = 6;
104 repeated BotToGPS bot_to_gps = 42; // feed BotStatus as pseudo-GPS message
105 // over various transport options
107 optional int32 contact_blackout_seconds = 43
108 [default = 2]; // don't send a contact update more often than this
110 required uint32 subnet_mask = 50;
111 repeated protobuf.Link link_to_subscribe_on =
112 51; // when subscribing to managed bots, use these links, otherwise
113 // wait for bots to subscribe first