FileDownloadFragment.java 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. /* ownCloud Android client application
  2. *
  3. * Copyright (C) 2012-2013 ownCloud Inc.
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. package com.owncloud.android.ui.preview;
  20. import java.lang.ref.WeakReference;
  21. import android.accounts.Account;
  22. import android.app.Activity;
  23. import android.os.Bundle;
  24. import android.support.v4.app.FragmentStatePagerAdapter;
  25. import android.util.Log;
  26. import android.view.LayoutInflater;
  27. import android.view.View;
  28. import android.view.View.OnClickListener;
  29. import android.view.ViewGroup;
  30. import android.widget.Button;
  31. import android.widget.ProgressBar;
  32. import android.widget.TextView;
  33. import com.actionbarsherlock.app.SherlockFragment;
  34. import com.owncloud.android.datamodel.FileDataStorageManager;
  35. import com.owncloud.android.datamodel.OCFile;
  36. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  37. import com.owncloud.android.ui.fragment.FileFragment;
  38. import com.owncloud.android.R;
  39. import eu.alefzero.webdav.OnDatatransferProgressListener;
  40. /**
  41. * This Fragment is used to monitor the progress of a file downloading.
  42. *
  43. * @author David A. Velasco
  44. */
  45. public class FileDownloadFragment extends SherlockFragment implements OnClickListener, FileFragment {
  46. public static final String EXTRA_FILE = "FILE";
  47. public static final String EXTRA_ACCOUNT = "ACCOUNT";
  48. private FileFragment.ContainerActivity mContainerActivity;
  49. private View mView;
  50. private OCFile mFile;
  51. private Account mAccount;
  52. private FileDataStorageManager mStorageManager;
  53. public ProgressListener mProgressListener;
  54. private boolean mListening;
  55. private static final String TAG = FileDownloadFragment.class.getSimpleName();
  56. private boolean mIgnoreFirstSavedState;
  57. /**
  58. * Creates an empty details fragment.
  59. *
  60. * It's necessary to keep a public constructor without parameters; the system uses it when tries to reinstantiate a fragment automatically.
  61. */
  62. public FileDownloadFragment() {
  63. mFile = null;
  64. mAccount = null;
  65. mStorageManager = null;
  66. mProgressListener = null;
  67. mListening = false;
  68. mIgnoreFirstSavedState = false;
  69. }
  70. /**
  71. * Creates a details fragment.
  72. *
  73. * When 'fileToDetail' or 'ocAccount' are null, creates a dummy layout (to use when a file wasn't tapped before).
  74. *
  75. * @param fileToDetail An {@link OCFile} to show 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 FileDownloadFragment(OCFile fileToDetail, Account ocAccount, boolean ignoreFirstSavedState) {
  80. mFile = fileToDetail;
  81. mAccount = ocAccount;
  82. mStorageManager = null; // we need a context to init this; the container activity is not available yet at this moment
  83. mProgressListener = null;
  84. mListening = false;
  85. mIgnoreFirstSavedState = ignoreFirstSavedState;
  86. }
  87. @Override
  88. public void onCreate(Bundle savedInstanceState) {
  89. super.onCreate(savedInstanceState);
  90. Log.e(TAG, "PREVIEW_DOWNLOAD_FRAGMENT ONCREATE " + ((mFile == null)? "(NULL)" : mFile.getFileName()));
  91. }
  92. @Override
  93. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  94. Bundle savedInstanceState) {
  95. super.onCreateView(inflater, container, savedInstanceState);
  96. if (savedInstanceState != null) {
  97. if (!mIgnoreFirstSavedState) {
  98. mFile = savedInstanceState.getParcelable(FileDownloadFragment.EXTRA_FILE);
  99. mAccount = savedInstanceState.getParcelable(FileDownloadFragment.EXTRA_ACCOUNT);
  100. } else {
  101. mIgnoreFirstSavedState = false;
  102. }
  103. }
  104. View view = null;
  105. view = inflater.inflate(R.layout.file_download_fragment, container, false);
  106. mView = view;
  107. ProgressBar progressBar = (ProgressBar)mView.findViewById(R.id.progressBar);
  108. mProgressListener = new ProgressListener(progressBar);
  109. ((Button)mView.findViewById(R.id.cancelBtn)).setOnClickListener(this);
  110. return view;
  111. }
  112. /**
  113. * {@inheritDoc}
  114. */
  115. @Override
  116. public void onAttach(Activity activity) {
  117. super.onAttach(activity);
  118. Log.e(TAG, "PREVIEW_DOWNLOAD_FRAGMENT ONATTACH " + ((mFile == null)?" (NULL)":mFile.getFileName()));
  119. try {
  120. mContainerActivity = (ContainerActivity) activity;
  121. } catch (ClassCastException e) {
  122. throw new ClassCastException(activity.toString() + " must implement " + FileFragment.ContainerActivity.class.getSimpleName());
  123. }
  124. }
  125. /**
  126. * {@inheritDoc}
  127. */
  128. @Override
  129. public void onActivityCreated(Bundle savedInstanceState) {
  130. super.onActivityCreated(savedInstanceState);
  131. Log.e(TAG, "PREVIEW_DOWNLOAD_FRAGMENT ONACTIVITYCREATED " + ((mFile == null)?" (NULL)":mFile.getFileName()));
  132. if (mAccount != null) {
  133. mStorageManager = new FileDataStorageManager(mAccount, getActivity().getApplicationContext().getContentResolver());;
  134. }
  135. }
  136. @Override
  137. public void onSaveInstanceState(Bundle outState) {
  138. super.onSaveInstanceState(outState);
  139. outState.putParcelable(FileDownloadFragment.EXTRA_FILE, mFile);
  140. outState.putParcelable(FileDownloadFragment.EXTRA_ACCOUNT, mAccount);
  141. }
  142. @Override
  143. public void onStart() {
  144. super.onStart();
  145. Log.e(TAG, "FILE_DOWNLOAD_FRAGMENT ONSTART " + mFile.getFileName());
  146. listenForTransferProgress();
  147. }
  148. @Override
  149. public void onResume() {
  150. Log.e(TAG, "PREVIEW_DOWNLOAD_FRAGMENT ONRESUME " + mFile.getFileName());
  151. super.onResume();
  152. }
  153. @Override
  154. public void onPause() {
  155. super.onPause();
  156. Log.e(TAG, "PREVIEW_DOWNLOAD_FRAGMENT ONPAUSE " + mFile.getFileName());
  157. }
  158. @Override
  159. public void onStop() {
  160. super.onStop();
  161. Log.e(TAG, "FILE_DOWNLOAD_FRAGMENT ONSTOP " + mFile.getFileName());
  162. leaveTransferProgress();
  163. }
  164. @Override
  165. public void onDestroy() {
  166. super.onDestroy();
  167. Log.e(TAG, "FILE_DOWNLOAD_FRAGMENT ONDESTROY " + mFile.getFileName());
  168. }
  169. @Override
  170. public View getView() {
  171. if (!mListening) {
  172. listenForTransferProgress();
  173. }
  174. return super.getView() == null ? mView : super.getView();
  175. }
  176. @Override
  177. public void onClick(View v) {
  178. switch (v.getId()) {
  179. case R.id.cancelBtn: {
  180. FileDownloaderBinder downloaderBinder = mContainerActivity.getFileDownloaderBinder();
  181. if (downloaderBinder != null && downloaderBinder.isDownloading(mAccount, mFile)) {
  182. downloaderBinder.cancel(mAccount, mFile);
  183. getActivity().finish(); // :)
  184. /*
  185. leaveTransferProgress();
  186. if (mFile.isDown()) {
  187. setButtonsForDown();
  188. } else {
  189. setButtonsForRemote();
  190. }
  191. */
  192. }
  193. break;
  194. }
  195. default:
  196. Log.e(TAG, "Incorrect view clicked!");
  197. }
  198. }
  199. /**
  200. * {@inheritDoc}
  201. */
  202. public OCFile getFile(){
  203. return mFile;
  204. }
  205. /**
  206. * Updates the view depending upon the state of the downloading file.
  207. *
  208. * @param transferring When true, the view must be updated assuming that the holded file is
  209. * downloading, no matter what the downloaderBinder says.
  210. */
  211. public void updateView(boolean transferring) {
  212. // configure UI for depending upon local state of the file
  213. FileDownloaderBinder downloaderBinder = mContainerActivity.getFileDownloaderBinder();
  214. if (transferring || (downloaderBinder != null && downloaderBinder.isDownloading(mAccount, mFile))) {
  215. setButtonsForTransferring();
  216. } else if (mFile.isDown()) {
  217. setButtonsForDown();
  218. } else {
  219. setButtonsForRemote();
  220. }
  221. getView().invalidate();
  222. }
  223. /**
  224. * Enables or disables buttons for a file being downloaded
  225. */
  226. private void setButtonsForTransferring() {
  227. Button downloadButton = (Button) getView().findViewById(R.id.cancelBtn);
  228. downloadButton.setText(R.string.common_cancel);
  229. // show the progress bar for the transfer
  230. ProgressBar progressBar = (ProgressBar)getView().findViewById(R.id.progressBar);
  231. progressBar.setVisibility(View.VISIBLE);
  232. TextView progressText = (TextView)getView().findViewById(R.id.progressText);
  233. progressText.setText(R.string.downloader_download_in_progress_ticker);
  234. }
  235. /**
  236. * Enables or disables buttons for a file locally available
  237. */
  238. private void setButtonsForDown() {
  239. Button downloadButton = (Button) getView().findViewById(R.id.cancelBtn);
  240. downloadButton.setVisibility(View.GONE);
  241. // hides the progress bar
  242. ProgressBar progressBar = (ProgressBar)getView().findViewById(R.id.progressBar);
  243. progressBar.setVisibility(View.GONE);
  244. // updates the text message
  245. TextView progressText = (TextView)getView().findViewById(R.id.progressText);
  246. progressText.setText(R.string.common_loading);
  247. }
  248. /**
  249. * Enables or disables buttons for a file not locally available
  250. */
  251. private void setButtonsForRemote() {
  252. Button downloadButton = (Button) getView().findViewById(R.id.cancelBtn);
  253. downloadButton.setVisibility(View.GONE);
  254. //downloadButton.setText(R.string.filedetails_download);
  255. // hides the progress bar
  256. ProgressBar progressBar = (ProgressBar)getView().findViewById(R.id.progressBar);
  257. progressBar.setVisibility(View.GONE);
  258. // updates the text message
  259. TextView progressText = (TextView)getView().findViewById(R.id.progressText);
  260. progressText.setText(R.string.downloader_not_downloaded_yet);
  261. }
  262. public void listenForTransferProgress() {
  263. if (mProgressListener != null && !mListening) {
  264. if (mContainerActivity.getFileDownloaderBinder() != null) {
  265. mContainerActivity.getFileDownloaderBinder().addDatatransferProgressListener(mProgressListener, mAccount, mFile);
  266. mListening = true;
  267. setButtonsForTransferring();
  268. }
  269. }
  270. }
  271. public void leaveTransferProgress() {
  272. if (mProgressListener != null) {
  273. if (mContainerActivity.getFileDownloaderBinder() != null) {
  274. mContainerActivity.getFileDownloaderBinder().removeDatatransferProgressListener(mProgressListener, mAccount, mFile);
  275. mListening = false;
  276. }
  277. }
  278. }
  279. /**
  280. * Helper class responsible for updating the progress bar shown for file uploading or downloading
  281. *
  282. * @author David A. Velasco
  283. */
  284. private class ProgressListener implements OnDatatransferProgressListener {
  285. int mLastPercent = 0;
  286. WeakReference<ProgressBar> mProgressBar = null;
  287. ProgressListener(ProgressBar progressBar) {
  288. mProgressBar = new WeakReference<ProgressBar>(progressBar);
  289. }
  290. @Override
  291. public void onTransferProgress(long progressRate) {
  292. // old method, nothing here
  293. };
  294. @Override
  295. public void onTransferProgress(long progressRate, long totalTransferredSoFar, long totalToTransfer, String filename) {
  296. int percent = (int)(100.0*((double)totalTransferredSoFar)/((double)totalToTransfer));
  297. if (percent != mLastPercent) {
  298. ProgressBar pb = mProgressBar.get();
  299. if (pb != null) {
  300. pb.setProgress(percent);
  301. pb.postInvalidate();
  302. }
  303. }
  304. mLastPercent = percent;
  305. }
  306. };
  307. }