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 QSocket, QSocketDevice, QBuffer, QFile, and QAbstractSocket.

Note: All the functions in this class are reentrant.

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:

See also QDataStream and QTextStream.


Member Type Documentation

typedef QIODevice::Offset

The offset (device position) within the device.

enum QIODevice::OpenMode

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.

Q_LONGLONG QIODevice::at () const   [pure virtual]

Returns the current I/O device position.

This is the position of the data read/write head of the I/O device.

This virtual function must be reimplemented by all subclasses.

See also size().

bool QIODevice::atEnd () const   [virtual]

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 ()   [pure virtual]

Closes the I/O device.

This virtual function must be reimplemented by all subclasses.

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 ()   [virtual]

Flushes the open I/O device.

int QIODevice::getch ()   [virtual]

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

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   [pure virtual]

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 OpenMode.

bool QIODevice::open ( int mode )   [virtual]

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.

Some devices make less sense to use this entry point to open, for example connecting to a server in QSocketDevice. In this case the default implementation will return false indicating that the open failed and another approach to put the file into isOpen() mode should be attempted.

int QIODevice::putch ( int character )   [virtual]

Writes the character to the I/O device.

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

See also getch().

Q_LONGLONG QIODevice::read ( char * data, Q_LONGLONG len )   [pure virtual]

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

QByteArray QIODevice::read ( Q_LONGLONG maxlen )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

This convenience function will read data into a preallocated QByteArray.

QByteArray QIODevice::readAll ()   [virtual]

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

Q_LONGLONG QIODevice::readLine ( char * data, Q_LONGLONG maxlen )   [virtual]

Reads characters from the device into data up to and including the next newline character ('\n') or until at most maxlen - 1 characters have been read. A terminating '\0' is appended to the characters stored in data.

Returns the total number of characters read, including the terminating '\0', if no error occurred; otherwise returns -1.

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.

Example:

    char buffer[12];
    device->readLine(buffer, sizeof(buffer));

The above code will read bytes from a device in the following way:

Input from the deviceBuffer contentsLength returnedComment
Trolltech\nTrolltech\n\01110 characters from the device plus a zero byte.
Hello world\nHello world\01211 characters from the device plus a zero byte. Note that the newline character has not yet been read.
The cow jumped over the moon.\nThe cow jum\01211 characters from the device plus a zero byte. The rest of the string has not yet been read.

See also read() and QTextStream::readLine().

QByteArray QIODevice::readLine ()   [virtual]

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

This convenience function will read a line and place it into a QByteArray.

See also QIODevice::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 ( Q_LONGLONG offset )   [pure virtual]

Sets the I/O device position to the offset given. Returns true if the position was successfully set (the offset is within range and the seek was successful); otherwise returns false.

If the device is sequential, the offset is relative to the current position.

This virtual function must be reimplemented by all subclasses.

See also size().

void QIODevice::setBufferSize ( int )   [protected]

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

Used by subclasses to set the device flags.

See also OpenMode.

Q_LONGLONG QIODevice::size () const   [pure virtual]

Returns the size of the I/O device.

This virtual function must be reimplemented by all subclasses.

See also at().

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 )   [pure virtual]

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.

This virtual function must be reimplemented by all subclasses.

See also getch() and putch().

Q_LONGLONG QIODevice::write ( const char * data, Q_LONGLONG len )   [pure virtual]

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 -1 is returned.

This virtual function must be reimplemented by all subclasses.

See also read().

Q_LONGLONG QIODevice::write ( 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:

    write(data.data(), data.size());


Copyright © 2004 Trolltech. Trademarks
Qt 4.0.0-tp2