Add --gen-absl-hash option to generate AbslHashValue for structs. (#8868)

This commit is contained in:
Derek Bailey
2025-12-19 11:49:50 -08:00
committed by GitHub
parent fb55e0c9de
commit 8cb53ccc95
15 changed files with 186 additions and 3 deletions

View File

@@ -572,8 +572,6 @@ if(FLATBUFFERS_BUILD_TESTS)
# Since flatsample has no sources, we have to explicitly set the linker lang. # Since flatsample has no sources, we have to explicitly set the linker lang.
set_target_properties(flatsample PROPERTIES LINKER_LANGUAGE CXX) set_target_properties(flatsample PROPERTIES LINKER_LANGUAGE CXX)
compile_schema_for_samples(samples/monster.fbs "${FLATC_OPT_COMP}")
target_link_libraries(flatsamplebinary PRIVATE $<BUILD_INTERFACE:ProjectConfig> flatsample) target_link_libraries(flatsamplebinary PRIVATE $<BUILD_INTERFACE:ProjectConfig> flatsample)
target_link_libraries(flatsampletext PRIVATE $<BUILD_INTERFACE:ProjectConfig> flatsample) target_link_libraries(flatsampletext PRIVATE $<BUILD_INTERFACE:ProjectConfig> flatsample)
target_link_libraries(flatsamplebfbs PRIVATE $<BUILD_INTERFACE:ProjectConfig> flatsample) target_link_libraries(flatsamplebfbs PRIVATE $<BUILD_INTERFACE:ProjectConfig> flatsample)

View File

@@ -664,6 +664,7 @@ struct IDLOptions {
bool generate_name_strings; bool generate_name_strings;
bool generate_object_based_api; bool generate_object_based_api;
bool gen_compare; bool gen_compare;
bool gen_absl_hash;
std::string cpp_object_api_pointer_type; std::string cpp_object_api_pointer_type;
std::string cpp_object_api_string_type; std::string cpp_object_api_string_type;
bool cpp_object_api_string_flexible_constructor; bool cpp_object_api_string_flexible_constructor;
@@ -818,6 +819,7 @@ struct IDLOptions {
generate_name_strings(false), generate_name_strings(false),
generate_object_based_api(false), generate_object_based_api(false),
gen_compare(false), gen_compare(false),
gen_absl_hash(false),
cpp_object_api_pointer_type("std::unique_ptr"), cpp_object_api_pointer_type("std::unique_ptr"),
cpp_object_api_string_flexible_constructor(false), cpp_object_api_string_flexible_constructor(false),
cpp_object_api_field_case_style(CaseStyle_Unchanged), cpp_object_api_field_case_style(CaseStyle_Unchanged),

View File

@@ -236,6 +236,10 @@ inline bool operator!=(const Vec3 &lhs, const Vec3 &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Vec3 &obj) {
return H::combine(std::move(h), obj.x(), obj.y(), obj.z());
}
struct MonsterT : public ::flatbuffers::NativeTable { struct MonsterT : public ::flatbuffers::NativeTable {
typedef Monster TableType; typedef Monster TableType;

View File

@@ -69,6 +69,7 @@ CS_OPTS = ["--csharp", "--cs-gen-json-serializer"]
CPP_OPTS = [ CPP_OPTS = [
"--cpp", "--cpp",
"--gen-compare", "--gen-compare",
"--gen-absl-hash",
] + (["--cpp-std", "c++0x"] if args.cpp_0x else []) ] + (["--cpp-std", "c++0x"] if args.cpp_0x else [])
CPP_17_OPTS = NO_INCL_OPTS + [ CPP_17_OPTS = NO_INCL_OPTS + [

View File

@@ -529,6 +529,8 @@ FlatCOptions FlatCompiler::ParseFromCommandLineArguments(int argc,
opts.generate_object_based_api = true; opts.generate_object_based_api = true;
} else if (arg == "--gen-compare") { } else if (arg == "--gen-compare") {
opts.gen_compare = true; opts.gen_compare = true;
} else if (arg == "--gen-absl-hash") {
opts.gen_absl_hash = true;
} else if (arg == "--cpp-include") { } else if (arg == "--cpp-include") {
if (++argi >= argc) Error("missing include following: " + arg, true); if (++argi >= argc) Error("missing include following: " + arg, true);
opts.cpp_includes.push_back(argv[argi]); opts.cpp_includes.push_back(argv[argi]);

View File

@@ -2311,6 +2311,34 @@ class CppGenerator : public BaseGenerator {
code_ += ""; code_ += "";
} }
void GenAbslHashValue(const StructDef& struct_def) {
code_ += "template <typename H>";
code_ += "inline H AbslHashValue(H h, const {{NATIVE_NAME}} &obj) {";
std::string combine_args;
for (const auto& field : struct_def.fields.vec) {
if (field->deprecated) {
continue;
}
if (IsArray(field->value.type)) {
const auto field_accessor = "obj." + Name(*field) + "()";
const auto& element_type = field->value.type.VectorType();
if (IsStruct(element_type)) {
code_ += " for (const auto* element : *" + field_accessor + ") {";
code_ += " h = H::combine(std::move(h), *element);";
code_ += " }";
} else {
code_ += " for (auto element : *" + field_accessor + ") {";
code_ += " h = H::combine(std::move(h), element);";
code_ += " }";
}
} else {
combine_args += ", obj." + Name(*field) + "()";
}
}
code_ += " return H::combine(std::move(h)" + combine_args + ");";
code_ += "}";
}
void GenOperatorNewDelete(const StructDef& struct_def) { void GenOperatorNewDelete(const StructDef& struct_def) {
if (auto native_custom_alloc = if (auto native_custom_alloc =
struct_def.attributes.Lookup("native_custom_alloc")) { struct_def.attributes.Lookup("native_custom_alloc")) {
@@ -4281,7 +4309,12 @@ class CppGenerator : public BaseGenerator {
code_.SetValue("STRUCT_BYTE_SIZE", NumToString(struct_def.bytesize)); code_.SetValue("STRUCT_BYTE_SIZE", NumToString(struct_def.bytesize));
code_ += "FLATBUFFERS_STRUCT_END({{STRUCT_NAME}}, {{STRUCT_BYTE_SIZE}});"; code_ += "FLATBUFFERS_STRUCT_END({{STRUCT_NAME}}, {{STRUCT_BYTE_SIZE}});";
if (opts_.gen_compare) GenCompareOperator(struct_def, "()"); if (opts_.gen_compare) {
GenCompareOperator(struct_def, "()");
}
if (opts_.gen_absl_hash) {
GenAbslHashValue(struct_def);
}
code_ += ""; code_ += "";
// Definition for type traits for this table type. This allows querying var- // Definition for type traits for this table type. This allows querying var-

View File

@@ -213,6 +213,7 @@ flatbuffer_cc_library(
include_test_args = [ include_test_args = [
"--gen-object-api", "--gen-object-api",
"--gen-compare", "--gen-compare",
"--gen-absl-hash",
"--gen-mutable", "--gen-mutable",
"--reflect-names", "--reflect-names",
"--cpp-ptr-type flatbuffers::unique_ptr", "--cpp-ptr-type flatbuffers::unique_ptr",

View File

@@ -145,6 +145,10 @@ inline bool operator!=(const Struct &lhs, const Struct &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Struct &obj) {
return H::combine(std::move(h), obj.a(), obj.b());
}
struct TableA FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { struct TableA FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table {
typedef TableABuilder Builder; typedef TableABuilder Builder;

View File

@@ -161,6 +161,10 @@ inline bool operator!=(const Struct &lhs, const Struct &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Struct &obj) {
return H::combine(std::move(h), obj.a(), obj.b());
}
struct TableA FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { struct TableA FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table {
typedef TableABuilder Builder; typedef TableABuilder Builder;

View File

@@ -712,6 +712,10 @@ inline bool operator!=(const Test &lhs, const Test &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Test &obj) {
return H::combine(std::move(h), obj.a(), obj.b());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) Vec3 FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) Vec3 FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -810,6 +814,10 @@ inline bool operator!=(const Vec3 &lhs, const Vec3 &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Vec3 &obj) {
return H::combine(std::move(h), obj.x(), obj.y(), obj.z(), obj.test1(), obj.test2(), obj.test3());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) Ability FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) Ability FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -859,6 +867,10 @@ inline bool operator!=(const Ability &lhs, const Ability &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Ability &obj) {
return H::combine(std::move(h), obj.id(), obj.distance());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructs FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructs FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -912,6 +924,10 @@ inline bool operator!=(const StructOfStructs &lhs, const StructOfStructs &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const StructOfStructs &obj) {
return H::combine(std::move(h), obj.a(), obj.b(), obj.c());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -945,6 +961,10 @@ inline bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStruct
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const StructOfStructsOfStructs &obj) {
return H::combine(std::move(h), obj.a());
}
} // namespace Example } // namespace Example

View File

@@ -709,6 +709,10 @@ inline bool operator!=(const Test &lhs, const Test &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Test &obj) {
return H::combine(std::move(h), obj.a(), obj.b());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) Vec3 FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) Vec3 FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -807,6 +811,10 @@ inline bool operator!=(const Vec3 &lhs, const Vec3 &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Vec3 &obj) {
return H::combine(std::move(h), obj.x(), obj.y(), obj.z(), obj.test1(), obj.test2(), obj.test3());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) Ability FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) Ability FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -856,6 +864,10 @@ inline bool operator!=(const Ability &lhs, const Ability &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Ability &obj) {
return H::combine(std::move(h), obj.id(), obj.distance());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructs FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructs FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -909,6 +921,10 @@ inline bool operator!=(const StructOfStructs &lhs, const StructOfStructs &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const StructOfStructs &obj) {
return H::combine(std::move(h), obj.a(), obj.b(), obj.c());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -942,6 +958,10 @@ inline bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStruct
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const StructOfStructsOfStructs &obj) {
return H::combine(std::move(h), obj.a());
}
} // namespace Example } // namespace Example

View File

@@ -709,6 +709,10 @@ inline bool operator!=(const Test &lhs, const Test &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Test &obj) {
return H::combine(std::move(h), obj.a(), obj.b());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) Vec3 FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) Vec3 FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -807,6 +811,10 @@ inline bool operator!=(const Vec3 &lhs, const Vec3 &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Vec3 &obj) {
return H::combine(std::move(h), obj.x(), obj.y(), obj.z(), obj.test1(), obj.test2(), obj.test3());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) Ability FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) Ability FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -856,6 +864,10 @@ inline bool operator!=(const Ability &lhs, const Ability &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Ability &obj) {
return H::combine(std::move(h), obj.id(), obj.distance());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructs FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructs FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -909,6 +921,10 @@ inline bool operator!=(const StructOfStructs &lhs, const StructOfStructs &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const StructOfStructs &obj) {
return H::combine(std::move(h), obj.a(), obj.b(), obj.c());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -942,6 +958,10 @@ inline bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStruct
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const StructOfStructsOfStructs &obj) {
return H::combine(std::move(h), obj.a());
}
} // namespace Example } // namespace Example

View File

@@ -709,6 +709,10 @@ inline bool operator!=(const Test &lhs, const Test &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Test &obj) {
return H::combine(std::move(h), obj.a(), obj.b());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) Vec3 FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) Vec3 FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -807,6 +811,10 @@ inline bool operator!=(const Vec3 &lhs, const Vec3 &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Vec3 &obj) {
return H::combine(std::move(h), obj.x(), obj.y(), obj.z(), obj.test1(), obj.test2(), obj.test3());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) Ability FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) Ability FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -856,6 +864,10 @@ inline bool operator!=(const Ability &lhs, const Ability &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Ability &obj) {
return H::combine(std::move(h), obj.id(), obj.distance());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructs FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructs FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -909,6 +921,10 @@ inline bool operator!=(const StructOfStructs &lhs, const StructOfStructs &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const StructOfStructs &obj) {
return H::combine(std::move(h), obj.a(), obj.b(), obj.c());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -942,6 +958,10 @@ inline bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStruct
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const StructOfStructsOfStructs &obj) {
return H::combine(std::move(h), obj.a());
}
} // namespace Example } // namespace Example

View File

@@ -26,6 +26,13 @@
#define INCLUDE_64_BIT_TESTS 1 #define INCLUDE_64_BIT_TESTS 1
#endif #endif
#if __has_include("third_party/absl/container/flat_hash_set.h")
#define HAS_ABSL_CONTAINERS 1
#endif
#ifdef HAS_ABSL_CONTAINERS
#include "third_party/absl/container/flat_hash_set.h"
#endif
#include "alignment_test.h" #include "alignment_test.h"
#include "evolution_test.h" #include "evolution_test.h"
#include "flatbuffers/flatbuffers.h" #include "flatbuffers/flatbuffers.h"
@@ -1665,6 +1672,40 @@ void UnionUnderlyingTypeTest() {
TEST_ASSERT(unpacked.test_vector_of_union == buffer.test_vector_of_union); TEST_ASSERT(unpacked.test_vector_of_union == buffer.test_vector_of_union);
} }
void StructsInHashTableTest() {
#if defined(HAS_ABSL_CONTAINERS) && (!defined(_MSC_VER) || _MSC_VER >= 1700)
absl::flat_hash_set<ArrayStruct> hash_set;
ArrayStruct array_struct_1;
array_struct_1.mutate_a(0.4);
for (int i = 0; i < array_struct_1.b()->size(); ++i) {
array_struct_1.mutable_b()->Mutate(i, i * 2);
}
for (int i = 0; i < array_struct_1.d()->size(); ++i) {
NestedStruct nested_struct;
nested_struct.mutable_a()->Mutate(0, i * 3);
array_struct_1.mutable_d()->Mutate(i, nested_struct);
}
ArrayStruct array_struct_2;
array_struct_2.mutate_e(999);
hash_set.insert(array_struct_1);
hash_set.insert(array_struct_2);
TEST_EQ(hash_set.size(), 2);
TEST_ASSERT(hash_set.contains(array_struct_1));
TEST_ASSERT(hash_set.contains(array_struct_2));
ArrayStruct array_struct_3 = array_struct_1;
array_struct_3.mutable_b()->Mutate(0, 2);
TEST_ASSERT(!hash_set.contains(array_struct_3));
hash_set.insert(array_struct_3);
TEST_ASSERT(hash_set.contains(array_struct_3));
#endif // defined(HAS_ABSL_CONTAINERS) && (!defined(_MSC_VER) || _MSC_VER >=
// 1700)
}
static void Offset64Tests() { static void Offset64Tests() {
#if INCLUDE_64_BIT_TESTS #if INCLUDE_64_BIT_TESTS
Offset64Test(); Offset64Test();
@@ -1794,6 +1835,7 @@ int FlatBufferTests(const std::string& tests_data_path) {
EmbeddedSchemaAccess(); EmbeddedSchemaAccess();
Offset64Tests(); Offset64Tests();
UnionUnderlyingTypeTest(); UnionUnderlyingTypeTest();
StructsInHashTableTest();
return 0; return 0;
} }
} // namespace } // namespace

View File

@@ -384,6 +384,10 @@ inline bool operator!=(const Rapunzel &lhs, const Rapunzel &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const Rapunzel &obj) {
return H::combine(std::move(h), obj.hair_length());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) BookReader FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) BookReader FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -417,6 +421,10 @@ inline bool operator!=(const BookReader &lhs, const BookReader &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const BookReader &obj) {
return H::combine(std::move(h), obj.books_read());
}
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) FallingTub FLATBUFFERS_FINAL_CLASS { FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) FallingTub FLATBUFFERS_FINAL_CLASS {
private: private:
@@ -450,6 +458,10 @@ inline bool operator!=(const FallingTub &lhs, const FallingTub &rhs) {
return !(lhs == rhs); return !(lhs == rhs);
} }
template <typename H>
inline H AbslHashValue(H h, const FallingTub &obj) {
return H::combine(std::move(h), obj.weight());
}
struct AttackerT : public ::flatbuffers::NativeTable { struct AttackerT : public ::flatbuffers::NativeTable {
typedef Attacker TableType; typedef Attacker TableType;