@@ -21,164 +21,125 @@ int init_key_records(NdbDictionary::Dictionary *dict)
21
21
const NdbDictionary::Table *tab = dict->getTable (KEY_TABLE_NAME);
22
22
if (tab == nullptr )
23
23
{
24
- printf (" Failed getting table for key table of STRING \n " );
24
+ printf (" Failed getting Ndb table %s \n " , KEY_TABLE_NAME );
25
25
return -1 ;
26
26
}
27
+
27
28
const NdbDictionary::Column *redis_key_col = tab->getColumn (KEY_TABLE_COL_redis_key);
28
29
const NdbDictionary::Column *rondb_key_col = tab->getColumn (KEY_TABLE_COL_rondb_key);
29
30
const NdbDictionary::Column *expiry_date_col = tab->getColumn (KEY_TABLE_COL_expiry_date);
30
31
const NdbDictionary::Column *value_start_col = tab->getColumn (KEY_TABLE_COL_value_start);
31
32
const NdbDictionary::Column *tot_value_len_col = tab->getColumn (KEY_TABLE_COL_tot_value_len);
32
33
const NdbDictionary::Column *num_rows_col = tab->getColumn (KEY_TABLE_COL_num_rows);
33
- const NdbDictionary::Column *row_state_col = tab->getColumn (KEY_TABLE_COL_row_state );
34
+ const NdbDictionary::Column *value_data_type_col = tab->getColumn (KEY_TABLE_COL_value_data_type );
34
35
35
36
if (redis_key_col == nullptr ||
36
37
rondb_key_col == nullptr ||
37
38
expiry_date_col == nullptr ||
38
39
value_start_col == nullptr ||
39
40
tot_value_len_col == nullptr ||
40
41
num_rows_col == nullptr ||
41
- row_state_col == nullptr )
42
+ value_data_type_col == nullptr )
42
43
{
43
- printf (" Failed getting columns for key table of STRING \n " );
44
+ printf (" Failed getting Ndb columns for table %s \n " , KEY_TABLE_NAME );
44
45
return -1 ;
45
46
}
46
47
47
- NdbDictionary::RecordSpecification primary_redis_main_key_spec[1 ];
48
- NdbDictionary::RecordSpecification all_redis_main_key_spec[7 ];
49
-
50
- primary_redis_main_key_spec[0 ].column = redis_key_col;
51
- primary_redis_main_key_spec[0 ].offset = offsetof (struct key_table , redis_key);
52
- primary_redis_main_key_spec[0 ].nullbit_byte_offset = 0 ;
53
- primary_redis_main_key_spec[0 ].nullbit_bit_in_byte = 0 ;
54
- pk_key_record =
55
- dict->createRecord (tab,
56
- primary_redis_main_key_spec,
57
- 1 ,
58
- sizeof (primary_redis_main_key_spec[0 ]));
59
- if (pk_key_record == nullptr )
48
+ std::map<const NdbDictionary::Column *, std::pair<size_t , int >> pk_lookup_column_map = {
49
+ {redis_key_col, {offsetof (struct key_table , redis_key), 0 }},
50
+ };
51
+ if (init_record (dict, tab, pk_lookup_column_map, pk_key_record) != 0 )
60
52
{
61
- printf (" Failed creating record for key table of STRING \n " );
53
+ printf (" Failed creating pk-lookup record for table %s \n " , KEY_TABLE_NAME );
62
54
return -1 ;
63
55
}
64
56
65
- all_redis_main_key_spec[0 ].column = redis_key_col;
66
- all_redis_main_key_spec[0 ].offset = offsetof (struct key_table , redis_key);
67
- all_redis_main_key_spec[0 ].nullbit_byte_offset = 0 ;
68
- all_redis_main_key_spec[0 ].nullbit_bit_in_byte = 0 ;
69
-
70
- all_redis_main_key_spec[1 ].column = rondb_key_col;
71
- all_redis_main_key_spec[1 ].offset = offsetof (struct key_table , rondb_key);
72
- all_redis_main_key_spec[1 ].nullbit_byte_offset = 0 ;
73
- all_redis_main_key_spec[1 ].nullbit_bit_in_byte = 0 ;
74
-
75
- all_redis_main_key_spec[2 ].column = expiry_date_col;
76
- all_redis_main_key_spec[2 ].offset = offsetof (struct key_table , expiry_date);
77
- all_redis_main_key_spec[2 ].nullbit_byte_offset = 0 ;
78
- all_redis_main_key_spec[2 ].nullbit_bit_in_byte = 1 ;
79
-
80
- all_redis_main_key_spec[3 ].column = value_start_col;
81
- all_redis_main_key_spec[3 ].offset = offsetof (struct key_table , value_start);
82
- all_redis_main_key_spec[3 ].nullbit_byte_offset = 0 ;
83
- all_redis_main_key_spec[3 ].nullbit_bit_in_byte = 0 ;
84
-
85
- all_redis_main_key_spec[4 ].column = tot_value_len_col;
86
- all_redis_main_key_spec[4 ].offset = offsetof (struct key_table , tot_value_len);
87
- all_redis_main_key_spec[4 ].nullbit_byte_offset = 0 ;
88
- all_redis_main_key_spec[4 ].nullbit_bit_in_byte = 0 ;
89
-
90
- all_redis_main_key_spec[5 ].column = num_rows_col;
91
- all_redis_main_key_spec[5 ].offset = offsetof (struct key_table , num_rows);
92
- all_redis_main_key_spec[5 ].nullbit_byte_offset = 0 ;
93
- all_redis_main_key_spec[5 ].nullbit_bit_in_byte = 0 ;
94
-
95
- all_redis_main_key_spec[6 ].column = row_state_col;
96
- all_redis_main_key_spec[6 ].offset = offsetof (struct key_table , row_state);
97
- all_redis_main_key_spec[6 ].nullbit_byte_offset = 0 ;
98
- all_redis_main_key_spec[6 ].nullbit_bit_in_byte = 0 ;
99
-
100
- entire_key_record = dict->createRecord (tab,
101
- all_redis_main_key_spec,
102
- 8 ,
103
- sizeof (all_redis_main_key_spec[0 ]));
104
- if (entire_key_record == nullptr )
57
+ std::map<const NdbDictionary::Column *, std::pair<size_t , int >> read_all_column_map = {
58
+ // TODO: Fix this one
59
+ // {redis_key_col, {offsetof(struct key_table, redis_key), 0}},
60
+ {rondb_key_col, {offsetof (struct key_table , rondb_key), 0 }},
61
+ {expiry_date_col, {offsetof (struct key_table , expiry_date), 1 }},
62
+ {value_start_col, {offsetof (struct key_table , value_start), 0 }},
63
+ {tot_value_len_col, {offsetof (struct key_table , tot_value_len), 0 }},
64
+ {num_rows_col, {offsetof (struct key_table , num_rows), 0 }},
65
+ {value_data_type_col, {offsetof (struct key_table , value_data_type), 0 }}
66
+ };
67
+
68
+ if (init_record (dict, tab, read_all_column_map, entire_key_record) != 0 )
105
69
{
106
- printf (" Failed creating record for key table of STRING \n " );
70
+ printf (" Failed creating read-all cols record for table %s \n " , KEY_TABLE_NAME );
107
71
return -1 ;
108
72
}
109
73
return 0 ;
110
74
}
111
75
112
76
int init_value_records (NdbDictionary::Dictionary *dict)
113
77
{
114
- const NdbDictionary::Table *tab = dict->getTable (" redis_key_value " );
78
+ const NdbDictionary::Table *tab = dict->getTable (VALUE_TABLE_NAME );
115
79
if (tab == nullptr )
116
80
{
117
- printf (" Failed getting table for value table of STRING \n " );
81
+ printf (" Failed getting Ndb table %s \n " , VALUE_TABLE_NAME );
118
82
return -1 ;
119
83
}
84
+
120
85
const NdbDictionary::Column *rondb_key_col = tab->getColumn (VALUE_TABLE_COL_rondb_key);
121
86
const NdbDictionary::Column *ordinal_col = tab->getColumn (VALUE_TABLE_COL_ordinal);
122
87
const NdbDictionary::Column *value_col = tab->getColumn (VALUE_TABLE_COL_value);
123
88
if (rondb_key_col == nullptr ||
124
89
ordinal_col == nullptr ||
125
90
value_col == nullptr )
126
91
{
127
- printf (" Failed getting columns for value table of STRING \n " );
92
+ printf (" Failed getting Ndb columns for table %s \n " , VALUE_TABLE_NAME );
128
93
return -1 ;
129
94
}
130
95
131
- NdbDictionary::RecordSpecification primary_redis_key_value_spec[2 ];
132
- NdbDictionary::RecordSpecification all_redis_key_value_spec[3 ];
133
-
134
- primary_redis_key_value_spec[0 ].column = rondb_key_col;
135
- primary_redis_key_value_spec[0 ].offset = offsetof (struct value_table , rondb_key);
136
- primary_redis_key_value_spec[0 ].nullbit_byte_offset = 0 ;
137
- primary_redis_key_value_spec[0 ].nullbit_bit_in_byte = 0 ;
96
+ std::map<const NdbDictionary::Column *, std::pair<size_t , int >> pk_lookup_column_map = {
97
+ {rondb_key_col, {offsetof (struct value_table , rondb_key), 0 }},
98
+ {ordinal_col, {offsetof (struct value_table , ordinal), 0 }}};
138
99
139
- primary_redis_key_value_spec[1 ].column = ordinal_col;
140
- primary_redis_key_value_spec[1 ].offset = offsetof (struct value_table , ordinal);
141
- primary_redis_key_value_spec[1 ].nullbit_byte_offset = 0 ;
142
- primary_redis_key_value_spec[1 ].nullbit_bit_in_byte = 0 ;
143
-
144
- pk_value_record = dict->createRecord (tab,
145
- primary_redis_key_value_spec,
146
- 2 ,
147
- sizeof (primary_redis_key_value_spec[0 ]));
148
- if (pk_value_record == nullptr )
100
+ if (init_record (dict, tab, pk_lookup_column_map, pk_value_record) != 0 )
149
101
{
150
- printf (" Failed creating record for value table of STRING \n " );
102
+ printf (" Failed creating pk-lookup record for table %s \n " , VALUE_TABLE_NAME );
151
103
return -1 ;
152
104
}
153
105
154
- all_redis_key_value_spec[0 ].column = rondb_key_col;
155
- all_redis_key_value_spec[0 ].offset = offsetof (struct value_table , rondb_key);
156
- all_redis_key_value_spec[0 ].nullbit_byte_offset = 0 ;
157
- all_redis_key_value_spec[0 ].nullbit_bit_in_byte = 0 ;
158
-
159
- all_redis_key_value_spec[1 ].column = ordinal_col;
160
- all_redis_key_value_spec[1 ].offset = offsetof (struct value_table , ordinal);
161
- all_redis_key_value_spec[1 ].nullbit_byte_offset = 0 ;
162
- all_redis_key_value_spec[1 ].nullbit_bit_in_byte = 0 ;
163
-
164
- all_redis_key_value_spec[2 ].column = value_col;
165
- all_redis_key_value_spec[2 ].offset = offsetof (struct value_table , value);
166
- all_redis_key_value_spec[2 ].nullbit_byte_offset = 0 ;
167
- all_redis_key_value_spec[2 ].nullbit_bit_in_byte = 0 ;
168
-
169
- entire_value_record = dict->createRecord (tab,
170
- all_redis_key_value_spec,
171
- 3 ,
172
- sizeof (all_redis_key_value_spec[0 ]));
173
- if (entire_value_record == nullptr )
106
+ std::map<const NdbDictionary::Column *, std::pair<size_t , int >> read_all_column_map = {
107
+ {rondb_key_col, {offsetof (struct value_table , rondb_key), 0 }},
108
+ {ordinal_col, {offsetof (struct value_table , ordinal), 0 }},
109
+ {value_col, {offsetof (struct value_table , value), 0 }}};
110
+
111
+ if (init_record (dict, tab, read_all_column_map, entire_value_record) != 0 )
174
112
{
175
- printf (" Failed creating record for value table of STRING \n " );
113
+ printf (" Failed creating read-all cols record for table %s \n " , VALUE_TABLE_NAME );
176
114
return -1 ;
177
115
}
178
116
179
117
return 0 ;
180
118
}
181
119
120
+ int init_record (NdbDictionary::Dictionary *dict,
121
+ const NdbDictionary::Table *tab,
122
+ std::map<const NdbDictionary::Column *, std::pair<size_t , int >> column_info_map,
123
+ NdbRecord *&record)
124
+ {
125
+ NdbDictionary::RecordSpecification col_specs[column_info_map.size ()];
126
+ int i = 0 ;
127
+ for (const auto &entry : column_info_map)
128
+ {
129
+ col_specs[i].column = entry.first ;
130
+ col_specs[i].offset = entry.second .first ;
131
+ col_specs[i].nullbit_byte_offset = 0 ;
132
+ col_specs[i].nullbit_bit_in_byte = entry.second .second ;
133
+ ++i;
134
+ }
135
+ record = dict->createRecord (tab,
136
+ col_specs,
137
+ column_info_map.size (),
138
+ sizeof (col_specs[0 ]));
139
+
140
+ return (record == nullptr ) ? -1 : 0 ;
141
+ }
142
+
182
143
int init_string_records (NdbDictionary::Dictionary *dict)
183
144
{
184
145
int res = init_key_records (dict);
0 commit comments