3bb4415d3593ed446f48beb38ad695656e49a581
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / TimeCounterFilter.java
1 /*
2  * Sonitus - TimeCounterFilter.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 java.io.IOException;
21 import java.util.concurrent.atomic.AtomicLong;
22
23 import net.pterodactylus.sonitus.data.Filter;
24 import net.pterodactylus.sonitus.data.Metadata;
25
26 /**
27  * {@link Filter} implementation that uses the number of bytes that have been
28  * {@link #process(byte[]) processed} together with the {@link Metadata} to
29  * calculate how long a source is already playing.
30  *
31  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
32  */
33 public class TimeCounterFilter extends DummyFilter {
34
35         /** The byte counter. */
36         private final AtomicLong counter = new AtomicLong();
37
38         /** Whether to reset the counter on a metadata update. */
39         private final boolean resetOnMetadataUpdate;
40
41         /**
42          * Creates a new time counter filter that automatically resets the counter when
43          * the metadata is {@link #metadataUpdated(Metadata) updated}.
44          */
45         public TimeCounterFilter() {
46                 this(true);
47         }
48
49         /**
50          * Creates a new time counter filter.
51          *
52          * @param resetOnMetadataUpdate
53          *              {@code true} if the counter should automatically be reset if the metadata
54          *              is updated, {@code false} otherwise
55          */
56         public TimeCounterFilter(boolean resetOnMetadataUpdate) {
57                 this.resetOnMetadataUpdate = resetOnMetadataUpdate;
58         }
59
60         //
61         // ACTIONS
62         //
63
64         /**
65          * Returns the number of milliseconds worth of data that has been passed into
66          * {@link #process(byte[])}. If no metadata has yet been set, {@code 0} is
67          * returned.
68          *
69          * @return The number of milliseconds the current source is already playing
70          */
71         public long getMillis() {
72                 Metadata metadata = super.metadata();
73                 if (metadata == null) {
74                         return 0;
75                 }
76                 return 1000 * counter.get() / (metadata.channels() * metadata.frequency() * 2);
77         }
78
79         /** Resets the counter to 0. */
80         public void reset() {
81                 counter.set(0);
82         }
83
84         //
85         // DUMMYFILTER METHODS
86         //
87
88         @Override
89         public void metadataUpdated(Metadata metadata) {
90                 super.metadataUpdated(metadata);
91                 if (resetOnMetadataUpdate) {
92                         reset();
93                 }
94         }
95
96         @Override
97         public void process(byte[] buffer) throws IOException {
98                 super.process(buffer);
99                 counter.getAndAdd(buffer.length);
100         }
101
102 }