blob: 20be2ba736fa9fd488dcdd95d12253df8875e533 [file] [log] [blame]
Daichi Hironofda74742016-02-01 13:00:31 +09001/*
2 * Copyright (C) 2016 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
Daichi Hirono8b9024f2015-08-12 12:59:09 +090017package com.android.mtp;
18
19import android.content.ContentResolver;
20import android.net.Uri;
21import android.os.Process;
22import android.provider.DocumentsContract;
23import android.util.Log;
24
Daichi Hirono619afda2016-02-07 14:23:43 +090025import java.io.FileNotFoundException;
Daichi Hironofda74742016-02-01 13:00:31 +090026import java.util.concurrent.CountDownLatch;
Daichi Hironoe1d57712015-11-17 10:55:45 +090027import java.util.concurrent.ExecutorService;
28import java.util.concurrent.Executors;
Daichi Hironoe1d57712015-11-17 10:55:45 +090029import java.util.concurrent.TimeUnit;
Daichi Hironoacb0e272016-03-14 21:49:14 +090030import java.util.concurrent.TimeoutException;
Daichi Hirono8b9024f2015-08-12 12:59:09 +090031
32final class RootScanner {
33 /**
34 * Polling interval in milliseconds used for first SHORT_POLLING_TIMES because it is more
35 * likely to add new root just after the device is added.
36 */
37 private final static long SHORT_POLLING_INTERVAL = 2000;
38
39 /**
40 * Polling interval in milliseconds for low priority polling, when changes are not expected.
41 */
42 private final static long LONG_POLLING_INTERVAL = 30 * 1000;
43
44 /**
45 * @see #SHORT_POLLING_INTERVAL
46 */
47 private final static long SHORT_POLLING_TIMES = 10;
48
Daichi Hironoe1d57712015-11-17 10:55:45 +090049 /**
50 * Milliseconds we wait for background thread when pausing.
51 */
52 private final static long AWAIT_TERMINATION_TIMEOUT = 2000;
53
Daichi Hirono8b9024f2015-08-12 12:59:09 +090054 final ContentResolver mResolver;
55 final MtpManager mManager;
Daichi Hironodc473442015-11-13 15:42:28 +090056 final MtpDatabase mDatabase;
Daichi Hironoe1d57712015-11-17 10:55:45 +090057
58 ExecutorService mExecutor;
Daichi Hirono2e9a57b2016-02-26 17:41:45 +090059 private UpdateRootsRunnable mCurrentTask;
Daichi Hirono8b9024f2015-08-12 12:59:09 +090060
Daichi Hironodc473442015-11-13 15:42:28 +090061 RootScanner(
62 ContentResolver resolver,
Daichi Hironodc473442015-11-13 15:42:28 +090063 MtpManager manager,
64 MtpDatabase database) {
Daichi Hirono8b9024f2015-08-12 12:59:09 +090065 mResolver = resolver;
66 mManager = manager;
Daichi Hironodc473442015-11-13 15:42:28 +090067 mDatabase = database;
Daichi Hirono8b9024f2015-08-12 12:59:09 +090068 }
69
Daichi Hironoe1d57712015-11-17 10:55:45 +090070 /**
71 * Notifies a change of the roots list via ContentResolver.
72 */
Daichi Hironodc473442015-11-13 15:42:28 +090073 void notifyChange() {
Daichi Hironoebd24052016-02-06 21:05:57 +090074 final Uri uri = DocumentsContract.buildRootsUri(MtpDocumentsProvider.AUTHORITY);
Daichi Hironodc473442015-11-13 15:42:28 +090075 mResolver.notifyChange(uri, null, false);
Daichi Hirono8b9024f2015-08-12 12:59:09 +090076 }
77
78 /**
79 * Starts to check new changes right away.
Daichi Hirono8b9024f2015-08-12 12:59:09 +090080 */
Daichi Hironofda74742016-02-01 13:00:31 +090081 synchronized CountDownLatch resume() {
Daichi Hironoe1d57712015-11-17 10:55:45 +090082 if (mExecutor == null) {
83 // Only single thread updates the database.
84 mExecutor = Executors.newSingleThreadExecutor();
85 }
86 if (mCurrentTask != null) {
Daichi Hirono2e9a57b2016-02-26 17:41:45 +090087 // Stop previous task.
88 mCurrentTask.stop();
Daichi Hironoe1d57712015-11-17 10:55:45 +090089 }
Daichi Hirono2e9a57b2016-02-26 17:41:45 +090090 mCurrentTask = new UpdateRootsRunnable();
91 mExecutor.execute(mCurrentTask);
92 return mCurrentTask.mFirstScanCompleted;
Daichi Hironoe1d57712015-11-17 10:55:45 +090093 }
94
95 /**
96 * Stops background thread and wait for its termination.
97 * @throws InterruptedException
98 */
Daichi Hironoacb0e272016-03-14 21:49:14 +090099 synchronized void pause() throws InterruptedException, TimeoutException {
Daichi Hironoe1d57712015-11-17 10:55:45 +0900100 if (mExecutor == null) {
Daichi Hironodc473442015-11-13 15:42:28 +0900101 return;
102 }
Daichi Hironoe1d57712015-11-17 10:55:45 +0900103 mExecutor.shutdownNow();
Daichi Hironoacb0e272016-03-14 21:49:14 +0900104 try {
105 if (!mExecutor.awaitTermination(AWAIT_TERMINATION_TIMEOUT, TimeUnit.MILLISECONDS)) {
106 throw new TimeoutException(
107 "Timeout for terminating RootScanner's background thread.");
108 }
109 } finally {
110 mExecutor = null;
Daichi Hirono8b9024f2015-08-12 12:59:09 +0900111 }
112 }
113
Daichi Hironoe1d57712015-11-17 10:55:45 +0900114 /**
115 * Runnable to scan roots and update the database information.
116 */
117 private final class UpdateRootsRunnable implements Runnable {
Daichi Hirono2e9a57b2016-02-26 17:41:45 +0900118 /**
119 * Count down latch that specifies the runnable is stopped.
120 */
121 final CountDownLatch mStopped = new CountDownLatch(1);
122
123 /**
124 * Count down latch that specifies the first scan is completed.
125 */
Daichi Hironofda74742016-02-01 13:00:31 +0900126 final CountDownLatch mFirstScanCompleted = new CountDownLatch(1);
127
Daichi Hirono8b9024f2015-08-12 12:59:09 +0900128 @Override
129 public void run() {
130 Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
Daichi Hironoe1d57712015-11-17 10:55:45 +0900131 int pollingCount = 0;
Daichi Hirono2e9a57b2016-02-26 17:41:45 +0900132 while (mStopped.getCount() > 0) {
Daichi Hironoe1d57712015-11-17 10:55:45 +0900133 boolean changed = false;
Daichi Hironob3fe72b2015-12-15 07:45:06 +0000134
135 // Update devices.
Daichi Hirono20754c52015-12-15 18:52:26 +0900136 final MtpDeviceRecord[] devices = mManager.getDevices();
Daichi Hirono619afda2016-02-07 14:23:43 +0900137 try {
138 mDatabase.getMapper().startAddingDocuments(null /* parentDocumentId */);
139 for (final MtpDeviceRecord device : devices) {
140 if (mDatabase.getMapper().putDeviceDocument(device)) {
141 changed = true;
142 }
143 }
144 if (mDatabase.getMapper().stopAddingDocuments(
145 null /* parentDocumentId */)) {
Daichi Hirono20754c52015-12-15 18:52:26 +0900146 changed = true;
Daichi Hirono8b9024f2015-08-12 12:59:09 +0900147 }
Daichi Hirono619afda2016-02-07 14:23:43 +0900148 } catch (FileNotFoundException exception) {
149 // The top root (ID is null) must exist always.
150 // FileNotFoundException is unexpected.
151 Log.e(MtpDocumentsProvider.TAG, "Unexpected FileNotFoundException", exception);
152 throw new AssertionError("Unexpected exception for the top parent", exception);
Daichi Hirono20754c52015-12-15 18:52:26 +0900153 }
Daichi Hironob3fe72b2015-12-15 07:45:06 +0000154
155 // Update roots.
Daichi Hirono20754c52015-12-15 18:52:26 +0900156 for (final MtpDeviceRecord device : devices) {
157 final String documentId = mDatabase.getDocumentIdForDevice(device.deviceId);
158 if (documentId == null) {
159 continue;
160 }
Daichi Hirono619afda2016-02-07 14:23:43 +0900161 try {
162 mDatabase.getMapper().startAddingDocuments(documentId);
Daichi Hirono0f325372016-02-21 15:50:30 +0900163 if (mDatabase.getMapper().putStorageDocuments(
Daichi Hirono72de7a92017-03-21 09:55:07 +0900164 documentId, device.operationsSupported, device.roots)) {
Daichi Hirono619afda2016-02-07 14:23:43 +0900165 changed = true;
166 }
167 if (mDatabase.getMapper().stopAddingDocuments(documentId)) {
168 changed = true;
169 }
170 } catch (FileNotFoundException exception) {
171 Log.e(MtpDocumentsProvider.TAG, "Parent document is gone.", exception);
172 continue;
Daichi Hironob3fe72b2015-12-15 07:45:06 +0000173 }
Daichi Hirono7a375c42015-12-14 17:14:29 +0900174 }
Daichi Hironob3fe72b2015-12-15 07:45:06 +0000175
Daichi Hironoe1d57712015-11-17 10:55:45 +0900176 if (changed) {
177 notifyChange();
178 }
Daichi Hironofda74742016-02-01 13:00:31 +0900179 mFirstScanCompleted.countDown();
Daichi Hironoe1d57712015-11-17 10:55:45 +0900180 pollingCount++;
Daichi Hironoacb0e272016-03-14 21:49:14 +0900181 if (devices.length == 0) {
182 break;
183 }
Daichi Hironoe1d57712015-11-17 10:55:45 +0900184 try {
185 // Use SHORT_POLLING_PERIOD for the first SHORT_POLLING_TIMES because it is
186 // more likely to add new root just after the device is added.
187 // TODO: Use short interval only for a device that is just added.
Daichi Hirono2e9a57b2016-02-26 17:41:45 +0900188 mStopped.await(pollingCount > SHORT_POLLING_TIMES ?
189 LONG_POLLING_INTERVAL : SHORT_POLLING_INTERVAL, TimeUnit.MILLISECONDS);
Daichi Hironoe1d57712015-11-17 10:55:45 +0900190 } catch (InterruptedException exp) {
Daichi Hirono2bdb3882015-12-22 12:57:47 +0900191 break;
Daichi Hironoe1d57712015-11-17 10:55:45 +0900192 }
Daichi Hirono8b9024f2015-08-12 12:59:09 +0900193 }
194 }
Daichi Hirono2e9a57b2016-02-26 17:41:45 +0900195
196 void stop() {
197 mStopped.countDown();
198 }
Daichi Hirono8b9024f2015-08-12 12:59:09 +0900199 }
200}