PreviewTextFragment.java 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. package com.owncloud.android.ui.preview;
  2. import android.accounts.Account;
  3. import android.os.AsyncTask;
  4. import android.os.Bundle;
  5. import android.support.v4.app.Fragment;
  6. import android.support.v4.app.FragmentManager;
  7. import android.support.v4.app.FragmentTransaction;
  8. import android.view.LayoutInflater;
  9. import android.view.Menu;
  10. import android.view.MenuInflater;
  11. import android.view.MenuItem;
  12. import android.view.View;
  13. import android.view.ViewGroup;
  14. import android.widget.TextView;
  15. import com.owncloud.android.R;
  16. import com.owncloud.android.datamodel.OCFile;
  17. import com.owncloud.android.files.FileMenuFilter;
  18. import com.owncloud.android.lib.common.utils.Log_OC;
  19. import com.owncloud.android.ui.activity.FileDisplayActivity;
  20. import com.owncloud.android.ui.dialog.ConfirmationDialogFragment;
  21. import com.owncloud.android.ui.dialog.LoadingDialog;
  22. import com.owncloud.android.ui.dialog.RemoveFileDialogFragment;
  23. import com.owncloud.android.ui.fragment.FileFragment;
  24. import java.io.BufferedWriter;
  25. import java.io.FileInputStream;
  26. import java.io.IOException;
  27. import java.io.StringWriter;
  28. import java.lang.ref.WeakReference;
  29. import java.util.Scanner;
  30. public class PreviewTextFragment extends FileFragment {
  31. private static final String EXTRA_FILE = "FILE";
  32. private static final String EXTRA_ACCOUNT = "ACCOUNT";
  33. private static final String TAG = PreviewTextFragment.class.getSimpleName();
  34. private Account mAccount;
  35. private TextView mTextPreview;
  36. private TextLoadAsyncTask mTextLoadTask;
  37. /**
  38. * Creates an empty fragment for previews.
  39. * <p/>
  40. * MUST BE KEPT: the system uses it when tries to reinstantiate a fragment automatically
  41. * (for instance, when the device is turned a aside).
  42. * <p/>
  43. * DO NOT CALL IT: an {@link OCFile} and {@link Account} must be provided for a successful
  44. * construction
  45. */
  46. public PreviewTextFragment() {
  47. super();
  48. mAccount = null;
  49. }
  50. /**
  51. * {@inheritDoc}
  52. */
  53. @Override
  54. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  55. Bundle savedInstanceState) {
  56. super.onCreateView(inflater, container, savedInstanceState);
  57. Log_OC.e(TAG, "onCreateView");
  58. View ret = inflater.inflate(R.layout.text_file_preview, container, false);
  59. mTextPreview = (TextView) ret.findViewById(R.id.text_preview);
  60. return ret;
  61. }
  62. /**
  63. * {@inheritDoc}
  64. */
  65. @Override
  66. public void onCreate(Bundle savedInstanceState) {
  67. super.onCreate(savedInstanceState);
  68. OCFile file = getFile();
  69. Bundle args = getArguments();
  70. if (file == null) {
  71. file = args.getParcelable(FileDisplayActivity.EXTRA_FILE);
  72. }
  73. if (mAccount == null) {
  74. mAccount = args.getParcelable(FileDisplayActivity.EXTRA_ACCOUNT);
  75. }
  76. if (savedInstanceState == null) {
  77. if (file == null) {
  78. throw new IllegalStateException("Instanced with a NULL OCFile");
  79. }
  80. if (mAccount == null) {
  81. throw new IllegalStateException("Instanced with a NULL ownCloud Account");
  82. }
  83. } else {
  84. file = savedInstanceState.getParcelable(EXTRA_FILE);
  85. mAccount = savedInstanceState.getParcelable(EXTRA_ACCOUNT);
  86. }
  87. setFile(file);
  88. setHasOptionsMenu(true);
  89. }
  90. /**
  91. * {@inheritDoc}
  92. */
  93. @Override
  94. public void onSaveInstanceState(Bundle outState) {
  95. super.onSaveInstanceState(outState);
  96. outState.putParcelable(PreviewTextFragment.EXTRA_FILE, getFile());
  97. outState.putParcelable(PreviewTextFragment.EXTRA_ACCOUNT, mAccount);
  98. }
  99. @Override
  100. public void onStart() {
  101. super.onStart();
  102. Log_OC.e(TAG, "onStart");
  103. loadAndShowTextPreview();
  104. }
  105. private void loadAndShowTextPreview() {
  106. mTextLoadTask = new TextLoadAsyncTask(new WeakReference<TextView>(mTextPreview));
  107. mTextLoadTask.execute(getFile().getStoragePath());
  108. }
  109. /**
  110. * Reads the file to preview and shows its contents. Too critical to be anonymous.
  111. */
  112. private class TextLoadAsyncTask extends AsyncTask<Object, Void, StringWriter> {
  113. private final String DIALOG_WAIT_TAG = "DIALOG_WAIT";
  114. private final WeakReference<TextView> mTextViewReference;
  115. private TextLoadAsyncTask(WeakReference<TextView> textView) {
  116. mTextViewReference = textView;
  117. }
  118. @Override
  119. protected void onPreExecute() {
  120. showLoadingDialog();
  121. }
  122. @Override
  123. protected StringWriter doInBackground(java.lang.Object... params) {
  124. if (params.length != 1) {
  125. throw new IllegalArgumentException("The parameter to " + TextLoadAsyncTask.class.getName() + " must be (1) the file location");
  126. }
  127. final String location = (String) params[0];
  128. FileInputStream inputStream = null;
  129. Scanner sc = null;
  130. StringWriter source = new StringWriter();
  131. BufferedWriter bufferedWriter = new BufferedWriter(source);
  132. try {
  133. inputStream = new FileInputStream(location);
  134. sc = new Scanner(inputStream);
  135. while (sc.hasNextLine()) {
  136. bufferedWriter.append(sc.nextLine());
  137. if (sc.hasNextLine()) bufferedWriter.append("\n");
  138. }
  139. bufferedWriter.close();
  140. IOException exc = sc.ioException();
  141. if (exc != null) throw exc;
  142. } catch (IOException e) {
  143. Log_OC.e(TAG, e.getMessage(), e);
  144. finish();
  145. } finally {
  146. if (inputStream != null) {
  147. try {
  148. inputStream.close();
  149. } catch (IOException e) {
  150. Log_OC.e(TAG, e.getMessage(), e);
  151. finish();
  152. }
  153. }
  154. if (sc != null) {
  155. sc.close();
  156. }
  157. }
  158. return source;
  159. }
  160. @Override
  161. protected void onPostExecute(final StringWriter stringWriter) {
  162. final TextView textView = mTextViewReference.get();
  163. if (textView != null) {
  164. textView.setText(new String(stringWriter.getBuffer()));
  165. textView.setVisibility(View.VISIBLE);
  166. }
  167. dismissLoadingDialog();
  168. }
  169. /**
  170. * Show loading dialog
  171. */
  172. public void showLoadingDialog() {
  173. // only once
  174. Fragment frag = getActivity().getSupportFragmentManager().findFragmentByTag(DIALOG_WAIT_TAG);
  175. LoadingDialog loading = null;
  176. if (frag == null) {
  177. // Construct dialog
  178. loading = new LoadingDialog(getResources().getString(R.string.wait_a_moment));
  179. FragmentManager fm = getActivity().getSupportFragmentManager();
  180. FragmentTransaction ft = fm.beginTransaction();
  181. loading.show(ft, DIALOG_WAIT_TAG);
  182. } else {
  183. loading = (LoadingDialog) frag;
  184. loading.setShowsDialog(true);
  185. }
  186. }
  187. /**
  188. * Dismiss loading dialog
  189. */
  190. public void dismissLoadingDialog() {
  191. final Fragment frag = getActivity().getSupportFragmentManager().findFragmentByTag(DIALOG_WAIT_TAG);
  192. if (frag != null) {
  193. LoadingDialog loading = (LoadingDialog) frag;
  194. loading.dismiss();
  195. }
  196. }
  197. }
  198. /**
  199. * {@inheritDoc}
  200. */
  201. @Override
  202. public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
  203. super.onCreateOptionsMenu(menu, inflater);
  204. inflater.inflate(R.menu.file_actions_menu, menu);
  205. }
  206. /**
  207. * {@inheritDoc}
  208. */
  209. @Override
  210. public void onPrepareOptionsMenu(Menu menu) {
  211. super.onPrepareOptionsMenu(menu);
  212. if (mContainerActivity.getStorageManager() != null) {
  213. FileMenuFilter mf = new FileMenuFilter(
  214. getFile(),
  215. mContainerActivity.getStorageManager().getAccount(),
  216. mContainerActivity,
  217. getActivity()
  218. );
  219. mf.filter(menu);
  220. }
  221. // additional restriction for this fragment
  222. MenuItem item = menu.findItem(R.id.action_rename_file);
  223. if (item != null) {
  224. item.setVisible(false);
  225. item.setEnabled(false);
  226. }
  227. // additional restriction for this fragment
  228. item = menu.findItem(R.id.action_move);
  229. if (item != null) {
  230. item.setVisible(false);
  231. item.setEnabled(false);
  232. }
  233. // this one doesn't make sense since the file has to be down in order to be previewed
  234. item = menu.findItem(R.id.action_download_file);
  235. if (item != null) {
  236. item.setVisible(false);
  237. item.setEnabled(false);
  238. }
  239. item = menu.findItem(R.id.action_sync_file);
  240. if (item != null) {
  241. item.setVisible(false);
  242. item.setEnabled(false);
  243. }
  244. item = menu.findItem(R.id.action_sync_account);
  245. if (item != null) {
  246. item.setVisible(false);
  247. item.setEnabled(false);
  248. }
  249. }
  250. /**
  251. * {@inheritDoc}
  252. */
  253. @Override
  254. public boolean onOptionsItemSelected(MenuItem item) {
  255. switch (item.getItemId()) {
  256. case R.id.action_share_file: {
  257. mContainerActivity.getFileOperationsHelper().shareFileWithLink(getFile());
  258. return true;
  259. }
  260. case R.id.action_unshare_file: {
  261. mContainerActivity.getFileOperationsHelper().unshareFileWithLink(getFile());
  262. return true;
  263. }
  264. case R.id.action_open_file_with: {
  265. openFile();
  266. return true;
  267. }
  268. case R.id.action_remove_file: {
  269. RemoveFileDialogFragment dialog = RemoveFileDialogFragment.newInstance(getFile());
  270. dialog.show(getFragmentManager(), ConfirmationDialogFragment.FTAG_CONFIRMATION);
  271. return true;
  272. }
  273. case R.id.action_see_details: {
  274. seeDetails();
  275. return true;
  276. }
  277. case R.id.action_send_file: {
  278. sendFile();
  279. return true;
  280. }
  281. case R.id.action_sync_file: {
  282. mContainerActivity.getFileOperationsHelper().syncFile(getFile());
  283. return true;
  284. }
  285. default:
  286. return false;
  287. }
  288. }
  289. /**
  290. * Update the file of the fragment with file value
  291. *
  292. * @param file The new file to set
  293. */
  294. public void updateFile(OCFile file) {
  295. setFile(file);
  296. }
  297. private void sendFile() {
  298. mContainerActivity.getFileOperationsHelper().sendDownloadedFile(getFile());
  299. }
  300. private void seeDetails() {
  301. mContainerActivity.showDetails(getFile());
  302. }
  303. @Override
  304. public void onPause() {
  305. Log_OC.e(TAG, "onPause");
  306. super.onPause();
  307. }
  308. @Override
  309. public void onResume() {
  310. super.onResume();
  311. Log_OC.e(TAG, "onResume");
  312. }
  313. @Override
  314. public void onDestroy() {
  315. Log_OC.e(TAG, "onDestroy");
  316. super.onDestroy();
  317. }
  318. @Override
  319. public void onStop() {
  320. super.onStop();
  321. Log_OC.e(TAG, "onStop");
  322. if (mTextLoadTask != null)
  323. mTextLoadTask.cancel(Boolean.TRUE);
  324. }
  325. /**
  326. * Opens the previewed file with an external application.
  327. */
  328. private void openFile() {
  329. mContainerActivity.getFileOperationsHelper().openFile(getFile());
  330. finish();
  331. }
  332. /**
  333. * Helper method to test if an {@link OCFile} can be passed to a {@link PreviewTextFragment} to be previewed.
  334. *
  335. * @param file File to test if can be previewed.
  336. * @return 'True' if the file can be handled by the fragment.
  337. */
  338. public static boolean canBePreviewed(OCFile file) {
  339. return (file != null && file.isDown() && file.isText());
  340. }
  341. /**
  342. * Finishes the preview
  343. */
  344. private void finish() {
  345. getActivity().runOnUiThread(new Runnable() {
  346. @Override
  347. public void run() {
  348. getActivity().onBackPressed();
  349. }
  350. });
  351. }
  352. }