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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
|
//*****************************************************************************
//
// json.c - File to handle json formatted data from websites.
//
// Copyright (c) 2013-2014 Texas Instruments Incorporated. All rights reserved.
// Software License Agreement
//
// Texas Instruments (TI) is supplying this software for use solely and
// exclusively on TI's microcontroller products. The software is owned by
// TI and/or its suppliers, and is protected under applicable copyright
// laws. You may not combine this software with "viral" open-source
// software in order to form a larger program.
//
// THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
// NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
// NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
// CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
// DAMAGES, FOR ANY REASON WHATSOEVER.
//
// This is part of revision 2.1.0.12573 of the DK-TM4C129X Firmware Package.
//
//*****************************************************************************
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "utils/ustdlib.h"
#include "utils/lwiplib.h"
#include "eth_client.h"
#include "json.h"
#include "images.h"
//****************************************************************************
//
// The locally defined lwIP buffer parsing pointer.
//
//****************************************************************************
typedef struct
{
//
// A pbuf pointer from lwIP.
//
struct pbuf *psBuf;
//
// The current index into the pbuf pointer.
//
uint32_t ui32Idx;
}
tBufPtr;
//****************************************************************************
//
// Initialize a buffer parsing pointer.
//
//****************************************************************************
static void
BufPtrInit(tBufPtr *psBufPtr, struct pbuf *psBuf)
{
psBufPtr->psBuf = psBuf;
psBufPtr->ui32Idx = 0;
}
//****************************************************************************
//
// Get a single byte from a parsing pointer.
//
//****************************************************************************
static uint8_t
BufData8Get(tBufPtr *psBufPtr)
{
return(((uint8_t *)psBufPtr->psBuf->payload)[psBufPtr->ui32Idx]);
}
//*****************************************************************************
//
// Increment a parsing pointer by a given value.
//
//*****************************************************************************
uint32_t
BufPtrInc(tBufPtr *psBufPtr, uint32_t ui32Inc)
{
psBufPtr->ui32Idx += ui32Inc;
if(psBufPtr->ui32Idx >= psBufPtr->psBuf->len)
{
psBufPtr->ui32Idx = 0;
psBufPtr->psBuf = psBufPtr->psBuf->next;
if(psBufPtr->psBuf == 0)
{
ui32Inc = 0;
}
}
return(ui32Inc);
}
//*****************************************************************************
//
// Return the image to use for the given icon returned from the weather update.
//
//*****************************************************************************
void
GetImage(char *pcIcon, const uint8_t **ppui8Image, const char **ppcDescription)
{
static const struct
{
char pcId[2];
const uint8_t *pui8Image;
const char *pcDescription;
}
pcIconTable[9] =
{
//
// Clear Sky.
//
{ "01", g_pui8SunImage, "Clear Sky"},
//
// Light Clouds.
//
{ "02", g_pui8CloudyImage, "Light Clouds"},
//
// Scattered Clouds.
//
{ "03", g_pui8CloudyImage, "Scattered Clouds"},
//
// Broken Clouds.
//
{ "04", g_pui8CloudyImage, "Broken Clouds"},
//
// Rain showers.
//
{ "09", g_pui8RainImage, "Light Rain"},
//
// Rain.
//
{ "10", g_pui8RainImage, "Rain"},
//
// Thunderstorms.
//
{ "11", g_pui8ThuderStormImage, "Thunderstorms"},
//
// Snow.
//
{ "13", g_pui8SnowImage, "Snow"},
//
// Mist/Fog.
//
{ "50", g_pui8FogImage, "Mist/Fog"},
};
int32_t i32Idx;
for(i32Idx = 0; i32Idx < 9; i32Idx++)
{
if((pcIcon[0] == pcIconTable[i32Idx].pcId[0]) &&
(pcIcon[1] == pcIconTable[i32Idx].pcId[1]))
{
*ppui8Image = pcIconTable[i32Idx].pui8Image;
*ppcDescription = pcIconTable[i32Idx].pcDescription;
break;
}
}
}
//*****************************************************************************
//
// Compare a string at the current location of a parsing pointer.
//
//*****************************************************************************
uint32_t
CompareString(tBufPtr *psBufPtr, const char *pcField, uint32_t ui32Size)
{
uint32_t ui32Idx;
for(ui32Idx = 0; ui32Idx < ui32Size; ui32Idx++)
{
if(BufData8Get(psBufPtr) == pcField[ui32Idx])
{
if(BufPtrInc(psBufPtr, 1) != 1)
{
break;
}
}
else
{
break;
}
}
if(ui32Idx == ui32Size)
{
return(0);
}
return(1);
}
//*****************************************************************************
//
// This function searches for a field from the JSON data. The field should be
// quoted in the data and immediately follow a '{' character. This can be used
// to also search for sub data in another field if the pointer to the data for
// the parent field.
//
//*****************************************************************************
static uint32_t
GetField(char *pcField, tBufPtr *psBufPtr)
{
uint32_t ui32Curly, ui32Quote;
int32_t i32NewItem;
ui32Curly = 0;
i32NewItem = 0;
ui32Quote = 0;
while(1)
{
if(BufData8Get(psBufPtr) == '{')
{
ui32Curly++;
}
else if(BufData8Get(psBufPtr) == '}')
{
ui32Curly--;
if(ui32Curly == 1)
{
ui32Quote = 0;
}
}
else if(BufData8Get(psBufPtr) == ',')
{
if((ui32Curly == 1) && ((ui32Quote & 1) == 0))
{
ui32Quote = 0;
}
}
else if(BufData8Get(psBufPtr) == '"')
{
if((ui32Curly == 1) && (ui32Quote == 0))
{
i32NewItem = 1;
}
ui32Quote++;
}
if(BufPtrInc(psBufPtr, 1) != 1)
{
break;
}
if(i32NewItem)
{
i32NewItem = 0;
if(CompareString(psBufPtr, pcField, ustrlen(pcField)) == 0)
{
while(1)
{
if(BufData8Get(psBufPtr) == ':')
{
if(BufPtrInc(psBufPtr, 1) != 1)
{
break;
}
return(1);
}
if(BufPtrInc(psBufPtr, 1) != 1)
{
break;
}
}
return(0);
}
}
}
return(0);
}
//*****************************************************************************
//
// This function searches for a value in a JSON item as an integer. These are
// non-quoted values so if the number is a quoted integer this function returns
// -1. If the value is found then it is returned by this function.
//
//*****************************************************************************
int32_t
GetFieldValueInt(tBufPtr *psBufPtr)
{
int32_t i32Idx;
char pcTemp[20];
const char *pEnd;
i32Idx = 0;
while(1)
{
//
// Find the end of this item.
//
if((BufData8Get(psBufPtr) == '}') || (BufData8Get(psBufPtr) == ','))
{
//
// null terminate the string and get the value from the string in
// decimal.
//
pcTemp[i32Idx] = 0;
return(ustrtoul(pcTemp, &pEnd, 10));
}
//
// Should not hit a " char or something went wrong.
//
if(BufData8Get(psBufPtr) == '"')
{
break;
}
//
// Copy the string to the local variable.
//
pcTemp[i32Idx] = BufData8Get(psBufPtr);
if((pcTemp[i32Idx] == '\r') || (pcTemp[i32Idx] == '\n'))
{
pcTemp[i32Idx] = 0;
}
else
{
i32Idx++;
}
if(BufPtrInc(psBufPtr, 1) != 1)
{
break;
}
//
// Number was too large to represent.
//
if(i32Idx >= sizeof(pcTemp))
{
break;
}
}
return(INVALID_INT);
}
//*****************************************************************************
//
// This function searches for a value in a JSON item as quoted value. These
// values are quoted values so if the number is not a quoted value this
// function returns -1. If the quoted value is found then it is returned in
// the pcDataDest array.
//
//*****************************************************************************
int32_t
GetFieldValueString(tBufPtr *psBufPtr, char *pcDataDest, uint32_t ui32SizeDest)
{
int32_t i32OutIdx;
//
// The value should always start with a " char or something went wrong.
//
if(BufData8Get(psBufPtr) != '"')
{
return(-1);
}
//
// Skip the initial " char.
//
if(BufPtrInc(psBufPtr, 1) != 1)
{
return(-1);
}
for(i32OutIdx = 0; i32OutIdx < ui32SizeDest;)
{
//
// Either a '}', ',', or '"' ends an item.
//
if((BufData8Get(psBufPtr) == '}') ||
(BufData8Get(psBufPtr) == ',') ||
(BufData8Get(psBufPtr) == '"'))
{
//
// Null terminate the string and return.
//
pcDataDest[i32OutIdx] = 0;
return(i32OutIdx);
}
//
// Continue coping chars into the destination buffer.
//
pcDataDest[i32OutIdx] = BufData8Get(psBufPtr);
//
// These can occur in the response string and need to be ignored.
//
if((pcDataDest[i32OutIdx] == '\r') || (pcDataDest[i32OutIdx] == '\n'))
{
pcDataDest[i32OutIdx] = 0;
}
else
{
i32OutIdx++;
}
if(BufPtrInc(psBufPtr, 1) != 1)
{
break;
}
}
//
// Make sure to null terminate inside the current string.
//
if(i32OutIdx == ui32SizeDest)
{
pcDataDest[i32OutIdx-1] = 0;
return(i32OutIdx - 1);
}
return(-1);
}
//*****************************************************************************
//
// Fill out the psWeatherReport structure from data returned from the JSON
// query.
//
//*****************************************************************************
int32_t
JSONParseForecast(uint32_t ui32Index, tWeatherReport *psWeatherReport,
struct pbuf *psBuf)
{
tBufPtr sBufPtr, sBufList, sBufTemp;
char pcCode[4];
int32_t i32Items,i32Code;
//
// Reset the pointers.
//
BufPtrInit(&sBufPtr, psBuf);
//
// Check and see if the request was valid.
//
if(GetField("cod", &sBufPtr) != 0)
{
//
// Check for a 404 not found error.
//
sBufTemp = sBufPtr;
//
// Check for a 404 not found error.
//
i32Code = GetFieldValueInt(&sBufTemp);
sBufTemp = sBufPtr;
if(i32Code != INVALID_INT)
{
if(i32Code == 404)
{
return(-1);
}
}
else if(GetFieldValueString(&sBufTemp, pcCode, sizeof(pcCode)) >= 0)
{
//
// Check for a 404 not found error.
//
if(ustrncmp(pcCode, "404", 3) == 0)
{
return(-1);
}
}
}
//
// Reset the pointers.
//
BufPtrInit(&sBufPtr, psBuf);
//
// Initialize the number of items found.
//
i32Items = 0;
if(GetField("list", &sBufPtr) != 0)
{
//
// Save the list pointer.
//
sBufList = sBufPtr;
//
// Get the humidity.
//
if(GetField("humidity", &sBufPtr) != 0)
{
psWeatherReport->i32Humidity = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->i32Humidity = INVALID_INT;
}
//
// Reset the pointer to the start of the list values.
//
sBufPtr = sBufList;
//
// Get the average daily pressure.
//
if(GetField("pressure", &sBufPtr) != 0)
{
psWeatherReport->i32Pressure = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->i32Pressure = INVALID_INT;
}
//
// Reset the pointer to the start of the list values.
//
sBufPtr = sBufList;
//
// Get the average daily temperature.
//
if(GetField("temp", &sBufPtr) != 0)
{
if(GetField("day", &sBufPtr) != 0)
{
psWeatherReport->i32Temp = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->i32Temp = INVALID_INT;
}
}
//
// Reset the pointer to the start of the list values.
//
sBufPtr = sBufList;
//
// Get the low temperature.
//
if(GetField("temp", &sBufPtr) != 0)
{
if(GetField("min", &sBufPtr) != 0)
{
psWeatherReport->i32TempLow = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->i32TempLow = INVALID_INT;
}
}
//
// Reset the pointer to the start of the list values.
//
sBufPtr = sBufList;
//
// Get the high temperature.
//
if(GetField("temp", &sBufPtr) != 0)
{
if(GetField("max", &sBufPtr) != 0)
{
psWeatherReport->i32TempHigh = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->i32TempHigh = INVALID_INT;
}
}
//
// Reset the pointer to the start of the list values.
//
sBufPtr = sBufList;
if(GetField("dt", &sBufPtr) != 0)
{
psWeatherReport->ui32Time = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->ui32Time = 0;
}
}
return(i32Items);
}
//*****************************************************************************
//
// Fill out the psWeatherReport structure from data returned from the JSON
// query.
//
//*****************************************************************************
int32_t
JSONParseCurrent(uint32_t ui32Index, tWeatherReport *psWeatherReport,
struct pbuf *psBuf)
{
tBufPtr sBufPtr, sBufMain, sBufTemp;
char pcIcon[3];
char pcCode[4];
int32_t i32Items, i32Code;
//
// Reset the pointers.
//
BufPtrInit(&sBufPtr, psBuf);
//
// Check and see if the request was valid.
//
if(GetField("cod", &sBufPtr) != 0)
{
sBufTemp = sBufPtr;
//
// Check for a 404 not found error.
//
i32Code = GetFieldValueInt(&sBufTemp);
sBufTemp = sBufPtr;
if(i32Code != INVALID_INT)
{
if(i32Code == 404)
{
return(-1);
}
}
else if(GetFieldValueString(&sBufTemp, pcCode, sizeof(pcCode)) >= 0)
{
//
// Check for a 404 not found error.
//
if(ustrncmp(pcCode, "404", 3) == 0)
{
return(-1);
}
}
}
//
// Initialize the number of items that have been found.
//
i32Items = 0;
//
// Reset the pointers.
//
BufPtrInit(&sBufPtr, psBuf);
//
// Find the basic weather description(weather.description).
//
if(GetField("weather", &sBufPtr) != 0)
{
if(GetField("icon", &sBufPtr) != 0)
{
if(GetFieldValueString(&sBufPtr, pcIcon, sizeof(pcIcon)) > 0)
{
//
// Save the image pointer.
//
GetImage(pcIcon, &psWeatherReport->pui8Image,
&psWeatherReport->pcDescription);
i32Items++;
}
else
{
//
// No image was found.
//
psWeatherReport->pui8Image = 0;
}
}
}
//
// Reset the pointers.
//
BufPtrInit(&sBufPtr, psBuf);
//
// Find the humidity value(main.humidity).
//
if(GetField("sys", &sBufPtr) != 0)
{
//
// Save the pointer to the data.
//
sBufMain = sBufPtr;
//
// Get the sunrise time.
//
if(GetField("sunrise", &sBufPtr) != 0)
{
psWeatherReport->ui32SunRise = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->ui32SunRise = 0;
}
//
// Restore the pointer to the data.
//
sBufPtr = sBufMain;
//
// Get the sunset time.
//
if(GetField("sunset", &sBufPtr) != 0)
{
psWeatherReport->ui32SunSet = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->ui32SunSet = 0;
}
}
//
// Reset the pointers.
//
BufPtrInit(&sBufPtr, psBuf);
//
// Get the last update time.
//
if(GetField("dt", &sBufPtr) != 0)
{
psWeatherReport->ui32Time = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->ui32Time = 0;
}
//
// Reset the pointers.
//
BufPtrInit(&sBufPtr, psBuf);
//
// Find the humidity value(main.humidity).
//
if(GetField("main", &sBufPtr) != 0)
{
//
// Save the pointer to the main data.
//
sBufMain = sBufPtr;
if(GetField("humidity", &sBufPtr) != 0)
{
psWeatherReport->i32Humidity = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->i32Humidity = INVALID_INT;
}
//
// Reset the buffer pointer to main.
//
sBufPtr = sBufMain;
//
// Find the current temperature value.
//
if(GetField("temp", &sBufPtr) != 0)
{
psWeatherReport->i32Temp = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->i32Temp = INVALID_INT;
}
//
// Reset the buffer pointer to main.
//
sBufPtr = sBufMain;
//
// Find the current atmospheric pressure.
//
if(GetField("pressure", &sBufPtr) != 0)
{
psWeatherReport->i32Pressure = GetFieldValueInt(&sBufPtr);
i32Items++;
}
else
{
psWeatherReport->i32Pressure = INVALID_INT;
}
}
return(i32Items);
}
|