CFile:ReadBswap


The ReadBswap method reads data from a binary file and swaps the byte order of the values. This method is useful for reading data from a file saved by a computer having a reversed byte ordering or for reading a particular file formats, like FITS format, that reverses the byte order. This method can read 1 value or a table of values of a specified data type. The number of values to read is given by nCount. If nCount is not specified, then 1 value is read. However, reading a character string is a special case, as described below. Also see the Read method for reading data using a normal byte order

Syntax

nValue = CFile:ReadBswap( sDataType )

sString = CFile:ReadBswap( "str", nCount* )

nTable = CFile:ReadBswap( sDataType, nCount )

 

Remarks

See Data Types for a description of the options for the sDataType parameter. The data type determines whether a value is returned as a number or a string:

Reading strings

Reading a "str" value is a special case in which multiple values (characters) are not returned as a lua table. In addition, a string may be self-terminated by a null character or you can specify the number of characters to read. If you do not specify the nCount value, then Mira reads the string until the first null-character is read, which indicates the end of the string. If nCount is specified, then nCount characters will be returned unless a null-character is encountered first. If you want to read just one character, use Read("str",1). Do not use ReadBswap("byte") to read 1 character, since that returns a numeric value rather than a character. Note that character strings do not have byte ordering issues, so both Read and the current method return the same result when reading string data.

Example

The following script shows how to read values from the beginning of a raw 2-dimensional data file. The number of columns and rows are stored as 32-bit integer values at the beginning of the file, followed by the data as 32-bit float values. Assume the file named sFileName exists:

local F = FileOpen( sFileName, "rb" )

-- open the file and create a CFile object

if F ~= nil then

-- file was opened successfully

  local nCols = F:ReadBswap("long")

-- read a 32-bit integer value

  local nRows = F:ReadBswap("long")

-- read a 32-bit integer value

  local t = F:ReadBswap("float", nCols*nRows)

-- read (nCols*nRows) values into a table

end

 

Related Topics

CFile Class, Read, WriteBswap