fix commit that mistakenly happened
[model-checker-benchmarks.git] / concurrent-hashmap / testcase2.cc
1 #include <threads.h>
2
3 #ifdef WILDCARD
4 #include "hashmap_wildcard.h"
5 #else
6 #include "hashmap.h"
7 #endif
8
9 HashMap *table;
10
11 void printKey(Key *key) {
12         if (key)
13                 printf("pos = (%d, %d, %d)\n", key->x, key->y, key->z);
14         else
15                 printf("pos = NULL\n");
16 }
17
18 void printValue(Value *value) {
19         if (value)
20                 printf("velocity = (%d, %d, %d)\n", value->vX, value->vY, value->vZ);
21         else
22                 printf("velocity = NULL\n");
23 }
24
25 // Key(3, 2, 6) & Key(1, 3, 3) are hashed to the same slot -> 4
26 // Key(1, 1, 1) & Key(3, 2, 2) are hashed to the same slot -> 0
27 // Key(2, 4, 1) & Key(3, 4, 2) are hashed to the same slot -> 3
28 // Key(3, 4, 5) & Key(1, 4, 3) are hashed to the same slot -> 5
29
30
31 void threadA(void *arg) {
32         Key *k1 = new Key(3, 2, 6);
33         Key *k2 = new Key(1, 1, 1);
34         Value *v1 = new Value(10, 10, 10);
35         Value *r1 = table->put(k1, v1);
36         //printValue(r1);
37         Value *r2 = table->get(k2);
38         //printf("Thrd A:\n");
39         printValue(r2);
40 }
41
42 void threadB(void *arg) {
43         Key *k1 = new Key(3, 2, 6);
44         Key *k2 = new Key(1, 1, 1);
45         Value *v2 = new Value(30, 40, 50);
46         Value *r3 = table->put(k2, v2);
47         //printValue(r3);
48         Value *r4 = table->get(k1);
49         printf("Thrd B:\n");
50         printValue(r4);
51 }
52
53 int user_main(int argc, char *argv[]) {
54         
55         Key *k1 = new Key(3, 2, 6);
56         Key *k2 = new Key(1, 1, 1);
57         Value *v1 = new Value(111, 111, 111);
58         Value *v2 = new Value(222, 222, 222);
59         thrd_t t1, t2;
60         table = new HashMap;
61         table->put(k1, v1);
62         table->put(k2, v2);
63
64         thrd_create(&t1, threadA, NULL);
65         thrd_create(&t2, threadB, NULL);
66         thrd_join(t1);
67         thrd_join(t2);
68         
69         return 0;
70 }
71
72