1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
package Torello.Java.JSON;

import javax.json.*;
import java.lang.reflect.*;
import java.math.*;

import java.util.function.Function;

import static javax.json.JsonValue.ValueType.*;
import static Torello.Java.JSON.JFlag.*;
import static Torello.Java.JSON.RJInternal.*;

/**
 * Builds on the J2EE Standard Release JSON Parsing Tools by providing additional
 * help with converting JSON Data into the Best-Fit
 * <B STYLE='color: red'><CODE>java.lang.Number</CODE></B>
 * 
 * <EMBED CLASS='external-html' DATA-FILE-ID=GLASS_FISH_NOTE>
 * 
 * @see Json
 * @see JsonObject
 * @see JsonArray
 */
@Torello.JavaDoc.StaticFunctional
@Torello.JavaDoc.JDHeaderBackgroundImg(EmbedTagFileID="JSON_JDHBI")
public class ReadNumberJSON
{
    // This is a static class.  Has no program state.
    private ReadNumberJSON() { }


    // ********************************************************************************************
    // ********************************************************************************************
    // Number from JsonArray
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * Retrieve a {@link JsonArray} element, and transform it to a {@code java.lang.Number}.
     * <EMBED CLASS=defs DATA-JTYPE=JsonNumber DATA-TYPE='java.lang.Number'>
     * <EMBED CLASS='external-html' DATA-FILE-ID=JR_NUMBER>
     * 
     * @param ja            Any instance of {@link JsonArray}
     * @param index         <EMBED CLASS='external-html' DATA-FILE-ID=JR_INDEX_JA>
     * @param throwOnNull   <EMBED CLASS='external-html' DATA-FILE-ID=JR_TON_JA>
     * @return              <EMBED CLASS='external-html' DATA-FILE-ID=JR_RET_TON_JA>
     * 
     * @throws IndexOutOfBoundsException If {@code 'index'} is out of the bounds of {@code 'ja'}
     * @throws JsonTypeArrException      <EMBED CLASS='external-html' DATA-FILE-ID=JR_JTAEX>
     * @throws JsonNullArrException      <EMBED CLASS='external-html' DATA-FILE-ID=JR_JNAEX>
     * 
     * @see JsonValue#getValueType()
     * @see RJInternal#convertToNumber(JsonNumber) 
     */
    public static Number get(JsonArray ja, int index, boolean throwOnNull)
    {
        // This will throw an IndexOutOfBoundsException if the index is out of bounds.
        JsonValue jv = ja.get(index);

        switch (jv.getValueType())
        {
            case NULL:

                // This is simple-stuff (not rocket-science).  "Type Mapping" Code has to worry
                // about what the meaning of "null" should be.

                if (throwOnNull) throw new JsonNullArrException(ja, index, NUMBER, Number.class);
                else return null;

            case NUMBER: return convertToNumber((JsonNumber) jv);

            // The JsonValue at the specified array-index does not contain a JsonString.
            default: throw new JsonTypeArrException(ja, index, NUMBER, jv, Number.class);
        }
    }

    /**
     * Retrieve a {@link JsonArray} element, and transform it to a {@code java.lang.Number}.
     * <EMBED CLASS=defs DATA-TYPE='java.lang.Number' DATA-JTYPE=JsonNumber>
     * <EMBED CLASS='external-html' DATA-FILE-ID=JR_NUMBER>
     * 
     * @param ja            Any instance of {@link JsonArray}
     * @param index         The array index containing the element to retrieve.
     * @param FLAGS         Return-value / exception-throw constants defined in {@link JFlag}
     * @param defaultValue  <EMBED CLASS='external-html' DATA-FILE-ID=JRF_DEFV>
     * @return              <EMBED CLASS='external-html' DATA-FILE-ID=JRF_RET_JA>
     * 
     * @throws IndexOutOfBoundsException <EMBED CLASS='external-html' DATA-FILE-ID=JRF_IOOBEX>
     * @throws JsonNullArrException      <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JNAEX>
     * @throws JsonTypeArrException      <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JTAEX>
     * 
     * @see RJInternal#GET(JsonArray, int, int, Number, Class, Function, Function)
     * @see RJInternal#convertToNumber(JsonNumber)
     */
    public static Number get(JsonArray ja, int index, int FLAGS, Number defaultValue)
    { return GET(ja, index, FLAGS, defaultValue, Number.class, RJInternal::convertToNumber, null); }

