informix
Informix DataBlade API Programmer's Manual
DataBlade API Function Descriptions

mi_lo_from_file()

The mi_lo_from_file() function copies the contents of an operating-system file on the server or client computer to a new smart large object.

Syntax

Usage

The mi_lo_from_file() function performs the following steps to create a new smart large object that LOhdl_dptr references and copy data from an operating-system file to a new smart large object:

  1. It creates an LO handle for the new smart large object and assigns a pointer to the handle to the argument that LOhdl_dptr references.
  2. If the *LOhdl_dptr argument is NULL, mi_lo_from_file() allocates a new LO handle for the new smart large object and assigns a pointer to this handle to *LOhdl_dptr. If *LOhdl_dptr is not NULL, mi_lo_from_file() assumes that you have already allocated an LO handle and uses the LOhdl_dptr argument to locate the LO handle for the new smart large object.

  3. It assigns the storage characteristics from the LO-specification structure, LO_spec, to the new smart large object.
  4. If the LO-specification structure has not been updated with storage characteristics (the associated fields are null), the mi_lo_from_file() function uses the system-specified storage characteristics.

    If the LO-specification structure was updated with storage characteristics, mi_lo_from_file() uses the storage characteristics that the LO-specification structure defines for the new smart large object.

  5. It opens the new smart large object in read/write access mode (MI_LO_RDWR).
  6. The mi_lo_from_file() function does not accept an open-mode flag for the smart large object as an argument. The flags argument specifies the open mode for the operating-system file.

  7. It copies the contents of the operating-system file whose name is in the fname_spec buffer into the new smart large object that *LOhdl_dptr references.
  8. The mi_lo_from_file() function opens the operating-system file in the mode that the flags argument indicates. In the fname_spec operating-system file, the mi_lo_from_file() function begins the read operation at the file offset that offset indicates and reads the number of bytes that amount specifies. The function writes the file data to the sbspace of the new smart large object.

  9. It returns an LO file descriptor that identifies the new smart large object.
  10. When the mi_lo_from_file() function is successful, it returns a valid LO file descriptor. When it completes, mi_lo_from_file() leaves the LO file position at the end of the smart large object. It does not reset the LO file position to the beginning of the smart large object.

    You can use this file descriptor to identify which smart large object to access in subsequent function calls, such as mi_lo_read() and mi_lo_write().

The mi_lo_from_file() function is a constructor function for the LO handle. It

The mi_lo_from_file() function allocates a new LO handle in the current memory duration.

The mi_lo_from_file() function can access the operating-system files on either the server or the client computer. The file-mode values for the flags argument indicate the location of the file to copy and the access mode of the source file. Valid values include the following file-mode constants.

File-Mode Constant Purpose
MI_O_EXCL Open the file only if fname_spec does not exist.
MI_O_TRUNC Zero out the input file before reading it.
MI_O_APPEND Allow appending to the end of the file. (This function does not write to the source file.)
MI_O_RDWR Open the file in read/write mode. (This function does not write to the source file.)
MI_O_RDONLY Open the file in read-only mode.
MI_O_TEXT Process the file as text (not binary).
MI_O_SERVER_FILE The fname_spec file is on the server computer.
MI_O_CLIENT_FILE The fname_spec file is on the client computer.

Important: The MI_O_TRUNC flag is valid but is not often useful in a DataBlade API module.

The default flags value is:

The mi_lo_from_file() function allows you to copy part of a file with the offset and amount parameters.

Return Values

MI_LO_FD is the LO file descriptor of the open smart large object that LOhdl_dptr references. The function also initializes the LO handle that LOhdl_dptr references.
MI_ERROR indicates that the function was not successful.

Related Topics

See the descriptions of the following functions: mi_lo_copy(), mi_lo_create(), mi_lo_expand(), mi_lo_spec_init(), mi_lo_from_file_by_lofd(), and mi_lo_to_file().

For more information, see Initializing an LO Handle and LO File Descriptor and Using Operating-System Files.


Informix DataBlade API Programmer's Manual, Version 9.2
Copyright © 1999, Informix Software, Inc. All rights reserved