add javadoc
[jSite.git] / src / de / todesbaum / jsite / application / InsertListener.java
1 /*
2  * jSite - a tool for uploading websites into Freenet
3  * Copyright (C) 2006 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package de.todesbaum.jsite.application;
21
22 import java.util.EventListener;
23
24 /**
25  * Interface for objects that want to be notified abount insert events.
26  * 
27  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
28  */
29 public interface InsertListener extends EventListener {
30
31         /**
32          * Enumeration for the different error situations.
33          * 
34          * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
35          */
36         public static enum ErrorType {
37
38                 /** The key does already exist. */
39                 KEY_COLLISION,
40
41                 /** The route to the key was not found. */
42                 ROUTE_NOT_FOUND,
43
44                 /** The data was not found. */
45                 DATA_NOT_FOUND,
46
47                 /** Error in the FCP communication. */
48                 FCP_ERROR,
49
50                 /** General error in the communication. */
51                 IO_ERROR
52         }
53
54         /**
55          * Notifies a listener that an insert has started.
56          * 
57          * @param project
58          *            The project that is now being inserted
59          */
60         public void projectInsertStarted(Project project);
61
62         /**
63          * Notifies a listener that a project insert has generated a URI.
64          * 
65          * @param project
66          *            The project being inserted
67          * @param uri
68          *            The generated URI
69          */
70         public void projectURIGenerated(Project project, String uri);
71
72         /**
73          * Notifies a listener that an insert has made some progress.
74          * 
75          * @param project
76          *            The project being inserted
77          * @param succeeded
78          *            The number of succeeded blocks
79          * @param failed
80          *            The number of failed blocks
81          * @param fatal
82          *            The number of fatally failed blocks
83          * @param total
84          *            The total number of blocks
85          * @param finalized
86          *            <code>true</code> if the total number of blocks has been
87          *            finalized, <code>false</code> otherwise
88          */
89         public void projectInsertProgress(Project project, int succeeded, int failed, int fatal, int total, boolean finalized);
90
91         /**
92          * Notifies a listener that a project insert has finished.
93          * 
94          * @param project
95          *            The project being inserted
96          * @param success
97          *            <code>true</code> if the insert succeeded,
98          *            <code>false</code> otherwise
99          * @param cause
100          *            The cause of a failure, if any (may be <code>null</code>)
101          */
102         public void projectInsertFinished(Project project, boolean success, Throwable cause);
103
104 }