Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge. Learn more →
Top 23 C++ Reflection Projects
-
Project mention: Focus: A simple and fast text editor written in Jai | news.ycombinator.com | 2023-09-02
https://pastebin.com/VPypiitk This is a very small experiment i did to learn the metaprogramming features. its an ECS library using the same model as entt (https://github.com/skypjack/entt). In 200 lines or so it does the equivalent of a few thousand lines of template heavy Cpp while compiling instantly and generating good debug code.
Some walkthrough:
Line 8 declares a SparseSet type as a fairly typical template. its just a struct with arrays of type T inside. Next lines implement getters/setters for this data structure
Line 46 Base_Registry things get interesting. This is a struct that holds a bunch of SparseSet of different types, and providers getters/setters for them by type. It uses code generation to do this. The initial #insert at the start of the class injects codegen that creates structure members from the type list the struct gets on its declaration. Note also how type-lists are a native structure in the lang, no need for variadics.
Line 99 i decide to do variadic style tail templates anyway for fun. I implement a function that takes a typelist and returns the tail, and the struct is created through recursion as one would do in cpp. Getters and setters for the View struct are also implemented through recursion
Line 143 has the for expansion. This is how you overload the for loop functionality to create custom iterators.
The rest of the code is just some basic test code that runs the thing.
-
Magic Enum C++
Static reflection for enums (to string, from string, iteration) for modern C++, work with any enum type without any macro or boilerplate code
Project mention: What C++ library do you wish existed but hasn’t been created yet? | /r/cpp | 2023-07-08I'm not sure this is quite what you're asking for, but this library has been super helpful to me in the past : https://github.com/Neargye/magic_enum
-
Onboard AI
Learn any GitHub repo in 59 seconds. Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.
-
-
Nameof C++
Nameof operator for modern C++, simply obtain the name of a variable, type, function, macro, and enum
-
I really like better_enums instead of magic_enums. There’s no limit on enum size with it: http://aantron.github.io/better-enums/
It was heavily used at a former employer of mine, so definitely a solid production-ready solution.
-
C++ has some reflection. You can checkout cista: https://github.com/felixguendling/cista
-
This single feature opens a world of new possiblities. For example, it makes implementing "getting the number of fields" trivial. Furthrmore, and much more importantly, it enables turning a struct into a tuple. Currently, this can only be done by enumerating cases (therefore it's not fully generic), as with Boost PFR. By the way, PFR greatly simplifies our codebases, especially for parts with serialization and/or reflection.
-
InfluxDB
Collect and Analyze Billions of Data Points in Real Time. Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
-
refl-cpp
Static reflection for C++17 (compile-time enumeration, attributes, proxies, overloads, template functions, metaprogramming).
Project mention: C++ Reflection for Component Serialization and Inspection | /r/gameenginedevs | 2023-03-04I’ve been using https://github.com/veselink1/refl-cpp for my recent project where i needed reflections, especially for serialization. Cant wait for c++48 and reflections in standard
-
Project mention: More helpful reflection in Glaze for GCC and Clang (MSVC please take note) | /r/cpp | 2023-11-29
Previously in the Glaze library, you would need to write out your key names along with the member object pointers. However, as of version 1.8.0, these key names are now optional. If the keys are not provided the member variable name will be reflected for serialization/deserialization. I'm even more excited about this reflection than the previously announced pure Clang reflection, because it works well with user customization and supports non-aggregate, non-default constructible, and non-constexpr types.
-
-
Project mention: Ask HN: What audio/sound-related OSS projects can I contribute to? | news.ycombinator.com | 2023-03-22
Happy to introduce you to https://ossia.io there are a lots of tasks open! You can check the projects for the general development axes: https://github.com/ossia/score/projects?query=is%3Aopen ; e.g. Audio, Musicality, Integrations, JACK & Linux integration (some are in Classic projects mode) all have audio-related tasks, some easy, some hard.
Creating new Avendish plug-ins (docs: https://celtera.github.io/avendish/) could also be fairly useful, here's a very basic example one: https://github.com/celtera/avendish/blob/main/examples/Advan...
-
alpaca
Serialization library written in C++17 - Pack C++ structs into a compact byte-array without any macros or boilerplate code (by p-ranav)
-
-
RareCpp is a C++17 macro-based header-only reflection library for GCC, Clang, and MSVC; including simple means for accessing members by index, looping, and packing members; annotating reflected members and classes; as well as the means to make adaptive structures for beautiful implementations of builders, mappers, white-boxers, and change-listeners .
-
-
-
-
https://github.com/wqking/metapp Need to register your struct to a wrapper manually.
-
-
-
Project mention: enum_name (yet another enum to/from string conversion utility >=C++11) | /r/cpp | 2023-03-19
-
Project mention: A basic reflection-like system for editing object fields in a C++ game engine | /r/cpp_questions | 2023-05-23
You can look at it here. If you want to know more about the implementation details, you can read about it here.
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
C++ Reflection related posts
- Rooting for P1061 "Structured Bindings can introduce a Pack"
- What C++ library do you wish existed but hasn’t been created yet?
- A basic reflection-like system for editing object fields in a C++ game engine
- enum_name (yet another enum to/from string conversion utility >=C++11)
- what is the best API for serialization?
- Behind the magic of magic_enum
- I implement a fast, macro-based namedtuple works under C++11
-
A note from our sponsor - InfluxDB
www.influxdata.com | 29 Nov 2023
Index
What are some of the best open-source Reflection projects in C++? This list will help you:
Project | Stars | |
---|---|---|
1 | entt | 8,923 |
2 | Magic Enum C++ | 4,058 |
3 | rttr | 2,841 |
4 | Nameof C++ | 1,821 |
5 | Better Enums | 1,519 |
6 | cista | 1,488 |
7 | pfr | 1,214 |
8 | refl-cpp | 955 |
9 | glaze | 629 |
10 | structopt | 442 |
11 | avendish | 391 |
12 | alpaca | 367 |
13 | Refureku | 189 |
14 | RareCpp | 106 |
15 | meta.hpp | 104 |
16 | serdepp | 84 |
17 | easy_reflection_cpp | 74 |
18 | metapp | 69 |
19 | pfr_non_boost | 47 |
20 | enum.hpp | 41 |
21 | enum_name | 15 |
22 | reflect | 13 |
23 | reflite | 9 |