How do you define the storable vector instance for a data type like below (composed from GHC primitive types):

data Atoms =  I GHC.Int.Int32|S GHC.Int.Int16 -- define a union data type

I checked this storable tutorial but it works only for vectors of same types, not union like above.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You have to encode which constructor you used to instantiate the type somehow.

You can for example add a byte that specifies the index of the constructor that was used. This means that the values above could be stored like this:

Haskell    Binary
I 3     -> 00 00 00 00 03
S 4     -> 01 00 04 XX XX
              ^ Data
           ^ Constructor index
XX = unused byte

Then, when you want to deserialize a value from a byte string, you peek the first byte, see which index it is, and choose the constructor to use (and what to peek off next) based on that.

link|improve this answer
This is very similar to how unions work in C – Chris Wong Dec 8 '11 at 23:47
@Chris: Seriously? I was under the impression that unions in C merely share the same memory. It's the programmer's responsibility to know what "instance" of a union to use. Many programmers do this manually using tagging technique like the one described in this answer. – trinithis Dec 9 '11 at 0:04
That's what I meant -- sorry I wasn't clear about that :) – Chris Wong Dec 9 '11 at 0:14
Honestly, I think that union data types aren't a natural fit for Storable at all. I would strongly urge you to just use normal boxed vectors. – Louis Wasserman Dec 9 '11 at 19:26
feedback

Your Answer

 
or
required, but never shown

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