0ae6fe1a987f12a7888b6edde6982543fd411ce6
[Sone.git] / src / main / java / net / pterodactylus / sone / core / CoreListener.java
1 /*
2  * Sone - CoreListener.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 java.util.EventListener;
21
22 import net.pterodactylus.sone.data.Image;
23 import net.pterodactylus.sone.data.Sone;
24 import net.pterodactylus.util.version.Version;
25
26 /**
27  * Listener interface for objects that want to be notified on certain
28  * {@link Core} events, such es discovery of new data.
29  *
30  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
31  */
32 public interface CoreListener extends EventListener {
33
34         /**
35          * Notifies a listener when a Sone was locked.
36          *
37          * @param sone
38          *            The Sone that was locked
39          */
40         public void soneLocked(Sone sone);
41
42         /**
43          * Notifies a listener that a Sone was unlocked.
44          *
45          * @param sone
46          *            The Sone that was unlocked
47          */
48         public void soneUnlocked(Sone sone);
49
50         /**
51          * Notifies a listener that the insert of the given Sone has started.
52          *
53          * @see SoneInsertListener#insertStarted(Sone)
54          * @param sone
55          *            The Sone that is being inserted
56          */
57         public void soneInserting(Sone sone);
58
59         /**
60          * Notifies a listener that the insert of the given Sone has finished
61          * successfully.
62          *
63          * @see SoneInsertListener#insertFinished(Sone, long)
64          * @param sone
65          *            The Sone that has been inserted
66          * @param insertDuration
67          *            The insert duration (in milliseconds)
68          */
69         public void soneInserted(Sone sone, long insertDuration);
70
71         /**
72          * Notifies a listener that the insert of the given Sone was aborted.
73          *
74          * @see SoneInsertListener#insertAborted(Sone, Throwable)
75          * @param sone
76          *            The Sone that was inserted
77          * @param cause
78          *            The cause for the abortion (may be {@code null})
79          */
80         public void soneInsertAborted(Sone sone, Throwable cause);
81
82         /**
83          * Notifies a listener that a new version has been found.
84          *
85          * @param version
86          *            The version that was found
87          * @param releaseTime
88          *            The release time of the new version
89          * @param latestEdition
90          *            The latest edition of the Sone homepage
91          */
92         public void updateFound(Version version, long releaseTime, long latestEdition);
93
94         /**
95          * Notifies a listener that an image has started being inserted.
96          *
97          * @param image
98          *            The image that is now inserted
99          */
100         public void imageInsertStarted(Image image);
101
102         /**
103          * Notifies a listener that an image insert was aborted by the user.
104          *
105          * @param image
106          *            The image that is not inserted anymore
107          */
108         public void imageInsertAborted(Image image);
109
110         /**
111          * Notifies a listener that an image was successfully inserted.
112          *
113          * @param image
114          *            The image that was inserted
115          */
116         public void imageInsertFinished(Image image);
117
118         /**
119          * Notifies a listener that an image failed to be inserted.
120          *
121          * @param image
122          *            The image that could not be inserted
123          * @param cause
124          *            The reason for the failed insert
125          */
126         public void imageInsertFailed(Image image, Throwable cause);
127
128 }