987a2c70fd86de95c7693167effbd93bd1da12f6
[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.Post;
24 import net.pterodactylus.sone.data.PostReply;
25 import net.pterodactylus.sone.data.Sone;
26 import net.pterodactylus.util.version.Version;
27
28 /**
29  * Listener interface for objects that want to be notified on certain
30  * {@link Core} events, such es discovery of new data.
31  *
32  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
33  */
34 public interface CoreListener extends EventListener {
35
36         /**
37          * Notifies a listener that the given reply is now marked as known.
38          *
39          * @param reply
40          *            The known reply
41          */
42         public void markReplyKnown(PostReply reply);
43
44         /**
45          * Notifies a listener that the given Sone was removed.
46          *
47          * @param sone
48          *            The removed Sone
49          */
50         public void soneRemoved(Sone sone);
51
52         /**
53          * Notifies a listener that the given post was removed.
54          *
55          * @param post
56          *            The removed post
57          */
58         public void postRemoved(Post post);
59
60         /**
61          * Notifies a listener that the given reply was removed.
62          *
63          * @param reply
64          *            The removed reply
65          */
66         public void replyRemoved(PostReply reply);
67
68         /**
69          * Notifies a listener when a Sone was locked.
70          *
71          * @param sone
72          *            The Sone that was locked
73          */
74         public void soneLocked(Sone sone);
75
76         /**
77          * Notifies a listener that a Sone was unlocked.
78          *
79          * @param sone
80          *            The Sone that was unlocked
81          */
82         public void soneUnlocked(Sone sone);
83
84         /**
85          * Notifies a listener that the insert of the given Sone has started.
86          *
87          * @see SoneInsertListener#insertStarted(Sone)
88          * @param sone
89          *            The Sone that is being inserted
90          */
91         public void soneInserting(Sone sone);
92
93         /**
94          * Notifies a listener that the insert of the given Sone has finished
95          * successfully.
96          *
97          * @see SoneInsertListener#insertFinished(Sone, long)
98          * @param sone
99          *            The Sone that has been inserted
100          * @param insertDuration
101          *            The insert duration (in milliseconds)
102          */
103         public void soneInserted(Sone sone, long insertDuration);
104
105         /**
106          * Notifies a listener that the insert of the given Sone was aborted.
107          *
108          * @see SoneInsertListener#insertAborted(Sone, Throwable)
109          * @param sone
110          *            The Sone that was inserted
111          * @param cause
112          *            The cause for the abortion (may be {@code null})
113          */
114         public void soneInsertAborted(Sone sone, Throwable cause);
115
116         /**
117          * Notifies a listener that a new version has been found.
118          *
119          * @param version
120          *            The version that was found
121          * @param releaseTime
122          *            The release time of the new version
123          * @param latestEdition
124          *            The latest edition of the Sone homepage
125          */
126         public void updateFound(Version version, long releaseTime, long latestEdition);
127
128         /**
129          * Notifies a listener that an image has started being inserted.
130          *
131          * @param image
132          *            The image that is now inserted
133          */
134         public void imageInsertStarted(Image image);
135
136         /**
137          * Notifies a listener that an image insert was aborted by the user.
138          *
139          * @param image
140          *            The image that is not inserted anymore
141          */
142         public void imageInsertAborted(Image image);
143
144         /**
145          * Notifies a listener that an image was successfully inserted.
146          *
147          * @param image
148          *            The image that was inserted
149          */
150         public void imageInsertFinished(Image image);
151
152         /**
153          * Notifies a listener that an image failed to be inserted.
154          *
155          * @param image
156          *            The image that could not be inserted
157          * @param cause
158          *            The reason for the failed insert
159          */
160         public void imageInsertFailed(Image image, Throwable cause);
161
162 }