Convert “Sone insert was aborted” into EventBus-based event.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / CoreListenerManager.java
1 /*
2  * Sone - CoreListenerManager.java - Copyright © 2010–2012 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.sone.core;
19
20 import net.pterodactylus.sone.data.Image;
21 import net.pterodactylus.util.event.AbstractListenerManager;
22 import net.pterodactylus.util.version.Version;
23
24 /**
25  * Manager for {@link CoreListener}s.
26  *
27  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
28  */
29 public class CoreListenerManager extends AbstractListenerManager<Core, CoreListener> {
30
31         /**
32          * Creates a new core listener manager.
33          *
34          * @param source
35          *            The Core
36          */
37         public CoreListenerManager(Core source) {
38                 super(source);
39         }
40
41         //
42         // ACTIONS
43         //
44
45         /**
46          * Notifies all listeners that a new version was found.
47          *
48          * @see CoreListener#updateFound(Version, long, long)
49          * @param version
50          *            The new version
51          * @param releaseTime
52          *            The release time of the new version
53          * @param latestEdition
54          *            The latest edition of the Sone homepage
55          */
56         void fireUpdateFound(Version version, long releaseTime, long latestEdition) {
57                 for (CoreListener coreListener : getListeners()) {
58                         coreListener.updateFound(version, releaseTime, latestEdition);
59                 }
60         }
61
62         /**
63          * Notifies all listeners that an image has started being inserted.
64          *
65          * @see CoreListener#imageInsertStarted(Image)
66          * @param image
67          *            The image that is now inserted
68          */
69         void fireImageInsertStarted(Image image) {
70                 for (CoreListener coreListener : getListeners()) {
71                         coreListener.imageInsertStarted(image);
72                 }
73         }
74
75         /**
76          * Notifies all listeners that an image insert was aborted by the user.
77          *
78          * @see CoreListener#imageInsertAborted(Image)
79          * @param image
80          *            The image that is not inserted anymore
81          */
82         void fireImageInsertAborted(Image image) {
83                 for (CoreListener coreListener : getListeners()) {
84                         coreListener.imageInsertAborted(image);
85                 }
86         }
87
88         /**
89          * Notifies all listeners that an image was successfully inserted.
90          *
91          * @see CoreListener#imageInsertFinished(Image)
92          * @param image
93          *            The image that was inserted
94          */
95         void fireImageInsertFinished(Image image) {
96                 for (CoreListener coreListener : getListeners()) {
97                         coreListener.imageInsertFinished(image);
98                 }
99         }
100
101         /**
102          * Notifies all listeners that an image failed to be inserted.
103          *
104          * @see CoreListener#imageInsertFailed(Image, Throwable)
105          * @param image
106          *            The image that could not be inserted
107          * @param cause
108          *            The cause of the failure
109          */
110         void fireImageInsertFailed(Image image, Throwable cause) {
111                 for (CoreListener coreListener : getListeners()) {
112                         coreListener.imageInsertFailed(image, cause);
113                 }
114         }
115
116 }