Tagged Questions

RTTI stands for Run-Time Type Information, the ability of the system to report on the dynamic type of an object.

learn more… | top users | synonyms

29
votes
6answers
2k views

Why should I care about RTTI in Delphi?

I've heard a lot about the new/improved RTTI capabilities of Delphi 2010, but I must admit my ignorance...I don't understand it. I know every version of Delphi has supported RTTI...and I know that ...
18
votes
9answers
5k views

How expensive is RTTI?

I understand that there is a resource hit from using RTTI, but how big is it? Everywhere I've looked just says that "RTTI is expensive," but none of them actually give any benchmarks or quantitative ...
17
votes
4answers
1k views

What can make C++ RTTI undesirable?

Looking at the LLVM documentation, they mention that they use "a custom form of RTTI", and this is the reason they have isa<>, cast<> and dyn_cast<> templated functions. Usually, ...
16
votes
10answers
9k views

C++ RTTI Viable Examples

I am familiar with C++ RTTI, and find the concept interesting. Still there exist a lot of more ways to abuse it than to use it correctly (the RTTI-switch dread comes to mind). As a developer, I found ...
15
votes
4answers
321 views

Removing namespace from type name C++

In C++, when we use typeid to get type name of an object or class, it will show a decorated(mangled) string. I use cxxabi to demangle it: #include <cstdlib> #include <iostream> #include ...
15
votes
3answers
1k views

When can compiling c++ without RTTI cause problems?

I'm using gcc's -fno-rtti flag to compile my C++ without runtime type information. Assuming I'm not using dynamic_cast<> or typeid(), is there anything that could lead me to later problems?
14
votes
2answers
275 views

Is there a way to update a field in a record knowing the field name and value

