I'd like to be able to introspect a C++ class for its name, contents (i.e. members and their types) etc. I'm talking native C++ here, not managed C++, which has reflection. I realise C++ supplies some limited information using RTTI. Which additional libraries (or other techniques) could supply this information?
|
|
There are two kinds of
If you are rather looking for ways to accomplish 1), like looking how many methods a class has, or like getting the string representation of a class id, then i'm afraid there is no Standard C++ way of doing this. You have to use either
C++ is made with speed in mind. If you want high-level inspection, like C# or Java has, then I'm afraid i have to tell you there is no way without some effort. |
|||||||||||||||||||
|
|
And I would love a pony, but ponies aren't free. :-p http://en.wikibooks.org/wiki/C%2B%2B_Programming/RTTI is what you're going to get. Reflection like you're thinking about -- fully descriptive metadata available at runtime -- just doesn't exist for C++ by default. |
|||||||||||||||
|
This is simply wrong. Actually, the very term “RTTI” was coined by the C++ standard. On the other hand, RTTI doesn't go very far in implementing reflection. |
|||
|
|
|
The information does exist - but not in the format you need, and only if you export your classes. This works in Windows, I don't know about other platforms. Using the storage-class specifiers as in, for example:
This makes the compiler build the class definition data into the DLL/Exe. But it's not in a format that you can readily use for reflection. At my company we built a library that interprets this metadata, and allows you to reflect a class without inserting extra macros etc. into the class itself. It allows functions to be called as follows:
This effectively does:
The Invoke(this_pointer,...) function has variable arguments. Obviously by calling a function in this way you're circumventing things like const-safety and so on, so these aspects are implemented as runtime checks. I'm sure the syntax could be improved, and it only works on Win32 and Win64 so far. We've found it really useful for having automatic GUI interfaces to classes, creating properties in C++, streaming to and from XML and so on, and there's no need to derive from a specific base class. If there's enough demand maybe we could knock it into shape for release. |
||||
|
|
|
What are you trying to do with reflection?
|
|||
|
|
|
I would recommend using Qt. There is an open-source licence as well as a commercial licence. |
|||||||||||||
|
|
What you need to do is have the preprocessor generate reflection data about the fields. This data can be stored as nested classes. First, to make it easier and cleaner to write it in the preprocessor we will use typed expression. A typed expression is just an expression that puts the type in parenthesis. So instead of writing
Next, we define a
So using Boost.PP we iterate over each argument and generate the data like this:
What this does is generate a constant
Now to iterate over the fields we use the visitor pattern. We create an MPL range from 0 to the number of fields, and access the field data at that index. Then it passes the field data on to the user-provided visitor:
Now for the moment of truth we put it all together. Here is how we can define a
Here is a generalized
An example of using the
Which outputs:
And voila, we have just implemented reflection in C++, in under 100 lines of code. |
||||
|
|
|
You need to look at what you are trying to do, and if RTTI will satisfy your requirements. I've implemented by own pseudo-reflection for very specific purposed. One was to be able to flexibly configure what was output from a simulation. It required adding some boilerplate to the classes that would be output:
The first call adds this object to the filtering system, which calls the BuildMap() method to figure out what methods are available. Then in the config file, you can do something like this:
Through some template magic involving boost, this get translated into a series of method calls at runtime (when the config file is read), so its fairly efficient. I wouldn't recommend doing this unless you really need to, but when you do, you can do some really cool stuff. |
|||
|
|
|
I did something like what you're after once, and while it's possible to get some level of reflection and access to higher-level features, the maintenance headache might not be worth it. My system was used to keep the UI classes completely separated from the business logic through delegation akin to Objective-C's concept of message passing and forwarding. The way to do it is to create some base class that is capable of mapping symbols (I used a string pool but you could do it with enums if you prefer speed and compile-time error handling over total flexibility) to function pointers (actually not pure function pointers, but something similar to what Boost has with Boost.Function--which I didn't have access to at the time). You can do the same thing for your member variables as long as you have some common base class capable of representing any value. The entire system was an unabashed ripoff of Key-Value Coding and Delegation, with a few side effects that were perhaps worth the sheer amount of time necessary to get every class that used the system to match all of its methods and members up with legal calls: 1) Any class could call any method on any other class without having to include headers or write fake base classes so the interface could be predefined for the compiler; and 2) The getters and setters of the member variables were easy to make thread-safe because changing or accessing their values was always done through 2 methods in the base class of all objects. It also led to the possibility of doing some really weird things that otherwise aren't easy in C++. For example I could create an Array object that contained arbitrary items of any type, including itself, and create new arrays dynamically by passing a message to all array items and collecting the return values (similar to map in Lisp). Another was the implementation of key-value observing, whereby I was able to set up the UI to respond immediately to changes in the members of backend classes instead of constantly polling the data or unnecessarily redrawing the display. Maybe more interesting to you is the fact that you can also dump all methods and members defined for a class, and in string form no less. Downsides to the system that might discourage you from bothering: adding all of the messages and key-values is extremely tedious; it's slower than without any reflection; you'll grow to hate seeing As to how to implement something like this: just use shared and weak pointers to some common base (mine was very imaginatively called "Object") and derive for all the types you want to use. I'd recommend installing Boost.Function instead of doing it the way I did, which was with some custom crap and a ton of ugly macros to wrap the function pointer calls. Since everything is mapped, inspecting objects is just a matter of iterating through all of the keys. Since my classes were essentially as close to a direct ripoff of Cocoa as possible using only C++, if you want something like that then I'd suggest using the Cocoa documentation as a blueprint. |
|||
|
|
|
The two reflection-like solutions I know of from my C++ days are: 1) Use RTTI, which will provide a bootstrap for you to build your reflection-like behaviour, if you are able to get all your classes to derive from an 'object' base class. That class could provide some methods like GetMethod, GetBaseClass etc. As for how those methods work you will need to manually add some macros to decorate your types, which behind the scenes create metadata in the type to provide answers to GetMethods etc. 2) Another option, if you have access to the compiler objects is to use the DIA SDK. If I remember correctly this lets you open pdbs, which should contain metadata for your C++ types. It might be enough to do what you need. This page shows how you can get all base types of a class for example. Both these solution are a bit ugly though! There is nothing like a bit of C++ to make you appreciate the luxuries of C#. Good Luck. |
|||
|
|
I think you might find interesting the article "Using Templates for Reflection in C++" by Dominic Filion. It is in section 1.4 of Game Programming Gems 5. Unfortunately I dont have my copy with me, but look for it because I think it explains what you are asking for. |
|||
|
|
|
CAMP is a LGPL library that adds reflection to the C++ language using Boost. It doesn't require a specific preprocessing step in the compilation, but the binding has to be made manually. |
|||
|
|
|
This question is a bit old now (don't know why I keep hitting old questions today) but I was thinking about BOOST_FUSION_ADAPT_STRUCT which introduces compile-time reflection. It is up to you to map this to run-time reflection of course, and it won't be too easy, but it is possible in this direction, while it would not be in the reverse :) I really think a macro to encapsulate the |
|||||
|
|
C++ doesn't provide reflection, and it isn't easy to "simulate" it yourself as general rule as other answers have noted. Under "other techniques", if you don't have a language with reflection, get a tool that can extract the information you want. Our DMS Software Reengineering Toolkit is generalized compiler technology parameterized by explicit langauge definitions. It has langauge definitions for C, C++, Java, COBOL, PHP, ... For C, C++, Java and COBOL versions, it provides complete access to parse trees, and symbol table information. That symbol table information includes the kind of data you are likely to want from "reflection". If you goal is to enumerate some set of fields or methods and do something with them, DMS can be used to transform the code according to what you find in the symbol tables in arbitrary ways. |
|||
|
|
|
You can find another library here: http://www.garret.ru/cppreflection/docs/reflect.html It supports 2 ways: getting type information from debug information and let programmer to provide this information. I also interested in reflection for my project and found this library, i have not tried it yet, but tried other tools from this guy and i like how they work :-) |
|||
|
|
|
It looks like C++ still does not have this feature. And C++11 postponed reflection too (( Search some macros or make own. Qt also can help with reflection (if it can be used). |
|||
|
|
|
lack of built in reflection in C++ is the single reason why modern C++ is not used for web development (and lacks ORM and other frameworks) You can try http://www.extreme.indiana.edu/reflcpp/ |
|||
|
|
|
When I wanted reflection in C++ I read this article and improved upon what I saw there. Sorry, no can has. I don't own the result...but you can certainly get what I had and go from there. I am currently researching, when I feel like it, methods to use inherit_linearly to make the definition of reflectable types much easier. I've gotten fairly far in it actually but I still have a ways to go. The changes in C++0x are very likely to be a lot of help in this area. |
||||
|
|
|
Try to look at this project http://www.garret.ru/cppreflection/docs/reflect.html is added reflections to C++. It added meta data to the classes that you can then use. |
|||
|
|
|
Reflection is not supported by C++ out of the box. This is sad because it makes defensive testing a pain. There are several approaches to doing reflection:
The first link looks the most promising (uses mod's to clang), the second discusses a number of techniques, the third is a different approach using gcc: There is now a working group for C++ reflection. See the news for C++14 @ CERN: |
||||
|
|
|
Check out Classdesc http://classdesc.sf.net. It provides reflection in the form of class "descriptors", works with any standard C++ compiler (yes it is known to work with Visual Studio as well as GCC), and does not require source code annotation (although some pragmas exist to handle tricky situations). It has been in development for more than a decade, and used in a number of industrial scale projects. |
|||
|
|
even though reflection is not supported out-of-the-box in c++, it is not too hard to implement. I've encountered this great article: http://replicaisland.blogspot.co.il/2010/11/building-reflective-object-system-in-c.html the article explains in great detail how you can implement a pretty simple and rudimentary reflection system. granted its not the most wholesome solution, and there are rough edges left to be sorted out but for my needs it was sufficient. the bottom line - reflection can pay off if done correctly, and it is completely feasible in c++. |
|||
|
|
|
A simple way is to use de dynamic_cast<> operator which, when assigned to an wrong type, returns NULL, so you can upcast to a base concrete class in an easy way, checking the value of the pointer, if it is not NULL, the cast was done, and you got the type of the object. But this is just a simple solution, and it only provides the type of the objects, you cannot ask what methods it has, like in Java. If you need an advanced solution, there are some frameworks to choose from. |
|||
|
|
|
The information simply does not exist at runtime. You will have to devise the entire scheme yourself. Good luck with that. |
|||||||||
|
