Loading packages/Shell/src/com/android/shell/BugreportProgressService.java +2 −12 Original line number Original line Diff line number Diff line Loading @@ -582,9 +582,9 @@ public class BugreportProgressService extends Service { ParcelFileDescriptor screenshotFd = createReadWriteFile(BUGREPORT_DIR, ParcelFileDescriptor screenshotFd = createReadWriteFile(BUGREPORT_DIR, bugreportName + ".png"); bugreportName + ".png"); if (screenshotFd == null) { if (screenshotFd == null) { Log.e(TAG, "Screenshot parcel file descriptor is null."); Log.e(TAG, "Screenshot parcel file descriptor is null. Deleting bugreport file"); // TODO(b/123617758): Delete bugreport file created above FileUtils.closeQuietly(bugreportFd); FileUtils.closeQuietly(bugreportFd); new File(BUGREPORT_DIR, String.format("%s.zip", bugreportName)).delete(); return; return; } } mBugreportManager = (BugreportManager) mContext.getSystemService( mBugreportManager = (BugreportManager) mContext.getSystemService( Loading Loading @@ -972,18 +972,8 @@ public class BugreportProgressService extends Service { private void onBugreportFinished(int id) { private void onBugreportFinished(int id) { BugreportInfo info = getInfo(id); BugreportInfo info = getInfo(id); final File bugreportFile = new File(BUGREPORT_DIR, info.name + ".zip"); final File bugreportFile = new File(BUGREPORT_DIR, info.name + ".zip"); if (bugreportFile == null) { // Should never happen, an id always has a file linked to it. Log.wtf(TAG, "Missing file " + bugreportFile.getPath() + " does not exist."); return; } final int max = -1; // this is to log metrics for dumpstate duration. final int max = -1; // this is to log metrics for dumpstate duration. File screenshotFile = new File(BUGREPORT_DIR, info.name + ".png"); File screenshotFile = new File(BUGREPORT_DIR, info.name + ".png"); if (screenshotFile == null) { // Should never happen, an id always has a file linked to it. Log.wtf(TAG, "Missing file " + screenshotFile.getPath() + " does not exist."); return; } // If the screenshot file did not get populated implies this type of bugreport does not // If the screenshot file did not get populated implies this type of bugreport does not // need the screenshot file; setting the file to null so that empty file doesnt get shared // need the screenshot file; setting the file to null so that empty file doesnt get shared if (screenshotFile.length() == 0) { if (screenshotFile.length() == 0) { Loading Loading
packages/Shell/src/com/android/shell/BugreportProgressService.java +2 −12 Original line number Original line Diff line number Diff line Loading @@ -582,9 +582,9 @@ public class BugreportProgressService extends Service { ParcelFileDescriptor screenshotFd = createReadWriteFile(BUGREPORT_DIR, ParcelFileDescriptor screenshotFd = createReadWriteFile(BUGREPORT_DIR, bugreportName + ".png"); bugreportName + ".png"); if (screenshotFd == null) { if (screenshotFd == null) { Log.e(TAG, "Screenshot parcel file descriptor is null."); Log.e(TAG, "Screenshot parcel file descriptor is null. Deleting bugreport file"); // TODO(b/123617758): Delete bugreport file created above FileUtils.closeQuietly(bugreportFd); FileUtils.closeQuietly(bugreportFd); new File(BUGREPORT_DIR, String.format("%s.zip", bugreportName)).delete(); return; return; } } mBugreportManager = (BugreportManager) mContext.getSystemService( mBugreportManager = (BugreportManager) mContext.getSystemService( Loading Loading @@ -972,18 +972,8 @@ public class BugreportProgressService extends Service { private void onBugreportFinished(int id) { private void onBugreportFinished(int id) { BugreportInfo info = getInfo(id); BugreportInfo info = getInfo(id); final File bugreportFile = new File(BUGREPORT_DIR, info.name + ".zip"); final File bugreportFile = new File(BUGREPORT_DIR, info.name + ".zip"); if (bugreportFile == null) { // Should never happen, an id always has a file linked to it. Log.wtf(TAG, "Missing file " + bugreportFile.getPath() + " does not exist."); return; } final int max = -1; // this is to log metrics for dumpstate duration. final int max = -1; // this is to log metrics for dumpstate duration. File screenshotFile = new File(BUGREPORT_DIR, info.name + ".png"); File screenshotFile = new File(BUGREPORT_DIR, info.name + ".png"); if (screenshotFile == null) { // Should never happen, an id always has a file linked to it. Log.wtf(TAG, "Missing file " + screenshotFile.getPath() + " does not exist."); return; } // If the screenshot file did not get populated implies this type of bugreport does not // If the screenshot file did not get populated implies this type of bugreport does not // need the screenshot file; setting the file to null so that empty file doesnt get shared // need the screenshot file; setting the file to null so that empty file doesnt get shared if (screenshotFile.length() == 0) { if (screenshotFile.length() == 0) { Loading