Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions | ![]() |
The QIODevice class is the base class of I/O devices. More...
#include <QIODevice>
Inherited by QBuffer, QFile, QSocket, and QSocketDevice.
Note: All the functions in this class are reentrant.
The QIODevice class is the base class of I/O devices.
An I/O device represents a medium that one can read bytes from and/or write bytes to. The QIODevice class is the abstract super-class of all such devices; classes such as QFile, QBuffer and QSocket inherit QIODevice, and implement virtual functions such as write() appropriately.
Although applications sometimes use QIODevice directly, it is usually better to use QTextStream and QDataStream which provide stream operations on any QIODevice subclass. QTextStream provides text-oriented stream functionality (for human-readable ASCII files, for example), whereas QDataStream deals with binary data in a totally platform-independent manner.
The public member functions in QIODevice roughly fall into two groups: the action functions and the state access functions. The most important action functions are:
There are also some other, less used, action functions:
The state access are all "get" functions. The QIODevice subclass calls setState() to update the state, and simple access functions tell the user of the device what the device's state is. Here are the settings, and their associated access functions:
QIODevice provides a QIOEngine which has the responsibility of doing actual reads and writes, and providing file information.
See also QDataStream, QTextStream, and QIOEngine.
The offset (device position) within the device.
QIODevice::ReadOnly | The device can only be read from. |
QIODevice::WriteOnly | The device can only be written to. |
QIODevice::ReadWrite | The device can be both read from and written to. |
QIODevice::Append | Data written to the device is appended to the end of existing data. |
QIODevice::Truncate | |
QIODevice::Translate | Translate line ending conventions. |
Constructs an I/O device.
Destroys the I/O device.
Returns the current I/O device position.
This is the position of the data read/write head of the I/O device.
See also size().
Returns true if the I/O device position is at the end of the input; otherwise returns false.
Closes the I/O device.
See also open().
Returns a human-readable description of an error that occurred on the device. The error described by the string corresponds to changes of QIODevice::status(). If the status is reset, the error string is also reset.
QFile file("address.dat"); if (!file.open(QIODevice::ReadOnly) { QMessageBox::critical(this, tr("Error"), tr("Could not open file for reading: %1") .arg(file.errorString())); return; }
See also resetStatus().
Returns the current I/O device flags setting.
The flags value is a logical OR of the mode flags and state flags.
Flushes the open I/O device.
Reads a single character from the I/O device.
Returns the character read, or -1 if the end of the I/O device has been reached.
See also putch() and ungetch().
Returns the QIOEngine that operates on the QIODevice backing store.
See also QIOEngine.
Returns true if the device is an asynchronous device; returns false if the device is a synchronous device.
This mode is currently not in use.
See also isSynchronous().
Returns true if the I/O device is a buffered device; returns false if the device is a raw device.
See also isRaw().
Returns true if the I/O device is a combined access (both direct and sequential) device; otherwise returns false.
This access method is currently not in use.
Returns true if the I/O device is a direct access device; returns false if the device is a sequential access device.
See also isSequentialAccess().
Returns true if the I/O device state is 0, i.e. the device is not open; otherwise returns false.
See also isOpen().
Returns true if the I/O device has been opened; otherwise returns false.
See also isInactive().
Returns true if the device is a raw device; otherwise returns false if the device is a buffered device.
See also isBuffered().
Returns true if the I/O device was opened in QIODevice::ReadWrite mode; otherwise returns false.
See also isReadable() and isWritable().
Returns true if the I/O device was opened in QIODevice::ReadOnly or QIODevice::ReadWrite mode; otherwise returns false.
See also isWritable() and isReadWrite().
Returns true if the device is a sequential access device; returns false if the device is a direct access device.
Operations involving size() and seek(int) are not valid on sequential devices.
See also isDirectAccess().
Returns true if the I/O device is a synchronous device; otherwise returns false.
See also isAsynchronous().
Returns true if the I/O device translates carriage return and linefeed characters; otherwise returns false.
A QFile is translated if it is opened with the QIODevice::Translate mode flag.
Returns true if the I/O device was opened in QIODevice::WriteOnly or QIODevice::ReadWrite mode; otherwise returns false.
See also isReadable() and isReadWrite().
Returns a value specifying the current operation mode. This is a selection of mode flags, combined using the logical OR operator.
See also OpenModes.
Opens the I/O device in the specified mode. Returns true if the device was successfully opened; otherwise returns false.
The mode parameter mode must be selection of the following flags, combined using the OR operator:
Mode flags | Meaning |
---|---|
QIODevice::Raw | specifies raw (unbuffered) file access. |
QIODevice::ReadOnly | opens a file in read-only mode. |
QIODevice::WriteOnly | opens a file in write-only mode. |
QIODevice::ReadWrite | opens a file in read/write mode. |
QIODevice::Append | sets the file index to the end of the file. |
QIODevice::Truncate | truncates the file. |
QIODevice::Translate | enables carriage returns and linefeed translation for text files under MS-DOS, Windows, and Mac OS X. On Unix systems this flag has no effect. Use with caution as it will also transform every linefeed written to the file into a CRLF pair. This is likely to corrupt your file if you write write binary data. Cannot be combined with QIODevice::Raw. |
See also close().
Writes the character to the I/O device.
Returns the character, or -1 if an error occurred.
See also getch() and ungetch().
This convenience function returns all of the remaining data in the device.
Reads a number of characters from the I/O device into data. At most, the maximum number of characters will be read.
Returns -1 if a fatal error occurs, or 0 if there are no bytes to read.
The device must be opened for reading, and data must not be 0.
This virtual function must be reimplemented by all subclasses.
See also writeBlock(), isOpen(), and isReadable().
Reads a single line (ending with \n) from the device into data. At most, the maximum number of bytes will be read. If there is a newline at the end if the line, it is not stripped. A terminating '\0' is appended to the characters read into data.
Returns the number of bytes read, including the terminating '\0'; returns -1 if an error occurred.
To ensure that your data buffer is large enough to contain the maximum number of characters read from the device, pass a value that is one character less than the size of your buffer.
For example, a buffer that is 1024 characters in length will be filled if the following call returns the maximum number of characters specified:
device->readLine(data, 1023);
This virtual function can be reimplemented much more efficiently by the most subclasses.
See also readBlock() and QTextStream::readLine().
Sets the device position to 0.
Sets the I/O device status to QIODevice::Ok.
See also status().
Used by subclasses to set the device flags.
See also OpenModes.
Returns the size of the I/O device.
See also at().
Returns a value specifying the current state. This is a selection of state values, combined using the OR operator.
The flags are: QIODevice::Open.
Subclasses may define additional flags.
Returns the I/O device status.
The I/O device status returns an error code. For example, if open() returns false, or a read/write operation returns -1, this function can be called to find out the reason why the operation failed.
The status codes are:
Status code | Meaning |
---|---|
QIODevice::Ok | The operation was successful. |
QIODevice::ReadError | Could not read from the device. |
QIODevice::WriteError | Could not write to the device. |
QIODevice::FatalError | A fatal unrecoverable error occurred. |
QIODevice::OpenError | Could not open the device. |
QIODevice::ConnectError | Could not connect to the device. |
QIODevice::AbortError | The operation was unexpectedly aborted. |
QIODevice::TimeOutError | The operation timed out. |
QIODevice::UnspecifiedError | An unspecified error happened on close. |
See also resetStatus().
Puts the character back into the I/O device, and decrements the index position if it is not zero.
This function is normally called to "undo" a getch() operation.
Returns character, or -1 if an error occurred.
Writes a number of characters from data to the I/O device. At most, the maximum of characters will be written. If successful, the number of characters written is returned; otherwise EOF is returned.
This function should return -1 if a fatal error occurs.
See also readBlock().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
This convenience function is the same as calling writeBlock( data.data(), data.size()).
Copyright © 2004 Trolltech. | Trademarks | Qt 4.0.0-tp1 |