vote up 3 vote down star
1

How do you check if a pointer is of a certain type?

Using sizeof is not sufficient.

I am trying to avoid putting id-numbers into my structs to identify their type. The assumption is that maybe gcc puts a struct definition somewhere in the process, and maps the definition to the allocated memory at a pointer. If this is true, I'd think there would be someway to check for a pointers type.

flag

76% accept rate
why would you want to avoid putting idnumbers in your structs ? – LB Jun 4 at 14:50
The compiler does all the type checking, then basically throws it all away in the generated code. Everything is more or less converted to addresses and offsets of addresses. It is also perfectly legal (though generally bad form) to cast one pointer type to another, completely unrelated, type. – Dolphin Jun 4 at 15:04
1  
You shouldn't need to embed the type information with the pointer; you should keep track of the information in the program, so when your function expects a pointer to integer, you do not pass it a pointer to a double, etc. And if you're using void pointers everywhere, then it is up to you to keep track of things, perhaps by using some convention (like type information field is first item in data structure) and then testing it. But that is harder work than keeping things straight in the first place. – Jonathan Leffler Jun 4 at 15:45

11 Answers

vote up 2 vote down check

Gcc does not put the structure definition anywhere in the runtime.

The way that sizeof works is not a runtime feature: is uses the compile-type typing of the pointer. You should find that the code that that the compiler generates for the program does not call any sizeof function: instead the machine code generated will have a literal value in place. The reason for the sizeof operator is to cater for the different sizes of datatypes between platforms, which is as much to do with compiler implementation as it is the machine the code is running on.

What the compiler normally does is imply the size from the type of the pointer. This can be illustrated by:

int main(int argc,char* argv[]) 
{
   struct f { int a; char b; } a;
   void *p = &a;

  printf("%d\n",sizeof(struct f));
  printf("%d\n",sizeof(*p));
}

The second value here illustrates that the size of what is pointed to by p is entirely derived from the type of p.

Equally the sizeof(*p) has important implications for pointer arithmetic. Is it is the amount that will be added to the pointer address when it is incremented.

link|flag
vote up 3 vote down

All of the answers posted here say "you can't." They're right. You can't.

But, and I hesitate to even mention it, there are games that can be played. These games are a bad idea. I do not recommend them in any situation.

What's the game? Stuffing steaky extra data bits into unused parts of the address, and stripping them out wherever you use the address.

So imagine you have pointers to a structure or class that's 32 bytes in size. If you make sure your memory allocations are aligned to a 32 byte address, (which is easy for dynamic allocations but trickier to guarantee for stack ones), the low order bits of the address will all be 0. This means there's 5 free bits at the bottom of the address, enough for you to put flags, ID numbers, status values, etc. The storage is free! Even if you have an odd structure size, virtually any C or C++ compiler and OS will always align every address to 4 bytes.

In 64 bits, you can usually find a significant number of free bits at the high end of addresses... very likely 16 free unused bits, waiting for you. This is OS dependent of course. And also a bad bad idea to consider. You like danger, don't you?

The two downsides are:

  1. You have to make sure to mask the values out before you try to dereference the pointer, or pass it to anything that may try. This makes ugly code.
  2. You are dancing beyond the edge of the unportability cliff of stupid dangers. This is like drinking a bottle of tequila and walking a frayed tightrope over hungry tigers. Nude.

Your fate if you follow my advice

There's so many ways that this will explode into bugs, crashes, and pain. Remember how I said that compilers align memory to at least 4 bytes? Well, that's true. Until you find a new OS that doesn't. And you're tiger food.

So don't do this.

But, that said, it is indeed a way to stuff a little extra info like a type number into every address. You may see this technique in every-byte-counts code, or Obfusicated C.

PS: Really, I mean it, don't do this. Even if you like tigers.

link|flag
1  
Guile (the Scheme implementation) uses something like this ( gnu.org/software/guile/… ) – Max Lybbert Jun 5 at 22:42
@max, great example! I think Emacs used to do it 15+ years ago too, and it was a huge pain to un-do when they needed to scale to modern memory sizes. – Arno Setagaya Jun 5 at 23:25
vote up 2 vote down

