Skip to content

99syl/miroir

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

miroir

miroir is a C++20 compile-time reflection library. It demonstrates how one can achieve reflection with ugly template tricks.

Notes

The API has still many room for improvement and new features, but I will probably not work on it anymore; since I'm fed up with "modern C++".

This is the last C++ project I did before I gave up on "modern C++". The amount of trash that I had to write to have a fairly usable reflection library that does not rely on macros is insane for a supposedly "modern" language. Also the few reflection proposals that I saw were overly complex and used weird new keywords and punctuation that my brains absolutely does not like.

This is the project that made me realise that I spent so many years of my life being unproductive trying to make things work because C++ metaprogramming is a mess.

Important Notes !!!

This library has never been tested on real-world big projects so I have absolutely no idea how it performs in those situations. If you have some metrics, feel free to submit it.

Usage

Generating type information:

#include <miroir.hpp>

struct point2d
{
    float x;
    float y;

    void add_x(float x);

    void add_y(float y);
    
    using type_info = miroir::type_info_builder<point2d>
        ::set_name<"point2d">
        
        ::add_field<&point2d::x, "x">
        ::add_field<&point2d::y, "y">

        ::add_method<&point2d::add_x, "add_x">
        ::add_method<&point2d::add_y, "add_y">
        
        ::result;
};

Fetching a field/method from a type:

#include <miroir.hpp>

int main()
{
    // Fetching field information.
    using x_field_info = miroir::get_field_info<point2d, "x">; 
    using y_field_info = miroir::get_field_info<point2d, "y">;

    // Fetching method information.
    using add_x_info = miroir::get_method_info<point2d, "add_x">;
    
    point2d p{10, 2};
    
    // Sets `x` member of `p` to 5.
    x_field_info::set(p, 5);
    
    // Sets `y` member of `p` to `x`.
    y_field_info::set(p, x_field_info::get(p));

    add_x_info::invoke(p, 2.5);
}

Iterating over every field/method from a type:

miroir::for_each_field<T>([]<typename FieldInfo>
{
    ...
});

The examples folder is also available to show some use-cases.

About

C++20 compile-time reflection library.

Topics

Resources

License

Stars

Watchers

Forks

Languages