summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDees_Troy <dees_troy@yahoo.com>2013-03-15 17:42:57 +0100
committerDees_Troy <dees_troy@yahoo.com>2013-03-16 15:03:53 +0100
commit3263e9260c2ef4d7a5b7759dc18010b179fb3ad7 (patch)
treee63acb1144b010ffa33cccec02d9d82c20c5e149
parentUpdates to libtar logging (diff)
downloadandroid_bootable_recovery-3263e9260c2ef4d7a5b7759dc18010b179fb3ad7.tar
android_bootable_recovery-3263e9260c2ef4d7a5b7759dc18010b179fb3ad7.tar.gz
android_bootable_recovery-3263e9260c2ef4d7a5b7759dc18010b179fb3ad7.tar.bz2
android_bootable_recovery-3263e9260c2ef4d7a5b7759dc18010b179fb3ad7.tar.lz
android_bootable_recovery-3263e9260c2ef4d7a5b7759dc18010b179fb3ad7.tar.xz
android_bootable_recovery-3263e9260c2ef4d7a5b7759dc18010b179fb3ad7.tar.zst
android_bootable_recovery-3263e9260c2ef4d7a5b7759dc18010b179fb3ad7.zip
-rw-r--r--twrpTar.cpp45
1 files changed, 23 insertions, 22 deletions
diff --git a/twrpTar.cpp b/twrpTar.cpp
index cf225db58..dd6d5c37b 100644
--- a/twrpTar.cpp
+++ b/twrpTar.cpp
@@ -215,7 +215,6 @@ int twrpTar::Generate_Multiple_Archives(string Path) {
if (de->d_type == DT_DIR && strcmp(de->d_name, ".") != 0 && strcmp(de->d_name, "..") != 0)
{
unsigned long long folder_size = TWFunc::Get_Folder_Size(FileName, false);
- tardir = FileName;
if (Archive_Current_Size + folder_size > MAX_ARCHIVE_SIZE) {
LOGI("Calling Generate_Multiple_Archives\n");
if (Generate_Multiple_Archives(FileName) < 0)
@@ -337,41 +336,43 @@ int twrpTar::extract() {
int twrpTar::tarDirs(bool include_root) {
DIR* d;
string mainfolder = tardir + "/", subfolder;
- char buf[1024];
- char* charTarFile = (char*) tarfn.c_str();
+ char buf[PATH_MAX];
d = opendir(tardir.c_str());
if (d != NULL) {
struct dirent* de;
while ((de = readdir(d)) != NULL) {
- LOGI("adding %s\n", de->d_name);
#ifdef RECOVERY_SDCARD_ON_DATA
if ((tardir == "/data" || tardir == "/data/") && strcmp(de->d_name, "media") == 0) continue;
- if (de->d_type == DT_BLK || de->d_type == DT_CHR)
- continue;
#endif
- if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue;
-
+ if (de->d_type == DT_BLK || de->d_type == DT_CHR || strcmp(de->d_name, "..") == 0)
+ continue;
subfolder = mainfolder;
- subfolder += de->d_name;
+ if (strcmp(de->d_name, ".") != 0) {
+ subfolder += de->d_name;
+ } else {
+ LOGI("adding '%s'\n", subfolder.c_str());
+ if (addFile(subfolder, include_root) != 0)
+ return -1;
+ continue;
+ }
+ LOGI("adding '%s'\n", subfolder.c_str());
strcpy(buf, subfolder.c_str());
if (de->d_type == DT_DIR) {
- if (include_root) {
- if (tar_append_tree(t, buf, NULL) != 0) {
- LOGE("Error appending '%s' to tar archive '%s'\n", buf, charTarFile);
- return -1;
+ char* charTarPath;
+ if (include_root) {
+ charTarPath = NULL;
+ } else {
+ string temp = Strip_Root_Dir(buf);
+ charTarPath = (char*) temp.c_str();
}
- } else {
- string temp = Strip_Root_Dir(buf);
- char* charTarPath = (char*) temp.c_str();
- if (tar_append_tree(t, buf, charTarPath) != 0) {
- LOGE("Error appending '%s' to tar archive '%s'\n", buf, charTarFile);
+ if (tar_append_tree(t, buf, charTarPath) != 0) {
+ LOGE("Error appending '%s' to tar archive '%s'\n", buf, tarfn.c_str());
return -1;
}
- }
} else if (tardir != "/" && (de->d_type == DT_REG || de->d_type == DT_LNK)) {
- if (addFile(buf, include_root) != 0)
- return -1;
- }
+ if (addFile(buf, include_root) != 0)
+ return -1;
+ }
fflush(NULL);
}
closedir(d);