Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions

QIODevice Class Reference

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.

List of all members.

Public Types

Public Functions

Protected Functions


Detailed Description

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.


Member Type Documentation

typedef QIODevice::Offset

The offset (device position) within the device.

enum QIODevice::OpenModes

QIODevice::ReadOnlyThe device can only be read from.
QIODevice::WriteOnlyThe device can only be written to.
QIODevice::ReadWriteThe device can be both read from and written to.
QIODevice::AppendData written to the device is appended to the end of existing data.
QIODevice::Truncate 
QIODevice::TranslateTranslate line ending conventions.

Member Function Documentation

QIODevice::QIODevice ()

Constructs an I/O device.

QIODevice::~QIODevice ()   [virtual]

Destroys the I/O device.

Offset QIODevice::at () const

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().

bool QIODevice::atEnd () const

Returns true if the I/O device position is at the end of the input; otherwise returns false.

See also at() and size().

void QIODevice::close ()

Closes the I/O device.

See also open().

QString QIODevice::errorString () const

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().

int QIODevice::flags () const

Returns the current I/O device flags setting.

The flags value is a logical OR of the mode flags and state flags.

See also mode() and state().

void QIODevice::flush ()

Flushes the open I/O device.

int QIODevice::getch ()

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().

QIOEngine * QIODevice::ioEngine () const   [pure virtual]

Returns the QIOEngine that operates on the QIODevice backing store.

See also QIOEngine.

bool QIODevice::isAsynchronous () const

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().

bool QIODevice::isBuffered () const

Returns true if the I/O device is a buffered device; returns false if the device is a raw device.

See also isRaw().

bool QIODevice::isCombinedAccess () const

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.

bool QIODevice::isDirectAccess () const

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().

bool QIODevice::isInactive () const

Returns true if the I/O device state is 0, i.e. the device is not open; otherwise returns false.

See also isOpen().

bool QIODevice::isOpen () const

Returns true if the I/O device has been opened; otherwise returns false.

See also isInactive().

bool QIODevice::isRaw () const

Returns true if the device is a raw device; otherwise returns false if the device is a buffered device.

See also isBuffered().

bool QIODevice::isReadWrite () const

Returns true if the I/O device was opened in QIODevice::ReadWrite mode; otherwise returns false.

See also isReadable() and isWritable().

bool QIODevice::isReadable () const

Returns true if the I/O device was opened in QIODevice::ReadOnly or QIODevice::ReadWrite mode; otherwise returns false.

See also isWritable() and isReadWrite().

bool QIODevice::isSequentialAccess () const

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().

bool QIODevice::isSynchronous () const

Returns true if the I/O device is a synchronous device; otherwise returns false.

See also isAsynchronous().

bool QIODevice::isTranslated () const

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.

bool QIODevice::isWritable () const

Returns true if the I/O device was opened in QIODevice::WriteOnly or QIODevice::ReadWrite mode; otherwise returns false.

See also isReadable() and isReadWrite().

int QIODevice::mode () const

Returns a value specifying the current operation mode. This is a selection of mode flags, combined using the logical OR operator.

See also OpenModes.

bool QIODevice::open ( int mode )

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 flagsMeaning
QIODevice::Rawspecifies raw (unbuffered) file access.
QIODevice::ReadOnlyopens a file in read-only mode.
QIODevice::WriteOnlyopens a file in write-only mode.
QIODevice::ReadWriteopens a file in read/write mode.
QIODevice::Appendsets the file index to the end of the file.
QIODevice::Truncatetruncates the file.
QIODevice::Translateenables 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().

int QIODevice::putch ( int character )

Writes the character to the I/O device.

Returns the character, or -1 if an error occurred.

See also getch() and ungetch().

QByteArray QIODevice::readAll ()

This convenience function returns all of the remaining data in the device.

Q_LONG QIODevice::readBlock ( char * data, Q_LONG maximum )

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().

Q_LONG QIODevice::readLine ( char * data, Q_LONG maximum )

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().

bool QIODevice::reset ()

Sets the device position to 0.

See also at() and seek().

void QIODevice::resetStatus ()

Sets the I/O device status to QIODevice::Ok.

See also status().

bool QIODevice::seek ( Offset off )

void QIODevice::setFlags ( int flags )   [protected]

Used by subclasses to set the device flags.

See also OpenModes.

Offset QIODevice::size () const

Returns the size of the I/O device.

See also at().

int QIODevice::state () const

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.

int QIODevice::status () const

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 codeMeaning
QIODevice::OkThe operation was successful.
QIODevice::ReadErrorCould not read from the device.
QIODevice::WriteErrorCould not write to the device.
QIODevice::FatalErrorA fatal unrecoverable error occurred.
QIODevice::OpenErrorCould not open the device.
QIODevice::ConnectErrorCould not connect to the device.
QIODevice::AbortErrorThe operation was unexpectedly aborted.
QIODevice::TimeOutErrorThe operation timed out.
QIODevice::UnspecifiedErrorAn unspecified error happened on close.

See also resetStatus().

int QIODevice::ungetch ( int character )

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.

See also getch() and putch().

Q_LONG QIODevice::writeBlock ( const char * data, Q_LONG maximum )

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().

Q_LONG QIODevice::writeBlock ( const QByteArray & data )

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