blob: ba8c35fc366460c4ce4e9a5a90113d93a73d3ef3 [file] [log] [blame]
Jeff Sharkey76112212013-08-06 11:26:10 -07001/*
2 * Copyright (C) 2013 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
17package com.android.documentsui;
18
Jeff Sharkey3fd11772013-09-30 14:26:27 -070019import static com.android.documentsui.DocumentsActivity.TAG;
20
Jeff Sharkey76112212013-08-06 11:26:10 -070021import android.app.AlertDialog;
22import android.app.Dialog;
23import android.app.DialogFragment;
24import android.app.FragmentManager;
Jeff Sharkey3fd11772013-09-30 14:26:27 -070025import android.content.ContentProviderClient;
Jeff Sharkey76112212013-08-06 11:26:10 -070026import android.content.ContentResolver;
Jeff Sharkey76112212013-08-06 11:26:10 -070027import android.content.Context;
28import android.content.DialogInterface;
29import android.content.DialogInterface.OnClickListener;
30import android.net.Uri;
Jeff Sharkey9dd02622013-09-27 16:44:11 -070031import android.os.AsyncTask;
Jeff Sharkey76112212013-08-06 11:26:10 -070032import android.os.Bundle;
Jeff Sharkeyb6a7f2c2013-08-27 18:26:48 -070033import android.provider.DocumentsContract;
Jeff Sharkey724deeb2013-08-31 15:02:20 -070034import android.provider.DocumentsContract.Document;
Jeff Sharkey3fd11772013-09-30 14:26:27 -070035import android.util.Log;
Jeff Sharkey76112212013-08-06 11:26:10 -070036import android.view.LayoutInflater;
37import android.view.View;
38import android.widget.EditText;
39import android.widget.Toast;
40
Jeff Sharkey724deeb2013-08-31 15:02:20 -070041import com.android.documentsui.model.DocumentInfo;
Jeff Sharkey76112212013-08-06 11:26:10 -070042
43/**
44 * Dialog to create a new directory.
45 */
46public class CreateDirectoryFragment extends DialogFragment {
47 private static final String TAG_CREATE_DIRECTORY = "create_directory";
48
49 public static void show(FragmentManager fm) {
50 final CreateDirectoryFragment dialog = new CreateDirectoryFragment();
51 dialog.show(fm, TAG_CREATE_DIRECTORY);
52 }
53
54 @Override
55 public Dialog onCreateDialog(Bundle savedInstanceState) {
56 final Context context = getActivity();
57 final ContentResolver resolver = context.getContentResolver();
58
59 final AlertDialog.Builder builder = new AlertDialog.Builder(context);
60 final LayoutInflater dialogInflater = LayoutInflater.from(builder.getContext());
61
62 final View view = dialogInflater.inflate(R.layout.dialog_create_dir, null, false);
Jeff Sharkeyb6a7f2c2013-08-27 18:26:48 -070063 final EditText text1 = (EditText) view.findViewById(android.R.id.text1);
Jeff Sharkey76112212013-08-06 11:26:10 -070064
65 builder.setTitle(R.string.menu_create_dir);
66 builder.setView(view);
67
68 builder.setPositiveButton(android.R.string.ok, new OnClickListener() {
69 @Override
70 public void onClick(DialogInterface dialog, int which) {
71 final String displayName = text1.getText().toString();
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070072
73 final DocumentsActivity activity = (DocumentsActivity) getActivity();
74 final DocumentInfo cwd = activity.getCurrentDirectory();
75
Jeff Sharkey0aa26922013-10-08 17:09:18 -070076 new CreateDirectoryTask(activity, cwd, displayName).executeOnExecutor(
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070077 ProviderExecutor.forAuthority(cwd.authority));
Jeff Sharkey76112212013-08-06 11:26:10 -070078 }
79 });
80 builder.setNegativeButton(android.R.string.cancel, null);
81
82 return builder.create();
83 }
Jeff Sharkey9dd02622013-09-27 16:44:11 -070084
85 private class CreateDirectoryTask extends AsyncTask<Void, Void, DocumentInfo> {
Jeff Sharkey0aa26922013-10-08 17:09:18 -070086 private final DocumentsActivity mActivity;
87 private final DocumentInfo mCwd;
Jeff Sharkey9dd02622013-09-27 16:44:11 -070088 private final String mDisplayName;
89
Jeff Sharkey0aa26922013-10-08 17:09:18 -070090 public CreateDirectoryTask(
91 DocumentsActivity activity, DocumentInfo cwd, String displayName) {
92 mActivity = activity;
93 mCwd = cwd;
Jeff Sharkey9dd02622013-09-27 16:44:11 -070094 mDisplayName = displayName;
95 }
96
97 @Override
Jeff Sharkey4be51f12013-10-23 15:46:38 -070098 protected void onPreExecute() {
99 mActivity.setPending(true);
100 }
101
102 @Override
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700103 protected DocumentInfo doInBackground(Void... params) {
Jeff Sharkey0aa26922013-10-08 17:09:18 -0700104 final ContentResolver resolver = mActivity.getContentResolver();
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700105 ContentProviderClient client = null;
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700106 try {
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700107 client = DocumentsApplication.acquireUnstableProviderOrThrow(
Jeff Sharkey0aa26922013-10-08 17:09:18 -0700108 resolver, mCwd.derivedUri.getAuthority());
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700109 final Uri childUri = DocumentsContract.createDocument(
Jeff Sharkey0aa26922013-10-08 17:09:18 -0700110 client, mCwd.derivedUri, Document.MIME_TYPE_DIR, mDisplayName);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700111 return DocumentInfo.fromUri(resolver, childUri);
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700112 } catch (Exception e) {
113 Log.w(TAG, "Failed to create directory", e);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700114 return null;
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700115 } finally {
116 ContentProviderClient.releaseQuietly(client);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700117 }
118 }
119
120 @Override
121 protected void onPostExecute(DocumentInfo result) {
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700122 if (result != null) {
123 // Navigate into newly created child
Jeff Sharkey0aa26922013-10-08 17:09:18 -0700124 mActivity.onDocumentPicked(result);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700125 } else {
Jeff Sharkey0aa26922013-10-08 17:09:18 -0700126 Toast.makeText(mActivity, R.string.create_error, Toast.LENGTH_SHORT).show();
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700127 }
Jeff Sharkey4be51f12013-10-23 15:46:38 -0700128
129 mActivity.setPending(false);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700130 }
131 }
Jeff Sharkey76112212013-08-06 11:26:10 -0700132}