Files
frameworks_base/media/java/android/media/MediaScannerConnection.java
Jeff Sharkey 04b4ba1e15 Shuffling to prepare for MediaProvider APEX.
An upcoming change will move MediaStore to be within the recently
created MediaProvider APEX.  This means that MediaStore will need to
be fully built against @SystemApi, and so this CL adjusts APIs to
support a clean transition:

-- Listing of "recent" storage volumes and scan paths for "internal"
storage is now handled by StorageManager directly, so that partners
retain control over what is deemed recent.
-- StorageVolume now returns the MediaStore volume name and the
filesystem directory where its contents are presented to apps.
-- Conversion of legacy thumbnail "kind" values to dimensions now
happens directly inside MediaStore.
-- PendingParams and PendingSession are completely removed.
-- Contributed media APIs are completely removed.
-- Media for demo users is now surfaced as a unique StorageVolume.
-- Migrate most MediaStore APIs to accept ContentResolver, which
supports easy usage of ContentResolver.wrap().

Bug: 144247087, 137890034
Test: atest --test-mapping packages/providers/MediaProvider
Exempt-From-Owner-Approval: in-place refactoring
Change-Id: I445528b2779bb37b9f2558e67a3cfc9f60412092
2019-12-18 01:35:46 +00:00

258 lines
9.3 KiB
Java

