I recently came across a rather interesting serialization approach that utilized the transparency (common undefined behavior among compilers?) of uninitialized variables for "efficient" deserialization.

Memory is allocated and assigned a predetermined value. Placement new is then used to instantiate a struct (for example a complex inplace data structure) "initializing" the uninitialized variables to the value of the underlying memory. (see code below)

Besides from being rather risky and possibly not a very agreeable coding convention... I was just wondering whether anyone had come across this method or more importantly -- what is it called?

class SomeClass {
public:
  SomeClass() {}

  int someInt;
};

int main(...) {
  int dummy = 42;

  int *pSomeClass = new (&dummy) SomeClass();
  cout << pSomeStruct->someInt << endl;
}

This will print out the number 42... neato!

link|improve this question
feedback

2 Answers

It's called "relying on UB" or, in laymen's terms, "foolishness".

link|improve this answer
I'm sure you are right, but where is the UB here? – David Heffernan Nov 1 '11 at 8:24
@David: pSomeClass::someInt is not initialised. – Lightness Races in Orbit Nov 1 '11 at 8:27
The layout of a struct and a class is well-defined though, or is it not? – David Heffernan Nov 1 '11 at 8:28
@DavidHeffernan: Padding, alignment... and I don't see what that has to do with it. – Lightness Races in Orbit Nov 1 '11 at 8:29
The first member is always at offset 0, as I understand things. I must admit I don't see why it wouldn't always be easier to initialize in the constructor. – David Heffernan Nov 1 '11 at 9:01
show 6 more comments
feedback

I have seen this done in eCos, an RTOS, to initialize some of their kernel objects.

As pointed out by Tomalak one of the draw-backs is no virtual functions allowed. They try to ensure that by testing for equal size sizeof(kernel object) == sizeof(variable used for initialization).

Their code although was way more complex using a C-struct to mimic the C++ class member variables for the c interface instead of using C functions to get/set the variables in the C++ class

Although the behaviour they went for there was the exact opposite, they used values from the C++ class, set in the constructor, to fill the memory from placement new.

I do not advise on doing this tho.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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