X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fcompressor.h;h=2069e1362e766d077960bb6e728d7247e036a645;hp=1360b67860746ef3a216e94d50e1384ee85ecb70;hb=HEAD;hpb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f diff --git a/src/common/compressor.h b/src/common/compressor.h index 1360b678..2069e136 100644 --- a/src/common/compressor.h +++ b/src/common/compressor.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,10 +20,10 @@ #pragma once -#include - #include +#include + class QTcpSocket; class Compressor : public QObject @@ -31,33 +31,36 @@ class Compressor : public QObject Q_OBJECT public: - enum CompressionLevel { + enum CompressionLevel + { NoCompression, DefaultCompression, BestCompression, BestSpeed }; - enum Error { + enum Error + { NoError, StreamError, DeviceError }; - enum WriteBufferHint { + enum WriteBufferHint + { NoFlush, Flush }; - Compressor(QTcpSocket *socket, CompressionLevel level, QObject *parent = nullptr); - ~Compressor(); + Compressor(QTcpSocket* socket, CompressionLevel level, QObject* parent = nullptr); + ~Compressor() override; CompressionLevel compressionLevel() const { return _level; } qint64 bytesAvailable() const; - qint64 read(char *data, qint64 maxSize); - qint64 write(const char *data, qint64 count, WriteBufferHint flush = Flush); + qint64 read(char* data, qint64 maxSize); + qint64 write(const char* data, qint64 count, WriteBufferHint flush = Flush); void flush(); @@ -73,7 +76,7 @@ private: void writeData(); private: - QTcpSocket *_socket; + QTcpSocket* _socket; CompressionLevel _level; QByteArray _readBuffer;