blob: 111c09b1570c1ea0018e874d5d967427aea52c1a [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007-2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Adam Lesinski182f73f2013-12-05 16:48:06 -080017package com.android.server.storage;
18
19import com.android.server.EventLogTags;
20import com.android.server.SystemService;
Brian Carlstroma39871e2014-09-29 13:44:04 -070021import com.android.server.pm.PackageManagerService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.app.Notification;
24import android.app.NotificationManager;
25import android.app.PendingIntent;
26import android.content.ContentResolver;
27import android.content.Context;
28import android.content.Intent;
29import android.content.pm.IPackageDataObserver;
30import android.content.pm.IPackageManager;
Dianne Hackborn197a0c82012-07-12 14:46:04 -070031import android.content.pm.PackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.os.Binder;
Dianne Hackbornf882efa2012-04-11 16:04:12 -070033import android.os.Environment;
Jeff Sharkey4b496572012-04-19 14:17:03 -070034import android.os.FileObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.os.Handler;
Adam Lesinski182f73f2013-12-05 16:48:06 -080036import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.os.Message;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import android.os.RemoteException;
39import android.os.ServiceManager;
40import android.os.StatFs;
41import android.os.SystemClock;
42import android.os.SystemProperties;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070043import android.os.UserHandle;
Jeff Sharkeybe722152013-02-15 16:56:38 -080044import android.os.storage.StorageManager;
Doug Zongker43866e02010-01-07 12:09:54 -080045import android.provider.Settings;
Dianne Hackborn197a0c82012-07-12 14:46:04 -070046import android.text.format.Formatter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047import android.util.EventLog;
Joe Onorato8a9b2202010-02-26 18:56:32 -080048import android.util.Slog;
Dianne Hackborn197a0c82012-07-12 14:46:04 -070049import android.util.TimeUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050
Jeff Sharkeybe722152013-02-15 16:56:38 -080051import java.io.File;
52import java.io.FileDescriptor;
53import java.io.PrintWriter;
54
Brian Carlstroma39871e2014-09-29 13:44:04 -070055import dalvik.system.VMRuntime;
56
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057/**
Doug Zongker43866e02010-01-07 12:09:54 -080058 * This class implements a service to monitor the amount of disk
59 * storage space on the device. If the free storage on device is less
60 * than a tunable threshold value (a secure settings parameter;
61 * default 10%) a low memory notification is displayed to alert the
62 * user. If the user clicks on the low memory notification the
63 * Application Manager application gets launched to let the user free
64 * storage space.
65 *
66 * Event log events: A low memory event with the free storage on
67 * device in bytes is logged to the event log when the device goes low
68 * on storage space. The amount of free storage on the device is
69 * periodically logged to the event log. The log interval is a secure
70 * settings parameter with a default value of 12 hours. When the free
71 * storage differential goes below a threshold (again a secure
72 * settings parameter with a default value of 2MB), the free memory is
73 * logged to the event log.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 */
Adam Lesinski182f73f2013-12-05 16:48:06 -080075public class DeviceStorageMonitorService extends SystemService {
76 static final String TAG = "DeviceStorageMonitorService";
Jeff Sharkeybe722152013-02-15 16:56:38 -080077
Adam Lesinski182f73f2013-12-05 16:48:06 -080078 static final boolean DEBUG = false;
79 static final boolean localLOGV = false;
Jeff Sharkeybe722152013-02-15 16:56:38 -080080
Adam Lesinski182f73f2013-12-05 16:48:06 -080081 static final int DEVICE_MEMORY_WHAT = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 private static final int MONITOR_INTERVAL = 1; //in minutes
83 private static final int LOW_MEMORY_NOTIFICATION_ID = 1;
Jeff Sharkeybe722152013-02-15 16:56:38 -080084
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 private static final int DEFAULT_FREE_STORAGE_LOG_INTERVAL_IN_MINUTES = 12*60; //in minutes
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 private static final long DEFAULT_DISK_FREE_CHANGE_REPORTING_THRESHOLD = 2 * 1024 * 1024; // 2MB
87 private static final long DEFAULT_CHECK_INTERVAL = MONITOR_INTERVAL*60*1000;
Jeff Sharkeybe722152013-02-15 16:56:38 -080088
Doug Zongker3161795b2009-10-07 15:14:03 -070089 private long mFreeMem; // on /data
Dianne Hackborn197a0c82012-07-12 14:46:04 -070090 private long mFreeMemAfterLastCacheClear; // on /data
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 private long mLastReportedFreeMem;
92 private long mLastReportedFreeMemTime;
Adam Lesinski182f73f2013-12-05 16:48:06 -080093 boolean mLowMemFlag=false;
Jake Hambybb371632010-08-23 18:16:48 -070094 private boolean mMemFullFlag=false;
Brian Carlstroma39871e2014-09-29 13:44:04 -070095 private final boolean mIsBootImageOnDisk;
Jeff Brownb880d882014-02-10 19:47:07 -080096 private final ContentResolver mResolver;
97 private final long mTotalMemory; // on /data
98 private final StatFs mDataFileStats;
99 private final StatFs mSystemFileStats;
100 private final StatFs mCacheFileStats;
Jeff Sharkeybe722152013-02-15 16:56:38 -0800101
102 private static final File DATA_PATH = Environment.getDataDirectory();
103 private static final File SYSTEM_PATH = Environment.getRootDirectory();
104 private static final File CACHE_PATH = Environment.getDownloadCacheDirectory();
105
Doug Zongker3161795b2009-10-07 15:14:03 -0700106 private long mThreadStartTime = -1;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800107 boolean mClearSucceeded = false;
108 boolean mClearingCache;
Jeff Brownb880d882014-02-10 19:47:07 -0800109 private final Intent mStorageLowIntent;
110 private final Intent mStorageOkIntent;
111 private final Intent mStorageFullIntent;
112 private final Intent mStorageNotFullIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 private CachePackageDataObserver mClearCacheObserver;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800114 private CacheFileDeletedObserver mCacheFileDeletedObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 private static final int _TRUE = 1;
116 private static final int _FALSE = 0;
Dianne Hackborn197a0c82012-07-12 14:46:04 -0700117 // This is the raw threshold that has been set at which we consider
118 // storage to be low.
Adam Lesinski182f73f2013-12-05 16:48:06 -0800119 long mMemLowThreshold;
Dianne Hackborn197a0c82012-07-12 14:46:04 -0700120 // This is the threshold at which we start trying to flush caches
121 // to get below the low threshold limit. It is less than the low
122 // threshold; we will allow storage to get a bit beyond the limit
123 // before flushing and checking if we are actually low.
124 private long mMemCacheStartTrimThreshold;
125 // This is the threshold that we try to get to when deleting cache
126 // files. This is greater than the low threshold so that we will flush
127 // more files than absolutely needed, to reduce the frequency that
128 // flushing takes place.
129 private long mMemCacheTrimToThreshold;
Jeff Sharkeybe722152013-02-15 16:56:38 -0800130 private long mMemFullThreshold;
Doug Zongker3161795b2009-10-07 15:14:03 -0700131
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132 /**
133 * This string is used for ServiceManager access to this class.
134 */
Adam Lesinski182f73f2013-12-05 16:48:06 -0800135 static final String SERVICE = "devicestoragemonitor";
Doug Zongker3161795b2009-10-07 15:14:03 -0700136
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 /**
Doug Zongker3161795b2009-10-07 15:14:03 -0700138 * Handler that checks the amount of disk space on the device and sends a
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 * notification if the device runs low on disk space
140 */
Jeff Brownb880d882014-02-10 19:47:07 -0800141 private final Handler mHandler = new Handler() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142 @Override
143 public void handleMessage(Message msg) {
Jake Hambybb371632010-08-23 18:16:48 -0700144 //don't handle an invalid message
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 if (msg.what != DEVICE_MEMORY_WHAT) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800146 Slog.e(TAG, "Will not process invalid message");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 return;
148 }
149 checkMemory(msg.arg1 == _TRUE);
150 }
151 };
Doug Zongker3161795b2009-10-07 15:14:03 -0700152
Adam Lesinski182f73f2013-12-05 16:48:06 -0800153 private class CachePackageDataObserver extends IPackageDataObserver.Stub {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 public void onRemoveCompleted(String packageName, boolean succeeded) {
155 mClearSucceeded = succeeded;
156 mClearingCache = false;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800157 if(localLOGV) Slog.i(TAG, " Clear succeeded:"+mClearSucceeded
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 +", mClearingCache:"+mClearingCache+" Forcing memory check");
159 postCheckMemoryMsg(false, 0);
Doug Zongker3161795b2009-10-07 15:14:03 -0700160 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 }
Doug Zongker3161795b2009-10-07 15:14:03 -0700162
Adam Lesinski182f73f2013-12-05 16:48:06 -0800163 private void restatDataDir() {
Doug Zongker3161795b2009-10-07 15:14:03 -0700164 try {
Jeff Sharkeybe722152013-02-15 16:56:38 -0800165 mDataFileStats.restat(DATA_PATH.getAbsolutePath());
Doug Zongker3161795b2009-10-07 15:14:03 -0700166 mFreeMem = (long) mDataFileStats.getAvailableBlocks() *
167 mDataFileStats.getBlockSize();
168 } catch (IllegalArgumentException e) {
169 // use the old value of mFreeMem
170 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 // Allow freemem to be overridden by debug.freemem for testing
172 String debugFreeMem = SystemProperties.get("debug.freemem");
173 if (!"".equals(debugFreeMem)) {
174 mFreeMem = Long.parseLong(debugFreeMem);
175 }
Doug Zongker43866e02010-01-07 12:09:54 -0800176 // Read the log interval from secure settings
Jeff Sharkeybe722152013-02-15 16:56:38 -0800177 long freeMemLogInterval = Settings.Global.getLong(mResolver,
Jeff Sharkey625239a2012-09-26 22:03:49 -0700178 Settings.Global.SYS_FREE_STORAGE_LOG_INTERVAL,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179 DEFAULT_FREE_STORAGE_LOG_INTERVAL_IN_MINUTES)*60*1000;
180 //log the amount of free memory in event log
181 long currTime = SystemClock.elapsedRealtime();
Doug Zongker3161795b2009-10-07 15:14:03 -0700182 if((mLastReportedFreeMemTime == 0) ||
183 (currTime-mLastReportedFreeMemTime) >= freeMemLogInterval) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 mLastReportedFreeMemTime = currTime;
Doug Zongker3161795b2009-10-07 15:14:03 -0700185 long mFreeSystem = -1, mFreeCache = -1;
186 try {
Jeff Sharkeybe722152013-02-15 16:56:38 -0800187 mSystemFileStats.restat(SYSTEM_PATH.getAbsolutePath());
Doug Zongker3161795b2009-10-07 15:14:03 -0700188 mFreeSystem = (long) mSystemFileStats.getAvailableBlocks() *
189 mSystemFileStats.getBlockSize();
190 } catch (IllegalArgumentException e) {
191 // ignore; report -1
192 }
193 try {
Jeff Sharkeybe722152013-02-15 16:56:38 -0800194 mCacheFileStats.restat(CACHE_PATH.getAbsolutePath());
Doug Zongker3161795b2009-10-07 15:14:03 -0700195 mFreeCache = (long) mCacheFileStats.getAvailableBlocks() *
196 mCacheFileStats.getBlockSize();
197 } catch (IllegalArgumentException e) {
198 // ignore; report -1
199 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800200 EventLog.writeEvent(EventLogTags.FREE_STORAGE_LEFT,
Doug Zongker3161795b2009-10-07 15:14:03 -0700201 mFreeMem, mFreeSystem, mFreeCache);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800202 }
Doug Zongker43866e02010-01-07 12:09:54 -0800203 // Read the reporting threshold from secure settings
Jeff Sharkeybe722152013-02-15 16:56:38 -0800204 long threshold = Settings.Global.getLong(mResolver,
Jeff Sharkey625239a2012-09-26 22:03:49 -0700205 Settings.Global.DISK_FREE_CHANGE_REPORTING_THRESHOLD,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 DEFAULT_DISK_FREE_CHANGE_REPORTING_THRESHOLD);
207 // If mFree changed significantly log the new value
208 long delta = mFreeMem - mLastReportedFreeMem;
209 if (delta > threshold || delta < -threshold) {
210 mLastReportedFreeMem = mFreeMem;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800211 EventLog.writeEvent(EventLogTags.FREE_STORAGE_CHANGED, mFreeMem);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 }
213 }
Doug Zongker3161795b2009-10-07 15:14:03 -0700214
Adam Lesinski182f73f2013-12-05 16:48:06 -0800215 private void clearCache() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216 if (mClearCacheObserver == null) {
217 // Lazy instantiation
218 mClearCacheObserver = new CachePackageDataObserver();
219 }
220 mClearingCache = true;
221 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800222 if (localLOGV) Slog.i(TAG, "Clearing cache");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 IPackageManager.Stub.asInterface(ServiceManager.getService("package")).
Dianne Hackborn197a0c82012-07-12 14:46:04 -0700224 freeStorageAndNotify(mMemCacheTrimToThreshold, mClearCacheObserver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800226 Slog.w(TAG, "Failed to get handle for PackageManger Exception: "+e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800227 mClearingCache = false;
228 mClearSucceeded = false;
229 }
230 }
Doug Zongker3161795b2009-10-07 15:14:03 -0700231
Adam Lesinski182f73f2013-12-05 16:48:06 -0800232 void checkMemory(boolean checkCache) {
Doug Zongker3161795b2009-10-07 15:14:03 -0700233 //if the thread that was started to clear cache is still running do nothing till its
234 //finished clearing cache. Ideally this flag could be modified by clearCache
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 // and should be accessed via a lock but even if it does this test will fail now and
236 //hopefully the next time this flag will be set to the correct value.
237 if(mClearingCache) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800238 if(localLOGV) Slog.i(TAG, "Thread already running just skip");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 //make sure the thread is not hung for too long
240 long diffTime = System.currentTimeMillis() - mThreadStartTime;
241 if(diffTime > (10*60*1000)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800242 Slog.w(TAG, "Thread that clears cache file seems to run for ever");
Doug Zongker3161795b2009-10-07 15:14:03 -0700243 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 } else {
245 restatDataDir();
Joe Onorato8a9b2202010-02-26 18:56:32 -0800246 if (localLOGV) Slog.v(TAG, "freeMemory="+mFreeMem);
Doug Zongker3161795b2009-10-07 15:14:03 -0700247
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 //post intent to NotificationManager to display icon if necessary
Jake Hambybb371632010-08-23 18:16:48 -0700249 if (mFreeMem < mMemLowThreshold) {
Dianne Hackborn197a0c82012-07-12 14:46:04 -0700250 if (checkCache) {
251 // We are allowed to clear cache files at this point to
252 // try to get down below the limit, because this is not
253 // the initial call after a cache clear has been attempted.
254 // In this case we will try a cache clear if our free
255 // space has gone below the cache clear limit.
256 if (mFreeMem < mMemCacheStartTrimThreshold) {
257 // We only clear the cache if the free storage has changed
258 // a significant amount since the last time.
259 if ((mFreeMemAfterLastCacheClear-mFreeMem)
260 >= ((mMemLowThreshold-mMemCacheStartTrimThreshold)/4)) {
261 // See if clearing cache helps
262 // Note that clearing cache is asynchronous and so we do a
263 // memory check again once the cache has been cleared.
264 mThreadStartTime = System.currentTimeMillis();
265 mClearSucceeded = false;
266 clearCache();
267 }
268 }
269 } else {
270 // This is a call from after clearing the cache. Note
271 // the amount of free storage at this point.
272 mFreeMemAfterLastCacheClear = mFreeMem;
273 if (!mLowMemFlag) {
274 // We tried to clear the cache, but that didn't get us
275 // below the low storage limit. Tell the user.
Joe Onorato8a9b2202010-02-26 18:56:32 -0800276 Slog.i(TAG, "Running low on memory. Sending notification");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 sendNotification();
278 mLowMemFlag = true;
Dianne Hackborn197a0c82012-07-12 14:46:04 -0700279 } else {
280 if (localLOGV) Slog.v(TAG, "Running low on memory " +
281 "notification already sent. do nothing");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 }
284 } else {
Dianne Hackborn197a0c82012-07-12 14:46:04 -0700285 mFreeMemAfterLastCacheClear = mFreeMem;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800286 if (mLowMemFlag) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800287 Slog.i(TAG, "Memory available. Cancelling notification");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800288 cancelNotification();
289 mLowMemFlag = false;
290 }
291 }
Brian Carlstroma39871e2014-09-29 13:44:04 -0700292 if (!mLowMemFlag && !mIsBootImageOnDisk) {
293 Slog.i(TAG, "No boot image on disk due to lack of space. Sending notification");
294 sendNotification();
295 }
Jake Hambybb371632010-08-23 18:16:48 -0700296 if (mFreeMem < mMemFullThreshold) {
297 if (!mMemFullFlag) {
298 sendFullNotification();
299 mMemFullFlag = true;
300 }
301 } else {
302 if (mMemFullFlag) {
303 cancelFullNotification();
304 mMemFullFlag = false;
305 }
306 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 }
Joe Onorato8a9b2202010-02-26 18:56:32 -0800308 if(localLOGV) Slog.i(TAG, "Posting Message again");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 //keep posting messages to itself periodically
310 postCheckMemoryMsg(true, DEFAULT_CHECK_INTERVAL);
311 }
Doug Zongker3161795b2009-10-07 15:14:03 -0700312
Adam Lesinski182f73f2013-12-05 16:48:06 -0800313 void postCheckMemoryMsg(boolean clearCache, long delay) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 // Remove queued messages
315 mHandler.removeMessages(DEVICE_MEMORY_WHAT);
316 mHandler.sendMessageDelayed(mHandler.obtainMessage(DEVICE_MEMORY_WHAT,
317 clearCache ?_TRUE : _FALSE, 0),
318 delay);
319 }
Doug Zongker3161795b2009-10-07 15:14:03 -0700320
Jeff Brownb880d882014-02-10 19:47:07 -0800321 public DeviceStorageMonitorService(Context context) {
322 super(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800323 mLastReportedFreeMemTime = 0;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800324 mResolver = context.getContentResolver();
Brian Carlstroma39871e2014-09-29 13:44:04 -0700325 mIsBootImageOnDisk = isBootImageOnDisk();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326 //create StatFs object
Jeff Sharkeybe722152013-02-15 16:56:38 -0800327 mDataFileStats = new StatFs(DATA_PATH.getAbsolutePath());
328 mSystemFileStats = new StatFs(SYSTEM_PATH.getAbsolutePath());
329 mCacheFileStats = new StatFs(CACHE_PATH.getAbsolutePath());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330 //initialize total storage on device
Dianne Hackborn197a0c82012-07-12 14:46:04 -0700331 mTotalMemory = (long)mDataFileStats.getBlockCount() *
332 mDataFileStats.getBlockSize();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 mStorageLowIntent = new Intent(Intent.ACTION_DEVICE_STORAGE_LOW);
Jeff Hamilton4b330922010-06-04 15:16:06 -0500334 mStorageLowIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800335 mStorageOkIntent = new Intent(Intent.ACTION_DEVICE_STORAGE_OK);
Jeff Hamilton4b330922010-06-04 15:16:06 -0500336 mStorageOkIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Jake Hambybb371632010-08-23 18:16:48 -0700337 mStorageFullIntent = new Intent(Intent.ACTION_DEVICE_STORAGE_FULL);
338 mStorageFullIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
339 mStorageNotFullIntent = new Intent(Intent.ACTION_DEVICE_STORAGE_NOT_FULL);
340 mStorageNotFullIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800341 }
Jeff Sharkeybe722152013-02-15 16:56:38 -0800342
Brian Carlstroma39871e2014-09-29 13:44:04 -0700343 private static boolean isBootImageOnDisk() {
344 for (String instructionSet : PackageManagerService.getAllDexCodeInstructionSets()) {
345 if (!VMRuntime.isBootClassPathOnDisk(instructionSet)) {
346 return false;
347 }
348 }
349 return true;
350 }
351
Jeff Brownb880d882014-02-10 19:47:07 -0800352 /**
353 * Initializes the disk space threshold value and posts an empty message to
354 * kickstart the process.
355 */
Adam Lesinski182f73f2013-12-05 16:48:06 -0800356 @Override
357 public void onStart() {
Jake Hambybb371632010-08-23 18:16:48 -0700358 // cache storage thresholds
Adam Lesinski182f73f2013-12-05 16:48:06 -0800359 final StorageManager sm = StorageManager.from(getContext());
Jeff Sharkeybe722152013-02-15 16:56:38 -0800360 mMemLowThreshold = sm.getStorageLowBytes(DATA_PATH);
361 mMemFullThreshold = sm.getStorageFullBytes(DATA_PATH);
362
Dianne Hackborn197a0c82012-07-12 14:46:04 -0700363 mMemCacheStartTrimThreshold = ((mMemLowThreshold*3)+mMemFullThreshold)/4;
364 mMemCacheTrimToThreshold = mMemLowThreshold
365 + ((mMemLowThreshold-mMemCacheStartTrimThreshold)*2);
366 mFreeMemAfterLastCacheClear = mTotalMemory;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800367 checkMemory(true);
Jeff Sharkey4b496572012-04-19 14:17:03 -0700368
369 mCacheFileDeletedObserver = new CacheFileDeletedObserver();
370 mCacheFileDeletedObserver.startWatching();
Adam Lesinski182f73f2013-12-05 16:48:06 -0800371
372 publishBinderService(SERVICE, mRemoteService);
373 publishLocalService(DeviceStorageMonitorInternal.class, mLocalService);
374 }
375
376 private final DeviceStorageMonitorInternal mLocalService = new DeviceStorageMonitorInternal() {
377 @Override
378 public void checkMemory() {
379 // force an early check
380 postCheckMemoryMsg(true, 0);
381 }
382
383 @Override
384 public boolean isMemoryLow() {
Brian Carlstroma39871e2014-09-29 13:44:04 -0700385 return mLowMemFlag || !mIsBootImageOnDisk;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800386 }
387
388 @Override
389 public long getMemoryLowThreshold() {
390 return mMemLowThreshold;
391 }
392 };
393
394 private final IBinder mRemoteService = new Binder() {
395 @Override
396 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
397 if (getContext().checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
398 != PackageManager.PERMISSION_GRANTED) {
399
400 pw.println("Permission Denial: can't dump " + SERVICE + " from from pid="
401 + Binder.getCallingPid()
402 + ", uid=" + Binder.getCallingUid());
403 return;
404 }
405
406 dumpImpl(pw);
407 }
408 };
409
410 void dumpImpl(PrintWriter pw) {
411 final Context context = getContext();
412
413 pw.println("Current DeviceStorageMonitor state:");
414
415 pw.print(" mFreeMem="); pw.print(Formatter.formatFileSize(context, mFreeMem));
416 pw.print(" mTotalMemory=");
417 pw.println(Formatter.formatFileSize(context, mTotalMemory));
418
419 pw.print(" mFreeMemAfterLastCacheClear=");
420 pw.println(Formatter.formatFileSize(context, mFreeMemAfterLastCacheClear));
421
422 pw.print(" mLastReportedFreeMem=");
423 pw.print(Formatter.formatFileSize(context, mLastReportedFreeMem));
424 pw.print(" mLastReportedFreeMemTime=");
425 TimeUtils.formatDuration(mLastReportedFreeMemTime, SystemClock.elapsedRealtime(), pw);
426 pw.println();
427
428 pw.print(" mLowMemFlag="); pw.print(mLowMemFlag);
429 pw.print(" mMemFullFlag="); pw.println(mMemFullFlag);
Brian Carlstroma39871e2014-09-29 13:44:04 -0700430 pw.print(" mIsBootImageOnDisk="); pw.print(mIsBootImageOnDisk);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800431
432 pw.print(" mClearSucceeded="); pw.print(mClearSucceeded);
433 pw.print(" mClearingCache="); pw.println(mClearingCache);
434
435 pw.print(" mMemLowThreshold=");
436 pw.print(Formatter.formatFileSize(context, mMemLowThreshold));
437 pw.print(" mMemFullThreshold=");
438 pw.println(Formatter.formatFileSize(context, mMemFullThreshold));
439
440 pw.print(" mMemCacheStartTrimThreshold=");
441 pw.print(Formatter.formatFileSize(context, mMemCacheStartTrimThreshold));
442 pw.print(" mMemCacheTrimToThreshold=");
443 pw.println(Formatter.formatFileSize(context, mMemCacheTrimToThreshold));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 }
Doug Zongker3161795b2009-10-07 15:14:03 -0700445
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800446 /**
447 * This method sends a notification to NotificationManager to display
448 * an error dialog indicating low disk space and launch the Installer
449 * application
450 */
Adam Lesinski182f73f2013-12-05 16:48:06 -0800451 private void sendNotification() {
452 final Context context = getContext();
Joe Onorato8a9b2202010-02-26 18:56:32 -0800453 if(localLOGV) Slog.i(TAG, "Sending low memory notification");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454 //log the event to event log with the amount of free storage(in bytes) left on the device
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800455 EventLog.writeEvent(EventLogTags.LOW_STORAGE, mFreeMem);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800456 // Pack up the values and broadcast them to everyone
Dianne Hackbornf882efa2012-04-11 16:04:12 -0700457 Intent lowMemIntent = new Intent(Environment.isExternalStorageEmulated()
458 ? Settings.ACTION_INTERNAL_STORAGE_SETTINGS
459 : Intent.ACTION_MANAGE_PACKAGE_STORAGE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 lowMemIntent.putExtra("memory", mFreeMem);
461 lowMemIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Doug Zongker3161795b2009-10-07 15:14:03 -0700462 NotificationManager mNotificationMgr =
Adam Lesinski182f73f2013-12-05 16:48:06 -0800463 (NotificationManager)context.getSystemService(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464 Context.NOTIFICATION_SERVICE);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800465 CharSequence title = context.getText(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800466 com.android.internal.R.string.low_internal_storage_view_title);
Brian Carlstroma39871e2014-09-29 13:44:04 -0700467 CharSequence details = context.getText(mIsBootImageOnDisk
468 ? com.android.internal.R.string.low_internal_storage_view_text
469 : com.android.internal.R.string.low_internal_storage_view_text_no_boot);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800470 PendingIntent intent = PendingIntent.getActivityAsUser(context, 0, lowMemIntent, 0,
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -0700471 null, UserHandle.CURRENT);
Brian Carlstroma39871e2014-09-29 13:44:04 -0700472 Notification notification = new Notification.Builder(context)
473 .setSmallIcon(com.android.internal.R.drawable.stat_notify_disk_full)
474 .setTicker(title)
475 .setColor(context.getResources().getColor(
476 com.android.internal.R.color.system_notification_accent_color))
477 .setContentTitle(title)
478 .setContentText(details)
479 .setContentIntent(intent)
480 .setStyle(new Notification.BigTextStyle()
481 .bigText(details))
482 .setVisibility(Notification.VISIBILITY_PUBLIC)
483 .setCategory(Notification.CATEGORY_SYSTEM)
484 .build();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800485 notification.flags |= Notification.FLAG_NO_CLEAR;
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -0700486 mNotificationMgr.notifyAsUser(null, LOW_MEMORY_NOTIFICATION_ID, notification,
487 UserHandle.ALL);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800488 context.sendStickyBroadcastAsUser(mStorageLowIntent, UserHandle.ALL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800489 }
490
491 /**
492 * Cancels low storage notification and sends OK intent.
493 */
Adam Lesinski182f73f2013-12-05 16:48:06 -0800494 private void cancelNotification() {
495 final Context context = getContext();
Joe Onorato8a9b2202010-02-26 18:56:32 -0800496 if(localLOGV) Slog.i(TAG, "Canceling low memory notification");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800497 NotificationManager mNotificationMgr =
Adam Lesinski182f73f2013-12-05 16:48:06 -0800498 (NotificationManager)context.getSystemService(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 Context.NOTIFICATION_SERVICE);
500 //cancel notification since memory has been freed
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -0700501 mNotificationMgr.cancelAsUser(null, LOW_MEMORY_NOTIFICATION_ID, UserHandle.ALL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800502
Adam Lesinski182f73f2013-12-05 16:48:06 -0800503 context.removeStickyBroadcastAsUser(mStorageLowIntent, UserHandle.ALL);
504 context.sendBroadcastAsUser(mStorageOkIntent, UserHandle.ALL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505 }
Doug Zongker3161795b2009-10-07 15:14:03 -0700506
Jake Hambybb371632010-08-23 18:16:48 -0700507 /**
508 * Send a notification when storage is full.
509 */
Adam Lesinski182f73f2013-12-05 16:48:06 -0800510 private void sendFullNotification() {
Jake Hambybb371632010-08-23 18:16:48 -0700511 if(localLOGV) Slog.i(TAG, "Sending memory full notification");
Adam Lesinski182f73f2013-12-05 16:48:06 -0800512 getContext().sendStickyBroadcastAsUser(mStorageFullIntent, UserHandle.ALL);
Jake Hambybb371632010-08-23 18:16:48 -0700513 }
514
515 /**
516 * Cancels memory full notification and sends "not full" intent.
517 */
Adam Lesinski182f73f2013-12-05 16:48:06 -0800518 private void cancelFullNotification() {
Jake Hambybb371632010-08-23 18:16:48 -0700519 if(localLOGV) Slog.i(TAG, "Canceling memory full notification");
Adam Lesinski182f73f2013-12-05 16:48:06 -0800520 getContext().removeStickyBroadcastAsUser(mStorageFullIntent, UserHandle.ALL);
521 getContext().sendBroadcastAsUser(mStorageNotFullIntent, UserHandle.ALL);
Jake Hambybb371632010-08-23 18:16:48 -0700522 }
523
Adam Lesinski182f73f2013-12-05 16:48:06 -0800524 private static class CacheFileDeletedObserver extends FileObserver {
Jeff Sharkey4b496572012-04-19 14:17:03 -0700525 public CacheFileDeletedObserver() {
526 super(Environment.getDownloadCacheDirectory().getAbsolutePath(), FileObserver.DELETE);
527 }
528
529 @Override
530 public void onEvent(int event, String path) {
531 EventLogTags.writeCacheFileDeleted(path);
532 }
533 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800534}