readBin                 package:base                 R Documentation

_T_r_a_n_s_f_e_r _B_i_n_a_r_y _D_a_t_a _T_o _a_n_d _F_r_o_m _C_o_n_n_e_c_t_i_o_n_s

_D_e_s_c_r_i_p_t_i_o_n:

     Read binary data from a connection, or write binary data to a
     connection.

_U_s_a_g_e:

     readBin(con, what, n = 1, size = NA, endian = .Platform$endian)
     writeBin(object, con, size = NA, endian = .Platform$endian)

     readChar(con, nchars)
     writeChar(object, con, nchars = nchar(object), eos = "")

_A_r_g_u_m_e_n_t_s:

     con: A connection object or a character string.

    what: Either an object whose mode will give the mode of the vector
          to be read, or a character vector of length one describing
          the mode: one of `"numeric", "double", "integer", "int",
          "logical", "complex", "character"'.

       n: integer.  The (maximal) number of records to be read. You can
          use an over-estimate here, but not too large as storage is
          reserved for `n' items.

    size: integer.  The number of bytes per element in the byte stream.
           The default, `NA', uses the natural size.  Size changing is
          not supported for complex vectors.

  endian: The endian-ness (`"big"' or `"little"' of the target system
          for the file.  Using `"swap"' will force swapping
          endian-ness.

  object: An R object to be written to the connection.

  nchars: integer, giving the lengths of (unterminated) character
          strings to be read or written.

     eos: character. The terminator to be written after each string,
          followed by an ASCII `nul'; use `NULL' for no terminator at
          all.

_D_e_t_a_i_l_s:

     If the `con' is a character string, the functions call `file' to
     obtain an file connection which is opened for the duration of the
     function call.

     If the connection is open it is read/written from its current
     position. If it is not open, it is opened for the duration of the
     call and then closed again.

     If `size' is specified and not the natural size of the object,
     each element of the vector is coerced to an appropriate type
     before being written or as it is read.  Possible sizes are 1, 2, 4
     and possibly 8 for integer or logical vectors, and 4, 8 and
     possibly 12/16 for numeric vectors.  (Note that coercion occurs as
     signed types.) Changing sizes is unlikely to preserve `NA's, and
     the extended precision sizes are unlikely to be portable across
     platforms.

     `readBin' and `writeBin' read and write C-style zero-terminated
     character strings.  `readChar' and `writeChar' allow more
     flexibility, and can also be used on text-mode connections.

_V_a_l_u_e:

     For `readBin', a vector of appropriate mode and length the number
     of items read (which might be less than `n').

     For `readChar', a character vector of length the number of items
     read (which might be less than `length(nchars)').

     For `writeBin' and `writeChar', none.

_N_o_t_e:

     Integer read/writes of size 8 will be available if either C type
     `long' is of size 8 bytes or C type `long long' exists and is of
     size 8 bytes.

     Real read/writes of size `sizeof(long double)' (usually 12 or 16
     bytes) will be available only if that type is available and
     different from `double'.

     Note that as R character strings cannot contain ASCII `nul',
     strings read by `readChar' which contain such characters will
     appear to be shorted than requested, but the additional bytes are
     read from the file.

     If the character length requested for `readChar' is longer than
     the string, `nul'-padding is used.

_S_e_e _A_l_s_o:

     `connections', `readLines', `writeLines'.

     `.Machine' for the sizes of `long', `long long' and `long double'.

_E_x_a_m_p_l_e_s:

     zz <- file("testbin", "wb")
     writeBin(1:10, zz)
     writeBin(pi, zz, endian="swap")
     writeBin(pi, zz, size=4)
     writeBin(pi^2, zz, size=4, endian="swap")
     writeBin(pi+3i, zz)
     writeBin("A test of a connection", zz)
     z <- paste("A very long string", 1:100, collapse=" + ")
     writeBin(z, zz)
     if(.Machine$sizeof.long == 8 || .Machine$sizeof.longlong == 8)
         writeBin(as.integer(5^(1:10)), zz, size = 8)
     if((s <-.Machine$sizeof.longdouble) > 8) writeBin((pi/3)^(1:10), zz, size = s)
     close(zz)

     zz <- file("testbin", "rb")
     readBin(zz, integer(), 4)
     readBin(zz, integer(), 6)
     readBin(zz, numeric(), 1, endian="swap")
     readBin(zz, numeric(), size=4)
     readBin(zz, numeric(), size=4, endian="swap")
     readBin(zz, complex(), 1)
     readBin(zz, character(), 1)
     z2 <- readBin(zz, character(), 1)
     if(.Machine$sizeof.long == 8 || .Machine$sizeof.longlong == 8)
         readBin(zz, integer(), 10,  size = 8)
     if((s <-.Machine$sizeof.longdouble) > 8) readBin(zz, numeric(), 10, size = s)
     close(zz)
     unlink("testbin")
     stopifnot(z2 == z)

     ## test fixed-length strings
     zz <- file("testbin", "wb")
     x <- c("a", "this will be truncated", "abc")
     nc <- c(3, 10, 3)
     writeChar(x, zz, nc, eos=NULL)
     writeChar(x, zz, eos="\r\n")
     close(zz)

     zz <- file("testbin", "rb")
     readChar(zz, nc)
     readChar(zz, nchar(x)+3) # need to read the terminator explicitly
     close(zz)
     unlink("testbin")

