blob: 91f5039a71e8b9542806267eed20c96d2987c987 [file] [log] [blame]
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001/*
2 Copyright 2013 TeamWin
3 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
18
19#ifndef TWRPDU_HPP
20#define TWRPDU_HPP
21
22#include <sys/types.h>
23#include <sys/stat.h>
24#include <dirent.h>
25#include <fcntl.h>
26#include <string.h>
27#include <errno.h>
28#include <fcntl.h>
29#include <fstream>
30#include <string>
31#include <vector>
32#include "twcommon.h"
33
34using namespace std;
35
36class twrpDU {
37
38public:
39 twrpDU();
40 uint64_t Get_Folder_Size(const string& Path); // Gets the folder's size using stat
Vojtech Bocek05f87d62014-03-11 22:08:23 +010041 void add_absolute_dir(const string& Path);
42 void add_relative_dir(const string& Path);
43 bool check_relative_skip_dirs(const string& dir);
44 bool check_absolute_skip_dirs(const string& path);
45 bool check_skip_dirs(const string& parent, const string& dir);
46 bool check_skip_dirs(const string& path);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050047 vector<string> get_absolute_dirs(void);
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -050048 void clear_relative_dir(string dir);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050049private:
50 vector<string> absolutedir;
51 vector<string> relativedir;
52 string parent;
53};
54
55extern twrpDU du;
56#endif