aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-10-29 17:20:17 -0700
committerScott Jackson <daneren2005@gmail.com>2014-10-29 17:20:17 -0700
commitcd042d3eb9470f13ef8f89fecc27e655d91067f8 (patch)
treeabab8f1c1ae52af0038b0eaa3c1ee0da99618f5c /src
parente0076d9d9dc54925ee34feb224766b9b322f57ab (diff)
parent5472ad82e1e236614df060d0fea170d6b9f5e3e5 (diff)
downloaddsub-cd042d3eb9470f13ef8f89fecc27e655d91067f8.tar.gz
dsub-cd042d3eb9470f13ef8f89fecc27e655d91067f8.tar.bz2
dsub-cd042d3eb9470f13ef8f89fecc27e655d91067f8.zip
Merge branch 'Bookmarks'
Diffstat (limited to 'src')
-rw-r--r--src/github/daneren2005/dsub/domain/MusicDirectory.java2
-rw-r--r--src/github/daneren2005/dsub/fragments/NowPlayingFragment.java2
-rw-r--r--src/github/daneren2005/dsub/service/DownloadService.java46
3 files changed, 44 insertions, 6 deletions
diff --git a/src/github/daneren2005/dsub/domain/MusicDirectory.java b/src/github/daneren2005/dsub/domain/MusicDirectory.java
index 79472a89..d0bc173b 100644
--- a/src/github/daneren2005/dsub/domain/MusicDirectory.java
+++ b/src/github/daneren2005/dsub/domain/MusicDirectory.java
@@ -453,7 +453,7 @@ public class MusicDirectory implements Serializable {
public boolean isPodcast() {
return this instanceof PodcastEpisode || type == TYPE_PODCAST;
}
- public boolean isAudiBook() {
+ public boolean isAudioBook() {
return type == TYPE_AUDIO_BOOK;
}
diff --git a/src/github/daneren2005/dsub/fragments/NowPlayingFragment.java b/src/github/daneren2005/dsub/fragments/NowPlayingFragment.java
index f3a1cd4c..8fef07a8 100644
--- a/src/github/daneren2005/dsub/fragments/NowPlayingFragment.java
+++ b/src/github/daneren2005/dsub/fragments/NowPlayingFragment.java
@@ -400,7 +400,7 @@ public class NowPlayingFragment extends SubsonicFragment implements OnGestureLis
}
} else {
// Immediately skip to the next song
- downloadService.next();
+ downloadService.next(true);
// Otherwise set rating to 1
setRating(entry, 1);
diff --git a/src/github/daneren2005/dsub/service/DownloadService.java b/src/github/daneren2005/dsub/service/DownloadService.java
index 643b2845..c7298169 100644
--- a/src/github/daneren2005/dsub/service/DownloadService.java
+++ b/src/github/daneren2005/dsub/service/DownloadService.java
@@ -575,7 +575,7 @@ public class DownloadService extends Service {
// Delete podcast if fully listened to
int position = getPlayerPosition();
int duration = getPlayerDuration();
- boolean cutoff = isPastCutoff(position, duration);
+ boolean cutoff = isPastCutoff(position, duration, true);
if(currentPlaying != null && currentPlaying.getSong() instanceof PodcastEpisode) {
if(cutoff) {
currentPlaying.delete();
@@ -916,6 +916,9 @@ public class DownloadService extends Service {
}
public synchronized void next() {
+ next(false);
+ }
+ public synchronized void next(boolean forceCutoff) {
// If only one song, just skip within song
if(size() == 1) {
seekTo(getPlayerPosition() + FAST_FORWARD);
@@ -925,7 +928,12 @@ public class DownloadService extends Service {
// Delete podcast if fully listened to
int position = getPlayerPosition();
int duration = getPlayerDuration();
- boolean cutoff = isPastCutoff(position, duration);
+ boolean cutoff;
+ if(forceCutoff) {
+ cutoff = true;
+ } else {
+ cutoff = isPastCutoff(position, duration);
+ }
if(currentPlaying != null && currentPlaying.getSong() instanceof PodcastEpisode) {
if(cutoff) {
toDelete.add(currentPlaying);
@@ -1880,8 +1888,38 @@ public class DownloadService extends Service {
return isPastCutoff(getPlayerPosition(), getPlayerDuration());
}
private boolean isPastCutoff(int position, int duration) {
+ return isPastCutoff(position, duration, false);
+ }
+ private boolean isPastCutoff(int position, int duration, boolean allowSkipping) {
+ if(currentPlaying == null) {
+ return false;
+ }
+
int cutoffPoint = (int) (duration * DELETE_CUTOFF);
- return duration > 0 && position > cutoffPoint;
+ boolean isPastCutoff = duration > 0 && position > cutoffPoint;
+
+ // Check to make sure song isn't within 10 seconds of where it was created
+ MusicDirectory.Entry entry = currentPlaying.getSong();
+ if(entry != null && entry.getBookmark() != null) {
+ Bookmark bookmark = entry.getBookmark();
+ if(position < (bookmark.getPosition() + 10000)) {
+ isPastCutoff = false;
+ }
+ }
+
+ // Check to make sure we aren't in a series of similar content before deleting bookmark
+ if(isPastCutoff && allowSkipping) {
+ // Check to make sure:
+ // Is an audio book
+ // Next playing exists and is not a wrap around or a shuffle
+ // Next playing is from same context as current playing, so not at end of list
+ if(entry.isAudioBook() && nextPlaying != null && downloadList.indexOf(nextPlaying) != 0 && !shuffleMode && !shuffleRemote
+ && entry.getParent() != null && entry.getParent().equals(nextPlaying.getSong().getParent())) {
+ isPastCutoff = false;
+ }
+ }
+
+ return isPastCutoff;
}
private void clearCurrentBookmark() {
@@ -1949,7 +1987,7 @@ public class DownloadService extends Service {
int duration = getPlayerDuration();
// If song is podcast or long go ahead and auto add a bookmark
- if(entry.isPodcast() || entry.isAudiBook() || duration > (10L * 60L * 1000L)) {
+ if(entry.isPodcast() || entry.isAudioBook() || duration > (10L * 60L * 1000L)) {
final Context context = this;
final int position = getPlayerPosition();