-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
333 lines (296 loc) · 7.79 KB
/
main.c
File metadata and controls
333 lines (296 loc) · 7.79 KB
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
#include <stdio.h>
#include <stdlib.h>
#include<conio.h>
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include "bplustree.h"
#include "murmurhash3.h"
#include "util.h"
static unsigned long x=123456789, y=362436069, z=521288629;
unsigned long xorshf96(void) { //period 2^96-1
unsigned long t;
x ^= x << 16;
x ^= x >> 5;
x ^= x << 1;
t = x;
x = y;
y = z;
z = t ^ x ^ y;
return z;
}
#define N 10//固定长度为10
#define MAX_SIZE 4
#define MAX_LENGTH 10
int getString(unsigned char *ch)
{
int flag,charLengt;
int i,j,k=0;
// srand((unsigned)time(NULL));
int len = rand()%MAX_LENGTH + 1;
// int len = 4;
for(j=0;j<len;j++)
{
// flag=rand()%2;
// if(flag) ch[k++]='A'+rand()%26;
// else ch[k++]='a'+rand()%26;
ch[k++]='a'+rand()%26;
}
ch[k]='\0';
k=0;
return len;
}
bpTree *t;
void testLeafSplit() {
t = bpTreeNew();
for (int i = 0; i < 7; i++) {
}
// unsigned char hash = 8;
// // printf("go\n");
// bpInsert(t, &hash, 8, 1);
return ;
}
void testLeafShift() {
t = bpTreeNew();
for (int i = 0; i < 9; i++) {
unsigned char hash = i;
bpInsert(t, &hash, i, 1);
}
unsigned char hash = 1;
bpRemove(t, &hash, 1);
bpFind(t, &hash, 1);
return;
}
void printLeafNode(bpLeafNode *t) {
printf("\nleafNode: size: %d, prefix: %s ", t->size, t->prefix );
// printf("\nfp: ");
// for(int i = 0; i < t->size; i++) {
// printf("%d %d ", t->fp[i].fingerprint, t->fp[i].pos);
// }
printf("kv: ");
for(int i = 0; i < t->size; i++) {
KV *kv = &t->kv[t->fp[i].pos];
unsigned char *key = kv->key;
for (int j = 0; j < kv->len; j++) {
printf("%c", *(key + j));
}
printf(" ");
}
}
void print(void *t) {
if(*(uint8_t *)t== INTER_NODE) {
bpInterNode *interNode = (bpInterNode *)t;
printInterNode(interNode);
int size = interNode -> size;
void **childAddr = (void **)(interChildrenAddr(interNode));
void *node = *childAddr;
int i=0;
while(i <= interNode->size) {
print(node);
i ++;
node = *(childAddr+i);
}
} else {
printLeafNode((bpLeafNode *)t);
}
}
void insertFromBigToSmall() {
t = bpTreeNew();
for (int i = 30; i > 1; i--) {
unsigned char hash = i + '0';
bpInsert(t, &hash, 0, 1);
}
if(t->header != NULL) print(t->header);
}
void randomInsert(int num) {
unsigned char ch[10];
t = bpTreeNew();
for (int i = 0; i < num; i++) {
// printf("%d", hash);
int len = getString(ch);
if (i == 58) {
printf("asdfgd");
}
bpInsert(t, ch, 0, len);
if (len != 0 && bpFind(t, ch, len) == -1) {
printf("i = %d\n", i);
printf("after insert %s", ch);
printf("%d %s", bpFind(t, ch, len), ch);
}
// if(t->header != NULL) print(t->header);
}
}
void testLeafNodeShiftFromLeft() {
randomInsert(10);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
unsigned char *delete = "zvsrt";
bpRemove(t, delete, 5);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
unsigned char *insert1 = "hx";
bpInsert(t, insert1, 0, 2);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
unsigned char *delete2 = "meayl";
bpRemove(t, delete2, 5);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
}
void testLeafNodeShiftFromRight() {
randomInsert(10);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
unsigned char *delete = "h";
bpRemove(t, delete, 1);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
}
void testLeafNodeMergeFromLeft() {
randomInsert(10);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
unsigned char *delete = "h";
bpRemove(t, delete, 1);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
unsigned char *delete1 = "jprep";
bpRemove(t, delete1, 5);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
}
void testLeafNodeMergeAfterSplit() {
randomInsert(20);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
unsigned char *delete = "h";
bpRemove(t, delete, 1);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
unsigned char *insert = "fff";
bpInsert(t, insert, 0, 3);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
// unsigned char *delete1 = "jprep";
// bpRemove(t, delete1, 5);
// if(t->header != NULL) {
// printf("\n");
// print(t->header);
// }
}
void testInterNodeDeleteAll() {
randomInsert(6);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
unsigned char *delete = "h";
bpRemove(t, delete, 1);
if(t->header != NULL) {
printf("\n");
print(t->header);
}
}
#define NB_INSERTS 10000000LU
int bench_data_structures(void) {
declare_timer;
declare_memory_counter;
/*
* RBTREE
*/
/*
* RAX - https://github.com/antirez/rax
*/
/*
* ART - https://github.com/armon/libart
*/
// art_tree t;
// art_tree_init(&t);
//
// start_timer {
// struct index_entry *e;
// for(size_t i = 0; i < NB_INSERTS; i++) {
// uint64_t hash = xorshf96()%NB_INSERTS;
// e = malloc(sizeof(*e));
// art_insert(&t, (unsigned char*)&hash, sizeof(hash), e);
// }
// } stop_timer("ART - Time for %lu inserts/replace (%lu inserts/s)", NB_INSERTS, NB_INSERTS*1000000LU/elapsed);
//
// start_timer {
// for(size_t i = 0; i < NB_INSERTS; i++) {
// uint64_t hash = xorshf96()%NB_INSERTS;
// art_search(&t, (unsigned char*)&hash, sizeof(hash));
// }
// } stop_timer("ART - Time for %lu finds (%lu finds/s)", NB_INSERTS, NB_INSERTS*1000000LU/elapsed);
//
// get_memory_usage("ART");
/*
* BTREE
*/
// btree_t * b = btree_create();
//
// start_timer {
// struct index_entry e;
// for(size_t i = 0; i < NB_INSERTS; i++) {
// uint64_t hash = xorshf96()%NB_INSERTS;
// btree_insert(b, (unsigned char*)&hash, sizeof(hash), &e);
// }
// } stop_timer("BTREE - Time for %lu inserts/replace (%lu inserts/s)", NB_INSERTS, NB_INSERTS*1000000LU/elapsed);
//
// start_timer {
// struct index_entry e;
// for(size_t i = 0; i < NB_INSERTS; i++) {
// uint64_t hash = xorshf96()%NB_INSERTS;
// btree_find(b, (unsigned char*)&hash, sizeof(hash), &e);
// }
// } stop_timer("BTREE - Time for %lu finds (%lu finds/s)", NB_INSERTS, NB_INSERTS*1000000LU/elapsed);
//
// get_memory_usage("BTREE");
start_timer {
uint64_t e;
for(size_t i = 0; i < NB_INSERTS; i++) {
uint64_t hash = xorshf96()%NB_INSERTS;
bpInsert(b, (unsigned char*)&hash, e, sizeof(hash));
}
} stop_timer("BTREE - Time for %lu inserts/replace (%lu inserts/s)", NB_INSERTS, NB_INSERTS*1000000LU/elapsed);
start_timer {
struct index_entry e;
for(size_t i = 0; i < NB_INSERTS; i++) {
uint64_t hash = xorshf96()%NB_INSERTS;
btree_find(b, (unsigned char*)&hash, sizeof(hash), &e);
}
} stop_timer("BTREE - Time for %lu finds (%lu finds/s)", NB_INSERTS, NB_INSERTS*1000000LU/elapsed);
get_memory_usage("BTREE");
return 0;
}
#define NB_INSERTS 4
void main() {
printf("test begin\n");
testLeafNodeMergeAfterSplit();
printf("\ntest over\n");
return;
}