]> sigrok.org Git - pulseview.git/blob - android/assetreader.hpp
Session: Fix issue #67 by improving error handling
[pulseview.git] / android / assetreader.hpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2015 Daniel Elstner <daniel.kitta@gmail.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef PULSEVIEW_ANDROID_ASSETREADER_HPP
21 #define PULSEVIEW_ANDROID_ASSETREADER_HPP
22
23 #include <libsigrokcxx/libsigrokcxx.hpp>
24
25 using std::string;
26
27 namespace pv {
28
29 class AndroidAssetReader : public sigrok::ResourceReader
30 {
31 public:
32         AndroidAssetReader() = default;
33         virtual ~AndroidAssetReader() = default;
34
35 private:
36         void open(struct sr_resource *res, string name) override;
37         void close(struct sr_resource *res) override;
38         size_t read(const struct sr_resource *res, void *buf, size_t count) override;
39 };
40
41 } // namespace pv
42
43 #endif // !PULSEVIEW_ANDROID_ASSETREADER_HPP