/* * Copyright 2019 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include #include #include #include #include #include "declarations.h" #include "struct_parser_generator.h" void parse_namespace(const std::string& root_namespace, const std::filesystem::path& input_file_relative_path, std::vector* token) { std::filesystem::path gen_namespace = root_namespace / input_file_relative_path; for (auto it = gen_namespace.begin(); it != gen_namespace.end(); ++it) { token->push_back(it->string()); } } void generate_namespace_open(const std::vector& token, std::ostream& output) { for (const auto& ns : token) { output << "namespace " << ns << " {" << std::endl; } } void generate_namespace_close(const std::vector& token, std::ostream& output) { for (auto it = token.rbegin(); it != token.rend(); ++it) { output << "} //namespace " << *it << std::endl; } } bool generate_cpp_headers_one_file(const Declarations& decls, bool generate_fuzzing, bool generate_tests, const std::filesystem::path& input_file, const std::filesystem::path& include_dir, const std::filesystem::path& out_dir, const std::string& root_namespace) { auto gen_relative_path = input_file.lexically_relative(include_dir).parent_path(); auto input_filename = input_file.filename().string().substr(0, input_file.filename().string().find(".pdl")); auto gen_path = out_dir / gen_relative_path; std::filesystem::create_directories(gen_path); auto gen_file = gen_path / (input_filename + ".h"); std::cout << "generating " << gen_file << std::endl; std::ofstream out_file; out_file.open(gen_file); if (!out_file.is_open()) { std::cerr << "can't open " << gen_file << std::endl; return false; } out_file << R"( #pragma once #include #include #include #include #include #include #include #include "packet/base_packet_builder.h" #include "packet/bit_inserter.h" #include "packet/custom_field_fixed_size_interface.h" #include "packet/iterator.h" #include "packet/packet_builder.h" #include "packet/packet_struct.h" #include "packet/packet_view.h" #include "packet/checksum_type_checker.h" #include "packet/custom_type_checker.h" #if __has_include() #include #ifndef ASSERT #define ASSERT(cond) bluetooth::log::assert_that(cond, #cond) #endif // !defined(ASSERT) #else #ifndef ASSERT #define ASSERT(cond) assert(cond) #endif // !defined(ASSERT) #endif // __has_include() )"; if (generate_fuzzing || generate_tests) { out_file << R"( #if defined(PACKET_FUZZ_TESTING) || defined(PACKET_TESTING) || defined(FUZZ_TARGET) #include "packet/raw_builder.h" #endif )"; } for (const auto& c : decls.type_defs_queue_) { if (c.second->GetDefinitionType() == TypeDef::Type::CUSTOM || c.second->GetDefinitionType() == TypeDef::Type::CHECKSUM) { ((CustomFieldDef*)c.second)->GenInclude(out_file); } } out_file << "\n\n"; std::vector namespace_list; parse_namespace(root_namespace, gen_relative_path, &namespace_list); generate_namespace_open(namespace_list, out_file); out_file << "\n\n"; for (const auto& c : decls.type_defs_queue_) { if (c.second->GetDefinitionType() == TypeDef::Type::CUSTOM || c.second->GetDefinitionType() == TypeDef::Type::CHECKSUM) { ((CustomFieldDef*)c.second)->GenUsing(out_file); } } out_file << R"( using ::bluetooth::packet::BasePacketBuilder; using ::bluetooth::packet::BitInserter; using ::bluetooth::packet::CustomFieldFixedSizeInterface; using ::bluetooth::packet::CustomTypeChecker; using ::bluetooth::packet::Iterator; using ::bluetooth::packet::kLittleEndian; using ::bluetooth::packet::PacketBuilder; using ::bluetooth::packet::PacketStruct; using ::bluetooth::packet::PacketView; using ::bluetooth::packet::parser::ChecksumTypeChecker; )"; if (generate_fuzzing || generate_tests) { out_file << R"( #if defined(PACKET_FUZZ_TESTING) || defined(PACKET_TESTING) || defined(FUZZ_TARGET) using ::bluetooth::packet::RawBuilder; #endif )"; } for (const auto& e : decls.type_defs_queue_) { if (e.second->GetDefinitionType() == TypeDef::Type::ENUM) { const auto* enum_def = static_cast(e.second); EnumGen gen(*enum_def); gen.GenDefinition(out_file); out_file << "\n\n"; } } for (const auto& e : decls.type_defs_queue_) { if (e.second->GetDefinitionType() == TypeDef::Type::ENUM) { const auto* enum_def = static_cast(e.second); EnumGen gen(*enum_def); gen.GenLogging(out_file); out_file << "\n\n"; } } for (const auto& ch : decls.type_defs_queue_) { if (ch.second->GetDefinitionType() == TypeDef::Type::CHECKSUM) { const auto* checksum_def = static_cast(ch.second); checksum_def->GenChecksumCheck(out_file); } } out_file << "\n/* Done ChecksumChecks */\n"; for (const auto& c : decls.type_defs_queue_) { if (c.second->GetDefinitionType() == TypeDef::Type::CUSTOM) { if (c.second->size_ == -1 /* Variable Size */) { const auto* custom_field_def = static_cast(c.second); custom_field_def->GenCustomFieldCheck(out_file, decls.is_little_endian); } else { // fixed size const auto* custom_field_def = static_cast(c.second); custom_field_def->GenFixedSizeCustomFieldCheck(out_file); } } } out_file << "\n"; for (auto& s : decls.type_defs_queue_) { if (s.second->GetDefinitionType() == TypeDef::Type::STRUCT) { const auto* struct_def = static_cast(s.second); struct_def->GenDefinition(out_file); out_file << "\n"; } } { StructParserGenerator spg(decls); spg.Generate(out_file); out_file << "\n\n"; } for (const auto& packet_def : decls.packet_defs_queue_) { packet_def.second->GenParserDefinition(out_file, generate_fuzzing, generate_tests); out_file << "\n\n"; } for (const auto& packet_def : decls.packet_defs_queue_) { packet_def.second->GenBuilderDefinition(out_file, generate_fuzzing, generate_tests); out_file << "\n\n"; } if (input_filename == "hci_packets") { out_file << "class Checker { public: static bool IsCommandStatusOpcode(OpCode op_code) {"; out_file << "switch (op_code) {"; std::set op_codes; for (const auto& packet_def : decls.packet_defs_queue_) { auto packet = packet_def.second; auto op_constraint = packet->parent_constraints_.find("op_code"); if (op_constraint == packet->parent_constraints_.end()) { auto constraint = packet->parent_constraints_.find("command_op_code"); if (constraint == packet->parent_constraints_.end()) { continue; } if (packet->HasAncestorNamed("CommandStatus")) { out_file << "case " << std::get(constraint->second) << ":"; op_codes.erase(std::get(constraint->second)); } if (packet->HasAncestorNamed("CommandComplete")) { op_codes.erase(std::get(constraint->second)); } } else { op_codes.insert(std::get(op_constraint->second)); } } bool unhandled_opcode = false; for (const auto& opcode : op_codes) { unhandled_opcode = true; std::cerr << "Opcode with no Status or Complete " << opcode << std::endl; } if (unhandled_opcode) { ERROR() << "At least one unhandled opcode"; } out_file << "return true; default: return false; }}};"; } generate_namespace_close(namespace_list, out_file); // Generate formatters for all enum declarations. std::string namespace_prefix; for (auto const& fragment : namespace_list) { namespace_prefix += fragment; namespace_prefix += "::"; } out_file << "#if __has_include()" << std::endl << "namespace std {" << std::endl; for (const auto& e : decls.type_defs_queue_) { if (e.second->GetDefinitionType() == TypeDef::Type::ENUM) { const auto* enum_def = static_cast(e.second); out_file << "template <>" << std::endl << "struct formatter<" << namespace_prefix << enum_def->name_ << ">" << " : enum_formatter<" << namespace_prefix << enum_def->name_ << "> {};" << std::endl; } } out_file << "} // namespace std" << std::endl << "#endif // __has_include()" << std::endl; out_file.close(); return true; } // Get the out_file shard at a symbol_count std::ofstream& get_out_file(size_t symbol_count, size_t symbol_total, std::vector* out_files) { auto symbols_per_shard = symbol_total / out_files->size(); auto file_index = std::min(symbol_count / symbols_per_shard, out_files->size() - 1); return out_files->at(file_index); }