Understanding how Ada serializes a record - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T13:10:33Z http://stackoverflow.com/feeds/question/84677 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/84677/understanding-how-ada-serializes-a-record 2 Understanding how Ada serializes a record MOE37x3 http://stackoverflow.com/users/179 2008-09-17T15:43:50Z 2009-05-26T21:55:11Z <p>I would like to be able to predict what will be in the resulting binary when I call Write in Ada to serialize a record. Do you know where I can look this up?</p> <p>I have some legacy Ada software that produces a binary file by Write-ing a record, and I need to debug a C++ program that is supposed to write a compatible binary file. So, I would like to understand what rules Ada follows when it serializes a record, so that I can make sure that the C++ code will produce a functionally equivalent record.</p> http://stackoverflow.com/questions/84677/understanding-how-ada-serializes-a-record/84861#84861 1 Answer by Mike Dimmick for Understanding how Ada serializes a record Mike Dimmick http://stackoverflow.com/users/6970 2008-09-17T16:06:24Z 2008-09-17T16:06:24Z <p>The <a href="http://archive.adaic.com/standards/ada95.html" rel="nofollow">Ada95 Language Reference Manual</a> says (section 13.13.2):</p> <p>"For elementary types, the representation in terms of stream elements is implementation defined. For composite types, the Write or Read attribute for each component is called in a canonical order. The canonical order of components is last dimension varying fastest for an array, and positional aggregate order for a record."</p> http://stackoverflow.com/questions/84677/understanding-how-ada-serializes-a-record/84961#84961 3 Answer by Dan for Understanding how Ada serializes a record Dan http://stackoverflow.com/users/8040 2008-09-17T16:20:11Z 2008-09-17T16:20:11Z <p>Basically, the compiler will reorder the components of your record types, unless you use the pragma PACK or the pragma PRESERVE_LAYOUT commands with your record types. Also, the compiler will pad objects to maintain the alignment of record components. Components follow:</p> <p>Integer: 8, 16, or 32 bit twos-complement signed numbers</p> <p>Float: 32-bit IEEE format</p> <p>Long_Float: 64-bit IEEE format</p> <p>Fixed-Point: 8, 16, or 32 bit; however, the range and delta specified can affect being 16 or 32</p> <p>Enumerations: Integer, usually first element is represented by 0</p> <p>Booleans: Enumeration object, 8 bits long, The LSB stores the value: 0 = false, 1 = true</p> <p>Characters: Enumeration object, 8 bits long, unsigned 0 through 127 </p> <p>Access Types: 32 bits, 32-bit value of 0 represents NULL</p> <p>Arrays: stored contiguously in row-major order, size depends on base type. The array is padded to ensure all elements have the proper alignment for their types.</p> http://stackoverflow.com/questions/84677/understanding-how-ada-serializes-a-record/88280#88280 2 Answer by Greg Hewgill for Understanding how Ada serializes a record Greg Hewgill http://stackoverflow.com/users/893 2008-09-17T22:19:53Z 2008-09-17T22:19:53Z <p>As mentioned by others, without additional instruction the compiler will make its own decisions about record layout. The best approach would be to change the original code to write the record using a specific layout. In particular, the <a href="http://adahome.com/rm95/rm9x-13-05-01.html" rel="nofollow">record representation clause</a> allows the Ada programmer to specify exactly the physical layout for a record. In fact, you should check to see whether the original code has one of these for the type in question. If it does, then this would answer your question precisely.</p> http://stackoverflow.com/questions/84677/understanding-how-ada-serializes-a-record/319259#319259 2 Answer by Simon Wright for Understanding how Ada serializes a record Simon Wright http://stackoverflow.com/users/40851 2008-11-25T23:29:54Z 2009-05-26T21:55:11Z <p>The format of the serialised output of 'Write has <em>absolutely nothing</em> to do with representation clauses.</p> <p>By default, the compiler will output record components without alignment padding in the order in which they're written in the record declaration, using a translation scheme that isn't defined by the standard (so you may not get interoperability between compilers). GNAT (the GCC Ada compiler) outputs each component in a whole number of bytes.</p> <p>If you want to stream values of a type using some different format, you can override 'Write for the type. As an unusual example, you could stream to XML.</p>