Update license to GPLv3, fix header comments
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / GetFailed.java
1 /*
2  * jFCPlib - GetFailed.java - Copyright © 2008–2016 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.fcp;
19
20 import java.util.ArrayList;
21 import java.util.List;
22 import java.util.Map;
23 import java.util.Map.Entry;
24
25 /**
26  * The “GetFailed” message signals the client that a {@link ClientGet} request
27  * has failed. This also means that no further progress messages for that
28  * request will be sent.
29  *
30  * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
31  */
32 public class GetFailed extends BaseMessage implements Identifiable {
33
34         /**
35          * Creates a new “GetFailed” message that wraps the received message.
36          *
37          * @param receivedMessage
38          *            The received message
39          */
40         public GetFailed(FcpMessage receivedMessage) {
41                 super(receivedMessage);
42         }
43
44         /**
45          * Returns the code of the error.
46          *
47          * @return The code of the error, or <code>-1</code> if the error code
48          *         could not be parsed
49          */
50         public int getCode() {
51                 return FcpUtils.safeParseInt(getField("Code"));
52         }
53
54         /**
55          * Returns the identifier of the request.
56          *
57          * @return The identifier of the request
58          */
59         @Override
60         public String getIdentifier() {
61                 return getField("Identifier");
62         }
63
64         /**
65          * Returns whether the request is on the global queue.
66          *
67          * @return <code>true</code> if the request is on the global queue,
68          *         <code>false</code> if it is on the client-local queue
69          */
70         public boolean isGlobal() {
71                 return Boolean.valueOf(getField("Global"));
72         }
73
74         /**
75          * Returns the description of the error code.
76          *
77          * @return The description of the error code
78          */
79         public String getCodeDescription() {
80                 return getField("CodeDescription");
81         }
82
83         /**
84          * Returns the extra description of the error.
85          *
86          * @return The extra description of the error
87          */
88         public String getExtraDescription() {
89                 return getField("ExtraDescription");
90         }
91
92         /**
93          * Returns the short description of the error.
94          *
95          * @return The short description of the error
96          */
97         public String getShortCodeDescription() {
98                 return getField("ShortCodeDescription");
99         }
100
101         /**
102          * Returns the expected data length, if already knows.
103          *
104          * @return The expected data length, or <code>-1</code> if the length could
105          *         not be parsed
106          */
107         public long getExpectedDataLength() {
108                 return FcpUtils.safeParseLong(getField("ExpectedDataLength"));
109         }
110
111         /**
112          * Returns the expected content type of the request.
113          *
114          * @return The expected content type
115          */
116         public String getExpectedMetadataContentType() {
117                 return getField("ExpectedMetadata.ContentType");
118         }
119
120         /**
121          * Returns whether the expected values (see
122          * {@link #getExpectedDataLength()} and
123          * {@link #getExpectedMetadataContentType()}) have already been finalized
124          * and can be trusted. If the values have not been finalized that can
125          * change over time.
126          *
127          * @return <code>true</code> if the expected values have already been
128          *         finalized, <code>false</code> otherwise
129          */
130         public boolean isFinalizedExpected() {
131                 return Boolean.valueOf(getField("FinalizedExpected"));
132         }
133
134         /**
135          * Returns the URI the request is redirected to (in case of a request for a
136          * USK). This is returned so that client applications know that the URI of
137          * the key has updated.
138          *
139          * @return The URI the request was redirected to
140          */
141         public String getRedirectURI() {
142                 return getField("RedirectURI");
143         }
144
145         /**
146          * Returns whether the request failed fatally. If a request fails fatally
147          * it can never complete, even with inifinite retries.
148          *
149          * @return <code>true</code> if the request failed fatally,
150          *         <code>false</code> otherwise
151          */
152         public boolean isFatal() {
153                 return Boolean.valueOf(getField("Fatal"));
154         }
155
156         /**
157          * Returns a list of complex error codes with the message. Use
158          * {@link #getComplexErrorDescription(int)} and
159          * {@link #getComplexErrorCount(int)} to get details.
160          *
161          * @return A list of complex error codes
162          */
163         public int[] getComplexErrorCodes() {
164                 Map<String, String> allFields = getFields();
165                 List<Integer> errorCodeList = new ArrayList<Integer>();
166                 for (Entry<String, String> field : allFields.entrySet()) {
167                         String fieldKey = field.getKey();
168                         if (fieldKey.startsWith("Errors.")) {
169                                 int nextDot = fieldKey.indexOf('.', 7);
170                                 if (nextDot > -1) {
171                                         int errorCode = FcpUtils.safeParseInt(fieldKey.substring(7, nextDot));
172                                         if (errorCode != -1) {
173                                                 errorCodeList.add(errorCode);
174                                         }
175                                 }
176                         }
177                 }
178                 int[] errorCodes = new int[errorCodeList.size()];
179                 int errorIndex = 0;
180                 for (int errorCode : errorCodeList) {
181                         errorCodes[errorIndex++] = errorCode;
182                 }
183                 return errorCodes;
184         }
185
186         /**
187          * Returns the description of the complex error. You should only hand it
188          * error codes you got from {@link #getComplexErrorCodes()}!
189          *
190          * @param errorCode
191          *            The error code
192          * @return The description of the complex error
193          */
194         public String getComplexErrorDescription(int errorCode) {
195                 return getField("Errors." + errorCode + ".Description");
196         }
197
198         /**
199          * Returns the count of the complex error. You should only hand it error
200          * codes you got from {@link #getComplexErrorCodes()}!
201          *
202          * @param errorCode
203          *            The error code
204          * @return The count of the complex error, or <code>-1</code> if the count
205          *         could not be parsed
206          */
207         public int getComplexErrorCount(int errorCode) {
208                 return FcpUtils.safeParseInt(getField("Errors." + errorCode + ".Count"));
209         }
210
211 }