PreviewImageFragment.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012-2013 ownCloud Inc.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2,
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. */
  17. package com.owncloud.android.ui.preview;
  18. import java.lang.ref.WeakReference;
  19. import java.util.ArrayList;
  20. import java.util.List;
  21. import android.accounts.Account;
  22. import android.annotation.SuppressLint;
  23. import android.app.Activity;
  24. import android.graphics.Bitmap;
  25. import android.graphics.BitmapFactory;
  26. import android.graphics.BitmapFactory.Options;
  27. import android.graphics.Point;
  28. import android.os.AsyncTask;
  29. import android.os.Bundle;
  30. import android.support.v4.app.FragmentStatePagerAdapter;
  31. import android.view.Display;
  32. import android.view.LayoutInflater;
  33. import android.view.View;
  34. import android.view.View.OnTouchListener;
  35. import android.view.ViewGroup;
  36. import android.widget.ImageView;
  37. import android.widget.ProgressBar;
  38. import android.widget.TextView;
  39. import com.actionbarsherlock.view.Menu;
  40. import com.actionbarsherlock.view.MenuInflater;
  41. import com.actionbarsherlock.view.MenuItem;
  42. import com.owncloud.android.R;
  43. import com.owncloud.android.datamodel.FileDataStorageManager;
  44. import com.owncloud.android.datamodel.OCFile;
  45. import com.owncloud.android.ui.dialog.ConfirmationDialogFragment;
  46. import com.owncloud.android.ui.fragment.FileFragment;
  47. import com.owncloud.android.utils.Log_OC;
  48. /**
  49. * This fragment shows a preview of a downloaded image.
  50. *
  51. * Trying to get an instance with NULL {@link OCFile} or ownCloud {@link Account} values will produce an {@link IllegalStateException}.
  52. *
  53. * If the {@link OCFile} passed is not downloaded, an {@link IllegalStateException} is generated on instantiation too.
  54. *
  55. * @author David A. Velasco
  56. */
  57. public class PreviewImageFragment extends FileFragment implements
  58. ConfirmationDialogFragment.ConfirmationDialogFragmentListener {
  59. public static final String EXTRA_FILE = "FILE";
  60. public static final String EXTRA_ACCOUNT = "ACCOUNT";
  61. private View mView;
  62. private Account mAccount;
  63. private ImageView mImageView;
  64. private TextView mMessageView;
  65. private ProgressBar mProgressWheel;
  66. public Bitmap mBitmap = null;
  67. private static final String TAG = PreviewImageFragment.class.getSimpleName();
  68. private boolean mIgnoreFirstSavedState;
  69. private FileFragment.ContainerActivity mContainerActivity;
  70. /**
  71. * Creates a fragment to preview an image.
  72. *
  73. * When 'imageFile' or 'ocAccount' are null
  74. *
  75. * @param imageFile An {@link OCFile} to preview as an image in the fragment
  76. * @param ocAccount An ownCloud account; needed to start downloads
  77. * @param ignoreFirstSavedState Flag to work around an unexpected behaviour of {@link FragmentStatePagerAdapter}; TODO better solution
  78. */
  79. public PreviewImageFragment(OCFile fileToDetail, Account ocAccount, boolean ignoreFirstSavedState) {
  80. super(fileToDetail);
  81. mAccount = ocAccount;
  82. mIgnoreFirstSavedState = ignoreFirstSavedState;
  83. }
  84. /**
  85. * Creates an empty fragment for image previews.
  86. *
  87. * MUST BE KEPT: the system uses it when tries to reinstantiate a fragment automatically (for instance, when the device is turned a aside).
  88. *
  89. * DO NOT CALL IT: an {@link OCFile} and {@link Account} must be provided for a successful construction
  90. */
  91. public PreviewImageFragment() {
  92. super();
  93. mAccount = null;
  94. mIgnoreFirstSavedState = false;
  95. }
  96. /**
  97. * {@inheritDoc}
  98. */
  99. @Override
  100. public void onCreate(Bundle savedInstanceState) {
  101. super.onCreate(savedInstanceState);
  102. setHasOptionsMenu(true);
  103. }
  104. /**
  105. * {@inheritDoc}
  106. */
  107. @Override
  108. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  109. Bundle savedInstanceState) {
  110. super.onCreateView(inflater, container, savedInstanceState);
  111. mView = inflater.inflate(R.layout.preview_image_fragment, container, false);
  112. mImageView = (ImageView)mView.findViewById(R.id.image);
  113. mImageView.setVisibility(View.GONE);
  114. mView.setOnTouchListener((OnTouchListener)getActivity());
  115. mMessageView = (TextView)mView.findViewById(R.id.message);
  116. mMessageView.setVisibility(View.GONE);
  117. mProgressWheel = (ProgressBar)mView.findViewById(R.id.progressWheel);
  118. mProgressWheel.setVisibility(View.VISIBLE);
  119. return mView;
  120. }
  121. /**
  122. * {@inheritDoc}
  123. */
  124. @Override
  125. public void onAttach(Activity activity) {
  126. super.onAttach(activity);
  127. if (!(activity instanceof OnTouchListener)) {
  128. throw new ClassCastException(activity.toString() +
  129. " must implement " + OnTouchListener.class.getSimpleName());
  130. }
  131. }
  132. /**
  133. * {@inheritDoc}
  134. */
  135. @Override
  136. public void onActivityCreated(Bundle savedInstanceState) {
  137. super.onActivityCreated(savedInstanceState);
  138. if (savedInstanceState != null) {
  139. if (!mIgnoreFirstSavedState) {
  140. OCFile file = (OCFile)savedInstanceState.getParcelable(PreviewImageFragment.EXTRA_FILE);
  141. mAccount = savedInstanceState.getParcelable(PreviewImageFragment.EXTRA_ACCOUNT);
  142. // Update the file
  143. if (mAccount!= null) {
  144. OCFile updatedFile = mContainerActivity.getStorageManager().getFileByPath(file.getRemotePath());
  145. if (updatedFile != null) {
  146. setFile(updatedFile);
  147. } else {
  148. setFile(file);
  149. }
  150. } else {
  151. setFile(file);
  152. }
  153. } else {
  154. mIgnoreFirstSavedState = false;
  155. }
  156. }
  157. if (getFile() == null) {
  158. throw new IllegalStateException("Instanced with a NULL OCFile");
  159. }
  160. if (mAccount == null) {
  161. throw new IllegalStateException("Instanced with a NULL ownCloud Account");
  162. }
  163. if (!getFile().isDown()) {
  164. throw new IllegalStateException("There is no local file to preview");
  165. }
  166. }
  167. /**
  168. * {@inheritDoc}
  169. */
  170. @Override
  171. public void onSaveInstanceState(Bundle outState) {
  172. super.onSaveInstanceState(outState);
  173. outState.putParcelable(PreviewImageFragment.EXTRA_FILE, getFile());
  174. outState.putParcelable(PreviewImageFragment.EXTRA_ACCOUNT, mAccount);
  175. }
  176. @Override
  177. public void onStart() {
  178. super.onStart();
  179. if (getFile() != null) {
  180. BitmapLoader bl = new BitmapLoader(mImageView, mMessageView, mProgressWheel);
  181. bl.execute(new String[]{getFile().getStoragePath()});
  182. }
  183. }
  184. /**
  185. * {@inheritDoc}
  186. */
  187. @Override
  188. public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
  189. super.onCreateOptionsMenu(menu, inflater);
  190. inflater.inflate(R.menu.file_actions_menu, menu);
  191. List<Integer> toHide = new ArrayList<Integer>();
  192. MenuItem item = null;
  193. toHide.add(R.id.action_cancel_download);
  194. toHide.add(R.id.action_cancel_upload);
  195. toHide.add(R.id.action_download_file);
  196. toHide.add(R.id.action_rename_file); // by now
  197. // Options shareLink
  198. if (!getFile().isShareByLink()) {
  199. toHide.add(R.id.action_unshare_file);
  200. }
  201. // Send file
  202. boolean sendEnabled = getString(R.string.send_files_to_other_apps).equalsIgnoreCase("on");
  203. if (!sendEnabled) {
  204. toHide.add(R.id.action_send_file);
  205. }
  206. for (int i : toHide) {
  207. item = menu.findItem(i);
  208. if (item != null) {
  209. item.setVisible(false);
  210. item.setEnabled(false);
  211. }
  212. }
  213. }
  214. /**
  215. * {@inheritDoc}
  216. */
  217. @Override
  218. public void onPrepareOptionsMenu(Menu menu) {
  219. super.onPrepareOptionsMenu(menu);
  220. MenuItem item = menu.findItem(R.id.action_unshare_file);
  221. // Options shareLink
  222. if (!getFile().isShareByLink()) {
  223. item.setVisible(false);
  224. item.setEnabled(false);
  225. } else {
  226. item.setVisible(true);
  227. item.setEnabled(true);
  228. }
  229. }
  230. /**
  231. * {@inheritDoc}
  232. */
  233. @Override
  234. public boolean onOptionsItemSelected(MenuItem item) {
  235. switch (item.getItemId()) {
  236. case R.id.action_share_file: {
  237. mContainerActivity.getFileOperationsHelper().shareFileWithLink(getFile());
  238. return true;
  239. }
  240. case R.id.action_unshare_file: {
  241. mContainerActivity.getFileOperationsHelper().unshareFileWithLink(getFile());
  242. return true;
  243. }
  244. case R.id.action_open_file_with: {
  245. openFile();
  246. return true;
  247. }
  248. case R.id.action_remove_file: {
  249. removeFile();
  250. return true;
  251. }
  252. case R.id.action_see_details: {
  253. seeDetails();
  254. return true;
  255. }
  256. case R.id.action_send_file: {
  257. mContainerActivity.getFileOperationsHelper().sendDownloadedFile(getFile());
  258. return true;
  259. }
  260. default:
  261. return false;
  262. }
  263. }
  264. private void seeDetails() {
  265. mContainerActivity.showDetails(getFile());
  266. }
  267. @Override
  268. public void onResume() {
  269. super.onResume();
  270. }
  271. @Override
  272. public void onPause() {
  273. super.onPause();
  274. }
  275. @Override
  276. public void onDestroy() {
  277. super.onDestroy();
  278. if (mBitmap != null) {
  279. mBitmap.recycle();
  280. }
  281. }
  282. /**
  283. * Opens the previewed image with an external application.
  284. */
  285. private void openFile() {
  286. mContainerActivity.getFileOperationsHelper().openFile(getFile());
  287. finish();
  288. }
  289. /**
  290. * Starts a the removal of the previewed file.
  291. *
  292. * Shows a confirmation dialog. The action continues in {@link #onConfirmation(String)} , {@link #onNeutral(String)} or {@link #onCancel(String)},
  293. * depending upon the user selection in the dialog.
  294. */
  295. private void removeFile() {
  296. ConfirmationDialogFragment confDialog = ConfirmationDialogFragment.newInstance(
  297. R.string.confirmation_remove_alert,
  298. new String[]{getFile().getFileName()},
  299. R.string.confirmation_remove_remote_and_local,
  300. R.string.confirmation_remove_local,
  301. R.string.common_cancel);
  302. confDialog.setOnConfirmationListener(this);
  303. confDialog.show(getFragmentManager(), ConfirmationDialogFragment.FTAG_CONFIRMATION);
  304. }
  305. /**
  306. * Performs the removal of the previewed file, both locally and in the server.
  307. */
  308. @Override
  309. public void onConfirmation(String callerTag) {
  310. FileDataStorageManager storageManager = mContainerActivity.getStorageManager();
  311. if (storageManager.getFileById(getFile().getFileId()) != null) { // check that the file is still there;
  312. mContainerActivity.getFileOperationsHelper().removeFile(getFile(), true);
  313. }
  314. }
  315. /**
  316. * Removes the file from local storage
  317. */
  318. @Override
  319. public void onNeutral(String callerTag) {
  320. OCFile file = getFile();
  321. mContainerActivity.getStorageManager().removeFile(file, false, true); // TODO perform in background task / new thread
  322. finish();
  323. }
  324. /**
  325. * User cancelled the removal action.
  326. */
  327. @Override
  328. public void onCancel(String callerTag) {
  329. // nothing to do here
  330. }
  331. private class BitmapLoader extends AsyncTask<String, Void, Bitmap> {
  332. /**
  333. * Weak reference to the target {@link ImageView} where the bitmap will be loaded into.
  334. *
  335. * Using a weak reference will avoid memory leaks if the target ImageView is retired from memory before the load finishes.
  336. */
  337. private final WeakReference<ImageView> mImageViewRef;
  338. /**
  339. * Weak reference to the target {@link TextView} where error messages will be written.
  340. *
  341. * Using a weak reference will avoid memory leaks if the target ImageView is retired from memory before the load finishes.
  342. */
  343. private final WeakReference<TextView> mMessageViewRef;
  344. /**
  345. * Weak reference to the target {@link Progressbar} shown while the load is in progress.
  346. *
  347. * Using a weak reference will avoid memory leaks if the target ImageView is retired from memory before the load finishes.
  348. */
  349. private final WeakReference<ProgressBar> mProgressWheelRef;
  350. /**
  351. * Error message to show when a load fails
  352. */
  353. private int mErrorMessageId;
  354. /**
  355. * Constructor.
  356. *
  357. * @param imageView Target {@link ImageView} where the bitmap will be loaded into.
  358. */
  359. public BitmapLoader(ImageView imageView, TextView messageView, ProgressBar progressWheel) {
  360. mImageViewRef = new WeakReference<ImageView>(imageView);
  361. mMessageViewRef = new WeakReference<TextView>(messageView);
  362. mProgressWheelRef = new WeakReference<ProgressBar>(progressWheel);
  363. }
  364. @SuppressWarnings("deprecation")
  365. @SuppressLint({ "NewApi", "NewApi", "NewApi" }) // to avoid Lint errors since Android SDK r20
  366. @Override
  367. protected Bitmap doInBackground(String... params) {
  368. Bitmap result = null;
  369. if (params.length != 1) return result;
  370. String storagePath = params[0];
  371. try {
  372. // set desired options that will affect the size of the bitmap
  373. BitmapFactory.Options options = new Options();
  374. options.inScaled = true;
  375. options.inPurgeable = true;
  376. if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.GINGERBREAD_MR1) {
  377. options.inPreferQualityOverSpeed = false;
  378. }
  379. if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB) {
  380. options.inMutable = false;
  381. }
  382. // make a false load of the bitmap - just to be able to read outWidth, outHeight and outMimeType
  383. options.inJustDecodeBounds = true;
  384. BitmapFactory.decodeFile(storagePath, options);
  385. int width = options.outWidth;
  386. int height = options.outHeight;
  387. int scale = 1;
  388. Display display = getActivity().getWindowManager().getDefaultDisplay();
  389. Point size = new Point();
  390. int screenWidth;
  391. int screenHeight;
  392. if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB_MR2) {
  393. display.getSize(size);
  394. screenWidth = size.x;
  395. screenHeight = size.y;
  396. } else {
  397. screenWidth = display.getWidth();
  398. screenHeight = display.getHeight();
  399. }
  400. if (width > screenWidth) {
  401. // second try to scale down the image , this time depending upon the screen size
  402. scale = (int) Math.floor((float)width / screenWidth);
  403. }
  404. if (height > screenHeight) {
  405. scale = Math.max(scale, (int) Math.floor((float)height / screenHeight));
  406. }
  407. options.inSampleSize = scale;
  408. // really load the bitmap
  409. options.inJustDecodeBounds = false; // the next decodeFile call will be real
  410. result = BitmapFactory.decodeFile(storagePath, options);
  411. //Log_OC.d(TAG, "Image loaded - width: " + options.outWidth + ", loaded height: " + options.outHeight);
  412. if (result == null) {
  413. mErrorMessageId = R.string.preview_image_error_unknown_format;
  414. Log_OC.e(TAG, "File could not be loaded as a bitmap: " + storagePath);
  415. }
  416. } catch (OutOfMemoryError e) {
  417. mErrorMessageId = R.string.preview_image_error_unknown_format;
  418. Log_OC.e(TAG, "Out of memory occured for file " + storagePath, e);
  419. } catch (NoSuchFieldError e) {
  420. mErrorMessageId = R.string.common_error_unknown;
  421. Log_OC.e(TAG, "Error from access to unexisting field despite protection; file " + storagePath, e);
  422. } catch (Throwable t) {
  423. mErrorMessageId = R.string.common_error_unknown;
  424. Log_OC.e(TAG, "Unexpected error loading " + getFile().getStoragePath(), t);
  425. }
  426. return result;
  427. }
  428. @Override
  429. protected void onPostExecute(Bitmap result) {
  430. hideProgressWheel();
  431. if (result != null) {
  432. showLoadedImage(result);
  433. } else {
  434. showErrorMessage();
  435. }
  436. }
  437. private void showLoadedImage(Bitmap result) {
  438. if (mImageViewRef != null) {
  439. final ImageView imageView = mImageViewRef.get();
  440. if (imageView != null) {
  441. imageView.setImageBitmap(result);
  442. imageView.setVisibility(View.VISIBLE);
  443. mBitmap = result;
  444. } // else , silently finish, the fragment was destroyed
  445. }
  446. if (mMessageViewRef != null) {
  447. final TextView messageView = mMessageViewRef.get();
  448. if (messageView != null) {
  449. messageView.setVisibility(View.GONE);
  450. } // else , silently finish, the fragment was destroyed
  451. }
  452. }
  453. private void showErrorMessage() {
  454. if (mImageViewRef != null) {
  455. final ImageView imageView = mImageViewRef.get();
  456. if (imageView != null) {
  457. // shows the default error icon
  458. imageView.setVisibility(View.VISIBLE);
  459. } // else , silently finish, the fragment was destroyed
  460. }
  461. if (mMessageViewRef != null) {
  462. final TextView messageView = mMessageViewRef.get();
  463. if (messageView != null) {
  464. messageView.setText(mErrorMessageId);
  465. messageView.setVisibility(View.VISIBLE);
  466. } // else , silently finish, the fragment was destroyed
  467. }
  468. }
  469. private void hideProgressWheel() {
  470. if (mProgressWheelRef != null) {
  471. final ProgressBar progressWheel = mProgressWheelRef.get();
  472. if (progressWheel != null) {
  473. progressWheel.setVisibility(View.GONE);
  474. }
  475. }
  476. }
  477. }
  478. /**
  479. * Helper method to test if an {@link OCFile} can be passed to a {@link PreviewImageFragment} to be previewed.
  480. *
  481. * @param file File to test if can be previewed.
  482. * @return 'True' if the file can be handled by the fragment.
  483. */
  484. public static boolean canBePreviewed(OCFile file) {
  485. return (file != null && file.isImage());
  486. }
  487. /**
  488. * Finishes the preview
  489. */
  490. private void finish() {
  491. Activity container = getActivity();
  492. container.finish();
  493. }
  494. }