#include <unistd.h> ssize_t read(int file_descriptor, void *buf, size_t nbyte);Service Program Name: QP0LLIB1
From the file or socket indicated by file_descriptor, the read() function reads nbyte bytes of input into the memory area indicated by buf. If nbyte is zero, read() returns a value of zero without attempting any other action.
If file_descriptor refers to a "regular file" (a stream file that can support positioning the file offset) or any other type of file on which the job can do an lseek() operation, read() begins reading at the file offset associated with file_descriptor. A successful read() changes the file offset by the number of bytes read.
If read() is successful and nbyte is greater than zero, the access time for the file is updated.
read() is not supported for directories.
If file_descriptor refers to a descriptor obtained using the open() function with O_TEXTDATA specified, the data is read from the file assuming it is in textual form. The maximum number of bytes on a single read that can be supported for text data is 2,147,483,408 (2GB - 240) bytes. The data is converted from the code page of the file to the code page of the application, job, or system as follows:
There are some important considerations when the file is open for text conversion and the CCSIDs involved are not strictly single-byte:
If O_TEXTDATA was not specified on the open(), the data is read from the file without conversion. The application is responsible for handling the data.
In the QSYS.LIB and independent ASP QSYS.LIB file systems, most end-of-file characters are symbolic; that is, they are stored outside the member. When reading:
See the Usage Notes for write()--Write to Descriptor.
When file_descriptor refers to a socket, the read() function reads from the socket identified by the socket descriptor.
When attempting to read from an empty pipe or FIFO:
No authorization is required.
If read() is not successful, errno usually indicates one of the following errors. Under some conditions, errno could indicate an error other than those listed here.
Error condition | Additional information |
---|---|
[EACCES] |
If you are accessing a remote file through the Network File System, update operations to file permissions at the server are not reflected at the client until updates to data that is stored locally by the Network File System take place. (Several options on the Add Mounted File System (ADDMFS) command determine the time between refresh operations of local data.) Access to a remote file may also fail due to different mappings of user IDs (UID) or group IDs (GID) on the local and remote systems. This may occur if file_descriptor refers to a socket and the socket is using a connection-oriented transport service, and a connect() was previously completed. The thread, however, does not have the appropriate privileges to the objects that were needed to establish a connection. For example, the connect() required the use of an APPC device that the thread was not authorized to. |
[EAGAIN] |
If file_descriptor refers to a pipe or FIFO that has its O_NONBLOCK flag set, this error occurs if the read() would have blocked the calling thread. |
[EBADF] | |
[EBADFID] | |
[EBUSY] | |
[EDAMAGE] | |
[EFAULT] | |
[EINTR] | |
[EINVAL] |
This may occur if file_descriptor refers to a socket that is using a connectionless transport service, is not a socket of type SOCK_RAW, and is not bound to an address. The file resides in a file system that does not support large files, and the starting offset of the file exceeds 2GB minus 2 bytes. |
[EIO] | |
[ENOMEM] | |
[ENOTAVAIL] | |
[ENOTSAFE] | |
[ENXIO] | |
[EOVERFLOW] |
The file is a regular file, nbyte is greater than 0, the starting offset is before the end-of-file, and the starting offset is greater than or equal to 2GB minus 2 bytes. |
[ERESTART] | |
[ESTALE] |
If you are accessing a remote file through the Network File System, the file may have been deleted at the server. |
[EUNKNOWN] |
When the descriptor refers to a socket, errno could indicate one of the following errors:
Error condition | Additional information |
---|---|
[ECONNABORTED] |
This error code indicates that the transport provider ended the connection abnormally because of one of the following:
|
[ECONNREFUSED] | |
[ECONNRESET] | |
[EINTR] | |
[ENOTCONN] |
This error code is returned only on sockets that use a connection-oriented transport service. |
[ETIMEDOUT] |
A non-blocking connect() was previously completed that resulted in the connection timing out. No connection is established. This error code is returned only on sockets that use a connection-oriented transport service. |
[EUNATCH] | |
[EWOULDBLOCK] |
If interaction with a file server is required to access the object, errno could indicate one of the following errors:
Error condition | Additional information |
---|---|
[EADDRNOTAVAIL] | |
[ECONNABORTED] | |
[ECONNREFUSED] | |
[ECONNRESET] | |
[EHOSTDOWN] | |
[EHOSTUNREACH] | |
[ENETDOWN] | |
[ENETRESET] | |
[ENETUNREACH] | |
[ESTALE] |
If you are accessing a remote file through the Network File System, the file may have been deleted at the server. |
[ETIMEDOUT] | |
[EUNATCH] |
The following messages may be sent from this function:
Message ID | Error Message Text |
---|---|
CPE3418 E | Possible APAR condition or hardware failure. |
CPF3CF2 E | Error(s) occurred during running of &1 API. |
CPF9872 E | Program or service program &1 in library &2 ended. Reason code &3. |
CPFA081 E | Unable to set return value or error code. |
CPFA0D4 E | File system error occurred. Error number &1. |
This function will fail with error code [ENOTSAFE] if the object on which this function is operation is a save file and multiple threads exist in the job.
This function will fail with error code [EIO] if the file specified is a save file and the file does not contain complete save file data.
The file access time for a database member is updated using the normal rules that apply to database files. At most, the access time is updated once per day.
If you previously used the integrated file system interface to manipulate a member that contains an end-of-file character, you should avoid using other interfaces (such as the Source Entry Utility or database reads and writes) to manipulate the member. If you use other interfaces after using the integrated file system interface, the end-of-file information will be lost.
The file access time is not updated on a read() operation.
When reading from files on volumes formatted in Universal Disk Format (UDF), byte locks on the range being read are ignored.
Local access to remote files through the Network File System may produce unexpected results due to conditions at the server. Once a file is open, subsequent requests to perform operations on the file can fail because file attributes are checked at the server on each request. If permissions on the file are made more restrictive at the server or the file is unlinked or made unavailable by the server for another client, your operation on an open file descriptor will fail when the local Network File System receives these updates. The local Network File System also impacts operations that retrieve file attributes. Recent changes at the server may not be available at your client yet, and old values may be returned from operations. (Several options on the Add Mounted File System (ADDMFS) command determine the time between refresh operations of local data.)
Reading and writing to files with the Network File System relies on byte-range locking to guarantee data integrity. To prevent data inconsistency, use the fcntl() API to get and release these locks.
The largest buffer size allowed is 16 megabytes. If a larger buffer is passed, the error EINVAL will be received.
See Code disclaimer information for information pertaining to code examples.
The following example opens a file and reads input:
#include <stdio.h> #include <unistd.h> #include <fcntl.h> main() { int ret, file_descriptor, rc; char buf[]="Test text"; if ((file_descriptor = creat("test.output", S_IWUSR))!= 0) perror("creat() error"); else { if (-1==(rc=write(file_descriptor, buf, sizof(buf)-1))) perror("write() error"); if (close(file_descriptor)!= 0) perror("close() error"); } if ((file_descriptor = open("test.output", O_RDONLY)) < 0) perror("open() error"); else { ret = read(file_descriptor, buf, sizeof(buf)-1)); buf[ret] = 0x00; printf("block read: \n<%s>\", buf); if (close(file_descriptor)!= 0) perror("close() error"); } if (unlink("test.output")!= 0) perror("unlink() error"); }
Output:
block read: <Test text>
Top | UNIX-Type APIs | APIs by category |