forked from siara-cc/esp32-idf-sqlite3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esp32.c
712 lines (587 loc) · 17.7 KB
/
esp32.c
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
/* From: https://chromium.googlesource.com/chromium/src.git/+/4.1.249.1050/third_party/sqlite/src/os_symbian.cc
* https://github.com/spsoft/spmemvfs/tree/master/spmemvfs
* http://www.sqlite.org/src/doc/trunk/src/test_demovfs.c
* http://www.sqlite.org/src/doc/trunk/src/test_vfstrace.c
* http://www.sqlite.org/src/doc/trunk/src/test_onefile.c
* http://www.sqlite.org/src/doc/trunk/src/test_vfs.c
* https://github.com/nodemcu/nodemcu-firmware/blob/master/app/sqlite3/esp8266.c
**/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <time.h>
#include <unistd.h>
#include <sqlite3.h>
#include <esp_spi_flash.h>
#include <esp_system.h>
#include <rom/ets_sys.h>
#include <sys/stat.h>
#include "shox96_0_2.h"
#undef dbg_printf
//#define dbg_printf(...) printf(__VA_ARGS__)
#define dbg_printf(...)
#define CACHEBLOCKSZ 64
#define esp32_DEFAULT_MAXNAMESIZE 100
// From https://stackoverflow.com/questions/19758270/read-varint-from-linux-sockets#19760246
// Encode an unsigned 64-bit varint. Returns number of encoded bytes.
// 'buffer' must have room for up to 10 bytes.
int encode_unsigned_varint(uint8_t *buffer, uint64_t value) {
int encoded = 0;
do {
uint8_t next_byte = value & 0x7F;
value >>= 7;
if (value)
next_byte |= 0x80;
buffer[encoded++] = next_byte;
} while (value);
return encoded;
}
uint64_t decode_unsigned_varint(const uint8_t *data, int *decoded_bytes) {
int i = 0;
uint64_t decoded_value = 0;
int shift_amount = 0;
do {
decoded_value |= (uint64_t)(data[i] & 0x7F) << shift_amount;
shift_amount += 7;
} while ((data[i++] & 0x80) != 0);
*decoded_bytes = i;
return decoded_value;
}
int esp32_Close(sqlite3_file*);
int esp32_Lock(sqlite3_file *, int);
int esp32_Unlock(sqlite3_file*, int);
int esp32_Sync(sqlite3_file*, int);
int esp32_Open(sqlite3_vfs*, const char *, sqlite3_file *, int, int*);
int esp32_Read(sqlite3_file*, void*, int, sqlite3_int64);
int esp32_Write(sqlite3_file*, const void*, int, sqlite3_int64);
int esp32_Truncate(sqlite3_file*, sqlite3_int64);
int esp32_Delete(sqlite3_vfs*, const char *, int);
int esp32_FileSize(sqlite3_file*, sqlite3_int64*);
int esp32_Access(sqlite3_vfs*, const char*, int, int*);
int esp32_FullPathname( sqlite3_vfs*, const char *, int, char*);
int esp32_CheckReservedLock(sqlite3_file*, int *);
int esp32_FileControl(sqlite3_file *, int, void*);
int esp32_SectorSize(sqlite3_file*);
int esp32_DeviceCharacteristics(sqlite3_file*);
void* esp32_DlOpen(sqlite3_vfs*, const char *);
void esp32_DlError(sqlite3_vfs*, int, char*);
void (*esp32_DlSym (sqlite3_vfs*, void*, const char*))(void);
void esp32_DlClose(sqlite3_vfs*, void*);
int esp32_Randomness(sqlite3_vfs*, int, char*);
int esp32_Sleep(sqlite3_vfs*, int);
int esp32_CurrentTime(sqlite3_vfs*, double*);
int esp32mem_Close(sqlite3_file*);
int esp32mem_Read(sqlite3_file*, void*, int, sqlite3_int64);
int esp32mem_Write(sqlite3_file*, const void*, int, sqlite3_int64);
int esp32mem_FileSize(sqlite3_file*, sqlite3_int64*);
int esp32mem_Sync(sqlite3_file*, int);
typedef struct st_linkedlist {
uint16_t blockid;
struct st_linkedlist *next;
uint8_t data[CACHEBLOCKSZ];
} linkedlist_t, *pLinkedList_t;
typedef struct st_filecache {
uint32_t size;
linkedlist_t *list;
} filecache_t, *pFileCache_t;
typedef struct esp32_file {
sqlite3_file base;
FILE *fd;
filecache_t *cache;
char name[esp32_DEFAULT_MAXNAMESIZE];
} esp32_file;
sqlite3_vfs esp32Vfs = {
1, // iVersion
sizeof(esp32_file), // szOsFile
101, // mxPathname
NULL, // pNext
"esp32", // name
0, // pAppData
esp32_Open, // xOpen
esp32_Delete, // xDelete
esp32_Access, // xAccess
esp32_FullPathname, // xFullPathname
esp32_DlOpen, // xDlOpen
esp32_DlError, // xDlError
esp32_DlSym, // xDlSym
esp32_DlClose, // xDlClose
esp32_Randomness, // xRandomness
esp32_Sleep, // xSleep
esp32_CurrentTime, // xCurrentTime
0 // xGetLastError
};
const sqlite3_io_methods esp32IoMethods = {
1,
esp32_Close,
esp32_Read,
esp32_Write,
esp32_Truncate,
esp32_Sync,
esp32_FileSize,
esp32_Lock,
esp32_Unlock,
esp32_CheckReservedLock,
esp32_FileControl,
esp32_SectorSize,
esp32_DeviceCharacteristics
};
const sqlite3_io_methods esp32MemMethods = {
1,
esp32mem_Close,
esp32mem_Read,
esp32mem_Write,
esp32_Truncate,
esp32mem_Sync,
esp32mem_FileSize,
esp32_Lock,
esp32_Unlock,
esp32_CheckReservedLock,
esp32_FileControl,
esp32_SectorSize,
esp32_DeviceCharacteristics
};
uint32_t linkedlist_store (linkedlist_t **leaf, uint32_t offset, uint32_t len, const uint8_t *data) {
const uint8_t blank[CACHEBLOCKSZ] = { 0 };
uint16_t blockid = offset/CACHEBLOCKSZ;
linkedlist_t *block;
if (!memcmp(data, blank, CACHEBLOCKSZ))
return len;
block = *leaf;
if (!block || ( block->blockid != blockid ) ) {
block = (linkedlist_t *) sqlite3_malloc ( sizeof( linkedlist_t ) );
if (!block)
return SQLITE_NOMEM;
memset (block->data, 0, CACHEBLOCKSZ);
block->blockid = blockid;
}
if (!*leaf) {
*leaf = block;
block->next = NULL;
} else if (block != *leaf) {
if (block->blockid > (*leaf)->blockid) {
block->next = (*leaf)->next;
(*leaf)->next = block;
} else {
block->next = (*leaf);
(*leaf) = block;
}
}
memcpy (block->data + offset%CACHEBLOCKSZ, data, len);
return len;
}
uint32_t filecache_pull (pFileCache_t cache, uint32_t offset, uint32_t len, uint8_t *data) {
uint16_t i;
float blocks;
uint32_t r = 0;
blocks = ( offset % CACHEBLOCKSZ + len ) / (float) CACHEBLOCKSZ;
if (blocks == 0.0)
return 0;
if (!cache->list)
return 0;
if (( blocks - (int) blocks) > 0.0)
blocks = blocks + 1.0;
for (i = 0; i < (uint16_t) blocks; i++) {
uint16_t round;
float relablock;
linkedlist_t *leaf;
uint32_t relaoffset, relalen;
uint8_t * reladata = (uint8_t*) data;
relalen = len - r;
reladata = reladata + r;
relaoffset = offset + r;
round = CACHEBLOCKSZ - relaoffset%CACHEBLOCKSZ;
if (relalen > round) relalen = round;
for (leaf = cache->list; leaf && leaf->next; leaf = leaf->next) {
if ( ( leaf->next->blockid * CACHEBLOCKSZ ) > relaoffset )
break;
}
relablock = relaoffset/((float)CACHEBLOCKSZ) - leaf->blockid;
if ( ( relablock >= 0 ) && ( relablock < 1 ) )
memcpy (data + r, leaf->data + (relaoffset % CACHEBLOCKSZ), relalen);
r = r + relalen;
}
return 0;
}
uint32_t filecache_push (pFileCache_t cache, uint32_t offset, uint32_t len, const uint8_t *data) {
uint16_t i;
float blocks;
uint32_t r = 0;
uint8_t updateroot = 0x1;
blocks = ( offset % CACHEBLOCKSZ + len ) / (float) CACHEBLOCKSZ;
if (blocks == 0.0)
return 0;
if (( blocks - (int) blocks) > 0.0)
blocks = blocks + 1.0;
for (i = 0; i < (uint16_t) blocks; i++) {
uint16_t round;
uint32_t localr;
linkedlist_t *leaf;
uint32_t relaoffset, relalen;
uint8_t * reladata = (uint8_t*) data;
relalen = len - r;
reladata = reladata + r;
relaoffset = offset + r;
round = CACHEBLOCKSZ - relaoffset%CACHEBLOCKSZ;
if (relalen > round) relalen = round;
for (leaf = cache->list; leaf && leaf->next; leaf = leaf->next) {
if ( ( leaf->next->blockid * CACHEBLOCKSZ ) > relaoffset )
break;
updateroot = 0x0;
}
localr = linkedlist_store(&leaf, relaoffset, (relalen > CACHEBLOCKSZ) ? CACHEBLOCKSZ : relalen, reladata);
if (localr == SQLITE_NOMEM)
return SQLITE_NOMEM;
r = r + localr;
if (updateroot & 0x1)
cache->list = leaf;
}
if (offset + len > cache->size)
cache->size = offset + len;
return r;
}
void filecache_free (pFileCache_t cache) {
pLinkedList_t ll = cache->list, next;
while (ll != NULL) {
next = ll->next;
sqlite3_free (ll);
ll = next;
}
}
int esp32mem_Close(sqlite3_file *id)
{
esp32_file *file = (esp32_file*) id;
filecache_free(file->cache);
sqlite3_free (file->cache);
dbg_printf("esp32mem_Close: %s OK\n", file->name);
return SQLITE_OK;
}
int esp32mem_Read(sqlite3_file *id, void *buffer, int amount, sqlite3_int64 offset)
{
int32_t ofst;
esp32_file *file = (esp32_file*) id;
ofst = (int32_t)(offset & 0x7FFFFFFF);
filecache_pull (file->cache, ofst, amount, (uint8_t *) buffer);
dbg_printf("esp32mem_Read: %s [%d] [%d] OK\n", file->name, ofst, amount);
return SQLITE_OK;
}
int esp32mem_Write(sqlite3_file *id, const void *buffer, int amount, sqlite3_int64 offset)
{
int32_t ofst;
esp32_file *file = (esp32_file*) id;
ofst = (int32_t)(offset & 0x7FFFFFFF);
filecache_push (file->cache, ofst, amount, (const uint8_t *) buffer);
dbg_printf("esp32mem_Write: %s [%d] [%d] OK\n", file->name, ofst, amount);
return SQLITE_OK;
}
int esp32mem_Sync(sqlite3_file *id, int flags)
{
esp32_file *file = (esp32_file*) id;
dbg_printf("esp32mem_Sync: %s OK\n", file->name);
return SQLITE_OK;
}
int esp32mem_FileSize(sqlite3_file *id, sqlite3_int64 *size)
{
esp32_file *file = (esp32_file*) id;
*size = 0LL | file->cache->size;
dbg_printf("esp32mem_FileSize: %s [%d] OK\n", file->name, file->cache->size);
return SQLITE_OK;
}
int esp32_Open( sqlite3_vfs * vfs, const char * path, sqlite3_file * file, int flags, int * outflags )
{
int rc;
char mode[5];
esp32_file *p = (esp32_file*) file;
strcpy(mode, "r");
if ( path == NULL ) return SQLITE_IOERR;
dbg_printf("esp32_Open: 0o %s %s\n", path, mode);
if( flags&SQLITE_OPEN_READONLY )
strcpy(mode, "r");
if( flags&SQLITE_OPEN_READWRITE || flags&SQLITE_OPEN_MAIN_JOURNAL ) {
int result;
if (SQLITE_OK != esp32_Access(vfs, path, flags, &result))
return SQLITE_CANTOPEN;
if (result == 1)
strcpy(mode, "r+");
else
strcpy(mode, "w+");
}
dbg_printf("esp32_Open: 1o %s %s\n", path, mode);
memset (p, 0, sizeof(esp32_file));
strncpy (p->name, path, esp32_DEFAULT_MAXNAMESIZE);
p->name[esp32_DEFAULT_MAXNAMESIZE-1] = '\0';
if( flags&SQLITE_OPEN_MAIN_JOURNAL ) {
p->fd = 0;
p->cache = (filecache_t *) sqlite3_malloc(sizeof (filecache_t));
if (! p->cache )
return SQLITE_NOMEM;
memset (p->cache, 0, sizeof(filecache_t));
p->base.pMethods = &esp32MemMethods;
dbg_printf("esp32_Open: 2o %s MEM OK\n", p->name);
return SQLITE_OK;
}
p->fd = fopen(path, mode);
if ( p->fd <= 0 ) {
return SQLITE_CANTOPEN;
}
p->base.pMethods = &esp32IoMethods;
dbg_printf("esp32_Open: 2o %s OK\n", p->name);
return SQLITE_OK;
}
int esp32_Close(sqlite3_file *id)
{
esp32_file *file = (esp32_file*) id;
int rc = fclose(file->fd);
dbg_printf("esp32_Close: %s %d\n", file->name, rc);
return rc ? SQLITE_IOERR_CLOSE : SQLITE_OK;
}
int esp32_Read(sqlite3_file *id, void *buffer, int amount, sqlite3_int64 offset)
{
size_t nRead;
int32_t ofst, iofst;
esp32_file *file = (esp32_file*) id;
iofst = (int32_t)(offset & 0x7FFFFFFF);
dbg_printf("esp32_Read: 1r %s %d %lld[%d] \n", file->name, amount, offset, iofst);
ofst = fseek(file->fd, iofst, SEEK_SET);
if (ofst != 0) {
dbg_printf("esp32_Read: 2r %d != %d FAIL\n", ofst, iofst);
return SQLITE_IOERR_SHORT_READ /* SQLITE_IOERR_SEEK */;
}
nRead = fread(buffer, 1, amount, file->fd);
if ( nRead == amount ) {
dbg_printf("esp32_Read: 3r %s %u %d OK\n", file->name, nRead, amount);
return SQLITE_OK;
} else if ( nRead >= 0 ) {
dbg_printf("esp32_Read: 3r %s %u %d FAIL\n", file->name, nRead, amount);
return SQLITE_IOERR_SHORT_READ;
}
dbg_printf("esp32_Read: 4r %s FAIL\n", file->name);
return SQLITE_IOERR_READ;
}
int esp32_Write(sqlite3_file *id, const void *buffer, int amount, sqlite3_int64 offset)
{
size_t nWrite;
int32_t ofst, iofst;
esp32_file *file = (esp32_file*) id;
iofst = (int32_t)(offset & 0x7FFFFFFF);
dbg_printf("esp32_Write: 1w %s %d %lld[%d] \n", file->name, amount, offset, iofst);
ofst = fseek(file->fd, iofst, SEEK_SET);
if (ofst != 0) {
return SQLITE_IOERR_SEEK;
}
nWrite = fwrite(buffer, 1, amount, file->fd);
if ( nWrite != amount ) {
dbg_printf("esp32_Write: 2w %s %u %d\n", file->name, nWrite, amount);
return SQLITE_IOERR_WRITE;
}
dbg_printf("esp32_Write: 3w %s OK\n", file->name);
return SQLITE_OK;
}
int esp32_Truncate(sqlite3_file *id, sqlite3_int64 bytes)
{
esp32_file *file = (esp32_file*) id;
//int fno = fileno(file->fd);
//if (fno == -1)
// return SQLITE_IOERR_TRUNCATE;
//if (ftruncate(fno, 0))
// return SQLITE_IOERR_TRUNCATE;
dbg_printf("esp32_Truncate:\n");
return SQLITE_OK;
}
int esp32_Delete( sqlite3_vfs * vfs, const char * path, int syncDir )
{
int32_t rc = remove( path );
if (rc)
return SQLITE_IOERR_DELETE;
dbg_printf("esp32_Delete: %s OK\n", path);
return SQLITE_OK;
}
int esp32_FileSize(sqlite3_file *id, sqlite3_int64 *size)
{
esp32_file *file = (esp32_file*) id;
dbg_printf("esp32_FileSize: %s: ", file->name);
struct stat st;
int fno = fileno(file->fd);
if (fno == -1)
return SQLITE_IOERR_FSTAT;
if (fstat(fno, &st))
return SQLITE_IOERR_FSTAT;
*size = st.st_size;
dbg_printf(" %ld[%lld]\n", st.st_size, *size);
return SQLITE_OK;
}
int esp32_Sync(sqlite3_file *id, int flags)
{
esp32_file *file = (esp32_file*) id;
int rc = fflush( file->fd );
fsync(fileno(file->fd));
dbg_printf("esp32_Sync( %s: ): %d \n",file->name, rc);
return rc ? SQLITE_IOERR_FSYNC : SQLITE_OK;
}
int esp32_Access( sqlite3_vfs * vfs, const char * path, int flags, int * result )
{
struct stat st;
memset(&st, 0, sizeof(struct stat));
int rc = stat( path, &st );
*result = ( rc != -1 );
dbg_printf("esp32_Access: %s %d %d %ld\n", path, *result, rc, st.st_size);
return SQLITE_OK;
}
int esp32_FullPathname( sqlite3_vfs * vfs, const char * path, int len, char * fullpath )
{
//structure stat does not have name.
//struct stat st;
//int32_t rc = stat( path, &st );
//if ( rc == 0 ){
// strncpy( fullpath, st.name, len );
//} else {
// strncpy( fullpath, path, len );
//}
// As now just copy the path
strncpy( fullpath, path, len );
fullpath[ len - 1 ] = '\0';
dbg_printf("esp32_FullPathname: %s\n", fullpath);
return SQLITE_OK;
}
int esp32_Lock(sqlite3_file *id, int lock_type)
{
esp32_file *file = (esp32_file*) id;
dbg_printf("esp32_Lock:Not locked\n");
return SQLITE_OK;
}
int esp32_Unlock(sqlite3_file *id, int lock_type)
{
esp32_file *file = (esp32_file*) id;
dbg_printf("esp32_Unlock:\n");
return SQLITE_OK;
}
int esp32_CheckReservedLock(sqlite3_file *id, int *result)
{
esp32_file *file = (esp32_file*) id;
*result = 0;
dbg_printf("esp32_CheckReservedLock:\n");
return SQLITE_OK;
}
int esp32_FileControl(sqlite3_file *id, int op, void *arg)
{
esp32_file *file = (esp32_file*) id;
dbg_printf("esp32_FileControl:\n");
return SQLITE_OK;
}
int esp32_SectorSize(sqlite3_file *id)
{
esp32_file *file = (esp32_file*) id;
dbg_printf("esp32_SectorSize:\n");
return SPI_FLASH_SEC_SIZE;
}
int esp32_DeviceCharacteristics(sqlite3_file *id)
{
esp32_file *file = (esp32_file*) id;
dbg_printf("esp32_DeviceCharacteristics:\n");
return 0;
}
void * esp32_DlOpen( sqlite3_vfs * vfs, const char * path )
{
dbg_printf("esp32_DlOpen:\n");
return NULL;
}
void esp32_DlError( sqlite3_vfs * vfs, int len, char * errmsg )
{
dbg_printf("esp32_DlError:\n");
return;
}
void ( * esp32_DlSym ( sqlite3_vfs * vfs, void * handle, const char * symbol ) ) ( void )
{
dbg_printf("esp32_DlSym:\n");
return NULL;
}
void esp32_DlClose( sqlite3_vfs * vfs, void * handle )
{
dbg_printf("esp32_DlClose:\n");
return;
}
int esp32_Randomness( sqlite3_vfs * vfs, int len, char * buffer )
{
long rdm;
int sz = 1 + (len / sizeof(long));
char a_rdm[sz * sizeof(long)];
while (sz--) {
rdm = esp_random();
memcpy(a_rdm + sz * sizeof(long), &rdm, sizeof(long));
}
memcpy(buffer, a_rdm, len);
dbg_printf("esp32_Randomness\n");
return SQLITE_OK;
}
int esp32_Sleep( sqlite3_vfs * vfs, int microseconds )
{
ets_delay_us(microseconds);
dbg_printf("esp32_Sleep:\n");
return SQLITE_OK;
}
int esp32_CurrentTime( sqlite3_vfs * vfs, double * result )
{
time_t t = time(NULL);
*result = t / 86400.0 + 2440587.5;
// This is stubbed out until we have a working RTCTIME solution;
// as it stood, this would always have returned the UNIX epoch.
//*result = 2440587.5;
dbg_printf("esp32_CurrentTime: %g\n", *result);
return SQLITE_OK;
}
static void shox96_0_2c(sqlite3_context *context, int argc, sqlite3_value **argv) {
int nIn, nOut;
long int nOut2;
const unsigned char *inBuf;
unsigned char *outBuf;
unsigned char vInt[9];
int vIntLen;
assert( argc==1 );
nIn = sqlite3_value_bytes(argv[0]);
inBuf = (unsigned char *) sqlite3_value_blob(argv[0]);
nOut = 13 + nIn + (nIn+999)/1000;
vIntLen = encode_unsigned_varint(vInt, (uint64_t) nIn);
outBuf = (unsigned char *) malloc( nOut+vIntLen );
memcpy(outBuf, vInt, vIntLen);
nOut2 = shox96_0_2_compress((const char *) inBuf, nIn, (char *) &outBuf[vIntLen], NULL);
sqlite3_result_blob(context, outBuf, nOut2+vIntLen, free);
}
static void shox96_0_2d(sqlite3_context *context, int argc, sqlite3_value **argv) {
unsigned int nIn, nOut, rc;
const unsigned char *inBuf;
unsigned char *outBuf;
long int nOut2;
uint64_t inBufLen64;
int vIntLen;
assert( argc==1 );
if (sqlite3_value_type(argv[0]) != SQLITE_BLOB)
return;
nIn = sqlite3_value_bytes(argv[0]);
if (nIn < 2){
return;
}
inBuf = (unsigned char *) sqlite3_value_blob(argv[0]);
inBufLen64 = decode_unsigned_varint(inBuf, &vIntLen);
nOut = (unsigned int) inBufLen64;
outBuf = (unsigned char *) malloc( nOut );
//nOut2 = (long int)nOut;
nOut2 = shox96_0_2_decompress((const char *) (inBuf + vIntLen), nIn - vIntLen, (char *) outBuf, NULL);
//if( rc!=Z_OK ){
// free(outBuf);
//}else{
sqlite3_result_blob(context, outBuf, nOut2, free);
//}
}
int registerShox96_0_2(sqlite3 *db, const char **pzErrMsg, const struct sqlite3_api_routines *pThunk) {
sqlite3_create_function(db, "shox96_0_2c", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, shox96_0_2c, 0, 0);
sqlite3_create_function(db, "shox96_0_2d", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, shox96_0_2d, 0, 0);
return SQLITE_OK;
}
int sqlite3_os_init(void){
sqlite3_vfs_register(&esp32Vfs, 1);
sqlite3_auto_extension((void (*)())registerShox96_0_2);
return SQLITE_OK;
}
int sqlite3_os_end(void){
return SQLITE_OK;
}