-
Notifications
You must be signed in to change notification settings - Fork 5
/
e164_base.c
1177 lines (1099 loc) · 44.1 KB
/
e164_base.c
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
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* E164 Type base functions
* $Id: e164_base.c 53 2007-09-10 01:13:48Z glaesema $
*/
#ifndef E164_BASE_C
#define E164_BASE_C
#include <postgres.h>
/*
* FIXME
* Using palloc/pfree causes backends to die when inputing E164 numbers
* with more than 10 digits. Haven't gotten to the bottom of this yet.
* Use PostgreSQL's memory management functions unless running unit tests
*/
#ifndef E164_BASE_CHECK
#define free pfree
#define malloc palloc
#endif
#define E164_PREFIX '+'
#define E164_NUMBER_MASK 0x0000FFFFFFFFFFFFULL
#define E164_CC_LENGTH_MASK 0x0003000000000000ULL
#define E164_NUMBER_AND_CC_LENGTH_MASK (E164_NUMBER_MASK | E164_CC_LENGTH_MASK)
#define E164_ONE_DIGIT_CC_MASK 0x0001000000000000ULL
#define E164_TWO_DIGIT_CC_MASK 0x0002000000000000ULL
#define E164_THREE_DIGIT_CC_MASK 0x0003000000000000ULL
#define E164_CC_LENGTH_OFFSET 48
#define E164_GEOGRAPHIC_AREA_MASK 0x0010000000000000ULL
#define E164_GLOBAL_SERVICE_MASK 0x0020000000000000ULL
#define E164_NETWORK_MASK 0x0040000000000000ULL
#define E164_GROUP_OF_COUNTRIES_MASK 0x0080000000000000ULL
/*
* FIXME
* These debug symbols should *not* be used in production
* code, so should not be required here.
*/
typedef enum E164DebugSignal
{
E164DebugSignalE164CountryCodeFromString_bad_CC = 1,
E164DebugSignalE164CountryCodeFromString_invalid_CC,
E164DebugSignalHasValidLengthForE164Type_SN_LESS_THAN_ZERO,
E164DebugSignalHasValidLengthFore164Type_INVALID_E164TYPE,
E164DebugSignalCheckE164CountryCodeForRangeError,
E164DebugSignalE164In,
E164DebugSignalInitializeE164WithCountryCode,
E164DebugSignalE164CountryCodeLength,
E164DebugSignalInitializeE164WithCountryCodeUnrecognizedType,
E164DebugSignalE164Type
} E164DebugSignal;
/*
* There are four types of assigned E164:
* * Geographic Area numbers
* * Global Service numbers
* * Network numbers
* * Group of Countries numbers
* Each of these E164 number types have well-defined formats.
*
* There are three types of unassigned E164 as well:
* * Reserved numbers
* * Spare codes with notes
* * Spare codes without notes
*
* For the purposes of the implementation, all unassigned E164 numbers
* will be considered invalid.
*
* An E164's type can be determined by inspecting its country code --
* (at most) the first three digits. (Some Geographic Area country codes are one
* or 2 digits in length.)
*
* Some country codes are reserved, and others are spare (as of yet unassigned).
* These reserved and spare codes are rejected as invalid by this implementation,
* in part because one cannot determine such a number's type and therefore whether
* the number matches the format of its type.
*/
/*
* Type definitions
*/
typedef enum E164StructureLimit
{
E164MaximumNumberOfDigits = 15,
E164PrefixStringLength = 1, /* = strlen(E164_PREFIX) */
/*
* E164MaxStringLength = E164MaximumNumberOfDigits + E164PrefixStringLength
* Note this does *not* include the string terminator
*/
E164MaximumStringLength = 16,
/*
* E164MinimumStringLength is pretty conservative:
* prefix (1) + country code (1) + subscriber number (1)
*/
E164MinimumStringLength = 3,
E164MinimumNumberOfDigits = 2,
E164MaximumCountryCodeLength = 3,
E164GeographicAreaMinimumCountryCodeLength = 1,
E164GeographicAreaMaximumCountryCodeLength = 3, /* = E164MaximumCountryCodeLength */
E164GlobalServiceCountryCodeLength = 3, /* = E164MaximumCountryCodeLength */
E164NetworkCountryCodeLength = 3, /* = E164MaximumCountryCodeLength */
E164GroupOfCountrysCountryCodeLength = 3, /* = E164MaximumCountryCodeLength */
/*
* Minimum Subscriber Number lengths for the various E164Types
* These are absolute (and unrealistic) minimums. However, true
* minimums are country specific, and until this implementation
* is country-code specific, this should do.
*/
E164GeographicAreaMinimumSubscriberNumberLength = 1,
E164GlobalServiceMinimumSubscriberNumberLength = 1,
E164NetworkMinimumSubscriberNumberLength = 2,
E164GroupOfCountriesMinimumSubscriberNumberLength = 2
} E164StructureLimit;
typedef enum E164ParseResult
{
E164NoParseError = 0,
E164ParseErrorBadFormat = 2,
E164ParseErrorInvalidPrefix,
E164ParseErrorStringTooLong,
E164ParseErrorStringTooShort,
E164ParseErrorInvalidType,
E164ParseErrorNoSubscriberNumberDigits,
E164ParseErrorUnassignedType,
E164ParseErrorTypeLengthMismatch
} E164ParseResult;
typedef enum E164Type
{
E164GeographicArea,
E164GlobalService,
E164Network,
E164GroupOfCountries,
/* Unassigned codes */
E164Reserved,
E164SpareWithNote,
E164SpareWithoutNote,
E164Invalid
} E164Type;
typedef int4 E164CountryCode;
typedef uint64 E164;
/*
static const char * e164TypeName[] = {
"E.164 Geographic Area",
"E.164 Global Service",
"E.164 Network",
"E.164 Group of Countries",
"E.164 Reserved",
"E.164 Spare with Note",
"E.164 Spare without Note",
"E.164 Invalid"
};
*/
static const E164Type e164TypeFor[] = {
/* 0..9 */
E164Reserved, E164GeographicArea, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164GeographicArea, E164Invalid, E164Invalid,
/* 10..19 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 20..29 */
E164GeographicArea, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164GeographicArea, E164Invalid, E164Invalid,
/* 30..39 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164Invalid, E164GeographicArea, E164Invalid, E164Invalid, E164GeographicArea,
/* 40..49 */
E164GeographicArea, E164GeographicArea, E164Invalid, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 50..59 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164Invalid,
/* 60..69 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164Invalid, E164Invalid, E164Invalid,
/* 70..79 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 80..89 */
E164Invalid, E164GeographicArea, E164GeographicArea, E164Invalid, E164GeographicArea,
E164Invalid, E164GeographicArea, E164Invalid, E164Invalid, E164Invalid,
/* 90..99 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164Invalid, E164Invalid, E164GeographicArea, E164Invalid,
/* 100..109 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 110..119 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 120..129 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 130..139 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 140..149 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 150..159 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 160..169 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 170..179 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 180..189 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 190..199 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 200..209 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 210..219 */
E164SpareWithoutNote, E164SpareWithoutNote, E164GeographicArea, E164GeographicArea, E164SpareWithoutNote,
E164SpareWithoutNote, E164GeographicArea, E164SpareWithoutNote, E164GeographicArea, E164SpareWithoutNote,
/* 220..229 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 230..239 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 240..249 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 250..259 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164SpareWithoutNote,
/* 260..269 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 270..279 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 280..289 */
E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote,
E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote,
/* 290..299 */
E164GeographicArea, E164GeographicArea, E164SpareWithoutNote, E164SpareWithoutNote, E164SpareWithoutNote,
E164SpareWithoutNote, E164SpareWithoutNote, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 300..309 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 310..319 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 320..329 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 330..339 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 340..349 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 350..359 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 360..369 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 370..379 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 380..389 */
E164GeographicArea, E164GeographicArea, E164SpareWithoutNote, E164SpareWithoutNote, E164SpareWithoutNote,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GroupOfCountries, E164GeographicArea,
/* 390..399 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 400..409 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 410..419 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 420..429 */
E164GeographicArea, E164GeographicArea, E164SpareWithoutNote, E164GeographicArea, E164SpareWithoutNote,
E164SpareWithoutNote, E164SpareWithoutNote, E164SpareWithoutNote, E164SpareWithoutNote, E164SpareWithoutNote,
/* 430..439 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 440..449 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 450..459 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 460..469 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 470..479 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 480..489 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 490..499 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 500..509 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 510..519 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 520..529 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 530..539 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 540..549 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 550..559 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 560..569 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 570..579 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 580..589 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 590..599 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 600..609 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 610..619 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 620..629 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 630..639 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 640..649 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 650..659 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 660..669 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 670..679 */
E164GeographicArea, E164SpareWithoutNote, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 680..689 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164SpareWithoutNote,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
/* 690..699 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164SpareWithoutNote, E164SpareWithoutNote,
E164SpareWithoutNote, E164SpareWithoutNote, E164SpareWithoutNote, E164SpareWithoutNote, E164SpareWithoutNote,
/* 700..709 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 710..719 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 720..729 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 730..739 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 740..749 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 750..759 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 760..769 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 770..779 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 780..789 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 790..799 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 800..809 */
E164GlobalService, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote,
E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164GlobalService, E164SpareWithNote,
/* 810..819 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 820..829 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 830..839 */
E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote,
E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote,
/* 840..849 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 850..859 */
E164GeographicArea, E164SpareWithoutNote, E164GeographicArea, E164GeographicArea, E164SpareWithoutNote,
E164GeographicArea, E164GeographicArea, E164SpareWithoutNote, E164SpareWithoutNote, E164SpareWithoutNote,
/* 860..869 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 870..879 */
E164Network, E164Network, E164Network, E164Network, E164Reserved,
E164Reserved, E164Reserved, E164Reserved, E164GlobalService, E164Reserved,
/* 880..889 */
E164GeographicArea, E164Network, E164Network, E164SpareWithoutNote, E164SpareWithoutNote,
E164SpareWithoutNote, E164Reserved, E164SpareWithoutNote, E164Reserved, E164SpareWithoutNote,
/* 890..899 */
E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote,
E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote, E164SpareWithNote,
/* 900..909 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 910..919 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 920..929 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 930..939 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 940..949 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 950..959 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 960..969 */
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164Reserved,
/* 970..979 */
E164Reserved, E164GeographicArea, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164GeographicArea, E164SpareWithoutNote, E164GlobalService,
/* 980..989 */
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
E164Invalid, E164Invalid, E164Invalid, E164Invalid, E164Invalid,
/* 990..999 */
E164SpareWithoutNote, E164GlobalService, E164GeographicArea, E164GeographicArea, E164GeographicArea,
E164GeographicArea, E164GeographicArea, E164SpareWithoutNote, E164GeographicArea, E164Reserved
};
/*
* Function prototypes
*/
E164 e164In (char * theString);
char * e164Out (E164 aNumber);
static inline E164Type e164Type (E164 * theNumber);
static inline E164CountryCode e164CountryCode (E164 * theNumber);
static inline int countryCodeStringFromE164 (char * aString, E164 * aNumber);
static inline int e164CountryCodeLength (E164 * aNumber);
static inline E164CountryCode e164CountryCodeFromInteger (int anInteger);
static inline E164CountryCode e164CountryCodeFromString (char * aString);
static int parseE164String (const char * aNumberString,
char * theDigits,
E164CountryCode * aCode,
char * subscriberNumber);
static inline bool hasValidLengthForE164Type (int numberLength,
int countryCodeLength,
E164Type aType);
static inline void initializeE164WithCountryCode (E164 * aNumber,
E164CountryCode * aCountryCode);
static bool e164IsConsistent (E164 * aNumber);
/*
* unused, but perhaps useful as faster than converting country codes to text
* and comparing.
*/
static inline bool e164CountryCodesAreEqual (E164CountryCode firstCountryCode,
E164CountryCode secondCountryCode);
/* unused */
static inline bool e164TypesAreEqual (E164Type firstType, E164Type secondType);
static inline bool isValidE164PrefixChar (const char * aChar);
static inline bool stringHasValidE164Prefix (const char * aString);
static inline E164ParseResult e164FromString (E164 * aNumber, char * aString);
static inline int stringFromE164 (char * aString,
E164 * aNumber,
int stringLength);
static inline void e164Free (E164 * theNumber);
static inline bool isEndOfString (const char * theChar);
static inline bool eachCharIsDigit (const char * aString);
static inline bool e164CountryCodeIsInRange (E164CountryCode theCountryCode);
static inline void checkE164CountryCodeForRangeError (E164CountryCode theCountryCode);
static inline bool isValidE164CountryCodeForType(E164CountryCode theCountryCode,
E164Type theType);
static inline bool isValidE164CountryCodeForTypeWithDigits (E164CountryCode theCountryCode,
E164Type theType,
int numberOfDigits);
static inline bool isOneDigitE164CountryCode (E164CountryCode theCountryCode);
static inline bool isTwoDigitE164CountryCode (E164CountryCode theCountryCode);
static inline bool isThreeDigitE164CountryCode (E164CountryCode theCountryCode);
static inline bool isUnassignedE164Type (E164Type aType);
static inline bool isInvalidE164Type (E164Type aType);
static inline E164Type e164TypeForCountryCode (E164CountryCode theCountryCode);
/*
* Comparison functions
*/
static inline int e164Comparison (E164 * firstNumber, E164 * secondNumber);
static inline bool e164IsEqualTo (E164 * firstNumber, E164 * secondNumber);
static inline bool e164IsNotEqualTo (E164 * firstNumber, E164 * secondNumber);
static inline bool e164IsLessThan (E164 * firstNumber, E164 * secondNumber);
static inline bool e164IsLessThanOrEqualTo (E164 * firstNumber, E164 * secondNumber);
static inline bool e164IsGreaterThanOrEqualTo (E164 * firstNumber, E164 * secondNumber);
static inline bool e164IsGreaterThan (E164 * firstNumber, E164 * secondNumber);
/*
* Function definitions
*/
/*
* e164In is the input function for the E164 type. Only for use during unit testing
*/
E164 e164In (char * theString)
{
E164 theNumber;
if (E164NoParseError == e164FromString(&theNumber, theString))
return theNumber;
/* FIXME -- report error instead of exit */
#ifdef E164_BASE_CHECK
exit(E164DebugSignalE164In);
#endif
}
/*
* e164Out is the output function for the E164 type
*/
char * e164Out (E164 aNumber)
{
E164 theNumber = aNumber;
/* allocate space for the string + terminator */
/* FIXME memory leak */
char * theString = malloc(E164MaximumStringLength + 1);
stringFromE164(theString, &theNumber, E164MaximumStringLength);
return theString;
}
/*
* e164Free frees the memory allocated for an E164 variable
*/
void e164Free (E164 * theNumber)
{
free(theNumber);
return;
}
static inline
int e164Comparison (E164 * firstNumber, E164 * secondNumber)
{
if ((*firstNumber & E164_NUMBER_AND_CC_LENGTH_MASK) <
(*secondNumber & E164_NUMBER_AND_CC_LENGTH_MASK))
return -1;
else if ((*firstNumber & E164_NUMBER_AND_CC_LENGTH_MASK) ==
(*secondNumber & E164_NUMBER_AND_CC_LENGTH_MASK))
return 0;
else
return 1;
};
static inline
bool e164IsEqualTo (E164 * firstNumber, E164 * secondNumber)
{
return (0 == e164Comparison(firstNumber, secondNumber));
};
static inline
bool e164IsNotEqualTo (E164 * firstNumber, E164 * secondNumber)
{
return (0 != e164Comparison(firstNumber, secondNumber));
}
static inline
bool e164IsLessThan (E164 * firstNumber, E164 * secondNumber)
{
return (0 > e164Comparison(firstNumber, secondNumber));
}
static inline
bool e164IsLessThanOrEqualTo (E164 * firstNumber, E164 * secondNumber)
{
return (0 >= e164Comparison(firstNumber, secondNumber));
}
static inline
bool e164IsGreaterThanOrEqualTo (E164 * firstNumber, E164 * secondNumber)
{
return (0 <= e164Comparison(firstNumber, secondNumber));
}
static inline
bool e164IsGreaterThan (E164 * firstNumber, E164 * secondNumber)
{
return (0 < e164Comparison(firstNumber, secondNumber));
}
/*
* e164Type returns the E164Type of the E164 argument
*/
static inline
E164Type e164Type (E164 * theNumber)
{
if (*theNumber & E164_GEOGRAPHIC_AREA_MASK)
return E164GeographicArea;
else if (*theNumber & E164_GLOBAL_SERVICE_MASK)
return E164GlobalService;
else if (*theNumber & E164_NETWORK_MASK)
return E164Network;
else if (*theNumber & E164_GROUP_OF_COUNTRIES_MASK)
return E164GroupOfCountries;
else
{
#ifdef E164_BASE_CHECK
raise(E164DebugSignalE164Type);
#else
/* FIXME -- assertion */
exit(E164DebugSignalE164Type);
#endif
}
}
/*
* e164CountryCode returns the E164CountryCode for the E164 argument
*/
static inline
E164CountryCode e164CountryCode (E164 * theNumber)
{
E164CountryCode aCountryCode;
char * aCountryCodeString = malloc(E164MaximumCountryCodeLength + 1);
countryCodeStringFromE164(aCountryCodeString, theNumber);
aCountryCode = e164CountryCodeFromString(aCountryCodeString);
free(aCountryCodeString);
return aCountryCode;
}
/*
* countryCodeStringFromE164 assigns the country code for aNumber to aString, returning
* the number of characters written (in this case, the number of digits in the
* country code).
*/
static inline
int countryCodeStringFromE164 (char * aString, E164 * aNumber)
{
return snprintf(aString, e164CountryCodeLength(aNumber) + 1,
"%lld", (*aNumber & E164_NUMBER_MASK));
}
/*
* e164CountryCodeLength returns the length of the country code for an E164 number
*/
static inline
int e164CountryCodeLength (E164 * aNumber)
{
return (int) ((*aNumber & E164_CC_LENGTH_MASK) >> E164_CC_LENGTH_OFFSET);
}
/*
* e164CountryCodeFromInteger returns the E164CountryCode represented by anInteger.
* An error is raised if anInteger is out of the range for E164CountryCode values.
*/
static inline
E164CountryCode e164CountryCodeFromInteger (int anInteger)
{
E164CountryCode theCountryCode;
theCountryCode = (E164CountryCode) anInteger;
checkE164CountryCodeForRangeError(theCountryCode);
return theCountryCode;
}
/*
* e164CountryCodeFromString returns the E164CountryCode represented by aString.
* An error is raised if aString does not represent a valid E164CountryCode value.
*/
static inline
E164CountryCode e164CountryCodeFromString (char * aString)
{
int anInteger;
E164CountryCode theCountryCode;
if ((E164MaximumCountryCodeLength >= strlen(aString)) &&
eachCharIsDigit(aString))
{
anInteger = atoi(aString);
theCountryCode = (E164CountryCode) anInteger;
if (e164CountryCodeIsInRange(theCountryCode))
return theCountryCode;
else
{
#ifdef E164_BASE_CHECK
raise(E164DebugSignalE164CountryCodeFromString_invalid_CC);
#else
/* FIXME -- should raise an error rather than exiting */
exit(E164DebugSignalE164CountryCodeFromString_invalid_CC);
#endif
}
}
else
{
#ifdef E164_BASE_CHECK
raise(E164DebugSignalE164CountryCodeFromString_bad_CC);
#else
/* FIXME -- should raise an error rather than exiting */
exit(E164DebugSignalE164CountryCodeFromString_bad_CC);
#endif
}
}
/*
* stringFromE164 assigns the string representation of aNumber to aString
*/
static inline
int stringFromE164 (char * aString, E164 * aNumber, int stringLength)
{
return snprintf(aString, stringLength,
"+%lld", (*aNumber & E164_NUMBER_MASK));
}
/*
* e164CountryCodesAreEqual tests firstCountryCode and secondCountryCode for equality
*/
static inline
bool e164CountryCodesAreEqual (E164CountryCode firstCountryCode,
E164CountryCode secondCountryCode)
{
return (firstCountryCode == secondCountryCode);
}
static inline
bool e164TypesAreEqual (E164Type firstType, E164Type secondType)
{
return (firstType == secondType);
}
/*
* isValidE164PrefixChar returns true if theChar is a valid E164 prefix character
* and false otherwise.
*/
static inline
bool isValidE164PrefixChar (const char * aChar)
{
return (E164_PREFIX == *aChar);
}
/*
* stringHasValidE164Prefix returns true if aString has a valid E164 prefix
* and false otherwise.
*/
static inline
bool stringHasValidE164Prefix (const char * aString)
{
return isValidE164PrefixChar(aString);
}
/*
* e164FromString takes a string as its second argument and
* assigns to its first argument the E164 value represented
* by the string. If the assignment is successful, e164FromString
* returns true, and false otherwise.
*/
static inline
E164ParseResult e164FromString (E164 * aNumber, char * aString)
{
char * theDigits = malloc(E164MaximumStringLength);
E164CountryCode * countryCode = malloc(sizeof(E164CountryCode));
char * subscriberNumber = malloc(E164MaximumStringLength);
E164ParseResult e164ParseResult;
e164ParseResult = parseE164String(aString, theDigits,
countryCode, subscriberNumber);
free(subscriberNumber);
if (E164NoParseError == e164ParseResult)
{
E164 e164Result;
char *cp;
initializeE164WithCountryCode(&e164Result, countryCode);
e164Result = (e164Result | strtoll(theDigits, &cp, 10));
*aNumber = e164Result;
}
free(countryCode);
free(theDigits);
return e164ParseResult;
}
/*
* parseE164String parses aString meant to represent an E164 number, assigning the
* digits of the E164 number to theDigits, the E164CountryCode to the aCode parameter,
* and the remainder of the number to subscriberNumber. parseE164String returns
* E164NoParseError on no error, or an error code describing the error encountered.
*/
static
int parseE164String (const char * aNumberString,
char * theDigits,
E164CountryCode * aCode,
char * subscriberNumber)
{
const int stringLength = strlen(aNumberString);
const char * endOfString = aNumberString + stringLength;
const char * theChar = aNumberString;
const char * remainder;
/*
* Make sure string doesn't exceed maximum length
*/
if (E164MaximumStringLength < stringLength)
return E164ParseErrorStringTooLong;
if (E164MinimumStringLength > stringLength)
return E164ParseErrorStringTooShort;
/*
* Check for a valid E164 prefix
*/
if (!stringHasValidE164Prefix(aNumberString))
return E164ParseErrorInvalidPrefix;
/* Advance past prefix character */
theChar++;
remainder = theChar;
if (eachCharIsDigit(remainder))
{
/*
* If the remainder of the string is all digits,
* then the remainder can be (potentially) used for the E164 number.
*/
int numberOfCountryCodeDigits = 0;
int digitIndex;
char * countryCodeString = malloc(E164MaximumCountryCodeLength + 1);
E164CountryCode aCountryCode;
E164Type theType = E164Invalid;
strcpy(theDigits, remainder);
for (digitIndex = 1;
E164MaximumCountryCodeLength >= digitIndex;
digitIndex++)
{
E164Type aType;
if (endOfString <= (remainder + digitIndex))
{
free(countryCodeString);
return E164ParseErrorNoSubscriberNumberDigits;
}
strncpy(countryCodeString, remainder, digitIndex);
countryCodeString[digitIndex] = '\0';
aCountryCode = e164CountryCodeFromString(countryCodeString);
aType = e164TypeForCountryCode(aCountryCode);
if (E164Invalid != aType)
{
numberOfCountryCodeDigits = digitIndex;
theType = aType;
break;
}
}
free(countryCodeString);
/*
* Assign country code.
* If it's invalid, it'll be used in the error message.
*/
*aCode = aCountryCode;
if (isInvalidE164Type(theType))
return E164ParseErrorInvalidType;
else if (isUnassignedE164Type(theType))
return E164ParseErrorUnassignedType;
/*
* Need some digits for the subscriber number
*/
if (strlen(remainder) <= numberOfCountryCodeDigits)
return E164ParseErrorNoSubscriberNumberDigits;
/*
* Check number against E164Type
* This tests against abolute (and unrealistic) minimums.
* See comment regarding minimum Subscriber Number lengths
*/
if (hasValidLengthForE164Type(strlen(remainder),
numberOfCountryCodeDigits,
theType))
return E164NoParseError;
else
return E164ParseErrorTypeLengthMismatch;
}
else
return E164ParseErrorBadFormat;
}
/*
* hasValidLengthForE164Type returns true if the number of digits in
* the number is consistent with its E164Type and E164CountryCode
*/
static inline
bool hasValidLengthForE164Type (int numberLength,
int countryCodeLength,
E164Type aType)
{
int subscriberNumberLength = (numberLength - countryCodeLength);
if (0 > subscriberNumberLength)
#ifdef E164_BASE_CHECK
raise(E164DebugSignalHasValidLengthForE164Type_SN_LESS_THAN_ZERO);
#else
/* FIXME -- error more gracefully */
exit(E164DebugSignalHasValidLengthForE164Type_SN_LESS_THAN_ZERO);
#endif
if (0 == subscriberNumberLength)
return false;
switch (aType)
{
case E164GeographicArea:
return (E164GeographicAreaMinimumSubscriberNumberLength <= subscriberNumberLength);
break;
case E164GlobalService:
return (E164GlobalServiceMinimumSubscriberNumberLength <= subscriberNumberLength);
break;
case E164Network:
return (E164NetworkMinimumSubscriberNumberLength <= subscriberNumberLength);
break;
case E164GroupOfCountries:
return (E164GroupOfCountriesMinimumSubscriberNumberLength <= subscriberNumberLength);
break;
default:
#ifdef E164_BASE_CHECK
raise(E164DebugSignalHasValidLengthFore164Type_INVALID_E164TYPE);
#else
/* FIXME -- handle error */
exit(E164DebugSignalHasValidLengthFore164Type_INVALID_E164TYPE);
#endif
}
}
/*
* intializeE164WithCountryCode intializes aNumber with the length of
* the countryCode
*/
static inline
void initializeE164WithCountryCode (E164 * aNumber,
E164CountryCode * aCountryCode)
{
/*
* Only Geographic Areas have country codes with lengths 1 or 2.
*/
if (isOneDigitE164CountryCode(*aCountryCode))
*aNumber = E164_ONE_DIGIT_CC_MASK | E164_GEOGRAPHIC_AREA_MASK;
else if (isTwoDigitE164CountryCode(*aCountryCode))
*aNumber = E164_TWO_DIGIT_CC_MASK | E164_GEOGRAPHIC_AREA_MASK;
else if (isThreeDigitE164CountryCode(*aCountryCode))
{
uint64 typeMask = 0;
E164Type aType = e164TypeForCountryCode(*aCountryCode);
switch (aType)
{
case E164GeographicArea:
typeMask = E164_GEOGRAPHIC_AREA_MASK;
break;
case E164GlobalService:
typeMask = E164_GLOBAL_SERVICE_MASK;
break;
case E164Network:
typeMask = E164_NETWORK_MASK;
break;
case E164GroupOfCountries:
typeMask = E164_GROUP_OF_COUNTRIES_MASK;
break;
default:
#ifdef E164_BASE_CHECK
raise(E164DebugSignalInitializeE164WithCountryCodeUnrecognizedType);
#else
/* FIXME -- this should almost be an assertion */
exit(E164DebugSignalInitializeE164WithCountryCodeUnrecognizedType);
#endif
}