bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1 | /* |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame^] | 2 | Copyright 2013 to 2017 TeamWin |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 3 | TWRP is free software: you can redistribute it and/or modify |
| 4 | it under the terms of the GNU General Public License as published by |
| 5 | the Free Software Foundation, either version 3 of the License, or |
| 6 | (at your option) any later version. |
| 7 | |
| 8 | TWRP is distributed in the hope that it will be useful, |
| 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | GNU General Public License for more details. |
| 12 | |
| 13 | You should have received a copy of the GNU General Public License |
| 14 | along with TWRP. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ |
| 16 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame^] | 17 | #ifndef _TWRPBACK_HPP |
| 18 | #define _TWRPBACK_HPP |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 19 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame^] | 20 | #include <fstream> |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 21 | |
| 22 | class twrpback { |
| 23 | public: |
| 24 | int adbd_fd; // adbd data stream |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 25 | twrpback(void); |
| 26 | virtual ~twrpback(void); |
| 27 | int backup(std::string command); // adb backup stream |
| 28 | int restore(void); // adb restore stream |
| 29 | void adblogwrite(std::string writemsg); // adb debugging log function |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame^] | 30 | void createFifos(void); // create fifos needed for adb backup |
| 31 | void closeFifos(void); // close created fifos |
| 32 | void streamFileForTWRP(void); // stream file to twrp via bu |
| 33 | void setStreamFileName(std::string fn); // tell adb backup what file to load on storage |
| 34 | void threadStream(void); // thread bu for streaming |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 35 | |
| 36 | private: |
| 37 | int read_fd; // ors input fd |
| 38 | int write_fd; // ors operation fd |
| 39 | int ors_fd; // ors output fd |
| 40 | int adb_control_twrp_fd; // fd for bu to twrp communication |
| 41 | int adb_control_bu_fd; // fd for twrp to bu communication |
| 42 | int adb_read_fd; // adb read data stream |
| 43 | int adb_write_fd; // adb write data stream |
| 44 | bool firstPart; // first partition in the stream |
| 45 | FILE *adbd_fp; // file pointer for adb stream |
| 46 | char cmd[512]; // store result of commands |
| 47 | char operation[512]; // operation to send to ors |
| 48 | std::ofstream adblogfile; // adb stream log file |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame^] | 49 | std::string streamFn; |
| 50 | typedef void (twrpback::*ThreadPtr)(void); |
| 51 | typedef void* (*PThreadPtr)(void *); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 52 | void adbloginit(void); // setup adb log stream file |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame^] | 53 | void close_backup_fds(); // close backup resources |
| 54 | void close_restore_fds(); // close restore resources |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 55 | }; |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame^] | 56 | |
| 57 | #endif // _TWRPBACK_HPP |