| #include "aos/network/message_bridge_protocol.h" |
| |
| #include <string_view> |
| |
| #include "flatbuffers/flatbuffers.h" |
| |
| #include "aos/configuration.h" |
| #include "aos/flatbuffer_merge.h" |
| #include "aos/flatbuffers.h" |
| #include "aos/network/connect_generated.h" |
| |
| namespace aos::message_bridge { |
| |
| aos::FlatbufferDetachedBuffer<aos::message_bridge::Connect> MakeConnectMessage( |
| const Configuration *config, const Node *my_node, |
| std::string_view remote_name, const UUID &boot_uuid, |
| std::string_view config_sha256) { |
| CHECK(config->has_nodes()) << ": Config must have nodes to transfer."; |
| |
| flatbuffers::FlatBufferBuilder fbb; |
| fbb.ForceDefaults(true); |
| |
| flatbuffers::Offset<flatbuffers::String> boot_uuid_offset = |
| boot_uuid.PackString(&fbb); |
| |
| flatbuffers::Offset<Node> node_offset = |
| RecursiveCopyFlatBuffer<Node>(my_node, &fbb); |
| const std::string_view node_name = my_node->name()->string_view(); |
| |
| std::vector<flatbuffers::Offset<Channel>> channel_offsets; |
| for (const Channel *channel : *config->channels()) { |
| if (channel->has_destination_nodes()) { |
| for (const Connection *connection : *channel->destination_nodes()) { |
| if (connection->name()->string_view() == node_name && |
| channel->source_node()->string_view() == remote_name) { |
| // Remove the schema to save some space on the wire. |
| flatbuffers::Offset<flatbuffers::String> name_offset = |
| fbb.CreateSharedString(channel->name()->string_view()); |
| flatbuffers::Offset<flatbuffers::String> type_offset = |
| fbb.CreateSharedString(channel->type()->string_view()); |
| |
| // We only really care about name, type, and max size. |
| Channel::Builder channel_builder(fbb); |
| channel_builder.add_name(name_offset); |
| channel_builder.add_type(type_offset); |
| channel_offsets.emplace_back(channel_builder.Finish()); |
| } |
| } |
| } |
| } |
| |
| flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<Channel>>> |
| channels_offset = fbb.CreateVector(channel_offsets); |
| |
| flatbuffers::Offset<flatbuffers::String> config_sha256_offset = |
| fbb.CreateString(config_sha256); |
| |
| Connect::Builder connect_builder(fbb); |
| connect_builder.add_channels_to_transfer(channels_offset); |
| connect_builder.add_node(node_offset); |
| connect_builder.add_boot_uuid(boot_uuid_offset); |
| connect_builder.add_config_sha256(config_sha256_offset); |
| fbb.Finish(connect_builder.Finish()); |
| |
| return fbb.Release(); |
| } |
| |
| } // namespace aos::message_bridge |