provider for back&restore app datya

 

back resotre app data, inf

///**
//1.  概述:由客户端自行查询应用并展示给用户,用户选择需要备份或还原的应用后,依次通过 provider insert 接口进行备份还原的操作(每一个应用执行一次 insert)
//2.  Provider URI:content://com.ll.SecurityCenter.backuprestore/app
//3.  ContentValues格式:
//package_name: 需要备份或还原应用的包名
//patch:需要备份或还原的内容存放路径
//data:0 为不需要备份或还原应用数据,1 为需要备份或还原应用数据
//action:0为备份,1 为还原
//4.      举例:
//item = new ContentValues();
//item.put("package_name","com.meitu.meiyancamera");
//item.put("path", "/sdcard/zzzzz/");
//**/
//
//public class AppProvider extends ContentProvider {
//
//    private static final String TAG = "AppProvider";
//    private static final UriMatcher mMatcher;
//    //AUTHORITY
//    private static final String AUTHORITY = "com.ll.SecurityCenter.backuprestore";
//    private static final String APP_DATA_PATH_CFG_FILE = "/sdcard/.appDataPath.cfg";
//    private static final String BACKUP_APP_DATA_CFG_FILE = "/sdcard/.backupAppData.cfg";
//    private static final String RESTORE_APP_DATA_CFG_FILE = "/sdcard/.restoreAppData.cfg";
//    private static final String PROGRESS_FLAG_FILE = "/sdcard/.progressFlagFile";
//    public static final int SUCCESS = 0;
//    public static final int ERR = 1;
//    public static final int UNKNOWN_ERR = -1;
//
//    private static final int AppBackupRestore = 1;
//
//    static {
//        mMatcher = new UriMatcher(UriMatcher.NO_MATCH);
//        mMatcher.addURI(AUTHORITY, "app", AppBackupRestore);   //com.ll.SecurityCenter.backuprestore/app
//    }
//
//    //================================主要操作代码=========================================== start
//    @Override
//    public Uri insert(Uri uri, ContentValues values) {
//        Uri result = null;
//        switch (mMatcher.match(uri)) {
//
//        // 对应用程序备份恢复的操作
//        case AppBackupRestore:
//            String action = (String) values.get("action");
//            String data = (String) values.get("data");
//            Log.d(TAG, "insert  action:" + action + ",  data :" + data);
//            //backup
//            if (action.equals("0")) {
//                result = doAppBackup(values);
//            } 
//            //restore
//            else if (action.equals("1")) {
//                result = doAppRestore(values);
//            }
//            break;
//
//        default:
//            break;
//        }
//        return result;
//    }
//
//    public Uri doAppBackup(ContentValues values){
//        String backupPatch = (String) values.get("path");
//        String data =  (String) values.get("data");
//        String packageName = (String) values.get("package_name");
//        Log.d(TAG, "packageName : "+ packageName + ", backupPatch:" + backupPatch);
//        if(data.equals("1")){
//            File pathFile1 = new File(APP_DATA_PATH_CFG_FILE);
//            if (pathFile1.exists()) {
//                pathFile1.delete();
//            }
//            File packageFile1 = new File(BACKUP_APP_DATA_CFG_FILE);
//            if (packageFile1.exists()) {
//                packageFile1.delete();
//            }
//            FileOutputStream outPath = null;
//            FileOutputStream outPackage = null;
//            try {
//                File pathFile = new File(APP_DATA_PATH_CFG_FILE);
//                File packageFile = new File(BACKUP_APP_DATA_CFG_FILE);
//                outPath = new FileOutputStream(pathFile, true);
//                outPackage = new FileOutputStream(packageFile, true);
//                String useablePath = backupPatch;
//                if (useablePath.startsWith("/storage/emulated/0") ) {
//                    useablePath = useablePath.replaceFirst("/storage/emulated/0","/sdcard");
//                }
//                outPath.write(useablePath.getBytes());
//                Log.d(TAG, "useablePath = " + useablePath + ", PackageName = " + packageName);
//                outPackage.write(packageName.getBytes());
//                outPackage.write('\n');
//
//            } catch (Exception e) {
//                Log.d(TAG, "backupOneAPP  PackageName:"+  packageName + "error:" +  e.toString());
//                return null;
//            } finally {
//                if (null != outPath) {
//                    try {
//                        outPath.flush();
//                        outPath.close();
//                    } catch (Exception e) {
//                        outPath = null;
//                    }
//                }
//                if (null != outPackage) {
//                    try {
//                        outPackage.flush();
//                        outPackage.close();
//                    } catch (Exception e) {
//                        outPackage = null;
//                    }
//                }
//            }
//           SystemService.start("backupAppData");
//           boolean whileFlag = true;
//           while (whileFlag) {
//               try {
//                   Thread.sleep(1000);
//               } catch (Exception e) {
//                   Log.e(TAG, "InterruptedException :" + e);
//               }
//               File flagFile = new File(PROGRESS_FLAG_FILE);
//               if (!flagFile.exists()) {
//                   whileFlag = false;
//               }
//               flagFile = null;
//           }
//           //File apkFile = new File(backupDir + "/" + appin.packageName+ ".apk");
//           File dataFile = new File(backupPatch + "/" + packageName+ ".tar");
//           if(dataFile.exists()){
//               return Uri.fromFile(dataFile);
//           }else{
//               return null;
//           }
//        }else{
//            return null;
//        }
//    }
//
//    public Uri doAppRestore(ContentValues values){
//        String restorePatch = (String) values.get("path");
//        String data =  (String) values.get("data");
//        String packageName = (String) values.get("package_name");
//        Log.d(TAG, "restorePatch = " + restorePatch + ", data = " + data + ", packageName:"+ packageName);
//        Uri result = null;
//        if(data.equals("1")){
//            //restore appdata
//            result = restoreAppData(restorePatch,packageName);
//        }else if(data.equals("0")){
//            //restore app
//            String fullApkName = restorePatch + "/"+ packageName + ".apk";
//            result =installApk(fullApkName);
//        }
//        return  result;
//    }
//
//    private Uri installApk(String fullApkName) {
//        Uri result = Uri.parse(fullApkName);
//        Log.d(TAG, "Install App: " + fullApkName);
//        String  newcommand =  "pm  install   -r    -i  "+   "com.android.packageinstaller"+  "  --user 0   "+ fullApkName;
//        Process process;
//        try {
//            process = Runtime.getRuntime().exec(newcommand);
//            process.waitFor();
//        } catch (IOException e) {
//            result = null;
//            Log.d(TAG, "install apk Name:"+ fullApkName + ",  IOException:"+ e.toString());
//        } catch (Exception e) {
//            result = null;
//            Log.d(TAG, "install apk Name:"+ fullApkName + ",  Exception:"+ e.toString());
//        }
//        Log.d(TAG, "install result: " + result);
//        return result;
//    }
//
//    private Uri restoreAppData(String restorePath, String packageName) {
//        Uri  ret = Uri.parse(packageName);
//        File pathFile = new File(APP_DATA_PATH_CFG_FILE);
//        if(pathFile.exists()){
//            pathFile.delete();
//        }
//        File packageFile = new File(RESTORE_APP_DATA_CFG_FILE);
//        if(packageFile.exists()){
//            packageFile.delete();
//        }
//        FileOutputStream outPath = null;
//        FileOutputStream outPackage = null;
//        try {
//            outPath = new FileOutputStream(APP_DATA_PATH_CFG_FILE, true);
//            outPackage = new FileOutputStream(RESTORE_APP_DATA_CFG_FILE, true);
//            String useablePath = restorePath;
//            if (restorePath.startsWith("/storage/emulated/0")) {
//                useablePath = restorePath.replaceFirst("/storage/emulated/0", "/sdcard");
//            }
//            outPath.write(useablePath.getBytes());
//            outPackage.write(packageName.getBytes());
//            outPackage.write('\n');
//            Log.d(TAG, "  RECOVERAPPDATA------->:"+ packageName);
//            SystemService.start("recoverAppData");
//            boolean whileFlag = true;
//            while (whileFlag) {
//                try {
//                    Thread.sleep(1500);
//                } catch (InterruptedException e) {
//                    ret = null;
//                    Log.e(TAG, "InterruptedException :" + e);
//                    break;
//                }
//                File flagFile = new File(PROGRESS_FLAG_FILE);
//                if (!flagFile.exists()) {
//                    whileFlag = false;
//                }
//                flagFile = null;
//            }
//        } catch (Exception e) {
//            ret = null;
//        } finally {
//            if (null != outPath) {
//                try {
//                    outPath.flush();
//                    outPath.close();
//                } catch (IOException e) {
//                }
//            }
//            if (null != outPackage) {
//                try {
//                    outPackage.flush();
//                    outPackage.close();
//                } catch (IOException e) {
//                }
//            }
//        }
//        return ret;
//    }
//    //================================主要操作代码======================================================== end
//
//    
// 
//    @Override
//    public boolean onCreate() {
//        return true;
//    }
//
//    @Override
//    public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,String sortOrder) {
//        return   null ;
//    }
//
//    @Override
//    public int delete(Uri uri, String selection, String[] selectionArgs) {
//        return 0;
//    }
//
//    @Override
//    public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
//        return 0;
//    }
//
//    @Override
//    public String getType(Uri uri) {
//        return null;
//    }
//}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

空白的泡

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值