* take parent folder into account when parsing Date patterns from files

This commit is contained in:
Reinhard Pointner 2014-09-24 06:55:59 +00:00
parent e17ac10168
commit af8ce77f87
2 changed files with 57 additions and 51 deletions

View File

@ -1,19 +1,20 @@
package net.filebot.similarity;
import static net.filebot.util.FileUtilities.*;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.MatchResult;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import net.filebot.web.SimpleDate;
public class DateMatcher {
private final DatePattern[] patterns;
public DateMatcher() {
patterns = new DatePattern[2];
@ -24,12 +25,10 @@ public class DateMatcher {
patterns[1] = new DatePattern("(?<!\\p{Alnum})(\\d{1,2})[^\\p{Alnum}](\\d{1,2})[^\\p{Alnum}](\\d{4})(?!\\p{Alnum})", new int[] { 3, 2, 1 });
}
public DateMatcher(DatePattern... patterns) {
this.patterns = patterns;
}
public SimpleDate match(CharSequence seq) {
for (DatePattern pattern : patterns) {
SimpleDate match = pattern.match(seq);
@ -42,7 +41,6 @@ public class DateMatcher {
return null;
}
public int find(CharSequence seq, int fromIndex) {
for (DatePattern pattern : patterns) {
int pos = pattern.find(seq, fromIndex);
@ -55,24 +53,41 @@ public class DateMatcher {
return -1;
}
public SimpleDate match(File file) {
for (String name : tokenizeTail(file)) {
for (DatePattern pattern : patterns) {
SimpleDate match = pattern.match(name);
if (match != null) {
return match;
}
}
}
return null;
}
protected List<String> tokenizeTail(File file) {
List<String> tail = new ArrayList<String>(2);
for (File f : listPathTail(file, 2, true)) {
tail.add(getName(f));
}
return tail;
}
private static class DatePattern {
protected final Pattern pattern;
protected final int[] order;
public DatePattern(String pattern, int[] order) {
this.pattern = Pattern.compile(pattern);
this.order = order;
}
protected SimpleDate process(MatchResult match) {
return new SimpleDate(Integer.parseInt(match.group(order[0])), Integer.parseInt(match.group(order[1])), Integer.parseInt(match.group(order[2])));
}
public SimpleDate match(CharSequence seq) {
Matcher matcher = pattern.matcher(seq);
@ -83,7 +98,6 @@ public class DateMatcher {
return null;
}
public int find(CharSequence seq, int fromIndex) {
Matcher matcher = pattern.matcher(seq).region(fromIndex, seq.length());

View File

@ -1,27 +1,21 @@
package net.filebot.similarity;
import java.io.File;
import net.filebot.web.SimpleDate;
public class DateMetric implements SimilarityMetric {
private final DateMatcher matcher;
public DateMetric() {
this.matcher = new DateMatcher();
}
public DateMetric(DateMatcher matcher) {
this.matcher = matcher;
}
@Override
public float getSimilarity(Object o1, Object o2) {
SimpleDate d1 = parse(o1);
@ -35,11 +29,9 @@ public class DateMetric implements SimilarityMetric {
return d1.equals(d2) ? 1 : -1;
}
public SimpleDate parse(Object object) {
if (object instanceof File) {
// parse file name
object = ((File) object).getName();
return matcher.match((File) object);
}
return matcher.match(object.toString());