1e8c7fa9385a6d20603f6c249fe474689db1284e
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / PredicateFilter.java
1 /*
2  * Sonitus - PredicateFilter.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.sonitus.data.filter;
19
20 import static com.google.common.base.Preconditions.checkNotNull;
21
22 import java.io.IOException;
23 import java.util.concurrent.atomic.AtomicBoolean;
24
25 import net.pterodactylus.sonitus.data.Filter;
26 import net.pterodactylus.sonitus.data.Metadata;
27
28 import com.google.common.base.Predicate;
29
30 /**
31  * {@link Filter} implementation that uses a {@link Predicate} to determine
32  * whether a filter will be used or the data will only be passed through.
33  *
34  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
35  */
36 public class PredicateFilter extends DummyFilter {
37
38         /** The predicate. */
39         private final Predicate<Metadata> metadataPredicate;
40
41         /** The filter to use if the predicate matches. */
42         private final Filter filter;
43
44         /** Whether the predicate currently matches. */
45         private final AtomicBoolean metadataMatches = new AtomicBoolean(false);
46
47         /**
48          * Creates a new predicate filter.
49          *
50          * @param metadataPredicate
51          *              The predicate to evaluate every time the metadata changes
52          * @param filter
53          *              The filter to use if the predicate matches the metadata
54          */
55         public PredicateFilter(Predicate<Metadata> metadataPredicate, Filter filter) {
56                 this.metadataPredicate = metadataPredicate;
57                 this.filter = filter;
58         }
59
60         //
61         // FILTER METHODS
62         //
63
64         @Override
65         public void open(Metadata metadata) throws IOException {
66                 checkNotNull(metadata, "metadata must not be null");
67
68                 metadataMatches.set(metadataPredicate.apply(metadata));
69                 if (metadataMatches.get()) {
70                         filter.open(metadata);
71                 } else {
72                         super.open(metadata);
73                 }
74         }
75
76         @Override
77         public void close() {
78                 if (metadataMatches.get()) {
79                         filter.close();
80                 } else {
81                         super.close();
82                 }
83         }
84
85         @Override
86         public void metadataUpdated(Metadata metadata) {
87                 metadataMatches.set(metadataPredicate.apply(metadata));
88                 if (metadataMatches.get()) {
89                         filter.metadataUpdated(metadata);
90                 } else {
91                         super.metadataUpdated(metadata);
92                 }
93         }
94
95         @Override
96         public void process(byte[] buffer) throws IOException {
97                 if (metadataMatches.get()) {
98                         filter.process(buffer);
99                 } else {
100                         super.process(buffer);
101                 }
102         }
103
104         @Override
105         public Metadata metadata() {
106                 if (metadataMatches.get()) {
107                         return filter.metadata();
108                 } else {
109                         return super.metadata();
110                 }
111         }
112
113         @Override
114         public byte[] get(int bufferSize) throws IOException {
115                 if (metadataMatches.get()) {
116                         return filter.get(bufferSize);
117                 } else {
118                         return super.get(bufferSize);
119                 }
120         }
121
122 }