NuriaProject Framework  0.1
The NuriaProject Framework
referencedevice.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_REFERENCEDEVICE_HPP
18 #define NURIA_REFERENCEDEVICE_HPP
19 
20 #include <QIODevice>
21 #include "essentials.hpp"
22 
23 namespace Nuria {
24 
25 class ReferenceDevicePrivate;
26 
48 class NURIA_CORE_EXPORT ReferenceDevice : public QIODevice {
49  Q_OBJECT
50 public:
51 
56  explicit ReferenceDevice (QIODevice *referencedDevice, QObject *parent = 0);
57 
59  ~ReferenceDevice () override;
60 
62  QIODevice *referencedDevice () const;
63 
65  qint64 rangeBegin () const;
66 
68  qint64 rangeEnd () const;
69 
85  void setRange (qint64 begin, qint64 end = -1);
86 
92  void extendRange (qint64 bytes);
93 
94  //
95  bool isSequential () const override;
96  bool open (OpenMode mode) override;
97  void close () override;
98  qint64 pos () const override;
99  qint64 size () const override;
100  bool seek (qint64 pos) override;
101  bool atEnd () const override;
102  bool reset () override;
103  qint64 bytesAvailable () const override;
104 
105 protected:
106  qint64 readData(char *data, qint64 maxlen);
107  qint64 writeData(const char *data, qint64 len);
108 
109 private:
110  void referencedDeviceDestroyed ();
111  void autoExtendRange ();
112 
113  ReferenceDevicePrivate *d_ptr;
114 
115 };
116 
117 }
118 
119 #endif // NURIA_REFERENCEDEVICE_HPP
Operates on a part of another QIODevice.
Definition: referencedevice.hpp:48
Definition: abstractsessionmanager.hpp:24