Given a Record: MyRecord = record Company: string; Address: string; NumberOfEmplyees: integer; can you write a function call like function UpdateField(var FieldName: string; ...
14
votes
6answers
4k views

activate RTTI in c++

Can anybody tell me how to activate RTTI in c++ when working on unix. I heard that it can be disabled and enabled. on my unix environment,how could i check whether RTTI is enabled or disabled? I am ...
13
votes
4answers
592 views

RTTI Overhead in C++

What are the memory/performance overheads of enabling RTTI in a C++ program? Can anyone please throw some light between the internal implementation of RTTI mechanism and the relevant overheads? I do ...
13
votes
4answers
609 views

Delphi: Prevent method names from appearing in exe

I am writting some class, that is for handling security in my exe (checking serials, trial date check etc). After I compile exe even in Release build with all debug and RTTI generation turned off, ...
12
votes
1answer
163 views

How can I distinguish TDateTime properties from Double properties with RTTI?

Using the RTTI system in Delphi 2010, is there any way to find out if a property is a TDateTime? It's currently treating it as a double whenever I call back asVariant and also if I check the property ...
12
votes
2answers
911 views

Practical usage for Delphi's new RTTI - Attributes,Values

I found great explanation about the new RTTI in Delphi,but I don't understand one important thing about all I have read - Where can I use that? What is it supposed to replace?
11
votes
4answers
241 views

Using RTTI to determine inheritance graph in C++?

What, if any, c++ constructs are there for listing the ancestors of a class at runtime? Basically, I have a class which stores a pointer to any object, including possibly a primitive type (somewhat ...
10
votes
4answers
478 views

Why is std::type_info polymorphic?

Is there a reason why std::type_info is specified to be polymorphic? The destructor is specified to be virtual (and there's a comment to the effect of "so that it's polymorphic" in The Design and ...
10
votes
6answers
1k views

Delphi 2010 RTTI : Explore Enumerations

Considering such an enumeration : type TTypeOfData = ( [XmlName('ABC')] todABC, [XmlName('DEF')] todDEF, [XmlName('GHI')] todGHI ); Where XmlName is a custom attribute used to ...
9
votes
2answers
141 views

Can RTTI interrogate types from project code at designtime?

I would like to use RTTI to examine the types contained within project source files at designtime rather than runtime. To the best of my knowledge this is unsupported but the discussion in the ...
8
votes
3answers
245 views

Numeric unique identifier of a class via typeid

The typeid operator in C++ returns an object of class std::type_info which can yield its textual name. However, I'm just interested in getting an unique numeric identifier for any polymorphic class. ...
8
votes
4answers
489 views

C++: emulating RTTI

I've got a class hierarchy as this one: class A { } // class AA : A { } // A class AAA : AA { } // ...
8
votes
5answers
1k views

dynamic_cast from “void *”

According to this, void* has no RTTI information, therefore casting from void* is not legal and it make sense. If I remember correctly, dynamic_cast from void* was working on gcc. Can you please ...
8
votes
6answers
2k views

C++ - downcasting a diamond shape inherited object without RTTI/dynamic_cast

I'm currently working on integrating a third-party package that uses lots of RTTI stuff on a non-RTTI platform (Android). Basically, I did my own RTTI implementation but I'm stuck on a problem. The ...
8
votes
1answer
603 views

How to create an instance of object with RTTI in Delphi 2010?

As we all known, when we call a constructor of a class like this: instance := TSomeClass.Create; The Delphi compiler actually do the following things: Call the static NewInstance method to ...
8
votes
7answers
1k views

What is the best way to serialize Delphi application configuration?

I will answer this question myself, but feel free to provide your answers if you are faster than me or if you don't like my solution. I just came up with this idea and would like to have some opinions ...
7
votes
3answers
209 views

Creating an interface implementer instance at runtime

First, a little explanation about my situation: I have a sample interface which is implemented by different classes, and these classes might not always have a shared ancestor: IMyInterface = ...
7
votes
1answer
287 views

How to use SuperObject to invoke methods that uses an Object as parameter in Delphi?

We can use the SuperObject library to invoke methods of a certain object by its name and giving its parameters as a json string using the SOInvoker method like in this answer I'd like to know how do ...
7
votes
1answer
235 views

Enable Delphi XE RTTI only for some classes

I'm trying to have RTTI enabled only for a subset of my classes. The reason is that for those classes for which I want RTTI, I want RTTI on public methods too, but if that is enabled project-wide, ...
7
votes
2answers
573 views

Delphi 2010: whatever happened to TRTTIConstructor?

I've got two questions (of which at least one is regarding RTTI in D2010 and dynamic instancing) I was reading what appears to be the foils for a conference talk by Barry Kelly, and found on p. 13 ...
7
votes
7answers
4k views

What's a good way to serialize Delphi object tree to XML--using RTTI and not custom code?

What's a good way to serialize a Delphi object tree to XML--using RTTI and not custom code? I would have loved to find that this feature is already built into Delphi, but it doesn't seem to be. I've ...
7
votes
6answers
6k views

How bad is dynamic casting?

We often hear/read that one should avoid dynamic casting. I was wondering what would be 'good use' examples of it, according to you? Edit: @Sam: yes, I'm aware of that other thread: it is indeed ...
6
votes
1answer
121 views

How can I convert from generic to Variant in Delphi

I have a Delphi generic class that exposes a function with an argument of the generic type. Inside this function, I need to pass an instance of the generic type on to another object expecting a ...
6
votes
1answer
79 views

Is it possible to get the value of a GUID on an interface using RTTI?

If I have an interface such as: IPluginAPI = interface ['{590DFF0B-CA00-46CC-84B0-3848103D4C5A}'] function add (a : double; b : double) : double; function sub (a : double; b : double) : double; ...
6
votes
1answer
81 views

How to get the list of classes derived from a given class, with enhanced RTTI?

I need to get a list of form types, but only for types derived from a given base form. I use Delphi 2010 and enhanced RTTI to browse types My current code is: rc := TRTTIContext.Create; rtyps := ...
6
votes
1answer
95 views

Delphi: Get an attribue value of specific property

I have a class with published props which I serialize into XML. MyAttr = class(TCustomAttribute) private FName: string; public constructor Create(const Name: string); property Name: string read ...
6
votes
3answers
187 views

Accesing a strict private field using the RTTI

consider this simple code {$APPTYPE CONSOLE} uses Rtti, SysUtils; type {$M+} TFoo = class strict private class var Field1 : Integer; field2 : Integer; private field3 : ...
6
votes
3answers
266 views

Java polymorphism and downcasting

I am playing with Java's reflection API, and I'm writing methods that inspect a given object and describes its fields, methods, and so on. I am using the getFields() method to iterate on the ...
6
votes
4answers
160 views

Will multiple calls to typeid(T).name() return the same pointer?

In C++ I can use typeid operator to retrieve the name of any polymorphic class: const char* name = typeid( CMyClass ).name(); The string pointed to by the returned const char* will be available to ...
6
votes
1answer
1k views

How to use Delphi RTTI to get and set Record Values

I'm attempting to use the latest RTTI info to read and write objects to XML. So far I've been successful with integers, floats, strings, enumerated types, sets and classes but can't output or read ...
6
votes
5answers
151 views

Determining if a derived class overrides a method from a base class

class B { virtual int foo(); }; class D : public B { virtual int foo() { cout<<"D\n"; } }; int B::foo() { /* how do i tell if this->foo() is overridden by a subclass, or if it will */ ...
6
votes
3answers
252 views

What is the “identity pointer” before a TTypeInfo there for?

If you poke around enough in Delphi internals, you'll find something strange and apparently undocumented about TTypeInfo records generated by the compiler. If the PTypeInfo points to a TTypeInfo ...
6
votes
8answers
1k views

What's the difference between public and published class members in Delphi?

Please could someone explain me what's the difference between public and published class members in Delphi? I tried to look at Delphi help and I understand that these members have the same ...
6
votes
1answer
658 views

Enumerate all Delphi classes that implement a given interface?

With the new extended RTTI in Delphi 2010, can a Delphi application (at run time) build a list of all classes which implement a given interface?
6
votes
2answers
1k views

Why do I get “type has no typeinfo” error with an enum type

I have declared the following enum type in which I want the first member to have the ordinal value of 1 (one) rather than the usual 0 (zero): type TMyEnum = ( meFirstValue = 1, ...
6
votes
2answers
860 views

How do I access Delphi Array Properties using RTTI

I'm familiar with using Delphi RTTI to access "simple" properties (ints/enums/strings, etc) but I cannot grasp how to work with Array properties. I'm starting by looking for array equivalents for ...
6
votes
2answers
2k views

How to check if a Delphi class is declared abstract?

Is it possible in Delphi to use RTTI (or something else) to check if a class is declared as abstract? Something like: TMyAbstractClass = class abstract(TObject) // ... end; ... if ...
5
votes
2answers
234 views

How do I create a generic TValue for enumerated RTTI field?

In the question here a method for creating a compatible TValue to use with SetValue is shown. I'm trying to make a generic version of this, to use RTTI to store a class into an INI file. This is my ...
5
votes
3answers
235 views

How to assert what given method pointer uses stdcall calling convention?

In my library i'm invoking methods under specific conditions, which requires stdcall calling convention. Currently i'm using compiler static resolution, implemented as rather large list of well-known ...
5
votes
1answer
157 views

Delphi: Is it possible to enumerate all instances of a record (~typed constants) in the global namespace?

From the research I've done so far, I'm already guessing the answer is no but just to make sure... (also, this entry can be updated once support for this is available). The question title should ...
5
votes
2answers
446 views

Getting the Unit Name which belongs to any type (TRttiType)

I need to get the name of the unit (namespace) of any TRttiType. so far, I have tried the following. 1) using the PTypeData.UnitName, this solution works, but only when the TTypeKind is tkClass. ...
5
votes
4answers
501 views

Get the offset of a field in a delphi record at runtime

Given a record type: TItem = record UPC : string[20]; Price : Currency; Cost : Currency; ... end; And the name of a field as a string, how can I get the offset of that field within the ...
5
votes
10answers
436 views

Why doesn't C++ allow you to request a pointer to the most derived class?

(This question should probably be answered with a reference to Stroustrup.) It seems extremely useful to be able to request a pointer to the most derived class, as in the following: class Base { ... ...
5
votes
3answers
1k views

Rtti accessing fields and properties in complex data structures

As already discussed in Rtti data manipulation and consistency in Delphi 2010 a consistency between the original data and rtti values can be reached by accessing members by using a pair of TRttiField ...

1 2 3 4 5 6