26
26
#include <assert.h>
27
27
#include <string.h>
28
28
#include <git2.h>
29
- #include <git2/odb_backend.h>
29
+ #include <git2/sys/ odb_backend.h>
30
30
#include <sqlite3.h>
31
31
32
32
#define GIT2_TABLE_NAME "git2_odb"
@@ -54,7 +54,7 @@ int sqlite_backend__read_header(size_t *len_p, git_otype *type_p, git_odb_backen
54
54
* type_p = (git_otype )sqlite3_column_int (backend -> st_read_header , 0 );
55
55
* len_p = (size_t )sqlite3_column_int (backend -> st_read_header , 1 );
56
56
assert (sqlite3_step (backend -> st_read_header ) == SQLITE_DONE );
57
- error = GIT_SUCCESS ;
57
+ error = GIT_OK ;
58
58
} else {
59
59
error = GIT_ENOTFOUND ;
60
60
}
@@ -81,10 +81,11 @@ int sqlite_backend__read(void **data_p, size_t *len_p, git_otype *type_p, git_od
81
81
* data_p = malloc (* len_p );
82
82
83
83
if (* data_p == NULL ) {
84
- error = GIT_ENOMEM ;
84
+ giterr_set_oom ();
85
+ error = GIT_ERROR ;
85
86
} else {
86
87
memcpy (* data_p , sqlite3_column_blob (backend -> st_read , 2 ), * len_p );
87
- error = GIT_SUCCESS ;
88
+ error = GIT_OK ;
88
89
}
89
90
90
91
assert (sqlite3_step (backend -> st_read ) == SQLITE_DONE );
@@ -98,17 +99,17 @@ int sqlite_backend__read(void **data_p, size_t *len_p, git_otype *type_p, git_od
98
99
}
99
100
100
101
int sqlite_backend__read_prefix (git_oid * out_oid , void * * data_p , size_t * len_p , git_otype * type_p , git_odb_backend * _backend ,
101
- const git_oid * short_oid , unsigned int len ) {
102
+ const git_oid * short_oid , size_t len ) {
102
103
if (len >= GIT_OID_HEXSZ ) {
103
104
/* Just match the full identifier */
104
105
int error = sqlite_backend__read (data_p , len_p , type_p , _backend , short_oid );
105
- if (error == GIT_SUCCESS )
106
+ if (error == GIT_OK )
106
107
git_oid_cpy (out_oid , short_oid );
107
108
108
109
return error ;
109
- } else if (len < GIT_OID_HEXSZ ) {
110
- return GIT_ENOTIMPLEMENTED ;
111
110
}
111
+ /* not implemented (yet) */
112
+ return GIT_ERROR ;
112
113
}
113
114
114
115
int sqlite_backend__exists (git_odb_backend * _backend , const git_oid * oid )
@@ -133,7 +134,7 @@ int sqlite_backend__exists(git_odb_backend *_backend, const git_oid *oid)
133
134
}
134
135
135
136
136
- int sqlite_backend__write (git_oid * id , git_odb_backend * _backend , const void * data , size_t len , git_otype type )
137
+ int sqlite_backend__write (git_odb_backend * _backend , const git_oid * id , const void * data , size_t len , git_otype type )
137
138
{
138
139
int error ;
139
140
sqlite_backend * backend ;
@@ -142,9 +143,6 @@ int sqlite_backend__write(git_oid *id, git_odb_backend *_backend, const void *da
142
143
143
144
backend = (sqlite_backend * )_backend ;
144
145
145
- if ((error = git_odb_hash (id , data , len , type )) < 0 )
146
- return error ;
147
-
148
146
error = SQLITE_ERROR ;
149
147
150
148
if (sqlite3_bind_text (backend -> st_write , 1 , (char * )id -> id , 20 , SQLITE_TRANSIENT ) == SQLITE_OK &&
@@ -155,7 +153,7 @@ int sqlite_backend__write(git_oid *id, git_odb_backend *_backend, const void *da
155
153
}
156
154
157
155
sqlite3_reset (backend -> st_write );
158
- return (error == SQLITE_DONE ) ? GIT_SUCCESS : GIT_ERROR ;
156
+ return (error == SQLITE_DONE ) ? GIT_OK : GIT_ERROR ;
159
157
}
160
158
161
159
@@ -185,7 +183,7 @@ static int create_table(sqlite3 *db)
185
183
if (sqlite3_exec (db , sql_creat , NULL , NULL , NULL ) != SQLITE_OK )
186
184
return GIT_ERROR ;
187
185
188
- return GIT_SUCCESS ;
186
+ return GIT_OK ;
189
187
}
190
188
191
189
static int init_db (sqlite3 * db )
@@ -207,7 +205,7 @@ static int init_db(sqlite3 *db)
207
205
208
206
case SQLITE_ROW :
209
207
/* the table was found */
210
- error = GIT_SUCCESS ;
208
+ error = GIT_OK ;
211
209
break ;
212
210
213
211
default :
@@ -239,7 +237,7 @@ static int init_statements(sqlite_backend *backend)
239
237
if (sqlite3_prepare_v2 (backend -> db , sql_write , -1 , & backend -> st_write , NULL ) != SQLITE_OK )
240
238
return GIT_ERROR ;
241
239
242
- return GIT_SUCCESS ;
240
+ return GIT_OK ;
243
241
}
244
242
245
243
int git_odb_backend_sqlite (git_odb_backend * * backend_out , const char * sqlite_db )
@@ -248,8 +246,10 @@ int git_odb_backend_sqlite(git_odb_backend **backend_out, const char *sqlite_db)
248
246
int error ;
249
247
250
248
backend = calloc (1 , sizeof (sqlite_backend ));
251
- if (backend == NULL )
252
- return GIT_ENOMEM ;
249
+ if (backend == NULL ) {
250
+ giterr_set_oom ();
251
+ return GIT_ERROR ;
252
+ }
253
253
254
254
if (sqlite3_open (sqlite_db , & backend -> db ) != SQLITE_OK )
255
255
goto cleanup ;
@@ -262,6 +262,7 @@ int git_odb_backend_sqlite(git_odb_backend **backend_out, const char *sqlite_db)
262
262
if (error < 0 )
263
263
goto cleanup ;
264
264
265
+ backend -> parent .version = GIT_ODB_BACKEND_VERSION ;
265
266
backend -> parent .read = & sqlite_backend__read ;
266
267
backend -> parent .read_prefix = & sqlite_backend__read_prefix ;
267
268
backend -> parent .read_header = & sqlite_backend__read_header ;
@@ -270,7 +271,7 @@ int git_odb_backend_sqlite(git_odb_backend **backend_out, const char *sqlite_db)
270
271
backend -> parent .free = & sqlite_backend__free ;
271
272
272
273
* backend_out = (git_odb_backend * )backend ;
273
- return GIT_SUCCESS ;
274
+ return GIT_OK ;
274
275
275
276
cleanup :
276
277
sqlite_backend__free ((git_odb_backend * )backend );
0 commit comments