├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── sqlite_web_dbi.py ├── src ├── HTTP.h ├── SQLiteVFS.h ├── ThreadPool.h ├── dbi.h ├── web_vfs.cc └── web_vfs.h └── test ├── local_stress_test.cc ├── test_1basic.py ├── test_httpd.cc └── test_httpd.h /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vscode/ 3 | **/__pycache__ 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/README.md -------------------------------------------------------------------------------- /sqlite_web_dbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/sqlite_web_dbi.py -------------------------------------------------------------------------------- /src/HTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/src/HTTP.h -------------------------------------------------------------------------------- /src/SQLiteVFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/src/SQLiteVFS.h -------------------------------------------------------------------------------- /src/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/src/ThreadPool.h -------------------------------------------------------------------------------- /src/dbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/src/dbi.h -------------------------------------------------------------------------------- /src/web_vfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/src/web_vfs.cc -------------------------------------------------------------------------------- /src/web_vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/src/web_vfs.h -------------------------------------------------------------------------------- /test/local_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/test/local_stress_test.cc -------------------------------------------------------------------------------- /test/test_1basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/test/test_1basic.py -------------------------------------------------------------------------------- /test/test_httpd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/test/test_httpd.cc -------------------------------------------------------------------------------- /test/test_httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlin/sqlite_web_vfs/HEAD/test/test_httpd.h --------------------------------------------------------------------------------