trikRuntime
stubInputDeviceFile.h
Go to the documentation of this file.
1 /* Copyright 2015 CyberTech Labs Ltd.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License. */
14 
15 #pragma once
16 
17 #include <QtCore/QString>
18 #include <QtCore/QFile>
19 
21 
22 namespace trikHal {
23 namespace stub {
24 
27 {
28 public:
31  explicit StubInputDeviceFile(const QString &fileName);
32 
33  bool open() override;
34  void close() override;
35  QTextStream &stream() override;
36  void reset() override;
37 
38 private:
39  QFile mFile;
40  QTextStream mStream;
41 };
42 
43 }
44 }
StubInputDeviceFile(const QString &fileName)
Constructor.
Definition: stubInputDeviceFile.cpp:21
bool open() override
Open a file. File name must be set previously.
Definition: stubInputDeviceFile.cpp:26
void close() override
Close a file.
Definition: stubInputDeviceFile.cpp:32
Input device file abstraction. Can read from a device file, thus communicating with a device driver...
Definition: inputDeviceFileInterface.h:22
QTextStream & stream() override
Returns temporary reference to a stream which can be used to read from a file.
Definition: stubInputDeviceFile.cpp:37
void reset() override
Resets input file, moving file cursor to the beginning of the file.
Definition: stubInputDeviceFile.cpp:42
Definition: brickFactory.h:21
Empty implementation of input device file. Only logs operations, returns empty stream.
Definition: stubInputDeviceFile.h:26