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
|
#include "test.h"
/* testlongstr.c - DO NOT EDIT without updating the expected results in map.test. */
/*
key - long,str
val - INT64
*/
static void
map_dump (MAP map)
{
struct map_node_int64 *ptr;
printf ("\n");
for (ptr = (struct map_node_int64 *)map_start(map); ptr;
ptr = (struct map_node_int64 *)map_iter (map, (struct map_node *)ptr))
printf ("map[%ld,%s] = %lld\n", key1int(ptr), key2str(ptr),
(long long)ptr->val);
printf ("\n");
}
static void m_print (MAP map)
{
struct map_node_int64 *m = (struct map_node_int64 *)map->key;
printf ("map[%ld,%s]=%lld\n", key1int(m), key2str(m),
(long long)map_get_int64(map));
}
int main ()
{
MAP mymap = map_new(4, INT64);
_stp_map_key2 (mymap, 3, "two");
_stp_map_set (mymap, 6);
m_print (mymap);
_stp_map_key2 (mymap, 2, "eighty-four");
map_set_int64 (mymap, 167);
_stp_map_key2 (mymap, 4, "two-oh-two");
map_set_int64 (mymap, 808);
/* at this point, we have 6, 167, and 808 in the array */
m_print (mymap);
_stp_map_key2 (mymap, 3, "two");
m_print (mymap);
_stp_map_key2 (mymap, 2, "eighty-four");
m_print (mymap);
map_set_int64 (mymap, 168);
m_print (mymap);
/* now try to confuse things */
/* These won't do anything useful, but shouldn't crash */
_stp_map_key2 (mymap, 0, NULL);
map_key_del (mymap);
_stp_map_key2 (mymap, 4444, "0123456789");
map_set_int64 (mymap,1000000);
map_dump (mymap);
_stp_map_key2 (mymap, 77, "66");
map_key_del (mymap);
map_key_del (mymap);
map_set_int64 (mymap,99999999);
/* create and delete a key */
_stp_map_key2 (mymap, 2048, "2");
map_set_int64 (mymap, 4096);
_stp_map_key2 (mymap, 2048, "2");
m_print (mymap);
map_key_del (mymap);
printf ("mymap[2048,2]=%ld\n", map_get_int64(mymap));
_stp_map_key2 (mymap, 10, "six");
printf ("mymap[10,six]=%ld\n", map_get_int64(mymap));
map_dump(mymap);
_stp_map_key2 (mymap, 4, "two-oh-two"); map_key_del (mymap);
map_dump(mymap);
_stp_map_key2 (mymap, 4444, "0123456789"); map_key_del (mymap);
map_dump(mymap);
_stp_map_key2 (mymap, 2, "eighty-four"); map_key_del (mymap);
map_dump(mymap);
_stp_map_key2 (mymap, 1801, "Ohio"); map_set_int64 (mymap, 10123456);
map_dump(mymap);
/* add 4 new entries, pushing "Ohio" out */
int i;
for (i = 2; i < 6; i++)
{
char buf[32];
sprintf (buf, "test_number_%d", i);
_stp_map_key2 (mymap, (long)i, buf);
_stp_map_set_int64 (mymap, i*i*i);
}
map_dump (mymap);
/* delete all entries */
for (i = 2; i < 6; i++)
{
char buf[32];
sprintf (buf, "test_number_%d", i);
_stp_map_key2 (mymap, (long)i, buf);
map_key_del (mymap);
}
printf ("Should be empty: ");
map_dump (mymap);
return 0;
}
|