Previous: Data Types and Host Representations Up: Data Types and Host Representations Next: VICAR Data Type Labels

VICAR File Representations

This section addresses how pixel data is stored in a VICAR file so it may be accessed by different machines, and the reasoning behind that decision.

Conversion among hosts would be greatly simplified if everything were stored in ASCII instead of in a binary representation. In fact, that is how the image labels are stored. However, that is terribly inefficient in both time and space for image data. Image data must be stored in a binary representation. The question is, which one?

A standard, canonical representation could be chosen, for example that everything must be stored in Sun format (which is big-endian, IEEE floating point). That would simplify the file format a little, but it would lead to very inefficient operation on other machines with different formats. If you were doing processing locally on a VAX, and every pixel had to be converted to Sun format every time it got read in or written out for every processing step, there wouldn't be enough coffee in the world to keep you awake while waiting! Besides, due to the huge quantity of existing images written in VAX format, the canonical representation would have to be VAX format, which is not desirable in the long run.

Since most processing is done locally on one machine, and transfers between machine architectures are comparatively less frequent, the solution is to use the native format of whatever machine you are running on, and to identify that machine in the image label. That way, local operations are done efficiently, and conversion is done only when switching machines.

Should the user be responsible for converting the data when moving to a different machine, or should it be automatic? In the first VICAR conversion, from the IBM to the VAX, the user was responsible for running a conversion program. This was reasonable at the time, since there was no direct connection between the machines, and data from the old format had to be read off tape. Since that is a manual operation, an extra manual step was acceptable.

In this port, however, the situation is very different. MIPL will have a heterogeneous operating environment, with many different computers and different data representations running simultaneously. It is quite likely that they will share the same disk farm over the network, so the same data is transparently available on all the machines. The user may not be aware of what machine the file was created on. Therefore, it is unreasonable to expect the user to do his/her own translations. It must be handled automatically, and be completely transparent to the user. The user may notice a slowdown if the conversion is being performed, but the operation will still take place as expected.

This places the burden of data format translation squarely on the shoulders of the programmers. Applications must be able to do data format translations automatically. In order to ease the burden somewhat, the following conventions have been adopted:

Applications shall be able to read files from any host representation.
Applications shall normally write files in the native host representation of the machine on which they are currently running.

Placing the burden only on the read side greatly simplifies the write side, while still ensuring that the translations will take place in all cases. Some special-purpose applications may choose to write in a non-native format on occasion; however, all applications must be able to read all formats, without exception.

The Run-Time Library relieves a large part of this burden. When the standard I/O routines are called ( x/ zvread and x/ zvwrit), the translations as stated above are performed automatically for the image data. The application merely calls x/ zvread and it receives the data in the native format, ready for processing. It calls x/ zvwrit, and the data is written out in the native format (which is what the buffer is in).

There are cases where applications will have to do their own conversion, however. The major ones are listed below.

In all cases the x/ zvtrans family of RTL routines should be used to do the translations. Do not attempt to write your own data format conversion routines, even if you think it's only byte-swapping. Although at the present time byte-swapping is the only integer conversion, this may not always be the case. Other integer representations exist, such as one's-complement and sign-magnitude, that cannot be translated by a simple byte swap. By having only one set of conversion routines, porting to a new platform with a different data format is easier. Plus, the translations are standardized, and thoroughly debugged. The x/ zvtrans routines are coded to be efficient, especially for simple byte-swapping, so there is no need to write your own.

rgd059@ipl.jpl.nasa.gov