annotate utils/themwi-dump-numdb2.c @ 232:78c6e30f5234

themwi-dump-numdb2: use more compact representation
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 14 Aug 2023 12:17:19 -0800
parents a349ae9d90fa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 /*
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 * This program is a debug utility: it reads and dumps the compiled
227
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
3 * binary form of ThemWi number database version 2.
6
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 */
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 #include <stdio.h>
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 #include <stdint.h>
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 #include <stdlib.h>
227
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
9 #include "../include/number_db_v2.h"
6
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
227
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
11 static char binfile_default_pathname[] = "/var/gsm/number-db2.bin";
6
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 static char *binfile_pathname;
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 static FILE *inf;
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 static struct numdb_file_hdr hdr;
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 static void
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 dump_owned_numbers()
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 unsigned count;
227
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
20 struct owned_number_rec rec;
6
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22 for (count = 0; count < hdr.owned_number_count; count++) {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 if (fread(&rec, sizeof rec, 1, inf) != 1) {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
24 fprintf(stderr, "error reading record from %s\n",
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25 binfile_pathname);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26 exit(1);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
27 }
232
78c6e30f5234 themwi-dump-numdb2: use more compact representation
Mychaela Falconia <falcon@freecalypso.org>
parents: 227
diff changeset
28 printf(
78c6e30f5234 themwi-dump-numdb2: use more compact representation
Mychaela Falconia <falcon@freecalypso.org>
parents: 227
diff changeset
29 "Owned NANP number %03u-%03u-%04u: flags 0x%02X, usage 0x%02X\n",
78c6e30f5234 themwi-dump-numdb2: use more compact representation
Mychaela Falconia <falcon@freecalypso.org>
parents: 227
diff changeset
30 rec.number[0], rec.number[1], rec.number[2],
227
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
31 rec.number_flags, rec.usage);
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
32 if ((rec.usage & NUMBER_USAGE_MASK) == NUMBER_USAGE_TYPE_ALIAS)
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
33 printf(" Alias maps to: %03u-%03u-%04u\n",
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
34 rec.remap[0], rec.remap[1], rec.remap[2]);
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
35 if (rec.usage & NUMBER_USAGE_FLAG_E911_VIA)
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
36 printf(" E911 route via: %03u-%03u-%04u\n",
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
37 rec.remap[0], rec.remap[1], rec.remap[2]);
6
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 }
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
39 }
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
40
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
41 static void
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
42 dump_short_numbers()
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43 {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
44 unsigned count;
227
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
45 struct short_number_rec rec;
6
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
46
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
47 for (count = 0; count < hdr.short_number_count; count++) {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
48 if (fread(&rec, sizeof rec, 1, inf) != 1) {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
49 fprintf(stderr, "error reading record from %s\n",
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
50 binfile_pathname);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
51 exit(1);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
52 }
227
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
53 printf("Short number %04u is of type 0x%02X\n", rec.short_num,
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
54 rec.short_num_type);
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
55 if (rec.short_num_type == SHORT_NUM_TYPE_ABBREV) {
232
78c6e30f5234 themwi-dump-numdb2: use more compact representation
Mychaela Falconia <falcon@freecalypso.org>
parents: 227
diff changeset
56 printf(
78c6e30f5234 themwi-dump-numdb2: use more compact representation
Mychaela Falconia <falcon@freecalypso.org>
parents: 227
diff changeset
57 " Abbrev maps to: %03u-%03u-%04u, full number flags 0x%02X\n",
227
a349ae9d90fa number db v2: implement themwi-dump-numdb2
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
58 rec.fullnum_prefix[0], rec.fullnum_prefix[1],
232
78c6e30f5234 themwi-dump-numdb2: use more compact representation
Mychaela Falconia <falcon@freecalypso.org>
parents: 227
diff changeset
59 rec.short_num, rec.fullnum_flags);
6
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
60 }
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
61 }
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
62 }
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
63
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
64 main(argc, argv)
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
65 char **argv;
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
66 {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
67 if (argc > 2) {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
68 fprintf(stderr, "usage: %s [binfile]\n", argv[0]);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
69 exit(1);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
70 }
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
71 if (argv[1])
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
72 binfile_pathname = argv[1];
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
73 else
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
74 binfile_pathname = binfile_default_pathname;
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
75 inf = fopen(binfile_pathname, "r");
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
76 if (!inf) {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
77 perror(binfile_pathname);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
78 exit(1);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
79 }
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
80 if (fread(&hdr, sizeof hdr, 1, inf) != 1) {
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
81 fprintf(stderr, "error reading header from %s\n",
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
82 binfile_pathname);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
83 exit(1);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
84 }
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
85 printf("Count of owned NANP numbers: %u\n", hdr.owned_number_count);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
86 printf("Count of defined short numbers: %u\n", hdr.short_number_count);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
87 dump_owned_numbers();
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
88 dump_short_numbers();
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
89 exit(0);
030143a95fb5 themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
90 }