/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.media;
import android.annotation.UnsupportedAppUsage;
import android.content.ComponentName;
import android.content.ContentProviderClient;
import android.content.ContentResolver;
import android.content.Context;
import android.content.ServiceConnection;
import android.net.Uri;
import android.os.Build;
import android.os.IBinder;
import android.provider.MediaStore;
import android.util.Log;
import com.android.internal.os.BackgroundThread;
import java.io.File;
/**
* MediaScannerConnection provides a way for applications to pass a
* newly created or downloaded media file to the media scanner service.
* The media scanner service will read metadata from the file and add
* the file to the media content provider.
* The MediaScannerConnectionClient provides an interface for the
* media scanner service to return the Uri for a newly scanned file
* to the client of the MediaScannerConnection class.
*/
public class MediaScannerConnection implements ServiceConnection {
private static final String TAG = "MediaScannerConnection";
private final Context mContext;
private final MediaScannerConnectionClient mClient;
private ContentProviderClient mProvider;
@Deprecated
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
private IMediaScannerService mService;
@Deprecated
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
private boolean mConnected;
@Deprecated
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
private final IMediaScannerListener.Stub mListener = new IMediaScannerListener.Stub() {
@Override
public void scanCompleted(String path, Uri uri) {
}
};
/**
* Interface for notifying clients of the result of scanning a
* requested media file.
*/
public interface OnScanCompletedListener {
/**
* Called to notify the client when the media scanner has finished
* scanning a file.
* @param path the path to the file that has been scanned.
* @param uri the Uri for the file if the scanning operation succeeded
* and the file was added to the media database, or null if scanning failed.
*/
public void onScanCompleted(String path, Uri uri);
}
/**
* An interface for notifying clients of MediaScannerConnection
* when a connection to the MediaScanner service has been established
* and when the scanning of a file has completed.
*/
public interface MediaScannerConnectionClient extends OnScanCompletedListener {
/**
* Called to notify the client when a connection to the
* MediaScanner service has been established.
*/
public void onMediaScannerConnected();
}
/**
* Constructs a new MediaScannerConnection object.
* @param context the Context object, required for establishing a connection to
* the media scanner service.
* @param client an optional object implementing the MediaScannerConnectionClient
* interface, for receiving notifications from the media scanner.
*/
public MediaScannerConnection(Context context, MediaScannerConnectionClient client) {
mContext = context;
mClient = client;
}
/**
* Initiates a connection to the media scanner service.
* {@link MediaScannerConnectionClient#onMediaScannerConnected()}
* will be called when the connection is established.
*/
public void connect() {
synchronized (this) {
if (mProvider == null) {
mProvider = mContext.getContentResolver()
.acquireContentProviderClient(MediaStore.AUTHORITY);
if (mClient != null) {
mClient.onMediaScannerConnected();
}
}
}
}
/**
* Releases the connection to the media scanner service.
*/
public void disconnect() {
synchronized (this) {
if (mProvider != null) {
mProvider.close();
mProvider = null;
}
}
}
/**
* Returns whether we are connected to the media scanner service
* @return true if we are connected, false otherwise
*/
public synchronized boolean isConnected() {
return (mProvider != null);
}
/**
* Requests the media scanner to scan a file.
* Success or failure of the scanning operation cannot be determined until
* {@link MediaScannerConnectionClient#onScanCompleted(String, Uri)} is called.
*
* @param path the path to the file to be scanned.
* @param mimeType an optional mimeType for the file.
* If mimeType is null, then the mimeType will be inferred from the file extension.
*/
public void scanFile(String path, String mimeType) {
synchronized (this) {
if (mProvider == null) {
throw new IllegalStateException("not connected to MediaScannerService");
}
BackgroundThread.getExecutor().execute(() -> {
final Uri uri = scanFileQuietly(mProvider, new File(path));
if (mClient != null) {
mClient.onScanCompleted(path, uri);
}
});
}
}
/**
* Convenience for constructing a {@link MediaScannerConnection}, calling
* {@link #connect} on it, and calling {@link #scanFile(String, String)} with the given
* <var>path</var> and <var>mimeType</var> when the connection is
* established.
* @param context The caller's Context, required for establishing a connection to
* the media scanner service.
* Success or failure of the scanning operation cannot be determined until
* {@link MediaScannerConnectionClient#onScanCompleted(String, Uri)} is called.
* @param paths Array of paths to be scanned.
* @param mimeTypes Optional array of MIME types for each path.
* If mimeType is null, then the mimeType will be inferred from the file extension.
* @param callback Optional callback through which you can receive the
* scanned URI and MIME type; If null, the file will be scanned but
* you will not get a result back.
* @see #scanFile(String, String)
*/
public static void scanFile(Context context, String[] paths, String[] mimeTypes,
OnScanCompletedListener callback) {
BackgroundThread.getExecutor().execute(() -> {
try (ContentProviderClient client = context.getContentResolver()
.acquireContentProviderClient(MediaStore.AUTHORITY)) {
for (String path : paths) {
final Uri uri = scanFileQuietly(client, new File(path));
if (callback != null) {
callback.onScanCompleted(path, uri);
}
}
}
});
}
private static Uri scanFileQuietly(ContentProviderClient client, File file) {
Uri uri = null;
try {
uri = MediaStore.scanFile(ContentResolver.wrap(client), file.getCanonicalFile());
Log.d(TAG, "Scanned " + file + " to " + uri);
} catch (Exception e) {
Log.w(TAG, "Failed to scan " + file + ": " + e);
}
return uri;
}
@Deprecated
static class ClientProxy implements MediaScannerConnectionClient {
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
final String[] mPaths;
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
final String[] mMimeTypes;
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
final OnScanCompletedListener mClient;
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
MediaScannerConnection mConnection;
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
int mNextPath;
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
ClientProxy(String[] paths, String[] mimeTypes, OnScanCompletedListener client) {
mPaths = paths;
mMimeTypes = mimeTypes;
mClient = client;
}
@Override
public void onMediaScannerConnected() {
}
@Override
public void onScanCompleted(String path, Uri uri) {
}
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.O)
void scanNextPath() {
}
}
/**
* Part of the ServiceConnection interface. Do not call.
*/
@Override
public void onServiceConnected(ComponentName className, IBinder service) {
// No longer needed
}
/**
* Part of the ServiceConnection interface. Do not call.
*/
@Override
public void onServiceDisconnected(ComponentName className) {
// No longer needed
}
}