-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVectorDB.h
More file actions
182 lines (149 loc) · 5.06 KB
/
VectorDB.h
File metadata and controls
182 lines (149 loc) · 5.06 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
#pragma once
#pragma comment(lib,"sqlite3.lib")
#include "sqlite3/sqlite3.h"
#include <string.h>
#include <windows.h>
class VectorDB
{
sqlite3* db;
public:
VectorDB(const char* vecExtPath, const char* dbFilePath)
{
sqlite3_open(dbFilePath, &db);
sqlite3_enable_load_extension(db, 1);
if (sqlite3_load_extension(db, vecExtPath, 0, 0) != SQLITE_OK)
{
::MessageBoxW(0, L"vector extension load failed!", L"Error", MB_ICONERROR);
}
}
~VectorDB()
{
sqlite3_close(db);
}
void CreateTables()
{
// distance_metric=cosine can be used. but we use default L2 in here.
sqlite3_stmt* stmt;
sqlite3_prepare_v2(db, "CREATE VIRTUAL TABLE IF NOT EXISTS vec_items USING vec0(embedding float[768])",
-1, &stmt, NULL);
sqlite3_step(stmt);
sqlite3_finalize(stmt);
sqlite3_exec(db, "CREATE TABLE IF NOT EXISTS meta_data (rowid INTEGER PRIMARY KEY, content TEXT NOT NULL);", NULL, NULL, NULL);
}
void ResetDB()
{
sqlite3_exec(db, "DROP TABLE meta_data", NULL, NULL, NULL);
sqlite3_exec(db, "DROP TABLE vec_items", NULL, NULL, NULL);
this->CreateTables();
}
// call before inserting rows
void BeginInsert()
{
sqlite3_exec(db, "BEGIN", NULL, NULL, NULL);
}
// vector must be 768 float array
void Insert(int rowid, float* vector, const char* metaData)
{
sqlite3_stmt* stmt;
sqlite3_prepare_v2(db, "INSERT INTO vec_items(rowid, embedding) VALUES (?, ?)", -1, &stmt, NULL);
sqlite3_bind_int64(stmt, 1, rowid);
sqlite3_bind_blob(stmt, 2, vector, 768 * sizeof(float), SQLITE_TRANSIENT);
sqlite3_step(stmt);
sqlite3_finalize(stmt);
sqlite3_prepare_v2(db, "INSERT INTO meta_data(rowid, content) VALUES (?, ?)", -1, &stmt, NULL);
sqlite3_bind_int(stmt, 1, rowid);
sqlite3_bind_text(stmt, 2, metaData, (int)strlen(metaData), SQLITE_TRANSIENT);
sqlite3_step(stmt);
sqlite3_finalize(stmt);
}
// save inserted rows
void EndInsert()
{
sqlite3_exec(db, "COMMIT", NULL, NULL, NULL);
}
int GetNextRowID()
{
int nextRowID = 1;
sqlite3_stmt* stmt;
sqlite3_prepare_v2(db,
"SELECT rowid FROM meta_data ORDER BY rowid DESC"
, -1, &stmt, NULL);
if (sqlite3_step(stmt) == SQLITE_ROW)
nextRowID = sqlite3_column_int(stmt, 0) + 1;
sqlite3_finalize(stmt);
return nextRowID;
}
// returns combined meta data for the most matching 2 vectors. NULL if not found.
// must free the returned string.
char* Query(float* vector)
{
int res1RowID = -1;
int res2RowID = -1;
char* res1Text = NULL;
char* res2Text = NULL;
sqlite3_stmt* stmt;
sqlite3_prepare_v2(db,
"SELECT "
" rowid, "
" distance "
"FROM vec_items "
"WHERE embedding MATCH ?1 "
"ORDER BY distance "
"LIMIT 2 "
, -1, &stmt, NULL);
sqlite3_bind_blob(stmt, 1, vector, 768 * sizeof(float), SQLITE_TRANSIENT);
// get the first record.
if (sqlite3_step(stmt) == SQLITE_ROW)
res1RowID = (int)sqlite3_column_int64(stmt, 0);
// get the seconds record.
if (sqlite3_step(stmt) == SQLITE_ROW)
res2RowID = (int)sqlite3_column_int64(stmt, 0);
sqlite3_finalize(stmt);
// get meta data for first record
if (res1RowID != -1)
{
sqlite3_prepare_v2(db,
"SELECT "
" rowid, "
" content "
"FROM meta_data "
"WHERE rowid = ?1 "
, -1, &stmt, NULL);
sqlite3_bind_int(stmt, 1, res1RowID);
if (sqlite3_step(stmt) == SQLITE_ROW)
res1Text = _strdup((char*)sqlite3_column_text(stmt, 1));
sqlite3_finalize(stmt);
}
// get meta data for second record
if (res2RowID != -1)
{
sqlite3_prepare_v2(db,
"SELECT "
" rowid, "
" content "
"FROM meta_data "
"WHERE rowid = ?1 "
, -1, &stmt, NULL);
sqlite3_bind_int(stmt, 1, res2RowID);
if (sqlite3_step(stmt) == SQLITE_ROW)
res2Text = _strdup((char*)sqlite3_column_text(stmt, 1));
sqlite3_finalize(stmt);
}
if ((res1Text != NULL) && (res2Text != NULL))
{
// combine two strings.
const size_t totalSize = strlen(res1Text) + strlen(res2Text) + 2;
char* combinedStr = (char*)malloc(totalSize);
strcpy_s(combinedStr, totalSize, res1Text);
strcat_s(combinedStr, totalSize, " ");
strcat_s(combinedStr, totalSize, res2Text);
free(res1Text);
free(res2Text);
return combinedStr;
}
else
{
return res1Text;
}
}
};