    /**
     * Retrieve a {@link JsonArray} element containing a {@link JsonString}, and transform it to a
     * {@code java.lang.Number}, with either a user-provided parser, or the standard java parser
     * 
     * <EMBED CLASS=defs DATA-TYPE='java.lang.Number' DATA-JTYPE=JsonString
     *  DATA-PARSER='new BigDecimal'>
     * 
     * <BR /><BR />If {@code 'parser'} is passed null, the default parser is used, which is just
     * the {@code java.math.BigDecimal} constructor which accepts a {@code String}.  What is done
     * with the parsed {@code BigDecimal} instance is explained below.
     * 
     * <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=JR_NUM_PARSE>
     * 
     * @param ja             Any instance of {@link JsonArray}
     * @param index          The array index containing the {@link JsonString} element to retrieve.
     * @param FLAGS          Return-value / exception-throw constants defined in {@link JFlag}
     * @param defaultValue   <EMBED CLASS='external-html' DATA-FILE-ID=JRF_DEFV>
     * @param optionalParser <EMBED CLASS='external-html' DATA-FILE-ID=JRF_PARSER>
     * @return               <EMBED CLASS='external-html' DATA-FILE-ID=JRF_PARSERET_JA>
     * 
     * @throws IndexOutOfBoundsException <EMBED CLASS='external-html' DATA-FILE-ID=JRF_IOOBEX>
     * @throws JsonStrParseArrException  <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JSPAEX>
     * @throws JsonNullArrException      <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JNAEX>
     * @throws JsonTypeArrException      <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JTAEX>
     * 
     * @see RJInternal#PARSE(JsonObject, String, int, Number, Class, Function, Function, Function)
     * @see RJInternal#convertToNumber(String)
     */
    public static Number parse(
            JsonArray ja, int index, int FLAGS, Number defaultValue,
            Function<String, Number> optionalParser
        )
    {
        return PARSE(
            ja, index, FLAGS, defaultValue, Number.class, optionalParser,
            RJInternal::convertToNumber, null  /* Not Needed, convertToNumber won't throw */
        );
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // Number from JsonObject
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * Extract a {@link JsonObject} property, and transform it to a {@code java.lang.Number}.
     * <EMBED CLASS=defs DATA-TYPE='java.lang.Number' DATA-JTYPE=JsonNumber>
     * <EMBED CLASS='external-html' DATA-FILE-ID=JR_NUMBER>
     * 
     * @param jo            Any instance of {@link JsonObject}.
     * @param propertyName  <EMBED CLASS='external-html' DATA-FILE-ID=JR_PN_JO>
     * @param isOptional    <EMBED CLASS='external-html' DATA-FILE-ID=JR_ISOPT_JO>
     * @param throwOnNull   <EMBED CLASS='external-html' DATA-FILE-ID=JR_TON_JO>
     * @return              <EMBED CLASS='external-html' DATA-FILE-ID=JR_RET_TON_JO>
     * 
     * @throws JsonPropMissingException <EMBED CLASS='external-html' DATA-FILE-ID=JR_JPMEX>
     * @throws JsonTypeObjException     <EMBED CLASS='external-html' DATA-FILE-ID=JR_JTOEX>
     * @throws JsonNullObjException     <EMBED CLASS='external-html' DATA-FILE-ID=JR_JNOEX>
     * 
     * @see JsonValue#getValueType()
     * @see RJInternal#convertToNumber(JsonNumber)
     */
    public static Number get
        (JsonObject jo, String propertyName, boolean isOptional, boolean throwOnNull)
    {
        if (! jo.containsKey(propertyName))
        {
            if (isOptional) return null;
            else throw new JsonPropMissingException(jo, propertyName, NUMBER, Number.class);
        }

        JsonValue jv = jo.get(propertyName);

        switch (jv.getValueType())
        {
            case NULL:

                // This is simple-stuff (not rocket-science).  "Type Mapping" Code has to worry
                // about what the meaning of "null" should be.

                if (throwOnNull) throw new JsonNullObjException
                    (jo, propertyName, NUMBER, Number.class);

                else return null;

            case NUMBER: return convertToNumber((JsonNumber) jv);

            // The JsonObject propertydoes not contain a JsonNumber.
            default: throw new JsonTypeObjException
                (jo, propertyName, NUMBER, jv, Number.class);
        }
    }

    /**
     * Retrieve a {@link JsonObject} property, and transform it to a {@code java.lang.Number}.
     * <EMBED CLASS=defs DATA-TYPE='java.lang.Number' DATA-JTYPE=JsonNumber>
     * <EMBED CLASS='external-html' DATA-FILE-ID=JR_NUMBER>
     * 
     * @param jo            Any instance of {@link JsonObject}
     * @param propertyName  <EMBED CLASS='external-html' DATA-FILE-ID=JR_PN_JO>
     * @param FLAGS         Return-value / exception-throw constants defined in {@link JFlag}
     * @param defaultValue  <EMBED CLASS='external-html' DATA-FILE-ID=JRF_DEFV>
     * @return              <EMBED CLASS='external-html' DATA-FILE-ID=JRF_RET_JO>
     * 
     * @throws JsonPropMissingException <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JPMEX>
     * @throws JsonNullObjException     <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JNOEX>
     * @throws JsonTypeObjException     <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JTOEX>
     * 
     * @see RJInternal#GET(JsonObject, String, int, Number, Class, Function, Function)
     * @see RJInternal#convertToNumber(JsonNumber)
     */
    public static Number get
        (JsonObject jo, String propertyName, int FLAGS, Number defaultValue)
    {
        return GET
            (jo, propertyName, FLAGS, defaultValue, Number.class, RJInternal::convertToNumber, null);
    }

    /**
     * Retrieve a {@link JsonObject} property containing a {@link JsonString}, and transform it to
     * a {@code java.lang.Number}, with either a user-provided parser, or the standard java
     * parser
     * 
     * <EMBED CLASS=defs DATA-TYPE='java.lang.Number' DATA-JTYPE=JsonString
     *  DATA-PARSER='new BigDecimal'>
     * 
     * <BR /><BR />If {@code 'parser'} is passed null, the default parser is used, which is just
     * the {@code java.math.BigDecimal} constructor which accepts a {@code String}.  What is done
     * with the parsed {@code BigDecimal} instance is explained below.
     * 
     * <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=JR_NUM_PARSE>
     * 
     * @param jo             Any instance of {@link JsonObject}
     * @param propertyName   <EMBED CLASS='external-html' DATA-FILE-ID=JR_PN_JO>
     * @param FLAGS          Return-value / exception-throw constants defined in {@link JFlag}
     * @param defaultValue   <EMBED CLASS='external-html' DATA-FILE-ID=JRF_DEFV>
     * @param optionalParser <EMBED CLASS='external-html' DATA-FILE-ID=JRF_PARSER>
     * @return               <EMBED CLASS='external-html' DATA-FILE-ID=JRF_PARSERET_JO>
     * 
     * @throws JsonPropMissingException <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JPMEX>
     * @throws JsonStrParseObjException <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JSPOEX>
     * @throws JsonNullObjException     <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JNOEX>
     * @throws JsonTypeObjException     <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JTOEX>
     * 
     * @see RJInternal#PARSE(JsonObject, String, int, Number, Class, Function, Function, Function)
     * @see RJInternal#convertToNumber(String)
     */
    public static Number parse(
            JsonObject jo, String propertyName, int FLAGS, Number defaultValue,
            Function<String, Number> optionalParser
        )
    {
        return PARSE(
            jo, propertyName, FLAGS, defaultValue, Number.class, optionalParser,
            RJInternal::convertToNumber, null /* Not Needed, convertToNumber won't throw */
        );
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // Number from JsonString Parse  **OR**  from JsonNumber
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * <EMBED CLASS=defs DATA-TYPE=Number DATA-PARSER='new BigDecimal'>
     * <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_DESC_JA>
     * 
     * @param ja             Any {@link JsonArray}
     * @param i              Any index into the {@code JsonArray}
     * @param FLAGS          Return-value / exception-throw constants defined in {@link JFlag}
     * @param defaultValue   <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_DEFVAL>
     * @param optionalParser <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_PARSER>
     * @return               <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_RET_JA>
     * 
     * @throws IndexOutOfBoundsException <EMBED CLASS='external-html' DATA-FILE-ID=JRF_IOOBEX>
     * @throws JsonStrParseArrException  <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_JSPAEX>
     * @throws JsonNullArrException      <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_JNAEX>
     * @throws JsonTypeArrException      <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_JTAEX>
     * 
     * @see #get(JsonArray, int, int, Number)
     * @see #parse(JsonArray, int, int, Number, Function)
     */
    public static Number get(
            JsonArray ja, int i, int FLAGS, Number defaultValue,
            Function<String, Number> optionalParser
        )
    {
        JsonValue.ValueType t;

        return ((i >= ja.size()) || ((t=ja.get(i).getValueType()) == NUMBER) || (t != STRING))
            ? get(ja, i, FLAGS, defaultValue)
            : parse(ja, i, FLAGS, defaultValue, optionalParser);
    }

    /**
     * <EMBED CLASS=defs DATA-TYPE=Number DATA-PARSER='new BigDecimal'>
     * <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_DESC_JO>
     * 
     * @param jo             Any {@link JsonObject}
     * @param propertyName   Any of the properties defined in the {@code JsonObject}
     * @param FLAGS          Return-value / exception-throw constants defined in {@link JFlag}
     * @param defaultValue   <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_DEFVAL>
     * @param optionalParser <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_PARSER>
     * @return               <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_RET_JO>
     * 
     * @throws JsonPropMissingException <EMBED CLASS='external-html' DATA-FILE-ID=JRF_JPMEX>
     * @throws JsonStrParseObjException <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_JSPOEX>
     * @throws JsonNullObjException     <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_JNOEX>
     * @throws JsonTypeObjException     <EMBED CLASS='external-html' DATA-FILE-ID=JRXL_JTOEX>
     * 
     * @see #get(JsonObject, String, int, Number)
     * @see #parse(JsonObject, String, int, Number, Function)
     */
    public static Number get(
                JsonObject jo, String propertyName, int FLAGS, Number defaultValue,
                Function<String, Number> optionalParser
            )
    {
        JsonValue.ValueType t;

        return (    (! jo.containsKey(propertyName))
                ||  ((t = jo.get(propertyName).getValueType()) == NUMBER)
                ||  (t != STRING)
            )
            ? get(jo, propertyName, FLAGS, defaultValue)
            : parse(jo, propertyName, FLAGS, defaultValue, optionalParser);
    }
}