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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
package Torello.JSON;

import Torello.JavaDoc.Annotations.IntoHTMLTable;
import static Torello.JavaDoc.Annotations.IntoHTMLTable.Background.BlueDither;
import static Torello.JavaDoc.Annotations.IntoHTMLTable.Background.GreenDither;

import java.math.BigDecimal;
import java.util.function.Function;

import javax.json.JsonObject;
import javax.json.JsonArray;
import javax.json.JsonNumber;
import javax.json.JsonValue;

import static javax.json.JsonValue.ValueType.TRUE;
import static javax.json.JsonValue.ValueType.NUMBER;
import static javax.json.JsonValue.ValueType.NULL;

/**
 * Builds on the J2EE Standard Release JSON Parsing Tools by providing additional
 * help with converting JSON Data into <B STYLE='color: red'>Java Primitive-Types</B>
 * 
 * <EMBED CLASS='external-html' DATA-FILE-ID=ALL_CLASSES_NOTE>
 * <EMBED CLASS='external-html' DATA-FILE-ID=READ_PRIM_JSON>
 * <EMBED CLASS='external-html' DATA-FILE-ID=READ_PRIM_PTABLE>
 * <EMBED CLASS='external-html' DATA-CH=char DATA-FILE-ID=JAVA_LANG_CHAR>
 * 
 * @see JsonObject
 * @see JsonArray
 */
@Torello.JavaDoc.Annotations.StaticFunctional
public class ReadPrimJSON
{
    // This is a static class.  Has no program state.
    private ReadPrimJSON() { }