A way to avoid putting a ID member in your struct is to use polymorphism like :

typedef struct {
        char const *name;
        int id;
        /* ... */
} object_info_t;

typedef struct {
        object_info_t *info;
} object_t;

typedef struct {
        object_t object;
        int a;
} foo_t;

typedef struct {
        object_t object;
        int b;
} bar_t;

int object_get_id(object_t *object)
{
        return object->info->id;
}

Note you can augment object_info_t with function pointers and avoid checking ids altogether :

typedef struct {
        char const *name;
        int id;
        int (*do_something)(object_t *);
} object_info_t;

int object_do_something(object_t *self)
{
        return self->info->do_something(self);
}
link|flag
vote up 0 vote down

The C standard does not allow this directly. The C++ standard has some ability to do this (dynamic_cast and typeid).

typeof

GCC comes with a typeof operator that may be useful depending on what you're doing.

conditional operator

The conditional operator (the question mark and colon in expressions like x = y == 0 ? 1 : 0;) has some ability to tell you if two types can be coerced into a third type (that article is about C++, but the type safety of the conditional operator is the same in C). Its use is nonobvious to say the least.

Both of these techniques (typeof and the conditional operator) are limited to what information is available at compile time. That is, you can't pass a void* to a function and then use typeof to figure out the original type of the object the pointer points to inside that function (because such information isn't available inside that function at compile time).


Thinking more about this, GTK+ is written in C and has a system you may consider emulating. It looks like they use type IDs, but instead of putting the IDs in the struct, they use macros to look things up.

link|flag
typeof is compile time, so does not solve the problem. – andygavin Jun 25 at 12:05
vote up 1 vote down

May be You need Objective-C?

link|flag
vote up 11 vote down

"I am trying to avoid putting idnumbers into my structs to identify their type." Don't avoid that. If you really want to be able to check type, put a typeID as the first element of every struct. Your impulse was not a bad one.

link|flag
vote up 6 vote down

Pointer is the type. More generally, C doesn't provide the ability to do introspection. There's no programmatic way to determine the type of a variable.

link|flag
to be correct there is no built-in language feature. You could roll your own RTTI if you want to. C has all you need for that. – Nils Pipenbrinck Jun 4 at 14:46
what is a RTTI ? – LB Jun 4 at 14:48
@Nils: That's why I said "C doesn't provide..." The OP was looking for something built-in. – Michael Carman Jun 4 at 14:58
1  
@LB: It's a C++ language feature to grab information about types at runtime. Something like reflection in .NET, albeit with much less features. – Mehrdad Afshari Jun 4 at 14:59
1  
RTTI: Run Time Type Information – Binary Worrier Jun 4 at 15:16
show 1 more comment
vote up 1 vote down

There's nothing like this in C. A pointer is either of a specific type or it is void*. There's no function overloading or built-in runtime polymorphism like in C++. You can though do pseudo object oriented tricks using function pointers, like:


typedef void (*cmd_func)( int );
struct command
{
    int      arg;
    cmd_func action;
};
link|flag
vote up 2 vote down

You can't do that in C. Actually the C++ compiler does something like what you want (storing information about the type of a class to the allocated memory). In C you have no classes, but only structs, which contain no overheads whatsoever.

link|flag
Even in C++ this is stored only for polymorphic classes (classes with virtual functions). In other cases compile time information needs to be used. – Suma Jun 5 at 15:56
vote up 4 vote down

No, there's no runtime type information anywhere.

You should write your functions so that the function signature carries the type information and let the compiler check the types statically. For example void burp_foo(struct foo *thefoo) tells that the argument is a pointer to a struct foo. It is up to the caller to supply one. Of course, through type casting it is possible supply any pointer as pointing to a struct foo but then it's the caller's problem, not yours.

link|flag
vote up 30 vote down

You can't.

A pointer merely stores an address and nothing related to the contents of that address.

link|flag
Like Mehrdad said, C doesn't have ANY kind of runtime type information – wvdschel Jun 4 at 14:48

Your Answer

Get an OpenID
or

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