Full backup tweaks

* provide placeholder UI showing backup/restore start/stop/timeout
* don't kill the progress UI in mid stream
* tidy up the pax extended header data writing a little

Change-Id: Ife0cb78e3facb541d8327f1d5ca5fe77faa6cbca
This commit is contained in:
Christopher Tate
2011-05-13 15:38:02 -07:00
parent 83a7cdc565
commit dc92c82b41
3 changed files with 33 additions and 24 deletions

View File

@@ -468,6 +468,19 @@ static void calc_tar_checksum(char* buf) {
sprintf(buf + 148, "%06o", sum); // the trailing space is already in place
}
// Returns number of bytes written
static int write_pax_header_entry(char* buf, const char* key, const char* value) {
// start with the size of "1 key=value\n"
int len = strlen(key) + strlen(value) + 4;
if (len > 9) len++;
if (len > 99) len++;
if (len > 999) len++;
// since PATH_MAX is 4096 we don't expect to have to generate any single
// header entry longer than 9999 characters
return sprintf(buf, "%d %s=%s\n", len, key, value);
}
int write_tarfile(const String8& packageName, const String8& domain,
const String8& rootpath, const String8& filepath, BackupDataWriter* writer)
{
@@ -525,8 +538,7 @@ int write_tarfile(const String8& packageName, const String8& domain,
}
// Good to go -- first construct the standard tar header at the start of the buffer
memset(buf, 0, 512); // tar header is 512 bytes
memset(paxHeader, 0, 512);
memset(buf, 0, BUFSIZE);
// Magic fields for the ustar file format
strcat(buf + 257, "ustar");
@@ -602,24 +614,20 @@ int write_tarfile(const String8& packageName, const String8& domain,
// If we're using a pax extended header, build & write that here; lengths are
// already preflighted
if (needExtended) {
char sizeStr[32]; // big enough for a 64-bit unsigned value in decimal
char* p = paxData;
// construct the pax extended header data block
memset(paxData, 0, BUFSIZE - (paxData - buf));
char* p = paxData;
int len;
// size header -- calc len in digits by actually rendering the number
// to a string - brute force but simple
len = sprintf(p, "%lld", s.st_size) + 8; // 8 for "1 size=" and final LF
if (len >= 10) len++;
memset(p, 0, 512);
p += sprintf(p, "%d size=%lld\n", len, s.st_size);
snprintf(sizeStr, sizeof(sizeStr), "%lld", s.st_size);
p += write_pax_header_entry(p, "size", sizeStr);
// fullname was generated above with the ustar paths
len = fullname.length() + 8; // 8 for "1 path=" and final LF
if (len >= 10) len++;
if (len >= 100) len++;
p += sprintf(p, "%d path=%s\n", len, fullname.string());
p += write_pax_header_entry(p, "path", fullname.string());
// Now we know how big the pax data is
int paxLen = p - paxData;

View File

@@ -24,7 +24,6 @@ import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.os.RemoteException;
import android.os.ServiceManager;
@@ -77,7 +76,7 @@ public class BackupRestoreConfirmation extends Activity {
public void handleMessage(Message msg) {
switch (msg.what) {
case MSG_START_BACKUP: {
Toast.makeText(mContext, "!!! Backup starting !!!", Toast.LENGTH_LONG);
Toast.makeText(mContext, "!!! Backup starting !!!", Toast.LENGTH_LONG).show();
}
break;
@@ -88,12 +87,13 @@ public class BackupRestoreConfirmation extends Activity {
break;
case MSG_END_BACKUP: {
Toast.makeText(mContext, "!!! Backup ended !!!", Toast.LENGTH_SHORT);
Toast.makeText(mContext, "!!! Backup ended !!!", Toast.LENGTH_SHORT).show();
finish();
}
break;
case MSG_START_RESTORE: {
Toast.makeText(mContext, "!!! Restore starting !!!", Toast.LENGTH_LONG);
Toast.makeText(mContext, "!!! Restore starting !!!", Toast.LENGTH_LONG).show();
}
break;
@@ -102,11 +102,13 @@ public class BackupRestoreConfirmation extends Activity {
break;
case MSG_END_RESTORE: {
Toast.makeText(mContext, "!!! Restore ended !!!", Toast.LENGTH_SHORT);
Toast.makeText(mContext, "!!! Restore ended !!!", Toast.LENGTH_SHORT).show();
finish();
}
break;
case MSG_TIMEOUT: {
Toast.makeText(mContext, "!!! TIMED OUT !!!", Toast.LENGTH_LONG).show();
}
break;
}

View File

@@ -1710,8 +1710,7 @@ class BackupManagerService extends IBackupManager.Stub {
IApplicationThread.BACKUP_MODE_FULL);
if (agent != null) {
try {
ApplicationInfo app = mPackageManager.getApplicationInfo(
pkg.packageName, 0);
ApplicationInfo app = pkg.applicationInfo;
boolean sendApk = mIncludeApks
&& ((app.flags & ApplicationInfo.FLAG_FORWARD_LOCK) == 0)
&& ((app.flags & ApplicationInfo.FLAG_SYSTEM) == 0 ||
@@ -1742,9 +1741,6 @@ class BackupManagerService extends IBackupManager.Stub {
} else {
if (DEBUG) Slog.d(TAG, "Full backup success: " + pkg.packageName);
}
} catch (NameNotFoundException e) {
Slog.e(TAG, "Package exists but not app info; skipping: "
+ pkg.packageName);
} catch (IOException e) {
Slog.e(TAG, "Error backing up " + pkg.packageName, e);
}
@@ -1816,8 +1812,11 @@ class BackupManagerService extends IBackupManager.Stub {
// unbind and tidy up even on timeout or failure, just in case
mActivityManager.unbindBackupAgent(app);
// The agent was running with a stub Application object, so shut it down
if (app.uid != Process.SYSTEM_UID) {
// The agent was running with a stub Application object, so shut it down.
// !!! We hardcode the confirmation UI's package name here rather than use a
// manifest flag! TODO something less direct.
if (app.uid != Process.SYSTEM_UID
&& !pkg.packageName.equals("com.android.backupconfirm")) {
if (DEBUG) Slog.d(TAG, "Backup complete, killing host process");
mActivityManager.killApplicationProcess(app.processName, app.uid);
} else {