Add some logging to episode filter
[rhynodge.git] / src / main / java / net / pterodactylus / rhynodge / filters / EpisodeFilter.java
1 /*
2  * Rhynodge - EpisodeFilter.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.rhynodge.filters;
19
20 import static com.google.common.base.Optional.absent;
21 import static com.google.common.base.Preconditions.checkState;
22 import static com.google.common.collect.FluentIterable.from;
23 import static java.util.Arrays.asList;
24
25 import java.util.Collection;
26 import java.util.regex.Matcher;
27 import java.util.regex.Pattern;
28
29 import net.pterodactylus.rhynodge.Filter;
30 import net.pterodactylus.rhynodge.State;
31 import net.pterodactylus.rhynodge.states.EpisodeState;
32 import net.pterodactylus.rhynodge.states.EpisodeState.Episode;
33 import net.pterodactylus.rhynodge.states.FailedState;
34 import net.pterodactylus.rhynodge.states.TorrentState;
35 import net.pterodactylus.rhynodge.states.TorrentState.TorrentFile;
36
37 import com.google.common.base.Function;
38 import com.google.common.base.Optional;
39 import com.google.common.collect.HashMultimap;
40 import com.google.common.collect.Multimap;
41 import org.apache.log4j.Logger;
42
43 /**
44  * {@link Filter} implementation that extracts {@link Episode} information from
45  * the {@link TorrentFile}s contained in a {@link TorrentState}.
46  *
47  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
48  */
49 public class EpisodeFilter implements Filter {
50
51         private static final Logger logger = Logger.getLogger(EpisodeFilter.class);
52
53         /** The pattern to parse episode information from the filename. */
54         private static final Collection<Pattern> episodePatterns = asList(Pattern.compile("[Ss](\\d{2})[Ee](\\d{2})"), Pattern.compile("[^\\d](\\d{1,2})x(\\d{2})[^\\d]"));
55
56         //
57         // FILTER METHODS
58         //
59
60         /**
61          * {@inheritDoc}
62          */
63         @Override
64         public State filter(State state) {
65                 if (!state.success()) {
66                         return FailedState.from(state);
67                 }
68                 checkState(state instanceof TorrentState, "state is not a TorrentState but a %s!", state.getClass());
69
70                 TorrentState torrentState = (TorrentState) state;
71                 final Multimap<Episode, TorrentFile> episodes = HashMultimap.create();
72                 for (TorrentFile torrentFile : torrentState) {
73                         Optional<Episode> episode = extractEpisode(torrentFile);
74                         if (!episode.isPresent()) {
75                                 continue;
76                         }
77                         episodes.put(episode.get(), torrentFile);
78                 }
79
80                 return new EpisodeState(from(episodes.keySet()).transform(episodeFiller(episodes)).toSet());
81         }
82
83         //
84         // STATIC METHODS
85         //
86
87         /**
88          * Returns a function that creates an {@link Episode} that contains all {@link
89          * TorrentFile}s.
90          *
91          * @param episodeTorrents
92          *              A multimap mapping episodes to torrent files.
93          * @return The function that performs the extraction of torrent files
94          */
95         private static Function<Episode, Episode> episodeFiller(final Multimap<Episode, TorrentFile> episodeTorrents) {
96                 return new Function<Episode, Episode>() {
97                         @Override
98                         public Episode apply(Episode episode) {
99                                 Episode completeEpisode = new Episode(episode.season(), episode.episode());
100                                 for (TorrentFile torrentFile : episodeTorrents.get(episode)) {
101                                         completeEpisode.addTorrentFile(torrentFile);
102                                 }
103                                 return completeEpisode;
104                         }
105                 };
106         }
107
108         /**
109          * Extracts episode information from the given torrent file.
110          *
111          * @param torrentFile
112          *              The torrent file to extract the episode information from
113          * @return The extracted episode information, or {@link Optional#absent()} if
114          *         no episode information could be found
115          */
116         private static Optional<Episode> extractEpisode(TorrentFile torrentFile) {
117                 logger.debug(String.format("Extracting episode from %s...", torrentFile));
118                 for (Pattern episodePattern : episodePatterns) {
119                         Matcher matcher = episodePattern.matcher(torrentFile.name());
120                         if (!matcher.find() || matcher.groupCount() < 2) {
121                                 continue;
122                         }
123                         String seasonString = matcher.group(1);
124                         String episodeString = matcher.group(2);
125                         logger.debug(String.format("Parsing %s and %s as season and episode...", seasonString, episodeString));
126                         int season = Integer.valueOf(seasonString);
127                         int episode = Integer.valueOf(episodeString);
128                         return Optional.of(new Episode(season, episode));
129                 }
130                 return absent();
131         }
132
133 }