    // ********************************************************************************************
    // ********************************************************************************************
    // Read from a JsonArray
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * <EMBED CLASS='external-html' DATA-TYPE=int DATA-FILE-ID=READ_PRIM_JA>
     * @see #GET(JsonArray, int, Class)
     * @see JsonNumber#intValueExact()
     */
    @IntoHTMLTable(
        title="Extract a JsonNumber from a JsonArray, and Transform it to a Java 'int' Primitive",
        background=BlueDither
    )
    public static int getInt(final JsonArray ja, final int index)
    {
        final JsonNumber jn = GET(ja, index, int.class);

        try
            { return jn.intValueExact(); }

        catch (ArithmeticException ae)
            { throw new JsonArithmeticArrException(ae, ja, index, NUMBER, jn, int.class); }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=long DATA-FILE-ID=READ_PRIM_JA>
     * @see #GET(JsonArray, int, Class)
     * @see JsonNumber#longValueExact()
     */
    @IntoHTMLTable(
        title="Extract a JsonNumber from a JsonArray, and Transform it to a Java 'long' Primitive",
        background=GreenDither
    )
    public static long getLong(final JsonArray ja, final int index)
    {
        final JsonNumber jn = GET(ja, index, long.class);

        try
            { return jn.longValueExact(); }

        catch (ArithmeticException ae)
            { throw new JsonArithmeticArrException(ae, ja, index, NUMBER, jn, long.class); }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=short DATA-FILE-ID=READ_PRIM_JA>
     * @see #GET(JsonArray, int, Class)
     * @see JsonNumber#longValueExact()
     * @see RJInternal#SHORT_FROM_LONG(long)
     */
    @IntoHTMLTable(
        title=
            "Extract a JsonNumber from a JsonArray, and Transform it to a Java 'short' Primitive",
        background=BlueDither
    )
    public static short getShort(final JsonArray ja, final int index)
    {
        final JsonNumber jn = GET(ja, index, short.class);

        try
            { return RJInternal.SHORT_FROM_LONG(jn.longValueExact()); }

        catch (ArithmeticException ae)
            { throw new JsonArithmeticArrException(ae, ja, index, NUMBER, jn, short.class); }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=byte DATA-FILE-ID=READ_PRIM_JA>
     * @see #GET(JsonArray, int, Class)
     * @see JsonNumber#longValueExact()
     * @see RJInternal#BYTE_FROM_LONG(long)
     */
    @IntoHTMLTable(
        title="Extract a JsonNumber from a JsonArray, and Transform it to a Java 'byte' Primitive",
        background=GreenDither
    )
    public static byte getByte(final JsonArray ja, final int index)
    {
        final JsonNumber jn = GET(ja, index, byte.class);

        try
            { return RJInternal.BYTE_FROM_LONG(jn.longValueExact()); }

        catch (ArithmeticException ae)
            { throw new JsonArithmeticArrException(ae, ja, index, NUMBER, jn, byte.class); }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=double DATA-FILE-ID=READ_PRIM_JA>
     * @see #GET(JsonArray, int, Class)
     * @see RJInternal#DOUBLE_WITH_CHECK(BigDecimal)
     */
    @IntoHTMLTable(
        title=
            "Extract a JsonNumber from a JsonArray, and Transform it to a Java 'double' " +
            "Primitive",
        background=BlueDither
    )
    public static double getDouble(final JsonArray ja, final int index)
    {
        final JsonNumber jn = GET(ja, index, double.class);

        try
            { return RJInternal.DOUBLE_WITH_CHECK(jn.bigDecimalValue()); }

        catch (ArithmeticException ae)
            { throw new JsonArithmeticArrException(ae, ja, index, NUMBER, jn, double.class); }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=float DATA-FILE-ID=READ_PRIM_JA>
     * @see #GET(JsonArray, int, Class)
     * @see RJInternal#FLOAT_WITH_CHECK(BigDecimal)
     */
    @IntoHTMLTable(
        title=
            "Extract a JsonNumber from a JsonArray, and Transform it to a Java 'float' Primitive",
        background=GreenDither
    )
    public static float getFloat(final JsonArray ja, final int index)
    {
        final JsonNumber jn = GET(ja, index, float.class);

        try
            { return RJInternal.FLOAT_WITH_CHECK(jn.bigDecimalValue()); }

        catch (ArithmeticException ae)
            { throw new JsonArithmeticArrException(ae, ja, index, NUMBER, jn, float.class); }
    }

    /** <EMBED CLASS='external-html' DATA-FILE-ID=READ_PRIM_JA_BOOL> */
    @IntoHTMLTable(
        title=
            "Extract Json-True or False from a JsonArray, and Transform it to a Java " +
            "'boolean' Primitive",
        background=BlueDither
    )
    public static boolean getBoolean(final JsonArray ja, final int index)
    {
        final JsonValue jv = ja.get(index);

        switch (jv.getValueType()) // throws IOB if necessary
        {
            case NULL: throw new JsonNullPrimitiveArrException
                (ja, index, TRUE, boolean.class);

            case TRUE:  return true;
            case FALSE: return false;

            default: throw new JsonTypeArrException
                (ja, index, TRUE, jv, boolean.class);
        }
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // Internal GET
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * This is an internal helper method for retrieving an element from a {@link JsonArray},
     * and converting it to one of the standard <B STYLE='color: red;'>Java Types</B>.
     * 
     * @param ja                Any instance of {@link JsonArray}
     * @param index             Any index into the array which holds a {@link JsonNumber}
     * @param primitiveClass    <EMBED CLASS='external-html' DATA-FILE-ID=READ_PRIM_PCLASS>
     * 
     * @return The extracted {@link JsonNumber}.
     * 
     * @throws JsonNullPrimitiveArrException If the array element at {@code 'index'} contains
     *                                       <B STYLE='color: red'>Json-Null</B>
     * @throws JsonTypeArrException         If the array element at {@code 'index'} doesn't contain
     *                                      {@link JsonNumber}
     * @throws JsonArithmeticArrException   If there are any arithmetic problems during conversion
     * @throws IndexOutOfBoundsException    If {@code 'index'} is out of the bounds of {@code 'ja'}
     * 
     * @see #getInt(JsonArray, int)
     * @see #getLong(JsonArray, int)
     * @see #getShort(JsonArray, int)
     * @see #getByte(JsonArray, int)
     * @see #getDouble(JsonArray, int)
     * @see #getFloat(JsonArray, int)
     */
    protected static <T> JsonNumber GET(
            final JsonArray ja,
            final int       index,
            final Class<T>  primitiveClass
        )
    {
        // This will throw an IndexOutOfBoundsException if the index is out of bounds.
        final JsonValue jv = ja.get(index);

        switch (jv.getValueType())
        {
            case NULL: throw new JsonNullPrimitiveArrException
                (ja, index, NUMBER, primitiveClass);

            case NUMBER: return (JsonNumber) jv;

            default: throw new JsonTypeArrException
                (ja, index, NUMBER, jv, primitiveClass);
        }
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // Read from a JsonObject
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * <EMBED CLASS='external-html' DATA-TYPE=int DATA-FILE-ID=READ_PRIM_JO>
     * @see #GET(JsonObject, String, Class)
     * @see JsonNumber#intValueExact()
     */
    @IntoHTMLTable(
        title="Extract a JsonNumber from a JsonObject, and Transform it to a Java 'int' Primitive",
        background=GreenDither
    )
    public static int getInt(final JsonObject jo, final String propertyName)
    {
        final JsonNumber jn = GET(jo, propertyName, int.class);

        try
            { return jn.intValueExact(); }

        catch (ArithmeticException ae)
            { throw new JsonArithmeticObjException(ae, jo, propertyName, NUMBER, jn, int.class); }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=long DATA-FILE-ID=READ_PRIM_JO>
     * @see #GET(JsonObject, String, Class)
     * @see JsonNumber#longValueExact()
     */
    @IntoHTMLTable(
        title=
            "Extract a JsonNumber from a JsonObject, and Transform it to a Java 'long' Primitive",
        background=BlueDither
    )
    public static long getLong(final JsonObject jo, final String propertyName)
    {
        final JsonNumber jn = GET(jo, propertyName, long.class);

        try
            { return jn.longValueExact(); }

        catch (ArithmeticException ae)
            { throw new JsonArithmeticObjException(ae, jo, propertyName, NUMBER, jn, long.class); }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=short DATA-FILE-ID=READ_PRIM_JO>
     * @see #GET(JsonObject, String, Class)
     * @see JsonNumber#longValueExact()
     * @see RJInternal#SHORT_FROM_LONG(long)
     */
    @IntoHTMLTable(
        title=
            "Extract a JsonNumber from a JsonObject, and Transform it to a Java 'short' Primitive",
        background=GreenDither
    )
    public static short getShort(final JsonObject jo, final String propertyName)
    {
        final JsonNumber jn = GET(jo, propertyName, short.class);

        try
            { return RJInternal.SHORT_FROM_LONG(jn.longValueExact()); }

        catch (ArithmeticException ae)
        {
            throw new JsonArithmeticObjException(ae, jo, propertyName, NUMBER, jn, short.class);
        }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=byte DATA-FILE-ID=READ_PRIM_JO>
     * @see #GET(JsonObject, String, Class)
     * @see JsonNumber#longValueExact()
     * @see RJInternal#BYTE_FROM_LONG(long)
     */
    @IntoHTMLTable(
        title=
            "Extract a JsonNumber from a JsonObject, and Transform it to a Java 'byte' Primitive",
        background=BlueDither
    )
    public static byte getByte(final JsonObject jo, final String propertyName)
    {
        final JsonNumber jn = GET(jo, propertyName, byte.class);

        try
            { return RJInternal.BYTE_FROM_LONG(jn.longValueExact()); }

        catch (ArithmeticException ae)
            { throw new JsonArithmeticObjException(ae, jo, propertyName, NUMBER, jn, byte.class); }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=double DATA-FILE-ID=READ_PRIM_JO>
     * @see #GET(JsonObject, String, Class)
     * @see RJInternal#DOUBLE_WITH_CHECK(BigDecimal)
     */
    @IntoHTMLTable(
        title=
            "Extract a JsonNumber from a JsonObject, and Transform it to a Java 'double' " +
            "Primitive",
        background=GreenDither
    )
    public static double getDouble(final JsonObject jo, final String propertyName)
    {
        final JsonNumber jn = GET(jo, propertyName, double.class);

        try
            { return RJInternal.DOUBLE_WITH_CHECK(jn.bigDecimalValue()); }

        catch (ArithmeticException ae)
        {
            throw new JsonArithmeticObjException(ae, jo, propertyName, NUMBER, jn, double.class);
        }
    }

    /**
     * <EMBED CLASS='external-html' DATA-TYPE=float DATA-FILE-ID=READ_PRIM_JO>
     * @see #GET(JsonObject, String, Class)
     * @see RJInternal#FLOAT_WITH_CHECK(BigDecimal)
     */
    @IntoHTMLTable(
        title=
            "Extract a JsonNumber from a JsonObject, and Transform it to a Java 'float' Primitive",
        background=BlueDither
    )
    public static float getFloat(final JsonObject jo, final String propertyName)
    {
        final JsonNumber jn = GET(jo, propertyName, float.class);

        try
            { return RJInternal.FLOAT_WITH_CHECK(jn.bigDecimalValue()); }

        catch (ArithmeticException ae)
        {
            throw new JsonArithmeticObjException(ae, jo, propertyName, NUMBER, jn, float.class);
        }
    }

    /** <EMBED CLASS='external-html' DATA-FILE-ID=READ_PRIM_JO_BOOL> */
    @IntoHTMLTable(
        title=
            "Extract Json-True or False from a JsonObject, and Transform it to a Java 'long' " +
            "Primitive",
        background=GreenDither
    )
    public static boolean getBoolean(final JsonObject jo, final String propertyName)
    {
        if (! jo.containsKey(propertyName)) throw new JsonPropMissingException
            (jo, propertyName, TRUE, boolean.class);

        final JsonValue jv = jo.get(propertyName);

        switch (jv.getValueType())
        {
            case NULL: throw new JsonNullPrimitiveObjException
                (jo, propertyName, TRUE, boolean.class);

            case TRUE:  return true;
            case FALSE: return false;

            default: throw new JsonTypeObjException
                (jo, propertyName, TRUE, jv, boolean.class);
        }
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // The Internal Methods
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * This is an internal helper method for retrieving a property from a {@link JsonObject},
     * and converting it to one of the standard <B STYLE='color: red;'>Java Types</B>.
     * 
     * @param jo                Any instance of {@link JsonObject}
     * @param propertyName      Any property name contained by {@code 'jo'}
     * @param primitiveClass    <EMBED CLASS='external-html' DATA-FILE-ID=READ_PRIM_PCLASS>
     * 
     * @return The extracted {@link JsonNumber}.
     * 
     * @throws JsonNullPrimitiveObjException If the specified property contains
     *                                       <B STYLE='color: red'>Json-Null</B>
     * @throws JsonPropMissingException     If the property is missing, and {@code 'isOptional'}
     *                                      is {@code FALSE}.
     * @throws JsonTypeObjException         If the user specified property doesn't contain a
     *                                      {@link JsonNumber}
     * @throws JsonArithmeticObjException   If there any arithmetic problems during the conversion
     * 
     * @see #getInt(JsonObject, String)
     * @see #getLong(JsonObject, String)
     * @see #getShort(JsonObject, String)
     * @see #getByte(JsonObject, String)
     * @see #getDouble(JsonObject, String)
     * @see #getFloat(JsonObject, String)
     */
    protected static <T> JsonNumber GET(
            final JsonObject    jo,
            final String        propertyName,
            final Class<T>      primitiveClass
        )
    {
        // Here, a 'get' request was made for a property that isn't actually listed among the
        // properties in the provided JsonObject.  Since this internal 'GET' is used by methods
        // that are trying to return a Java Primitive (like 'int' or 'float'), then an exception
        // has to be thrown.  The option of returning 'null' isn't possible here!
    
        if (! jo.containsKey(propertyName)) throw new JsonPropMissingException
            (jo, propertyName, NUMBER, primitiveClass);

        final JsonValue jv = jo.get(propertyName);

        switch (jv.getValueType())
        {
            case NULL: throw new JsonNullPrimitiveObjException
                (jo, propertyName, NUMBER, primitiveClass);

            case NUMBER: return (JsonNumber) jv;

            // The JsonObject property does not contain a JsonNumber.
            default: throw new JsonTypeObjException
                (jo, propertyName, NUMBER, jv, primitiveClass);
        }
    }

}