-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgen_workloads.cpp
152 lines (127 loc) · 3.75 KB
/
gen_workloads.cpp
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
#include <stdio.h>
#include <stdlib.h>
//#include <openssl/sha.h>
#include <string.h>
#include <stdint.h>
#include <time.h>
#define LENGTH 256
static int inc_v = 1;
void creat_str(char *s, int length)
{
srand(inc_v);
for(int i = 0; i < length; i++)
{
//33-122,'!'->'z'
*(s + i) = rand() % 89 + 33;
if(*(s + i) == '\'' || *(s + i) == '\\')
*(s + i) = '1';
}
s[length] = '\0';
inc_v++;
}
int main()
{
FILE *fin_load, *fin_run, *fout_set, *fout_test;
if(!(fin_load = fopen("ycsb_load.load", "r")))
{
printf("The source file *.load not exist.\n");
exit(-1);
}
if(!(fin_run = fopen("ycsb_run.run", "r")))
{
printf("The source file *.run not exist.\n");
exit(-1);
}
if(!(fout_set = fopen("ycsb_set.txt", "w+")))
{
printf("The ycsb_set.txt create failed.\n");
exit(-1);
}
if(!(fout_test = fopen("ycsb_test.txt", "w+")))
{
printf("The ycsb_test.txt create failed.\n");
exit(-1);
}
//read by line
char tmp[10240];
unsigned int insert_load = 0, insert_run = 0, read_run = 0;
unsigned int op_all_load = 0, op_all_run = 0;
while(fgets(tmp, 10240, fin_load) && (!feof(fin_load)))
{
char key[250] = {0};
char value[LENGTH + 1] = {0};
if(sscanf(tmp, "INSERT table %s [ field0=%[^\n]", key, value))
{
insert_load++;
//int len=strlen(value);
creat_str(value, LENGTH);
//value[LENGTH]=0;
//printf("key=%s\nvalue=%s\n\n",key,value);
fprintf(fout_set, "INSERT\t%s\t%s\n", key, value);
}
else if(sscanf(tmp, "\"operationcount\"=\"%u\"", &op_all_load))
{
fprintf(fout_set, "Operationcount=%u\n\n", op_all_load);
}
else if(sscanf(tmp, "INSERT table %s [ field0=%[^\n]", key, value))
{
insert_load++;
//int len=strlen(value);
creat_str(value, LENGTH);
//value[LENGTH]=0;
//printf("key=%s\nvalue=%s\n\n",key,value);
fprintf(fout_set, "UPDATE\t%s\t%s\n", key, value);
}
else
;
}
fprintf(fout_set, "\n\nLOAD_INSERT=%u", insert_load);
while(fgets(tmp, 10240, fin_run) && (!feof(fin_run)))
{
char key[250] = {0};
//char value[1000]={0};
char value[LENGTH + 1] = {0};
if(sscanf(tmp, "INSERT table %s [ field0=%[^\n]", key, value))
{
insert_run++;
//value[0]='{';
//int len=strlen(value);
//value[len-2]='}';
//value[len-1]=0;
//memcpy(value+1,v,LENGTH-2);
//value[LENGTH-1]='}';
value[LENGTH] = 0;
fprintf(fout_test, "INSERT\t%s\t%s\n", key, value);
}
else if(sscanf(tmp, "READ table %s [", key))
{
read_run++;
fprintf(fout_test, "READ\t%s\n", key);
}
else if(sscanf(tmp, "\"operationcount\"=\"%u\"", &op_all_run))
{
fprintf(fout_test, "Operationcount=%u\n\n", op_all_run);
}
else if(sscanf(tmp, "UPDATE table %s [ field0=%[^\n]", key, value))
{
insert_run++;
//value[0]='{';
//int len=strlen(value);
//value[len-2]='}';
//value[len-1]=0;
//memcpy(value+1,v,LENGTH-2);
//value[LENGTH-1]='}';
value[LENGTH] = 0;
fprintf(fout_test, "UPDATE\t%s\t%s\n", key, value);
}
else
;
}
//free(v);
fprintf(fout_test, "\n\nRUN_INSERT=%u\nRUN_READ=%u", insert_run, read_run);
fclose(fin_load);
fclose(fin_run);
fclose(fout_set);
fclose(fout_test);
return 0;
}