vote up 2 vote down star

Is it possible to implement RAII in pure C?

I assume it isn't possible in any sane way, but perhaps is it possible using some kind of dirty trick. Overloading the standard free function comes to mind or perhaps overwriting the return address on the stack so that when the function returns, it calls some other function that somehow releases resources? Or maybe with some setjmp/longjmp trick?

This is of a purely academic interest and I have no intention of actually writing such unportable and crazy code but I'm wondering if that is at all possible.

flag

60% accept rate
You can't simply overwrite the return address on the stack; you have to preserve the value on entry and then overwrite it with an alternative. Ugly, but possibly effective. Consider using arena-based memory allocation for memory. Otherwise, just be very careful (and worry about interrupts!). – Jonathan Leffler Dec 15 '08 at 15:37

5 Answers

vote up 7 vote down

This is inherent implementation dependent, since the Standard doesn't include such a possibility. For GCC, the cleanup attribute runs a function when a variable goes out of scope:

#include <stdio.h>

void scoped(int * pvariable) {
    printf("variable (%d) goes out of scope\n", *pvariable);
}

int main(void) {
    printf("before scope\n");
    {
        int watched __attribute__((cleanup (scoped)));
        watched = 42;
    }
    printf("after scope\n");
}

Prints:

before scope
variable (42) goes out of scope
after scope

See here

link|flag
This is way neater than I thought would be possible! – gooli Dec 15 '08 at 16:23
vote up 1 vote down

I'd opt for overwriting the return address on the stack. It'd work out as the most transparent. Replacing free will only work with heap-allocated "objects".

link|flag
vote up 1 vote down

Probably the easiest way is to use goto to jump to a label at the end of a function but that's probably too manual for the sort of thing you're looking at.

link|flag
vote up 0 vote down

Hey, you're trying to re-create CFront!

link|flag
Not exactly. Cfront was a compiler that took in C++ code and produced C code. I'm looking for ways to implement a specific idiom directly in C without a preliminary phase. – gooli Dec 15 '08 at 14:10
@gooli: But Cfront had to generate C code that was able to handle RAII because the C++ code it was working from required that. However, that said, there was a point at which Cfront ceased to be usable, and I believe that was when exceptions appeared on the scene. That may not matter to you. – Jonathan Leffler Dec 15 '08 at 15:35
@Jonathan: The generated code could just call the "constructors" and "destructors" at the beginning and the end of the relevant block. Since the code is automatically generated, there is no need for magic. – gooli Dec 15 '08 at 16:16
vote up 0 vote down

Have you looked at alloca()? It will free when an var leaves scope. But to use it effecticly the caller must always do the alloca before sending it to things... If you were implementing strdup, well, you can't use alloca.

link|flag

Your Answer

Get an OpenID
or

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