aboutsummaryrefslogtreecommitdiff
path: root/src/github/daneren2005
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-08-21 16:42:38 -0700
committerScott Jackson <daneren2005@gmail.com>2014-08-21 16:42:38 -0700
commitb245375b2a072d53ad76adc6fcccfe1e016de4e6 (patch)
tree23a55027021ff9b2d982af231fbd7a1fc6dc8082 /src/github/daneren2005
parent98a42524d42353e058a3f71e5be11b242f43e88c (diff)
downloaddsub-b245375b2a072d53ad76adc6fcccfe1e016de4e6.tar.gz
dsub-b245375b2a072d53ad76adc6fcccfe1e016de4e6.tar.bz2
dsub-b245375b2a072d53ad76adc6fcccfe1e016de4e6.zip
Automatically delete bookmarks when fully played
Diffstat (limited to 'src/github/daneren2005')
-rw-r--r--src/github/daneren2005/dsub/service/DownloadService.java58
1 files changed, 56 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadService.java b/src/github/daneren2005/dsub/service/DownloadService.java
index 15777c8e..b18928e1 100644
--- a/src/github/daneren2005/dsub/service/DownloadService.java
+++ b/src/github/daneren2005/dsub/service/DownloadService.java
@@ -94,6 +94,7 @@ public class DownloadService extends Service {
public static final String START_PLAY = "github.daneren2005.dsub.START_PLAYING";
public static final int FAST_FORWARD = 30000;
public static final int REWIND = 10000;
+ private static final double DELETE_CUTOFF = 0.90;
private RemoteControlClientHelper mRemoteControl;
@@ -577,7 +578,7 @@ public class DownloadService extends Service {
int duration = getPlayerDuration();
// Make sure > 90% of the way through
- int cutoffPoint = (int)(duration * 0.90);
+ int cutoffPoint = (int)(duration * DELETE_CUTOFF);
if(duration > 0 && cachedPosition > cutoffPoint) {
currentPlaying.delete();
}
@@ -586,6 +587,9 @@ public class DownloadService extends Service {
podcast.delete();
}
toDelete.clear();
+
+ // Clear bookmarks from current playing if past a certain point
+ clearCurrentBookmark();
reset();
downloadList.clear();
@@ -899,11 +903,12 @@ public class DownloadService extends Service {
int duration = getPlayerDuration();
// Make sure > 90% of the way through
- int cutoffPoint = (int)(duration * 0.90);
+ int cutoffPoint = (int)(duration * DELETE_CUTOFF);
if(duration > 0 && cachedPosition > cutoffPoint) {
toDelete.add(currentPlaying);
}
}
+ clearCurrentBookmark();
int index = getCurrentPlayingIndex();
int nextPlayingIndex = getNextPlayingIndex();
@@ -1501,6 +1506,7 @@ public class DownloadService extends Service {
if(downloadFile.getSong() instanceof PodcastEpisode) {
toDelete.add(downloadFile);
}
+ clearCurrentBookmark(false);
} else {
// If file is not completely downloaded, restart the playback from the current position.
synchronized (DownloadService.this) {
@@ -1778,6 +1784,54 @@ public class DownloadService extends Service {
}
}
}
+
+ private void clearCurrentBookmark() {
+ clearCurrentBookmark(true);
+ }
+ private void clearCurrentBookmark(boolean checkPosition) {
+ // If current is null, nothing to do
+ if(currentPlaying == null) {
+ return;
+ }
+
+ final MusicDirectory.Entry entry = currentPlaying.getSong();
+ // If no bookmark, move on
+ if(entry.getBookmark() == null) {
+ return;
+ }
+
+ int duration = getPlayerDuration();
+ int cutoffPoint = (int) (duration * DELETE_CUTOFF);
+ if(duration > 0 && cachedPosition > cutoffPoint || !checkPosition) {
+ new SilentBackgroundTask<Void>(this) {
+ @Override
+ public Void doInBackground() throws Throwable {
+ MusicService musicService = MusicServiceFactory.getMusicService(DownloadService.this);
+ musicService.deleteBookmark(entry.getId(), Util.getParentFromEntry(DownloadService.this, entry), DownloadService.this, null);
+
+ entry.setBookmark(null);
+ MusicDirectory.Entry found = UpdateView.findEntry(entry);
+ if(found != null) {
+ found.setBookmark(null);
+ }
+ }
+
+ @Override
+ public void error(Throwable error) {
+ Log.e(TAG, "Failed to delete bookmark", error);
+
+ String msg;
+ if(error instanceof OfflineException || error instanceof ServerTooOldException) {
+ msg = getErrorMessage(error);
+ } else {
+ msg = DownloadService.this.getResources().getString(R.string.bookmark_deleted_error, entry.getTitle()) + " " + getErrorMessage(error);
+ }
+
+ Util.toast(DownloadService.this, msg, false);
+ }
+ }.execute();
+ }
+ }
private class BufferTask extends SilentBackgroundTask<Void> {
private final DownloadFile downloadFile;