mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
244 lines
10 KiB
Java
244 lines
10 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
import org.mozilla.gecko.prompts.Prompt;
|
|
import org.mozilla.gecko.prompts.PromptService;
|
|
import org.mozilla.gecko.util.ActivityResultHandler;
|
|
import org.mozilla.gecko.util.ActivityResultHandlerMap;
|
|
import org.mozilla.gecko.util.ThreadUtils;
|
|
import org.mozilla.gecko.util.GeckoEventListener;
|
|
|
|
import org.json.JSONException;
|
|
import org.json.JSONObject;
|
|
|
|
import android.app.Activity;
|
|
import android.content.ComponentName;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.pm.ResolveInfo;
|
|
import android.net.Uri;
|
|
import android.os.Environment;
|
|
import android.os.Parcelable;
|
|
import android.provider.MediaStore;
|
|
import android.util.Log;
|
|
|
|
import java.io.File;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.HashMap;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
import java.util.concurrent.ConcurrentLinkedQueue;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
public class ActivityHandlerHelper implements GeckoEventListener {
|
|
private static final String LOGTAG = "GeckoActivityHandlerHelper";
|
|
|
|
|
|
private final ActivityResultHandlerMap mActivityResultHandlerMap;
|
|
public interface ResultHandler {
|
|
public void gotFile(String filename);
|
|
}
|
|
|
|
@SuppressWarnings("serial")
|
|
public ActivityHandlerHelper() {
|
|
mActivityResultHandlerMap = new ActivityResultHandlerMap();
|
|
GeckoAppShell.getEventDispatcher().registerEventListener("FilePicker:Show", this);
|
|
}
|
|
|
|
@Override
|
|
public void handleMessage(String event, final JSONObject message) {
|
|
if (event.equals("FilePicker:Show")) {
|
|
String mimeType = "*/*";
|
|
String mode = message.optString("mode");
|
|
|
|
if ("mimeType".equals(mode))
|
|
mimeType = message.optString("mimeType");
|
|
else if ("extension".equals(mode))
|
|
mimeType = GeckoAppShell.getMimeTypeFromExtensions(message.optString("extensions"));
|
|
|
|
showFilePickerAsync(GeckoAppShell.getGeckoInterface().getActivity(), mimeType, new ResultHandler() {
|
|
public void gotFile(String filename) {
|
|
try {
|
|
message.put("file", filename);
|
|
} catch (JSONException ex) {
|
|
Log.i(LOGTAG, "Can't add filename to message " + filename);
|
|
}
|
|
GeckoAppShell.sendEventToGecko(GeckoEvent.createBroadcastEvent(
|
|
"FilePicker:Result", message.toString()));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
public int makeRequestCode(ActivityResultHandler aHandler) {
|
|
return mActivityResultHandlerMap.put(aHandler);
|
|
}
|
|
|
|
public void startIntentForActivity (Activity activity, Intent intent, ActivityResultHandler activityResultHandler) {
|
|
activity.startActivityForResult(intent, mActivityResultHandlerMap.put(activityResultHandler));
|
|
}
|
|
|
|
private void addActivities(Context context, Intent intent, HashMap<String, Intent> intents, HashMap<String, Intent> filters) {
|
|
PackageManager pm = context.getPackageManager();
|
|
List<ResolveInfo> lri = pm.queryIntentActivityOptions(GeckoAppShell.getGeckoInterface().getActivity().getComponentName(), null, intent, 0);
|
|
for (ResolveInfo ri : lri) {
|
|
ComponentName cn = new ComponentName(ri.activityInfo.applicationInfo.packageName, ri.activityInfo.name);
|
|
if (filters != null && !filters.containsKey(cn.toString())) {
|
|
Intent rintent = new Intent(intent);
|
|
rintent.setComponent(cn);
|
|
intents.put(cn.toString(), rintent);
|
|
}
|
|
}
|
|
}
|
|
|
|
private Intent getIntent(Context context, String mimeType) {
|
|
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
|
|
intent.setType(mimeType);
|
|
intent.addCategory(Intent.CATEGORY_OPENABLE);
|
|
return intent;
|
|
}
|
|
|
|
private List<Intent> getIntentsForFilePicker(final Context context,
|
|
final String mimeType,
|
|
final FilePickerResultHandler fileHandler) {
|
|
// The base intent to use for the file picker. Even if this is an implicit intent, Android will
|
|
// still show a list of Activitiees that match this action/type.
|
|
Intent baseIntent;
|
|
// A HashMap of Activities the base intent will show in the chooser. This is used
|
|
// to filter activities from other intents so that we don't show duplicates.
|
|
HashMap<String, Intent> baseIntents = new HashMap<String, Intent>();
|
|
// A list of other activities to shwo in the picker (and the intents to launch them).
|
|
HashMap<String, Intent> intents = new HashMap<String, Intent> ();
|
|
|
|
if ("audio/*".equals(mimeType)) {
|
|
// For audio the only intent is the mimetype
|
|
baseIntent = getIntent(context, mimeType);
|
|
addActivities(context, baseIntent, baseIntents, null);
|
|
} else if ("image/*".equals(mimeType)) {
|
|
// For images the base is a capture intent
|
|
baseIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
|
|
baseIntent.putExtra(MediaStore.EXTRA_OUTPUT,
|
|
Uri.fromFile(new File(Environment.getExternalStorageDirectory(),
|
|
fileHandler.generateImageName())));
|
|
addActivities(context, baseIntent, baseIntents, null);
|
|
|
|
// We also add the mimetype intent
|
|
addActivities(context, getIntent(context, mimeType), intents, baseIntents);
|
|
} else if ("video/*".equals(mimeType)) {
|
|
// For videos the base is a capture intent
|
|
baseIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
|
|
addActivities(context, baseIntent, baseIntents, null);
|
|
|
|
// We also add the mimetype intent
|
|
addActivities(context, getIntent(context, mimeType), intents, baseIntents);
|
|
} else {
|
|
// If we don't have a known mimetype, we just search for */*
|
|
baseIntent = getIntent(context, "*/*");
|
|
addActivities(context, baseIntent, baseIntents, null);
|
|
|
|
// But we also add the video and audio capture intents
|
|
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
|
|
intent.putExtra(MediaStore.EXTRA_OUTPUT,
|
|
Uri.fromFile(new File(Environment.getExternalStorageDirectory(),
|
|
fileHandler.generateImageName())));
|
|
addActivities(context, intent, intents, baseIntents);
|
|
|
|
intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
|
|
addActivities(context, intent, intents, baseIntents);
|
|
}
|
|
|
|
// If we didn't find any activities, we fall back to the */* mimetype intent
|
|
if (baseIntents.size() == 0 && intents.size() == 0) {
|
|
intents.clear();
|
|
|
|
baseIntent = getIntent(context, "*/*");
|
|
addActivities(context, baseIntent, baseIntents, null);
|
|
}
|
|
|
|
ArrayList<Intent> vals = new ArrayList<Intent>(intents.values());
|
|
vals.add(0, baseIntent);
|
|
return vals;
|
|
}
|
|
|
|
private String getFilePickerTitle(Context context, String aMimeType) {
|
|
if (aMimeType.equals("audio/*")) {
|
|
return context.getString(R.string.filepicker_audio_title);
|
|
} else if (aMimeType.equals("image/*")) {
|
|
return context.getString(R.string.filepicker_image_title);
|
|
} else if (aMimeType.equals("video/*")) {
|
|
return context.getString(R.string.filepicker_video_title);
|
|
} else {
|
|
return context.getString(R.string.filepicker_title);
|
|
}
|
|
}
|
|
|
|
private interface IntentHandler {
|
|
public void gotIntent(Intent intent);
|
|
}
|
|
|
|
/* Gets an intent that can open a particular mimetype. Will show a prompt with a list
|
|
* of Activities that can handle the mietype. Asynchronously calls the handler when
|
|
* one of the intents is selected. If the caller passes in null for the handler, will still
|
|
* prompt for the activity, but will throw away the result.
|
|
*/
|
|
private void getFilePickerIntentAsync(final Context context,
|
|
final String mimeType,
|
|
final FilePickerResultHandler fileHandler,
|
|
final IntentHandler handler) {
|
|
List<Intent> intents = getIntentsForFilePicker(context, mimeType, fileHandler);
|
|
|
|
if (intents.size() == 0) {
|
|
Log.i(LOGTAG, "no activities for the file picker!");
|
|
handler.gotIntent(null);
|
|
return;
|
|
}
|
|
|
|
Intent base = intents.remove(0);
|
|
if (intents.size() == 0) {
|
|
handler.gotIntent(base);
|
|
return;
|
|
}
|
|
|
|
Intent chooser = Intent.createChooser(base, getFilePickerTitle(context, mimeType));
|
|
chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, intents.toArray(new Parcelable[]{}));
|
|
handler.gotIntent(chooser);
|
|
}
|
|
|
|
/* Allows the user to pick an activity to load files from using a list prompt. Then opens the activity and
|
|
* sends the file returned to the passed in handler. If a null handler is passed in, will still
|
|
* pick and launch the file picker, but will throw away the result.
|
|
*/
|
|
public void showFilePickerAsync(final Activity parentActivity, String aMimeType, final ResultHandler handler) {
|
|
final FilePickerResultHandler fileHandler = new FilePickerResultHandler(handler);
|
|
getFilePickerIntentAsync(parentActivity, aMimeType, fileHandler, new IntentHandler() {
|
|
@Override
|
|
public void gotIntent(Intent intent) {
|
|
if (handler == null) {
|
|
return;
|
|
}
|
|
|
|
if (intent == null) {
|
|
handler.gotFile("");
|
|
return;
|
|
}
|
|
|
|
parentActivity.startActivityForResult(intent, mActivityResultHandlerMap.put(fileHandler));
|
|
}
|
|
});
|
|
}
|
|
|
|
boolean handleActivityResult(int requestCode, int resultCode, Intent data) {
|
|
ActivityResultHandler handler = mActivityResultHandlerMap.getAndRemove(requestCode);
|
|
if (handler != null) {
|
|
handler.onActivityResult(resultCode, data);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|