Add totalSize and availSize queries to StorageMeasurement

Change-Id: I20f9d8546046df3804008ee4068c539549f35cb6
This commit is contained in:
Tony Mantler
2015-04-23 15:19:00 -07:00
parent 547e4caebe
commit 9496a2da05

View File

@@ -32,6 +32,7 @@ import android.os.HandlerThread;
import android.os.IBinder;
import android.os.Looper;
import android.os.Message;
import android.os.RemoteException;
import android.os.UserHandle;
import android.os.UserManager;
import android.os.storage.StorageVolume;
@@ -76,6 +77,9 @@ public class StorageMeasurement {
Environment.DIRECTORY_DOWNLOADS, Environment.DIRECTORY_ANDROID);
public static class MeasurementDetails {
public long totalSize;
public long availSize;
/**
* Total apps disk usage.
* <p>
@@ -121,7 +125,7 @@ public class StorageMeasurement {
}
public interface MeasurementReceiver {
public void onDetailsChanged(MeasurementDetails details);
void onDetailsChanged(MeasurementDetails details);
}
private WeakReference<MeasurementReceiver> mReceiver;
@@ -370,6 +374,10 @@ public class StorageMeasurement {
}
}
final File file = mVolume.getPath();
details.totalSize = file.getTotalSpace();
details.availSize = file.getFreeSpace();
// Measure all apps hosted on this volume for all users
if (mVolume.getType() == VolumeInfo.TYPE_PRIVATE) {
final List<ApplicationInfo> apps = packageManager.getInstalledApplications(