Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Classes  ·  Annotées  ·  Hiérarchie  ·  Fonctions  ·  Structure  · 

QBuffer Class Reference


The QBuffer class is an I/O device that operates on a QByteArray More...

#include <qbuffer.h>

Inherits QIODevice.

List of all member functions.

Public Members


Detailed Description

The QBuffer class is an I/O device that operates on a QByteArray

QBuffer allows reading and writing a memory buffer. It is normally used together with a QTextStream or a QDataStream. QBuffer has an associated QByteArray which holds the buffer data. The size() of the buffer is automatically adjusted as data is written.

The constructor QBuffer(QByteArray) creates a QBuffer with an existing byte array. The byte array can also be set with setBuffer(). Writing to the QBuffer will modify the original byte array, since QByteArray is explicitly shared.

Use open() to open the buffer before use, and to set the mode (read-only,write-only, etc.). close() closes the buffer. The buffer must be closed before reopening or calling setBuffer().

The common way to use QBuffer is through QDataStream or QTextStream which have constructors that take a QBuffer parameter. For convenience, there are also QDataStream and QTextStream constructors that take a QByteArray parameter. These constructors create and open an internal QBuffer.

Note that QTextStream can also operate on a QString (a Unicode string); a QBuffer cannot.

You can also use QBuffer directly through the standard QIODevice functions readBlock(), writeBlock() readLine(), at(), getch(), putch() and ungetch().

See also QFile, QDataStream, QTextStream, QByteArray and Shared Classes


Member Function Documentation

QBuffer::QBuffer ()

Constructs an empty buffer.

QBuffer::QBuffer ( QByteArray buf )

Constructs a buffer that operates on buf. If you open the buffer in write mode (IO_WriteOnly or IO_ReadWrite) and write something into the buffer, buf will be modified.

Example:

    QCString str = "abc";
    QBuffer b( str );
    b.open( IO_WriteOnly );
    b.at( 3 );                                  // position at \0
    b.writeBlock( "def", 4 );                   // write including \0
    b.close();
      // Now, str == "abcdef"

See also setBuffer().

QBuffer::~QBuffer ()

Destructs the buffer.

bool QBuffer::at ( int pos ) [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QIODevice.

int QBuffer::at () const [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QIODevice.

QByteArray QBuffer::buffer () const

Returns this buffer's byte array.

See also setBuffer().

void QBuffer::close () [virtual]

Reimplemented for internal reasons; the API is not affected. Closes an open buffer.

See also open().

Reimplemented from QIODevice.

void QBuffer::flush () [virtual]

Reimplemented for internal reasons; the API is not affected. The flush function does nothing for a QBuffer.

Reimplemented from QIODevice.

int QBuffer::getch () [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QIODevice.

bool QBuffer::open ( int m ) [virtual]

Reimplemented for internal reasons; the API is not affected. Opens the buffer in the mode m. Returns TRUE if successful, otherwise FALSE. The buffer must be opened before use.

The mode parameter m must be a combination of the following flags.

  • IO_ReadOnly opens a buffer in read-only mode.
  • IO_WriteOnly opens a buffer in write-only mode.
  • IO_ReadWrite opens a buffer in read/write mode.
  • IO_Append sets the buffer index to the end of the buffer.
  • IO_Truncate truncates the buffer.

See also close() and isOpen().

Reimplemented from QIODevice.

int QBuffer::putch ( int ch ) [virtual]

Reimplemented for internal reasons; the API is not affected. Writes the character ch into the buffer, overwriting the character at the current index, extending the buffer if necessary.

Returns ch, or -1 if some error occurred.

See also getch() and ungetch().

Reimplemented from QIODevice.

int QBuffer::readBlock ( char * p, uint len ) [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QIODevice.

int QBuffer::readLine ( char * p, uint maxlen ) [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QIODevice.

bool QBuffer::setBuffer ( QByteArray buf )

Replaces the buffer's contents with buf.

This may not be done when isOpen() is TRUE.

Note that if you open the buffer in write mode (IO_WriteOnly or IO_ReadWrite) and write something into the buffer, buf is also modified because QByteArray is an explicitly shared class.

See also buffer(), open() and close().

uint QBuffer::size () const [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QIODevice.

int QBuffer::ungetch ( int ch ) [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from QIODevice.

int QBuffer::writeBlock ( const char * p, uint len ) [virtual]

Reimplemented for internal reasons; the API is not affected.

Writes len bytes from p into the buffer at the current index, overwriting any characters there and extending the buffer if necessary. Returns the number of bytes actually written.

Returns -1 if a serious error occurred.

See also readBlock().

Reimplemented from QIODevice.


Search the documentation, FAQ, qt-interest archive and more (uses www.trolltech.com):


This file is part of the Qt toolkit, copyright © 1995-2005 Trolltech, all rights reserved.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 79
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 6
Page suivante

Le Qt Developer Network au hasard

Logo

Les bases

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 2.3
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web