* try improving support for multi-episodes while trying to not break anything else
This commit is contained in:
parent
247d6cbe22
commit
db11b488c5
|
@ -1,7 +1,5 @@
|
|||
|
||||
package net.sourceforge.filebot.similarity;
|
||||
|
||||
|
||||
import static java.util.Collections.*;
|
||||
|
||||
import java.io.File;
|
||||
|
@ -19,7 +17,6 @@ import net.sourceforge.filebot.similarity.SeasonEpisodeMatcher.SxE;
|
|||
import net.sourceforge.filebot.web.Episode;
|
||||
import net.sourceforge.filebot.web.MultiEpisode;
|
||||
|
||||
|
||||
public class EpisodeMatcher extends Matcher<File, Object> {
|
||||
|
||||
public EpisodeMatcher(Collection<File> values, Collection<Episode> candidates, boolean strict) {
|
||||
|
@ -27,7 +24,6 @@ public class EpisodeMatcher extends Matcher<File, Object> {
|
|||
super(values, candidates, strict, strict ? StrictEpisodeMetrics.defaultSequence(false) : EpisodeMetrics.defaultSequence(false));
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected void deepMatch(Collection<Match<File, Object>> possibleMatches, int level) throws InterruptedException {
|
||||
Map<File, List<Episode>> episodeSets = new IdentityHashMap<File, List<Episode>>();
|
||||
|
@ -74,10 +70,9 @@ public class EpisodeMatcher extends Matcher<File, Object> {
|
|||
|
||||
}
|
||||
|
||||
private final SeasonEpisodeMatcher seasonEpisodeMatcher = new SeasonEpisodeMatcher(SeasonEpisodeMatcher.DEFAULT_SANITY, true);
|
||||
private final SeasonEpisodeMatcher seasonEpisodeMatcher = new SeasonEpisodeMatcher(SeasonEpisodeMatcher.DEFAULT_SANITY, false);
|
||||
private final Map<File, Set<SxE>> transformCache = synchronizedMap(new HashMap<File, Set<SxE>>(64, 4));
|
||||
|
||||
|
||||
private Set<SxE> parseEpisodeIdentifer(File file) {
|
||||
Set<SxE> result = transformCache.get(file);
|
||||
if (result != null) {
|
||||
|
@ -95,7 +90,6 @@ public class EpisodeMatcher extends Matcher<File, Object> {
|
|||
return result;
|
||||
}
|
||||
|
||||
|
||||
private boolean isMultiEpisode(Episode[] episodes) {
|
||||
// check episode sequence integrity
|
||||
Integer seqIndex = null;
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
|
||||
package net.sourceforge.filebot.similarity;
|
||||
|
||||
|
||||
import static java.util.Arrays.*;
|
||||
import static java.util.Collections.*;
|
||||
import static java.util.regex.Pattern.*;
|
||||
|
||||
|
@ -10,13 +7,14 @@ import java.io.File;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.List;
|
||||
import java.util.Scanner;
|
||||
import java.util.Set;
|
||||
import java.util.regex.MatchResult;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
|
||||
public class SeasonEpisodeMatcher {
|
||||
|
||||
public static final SeasonEpisodeFilter DEFAULT_SANITY = new SeasonEpisodeFilter(50, 50, 1000);
|
||||
|
@ -24,7 +22,6 @@ public class SeasonEpisodeMatcher {
|
|||
private SeasonEpisodePattern[] patterns;
|
||||
private Pattern seasonPattern;
|
||||
|
||||
|
||||
public SeasonEpisodeMatcher(SeasonEpisodeFilter sanity, boolean strict) {
|
||||
patterns = new SeasonEpisodePattern[5];
|
||||
|
||||
|
@ -69,19 +66,27 @@ public class SeasonEpisodeMatcher {
|
|||
}
|
||||
};
|
||||
|
||||
// match patterns like 01, 102, 1003 (enclosed in separators)
|
||||
patterns[4] = new SeasonEpisodePattern(sanity, "(?<!\\p{Alnum})([0-2]?\\d?)(\\d{2})(?!\\p{Alnum})") {
|
||||
// match patterns like 01, 102, 1003, 10102 (enclosed in separators)
|
||||
patterns[4] = new SeasonEpisodePattern(sanity, "(?<!\\p{Alnum})([0-2]?\\d?)(\\d{2})(\\d{2})?(?!\\p{Alnum})") {
|
||||
|
||||
@Override
|
||||
protected Collection<SxE> process(MatchResult match) {
|
||||
// interpret match as season and episode
|
||||
SxE seasonEpisode = new SxE(match.group(1), match.group(2));
|
||||
Set<SxE> sxe = new LinkedHashSet<SxE>(2);
|
||||
|
||||
// interpret match as episode number only
|
||||
SxE absoluteEpisode = new SxE(null, match.group(1) + match.group(2));
|
||||
// interpret match as season and episode
|
||||
for (int i = 2; i <= match.groupCount(); i++) {
|
||||
if (match.group(i) != null) {
|
||||
sxe.add(new SxE(match.group(1), match.group(i)));
|
||||
}
|
||||
}
|
||||
|
||||
// interpret match both ways, as SxE match as well as episode number only match if it's not an double episode
|
||||
if (sxe.size() < 2) {
|
||||
sxe.add(new SxE(null, match.group(1) + match.group(2)));
|
||||
}
|
||||
|
||||
// return both matches, unless they are one and the same
|
||||
return seasonEpisode.equals(absoluteEpisode) ? singleton(seasonEpisode) : asList(seasonEpisode, absoluteEpisode);
|
||||
return sxe;
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -94,13 +99,12 @@ public class SeasonEpisodeMatcher {
|
|||
seasonPattern = compile("Season[-._ ]?(\\d{1,2})", CASE_INSENSITIVE | UNICODE_CASE);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Try to get season and episode numbers for the given string.
|
||||
*
|
||||
* @param name match this string against the a set of know patterns
|
||||
* @return the matches returned by the first pattern that returns any matches for this
|
||||
* string, or null if no pattern returned any matches
|
||||
* @param name
|
||||
* match this string against the a set of know patterns
|
||||
* @return the matches returned by the first pattern that returns any matches for this string, or null if no pattern returned any matches
|
||||
*/
|
||||
public List<SxE> match(CharSequence name) {
|
||||
for (SeasonEpisodePattern pattern : patterns) {
|
||||
|
@ -114,7 +118,6 @@ public class SeasonEpisodeMatcher {
|
|||
return null;
|
||||
}
|
||||
|
||||
|
||||
public List<SxE> match(File file) {
|
||||
for (SeasonEpisodePattern pattern : patterns) {
|
||||
List<SxE> match = pattern.match(file.getName());
|
||||
|
@ -135,7 +138,6 @@ public class SeasonEpisodeMatcher {
|
|||
return null;
|
||||
}
|
||||
|
||||
|
||||
public int find(CharSequence name, int fromIndex) {
|
||||
for (SeasonEpisodePattern pattern : patterns) {
|
||||
int index = pattern.find(name, fromIndex);
|
||||
|
@ -149,7 +151,6 @@ public class SeasonEpisodeMatcher {
|
|||
return -1;
|
||||
}
|
||||
|
||||
|
||||
public Matcher matcher(CharSequence name) {
|
||||
for (SeasonEpisodePattern pattern : patterns) {
|
||||
Matcher matcher = pattern.matcher(name);
|
||||
|
@ -164,7 +165,6 @@ public class SeasonEpisodeMatcher {
|
|||
return null;
|
||||
}
|
||||
|
||||
|
||||
public static class SxE {
|
||||
|
||||
public static final int UNDEFINED = -1;
|
||||
|
@ -172,19 +172,16 @@ public class SeasonEpisodeMatcher {
|
|||
public final int season;
|
||||
public final int episode;
|
||||
|
||||
|
||||
public SxE(Integer season, Integer episode) {
|
||||
this.season = season != null ? season : UNDEFINED;
|
||||
this.episode = episode != null ? episode : UNDEFINED;
|
||||
}
|
||||
|
||||
|
||||
public SxE(String season, String episode) {
|
||||
this.season = parse(season);
|
||||
this.episode = parse(episode);
|
||||
}
|
||||
|
||||
|
||||
protected int parse(String number) {
|
||||
try {
|
||||
return Integer.parseInt(number);
|
||||
|
@ -193,7 +190,6 @@ public class SeasonEpisodeMatcher {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean equals(Object object) {
|
||||
if (object instanceof SxE) {
|
||||
|
@ -204,62 +200,52 @@ public class SeasonEpisodeMatcher {
|
|||
return false;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Arrays.hashCode(new Object[] { season, episode });
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return season >= 0 ? String.format("%dx%02d", season, episode) : String.format("%02d", episode);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static class SeasonEpisodeFilter {
|
||||
|
||||
public final int seasonLimit;
|
||||
public final int seasonEpisodeLimit;
|
||||
public final int absoluteEpisodeLimit;
|
||||
|
||||
|
||||
public SeasonEpisodeFilter(int seasonLimit, int seasonEpisodeLimit, int absoluteEpisodeLimit) {
|
||||
this.seasonLimit = seasonLimit;
|
||||
this.seasonEpisodeLimit = seasonEpisodeLimit;
|
||||
this.absoluteEpisodeLimit = absoluteEpisodeLimit;
|
||||
}
|
||||
|
||||
|
||||
boolean filter(SxE sxe) {
|
||||
return (sxe.season >= 0 && sxe.season < seasonLimit && sxe.episode < seasonEpisodeLimit) || (sxe.season < 0 && sxe.episode < absoluteEpisodeLimit);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static class SeasonEpisodePattern {
|
||||
|
||||
protected final Pattern pattern;
|
||||
protected final SeasonEpisodeFilter sanity;
|
||||
|
||||
|
||||
public SeasonEpisodePattern(SeasonEpisodeFilter sanity, String pattern) {
|
||||
this.pattern = Pattern.compile(pattern);
|
||||
this.sanity = sanity;
|
||||
}
|
||||
|
||||
|
||||
public Matcher matcher(CharSequence name) {
|
||||
return pattern.matcher(name);
|
||||
}
|
||||
|
||||
|
||||
protected Collection<SxE> process(MatchResult match) {
|
||||
return singleton(new SxE(match.group(1), match.group(2)));
|
||||
}
|
||||
|
||||
|
||||
public List<SxE> match(CharSequence name) {
|
||||
// name will probably contain no more than two matches
|
||||
List<SxE> matches = new ArrayList<SxE>(2);
|
||||
|
@ -277,7 +263,6 @@ public class SeasonEpisodeMatcher {
|
|||
return matches;
|
||||
}
|
||||
|
||||
|
||||
public int find(CharSequence name, int fromIndex) {
|
||||
Matcher matcher = matcher(name).region(fromIndex, name.length());
|
||||
|
||||
|
|
Loading…
Reference in New Issue