vote up 2 vote down star

Given a text string containing a type name, is there some way to get the appropriate type itself?

I'm looking to do something like this:

type
  TSomeType<T> = class
    // yadda yadda
  end;

procedure DoSomething;
var
  obj : TObject;
begin
  o := TSomeType<GetTypeByName('integer')>.Create;
  // do stuff with obj
end;

I've looked at several RTTI explanations online and looked through the Delphi units and don't see what I'm looking for. Is this possible?

flag

60% accept rate
What kind of "stuff" do you expect you'd be able to do with the object you create? – Rob Kennedy Nov 3 at 17:08
Grab an interface from it. It's part of a persistence scheme. – TrespassersW Nov 3 at 17:48
Who says it has an interface you can "grab"? If you know enough about the type to know it implements a specific interface, you know enough not to need to do what your code snippet above does. – Ken White Nov 3 at 18:42
@Ken: Not necessarily. Generic types can implement non-generic interfaces. And they can descend from non-generic types. So, I could, by assigning the instance to an ancestor class, grab an interface from it without specifically knowing what the template type "T" is. Or even knowing about the generic type at all. – TrespassersW Nov 3 at 21:19

4 Answers

vote up 5 vote down check

No, generics are entirely compiletime.

link|flag
Well, crud. Looks like you're right. That shoots down a pretty cool idea I had. Thanks for the info. – TrespassersW Nov 3 at 17:58
Still curious if there's a way to get the type from the name, though. Even if I can't use it exactly the way I wanted. – TrespassersW Nov 3 at 17:59
vote up 5 vote down

You can always register your types into some sort of registry (managed by a string list or dictionary) and create a factory function to then return the appropriate object. Unfortunately you would have to know in advance what types you were going to need. Something similar to the Delphi functions RegisterClass and FindClass (in the classes unit). My thinking is to put the generic template type into the list directly.

An example of possible usage:

RegisterCustomType('Integer',TSomeType<Integer>);
RegisterCustomType('String',TSomeType<String>);

if FindCustomType('Integer') <> nil then
  O := FindCustomType('Integer').Create;

EDIT: Here is a specific simple implementation using a tDictionary from Generics.Collections to handle the registry storage...I'll leave extracting this into useful methods as a simple exercise for the reader.

var
  o : TObject;
begin
  TypeDict := TDictionary<String,TClass>.Create;
  TypeDict.Add('integer',TList<integer>);
  if TypeDict.ContainsKey('integer') then
    o := TypeDict.Items['integer'].Create;
  if Assigned(o) then
    ShowMessage(o.ClassName);
end;

Another EDIT: I was giving this some thought last night, and discovered another technique that you can merge into this concept. Interfaces. Here is a quick do nothing example, but can easily be extended:

TYPE
  ITest = interface
    ['{0DD03794-6713-47A0-BBE5-58F4719F494E}']
  end;

  TIntfList<t> = class(TList<T>,ITest)
  public
    function QueryInterface(const IID: TGUID; out Obj): HRESULT; stdcall;
    function _AddRef: Integer; stdcall;
    function _Release: Integer; stdcall;
  end;

procedure TForm1.Button7Click(Sender: TObject);
var
  o : TObject;
  fTestIntf : ITest;
begin
  TypeDict := TDictionary<String,TClass>.Create;
  TypeDict.Add('integer',TIntfList<integer>);
  if TypeDict.ContainsKey('integer') then
    o := TypeDict.Items['integer'].Create;
  if Assigned(o) and Supports(o,ITest,fTestIntf) then
    ShowMessage(o.ClassName);
end;

of course you would have to implement the QueryInterface, _AddRef and _Release methods and extend the interface to do something more useful.

link|flag
Thanks for this. That's pretty much exactly what I've been doing (got the idea from Delphi's TPersistent long ago). And your suggestion is what we'd come up with already (registering each template type) and that works OK. I was hoping for something more flexible and dynamic, but doesn't look like I'm going to get it. Thanks again. – TrespassersW Nov 3 at 20:55
This can easily be made both flexible and dynamic. The only thing you can't do is handle types you didn't plan for. – skamradt Nov 3 at 21:45
vote up 0 vote down

If you forget generics and basic types, the "RegisterClass" function would be helpful. But it doesn't work for generics or basic types.

link|flag
vote up 3 vote down

The new RTTI unit in Delphi 2010 has a way of retrieving types declared in the interface section of units. For any given type, represented by a TRttiType instance, the TRttiType.QualifiedName property returns a name that can be used with TRttiContext.FindType later to retrieve the type. The qualified name is the full unit name (including namespaces, if they exist), followed by a '.', followed by the full type name (including outer types if it nested).

So, you could retrieve a representation of the Integer type (in the form of a TRttiType) with context.FindType('System.Integer').

But this mechanism can't be used to retrieve instantiations of generic types that weren't instantiated at compile time; instantiation at runtime requires runtime code generation.

link|flag
Awesome! Thanks for the info. – TrespassersW Nov 4 at 16:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.