mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-20 07:52:08 +03:00
feat(nbstore): add sqlite implementation (#8811)
This commit is contained in:
parent
932e1da7f3
commit
8c24f2b906
@ -2,3 +2,7 @@
|
|||||||
rustflags = ["-C", "target-feature=+crt-static"]
|
rustflags = ["-C", "target-feature=+crt-static"]
|
||||||
[target.aarch64-pc-windows-msvc]
|
[target.aarch64-pc-windows-msvc]
|
||||||
rustflags = ["-C", "target-feature=+crt-static"]
|
rustflags = ["-C", "target-feature=+crt-static"]
|
||||||
|
[target.'cfg(target_os = "linux")']
|
||||||
|
rustflags = ["-C", "link-args=-Wl,--warn-unresolved-symbols"]
|
||||||
|
[target.'cfg(target_os = "macos")']
|
||||||
|
rustflags = ["-C", "link-args=-all_load"]
|
||||||
|
9
.github/workflows/build-test.yml
vendored
9
.github/workflows/build-test.yml
vendored
@ -354,11 +354,10 @@ jobs:
|
|||||||
name: affine
|
name: affine
|
||||||
fail_ci_if_error: false
|
fail_ci_if_error: false
|
||||||
|
|
||||||
server-native-test:
|
rust-test:
|
||||||
name: Run server native tests
|
name: Run native tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
RUSTFLAGS: -D warnings
|
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@ -656,7 +655,7 @@ jobs:
|
|||||||
uses: ./.github/actions/setup-node
|
uses: ./.github/actions/setup-node
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
with:
|
with:
|
||||||
extra-flags: workspaces focus @affine/electron @affine/monorepo @affine-test/affine-desktop
|
extra-flags: workspaces focus @affine/electron @affine/monorepo @affine-test/affine-desktop @affine/nbstore @toeverything/infra
|
||||||
playwright-install: true
|
playwright-install: true
|
||||||
hard-link-nm: false
|
hard-link-nm: false
|
||||||
enableScripts: false
|
enableScripts: false
|
||||||
@ -756,7 +755,7 @@ jobs:
|
|||||||
- build-server-native
|
- build-server-native
|
||||||
- build-electron-renderer
|
- build-electron-renderer
|
||||||
- server-test
|
- server-test
|
||||||
- server-native-test
|
- rust-test
|
||||||
- copilot-api-test
|
- copilot-api-test
|
||||||
- copilot-e2e-test
|
- copilot-e2e-test
|
||||||
- server-e2e-test
|
- server-e2e-test
|
||||||
|
4
.github/workflows/release-desktop.yml
vendored
4
.github/workflows/release-desktop.yml
vendored
@ -108,7 +108,7 @@ jobs:
|
|||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
uses: ./.github/actions/setup-node
|
uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
extra-flags: workspaces focus @affine/electron @affine/monorepo
|
extra-flags: workspaces focus @affine/electron @affine/monorepo @affine/nbstore @toeverything/infra
|
||||||
hard-link-nm: false
|
hard-link-nm: false
|
||||||
nmHoistingLimits: workspaces
|
nmHoistingLimits: workspaces
|
||||||
enableScripts: false
|
enableScripts: false
|
||||||
@ -225,7 +225,7 @@ jobs:
|
|||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
uses: ./.github/actions/setup-node
|
uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
extra-flags: workspaces focus @affine/electron @affine/monorepo
|
extra-flags: workspaces focus @affine/electron @affine/monorepo @affine/nbstore @toeverything/infra
|
||||||
hard-link-nm: false
|
hard-link-nm: false
|
||||||
nmHoistingLimits: workspaces
|
nmHoistingLimits: workspaces
|
||||||
- name: Build AFFiNE native
|
- name: Build AFFiNE native
|
||||||
|
193
Cargo.lock
generated
193
Cargo.lock
generated
@ -22,6 +22,7 @@ name = "affine_common"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
|
"criterion2",
|
||||||
"rand",
|
"rand",
|
||||||
"rayon",
|
"rayon",
|
||||||
"sha3",
|
"sha3",
|
||||||
@ -40,30 +41,37 @@ name = "affine_native"
|
|||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"affine_common",
|
"affine_common",
|
||||||
"affine_schema",
|
"affine_nbstore",
|
||||||
"anyhow",
|
"affine_sqlite_v1",
|
||||||
"chrono",
|
|
||||||
"criterion2",
|
|
||||||
"dotenv",
|
|
||||||
"napi",
|
"napi",
|
||||||
"napi-build",
|
"napi-build",
|
||||||
"napi-derive",
|
"napi-derive",
|
||||||
"notify",
|
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"parking_lot",
|
|
||||||
"rand",
|
|
||||||
"rayon",
|
|
||||||
"serde",
|
|
||||||
"serde_json",
|
|
||||||
"sha3",
|
|
||||||
"sqlx",
|
"sqlx",
|
||||||
"tokio",
|
"tokio",
|
||||||
"uuid",
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "affine_nbstore"
|
||||||
|
version = "0.0.0"
|
||||||
|
dependencies = [
|
||||||
|
"affine_schema",
|
||||||
|
"anyhow",
|
||||||
|
"chrono",
|
||||||
|
"dotenvy",
|
||||||
|
"napi",
|
||||||
|
"napi-build",
|
||||||
|
"napi-derive",
|
||||||
|
"sqlx",
|
||||||
|
"tokio",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "affine_schema"
|
name = "affine_schema"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
dependencies = [
|
||||||
|
"sqlx",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "affine_server_native"
|
name = "affine_server_native"
|
||||||
@ -85,6 +93,21 @@ dependencies = [
|
|||||||
"y-octo",
|
"y-octo",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "affine_sqlite_v1"
|
||||||
|
version = "0.0.0"
|
||||||
|
dependencies = [
|
||||||
|
"affine_schema",
|
||||||
|
"anyhow",
|
||||||
|
"chrono",
|
||||||
|
"dotenvy",
|
||||||
|
"napi",
|
||||||
|
"napi-build",
|
||||||
|
"napi-derive",
|
||||||
|
"sqlx",
|
||||||
|
"tokio",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ahash"
|
name = "ahash"
|
||||||
version = "0.8.11"
|
version = "0.8.11"
|
||||||
@ -320,12 +343,6 @@ version = "0.6.3"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "bitflags"
|
|
||||||
version = "1.3.2"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitflags"
|
name = "bitflags"
|
||||||
version = "2.6.0"
|
version = "2.6.0"
|
||||||
@ -721,12 +738,6 @@ dependencies = [
|
|||||||
"syn",
|
"syn",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "dotenv"
|
|
||||||
version = "0.15.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dotenvy"
|
name = "dotenvy"
|
||||||
version = "0.15.7"
|
version = "0.15.7"
|
||||||
@ -803,18 +814,6 @@ version = "0.26.0"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e7ef3d5e8ae27277c8285ac43ed153158178ef0f79567f32024ca8140a0c7cd8"
|
checksum = "e7ef3d5e8ae27277c8285ac43ed153158178ef0f79567f32024ca8140a0c7cd8"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "filetime"
|
|
||||||
version = "0.2.25"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
|
|
||||||
dependencies = [
|
|
||||||
"cfg-if",
|
|
||||||
"libc",
|
|
||||||
"libredox",
|
|
||||||
"windows-sys 0.59.0",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "flume"
|
name = "flume"
|
||||||
version = "0.11.1"
|
version = "0.11.1"
|
||||||
@ -844,15 +843,6 @@ dependencies = [
|
|||||||
"autocfg",
|
"autocfg",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "fsevent-sys"
|
|
||||||
version = "4.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
|
|
||||||
dependencies = [
|
|
||||||
"libc",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "funty"
|
name = "funty"
|
||||||
version = "2.0.0"
|
version = "2.0.0"
|
||||||
@ -1234,35 +1224,6 @@ dependencies = [
|
|||||||
"hashbrown 0.15.2",
|
"hashbrown 0.15.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "inotify"
|
|
||||||
version = "0.10.2"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
|
|
||||||
dependencies = [
|
|
||||||
"bitflags 1.3.2",
|
|
||||||
"inotify-sys",
|
|
||||||
"libc",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "inotify-sys"
|
|
||||||
version = "0.1.5"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
|
|
||||||
dependencies = [
|
|
||||||
"libc",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "instant"
|
|
||||||
version = "0.1.13"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
||||||
dependencies = [
|
|
||||||
"cfg-if",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "is_terminal_polyfill"
|
name = "is_terminal_polyfill"
|
||||||
version = "1.70.1"
|
version = "1.70.1"
|
||||||
@ -1294,26 +1255,6 @@ dependencies = [
|
|||||||
"cpufeatures",
|
"cpufeatures",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "kqueue"
|
|
||||||
version = "1.0.8"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
|
|
||||||
dependencies = [
|
|
||||||
"kqueue-sys",
|
|
||||||
"libc",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "kqueue-sys"
|
|
||||||
version = "1.0.4"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
|
|
||||||
dependencies = [
|
|
||||||
"bitflags 1.3.2",
|
|
||||||
"libc",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "lasso"
|
name = "lasso"
|
||||||
version = "0.7.3"
|
version = "0.7.3"
|
||||||
@ -1365,17 +1306,6 @@ dependencies = [
|
|||||||
"libc",
|
"libc",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "libredox"
|
|
||||||
version = "0.1.3"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
||||||
dependencies = [
|
|
||||||
"bitflags 2.6.0",
|
|
||||||
"libc",
|
|
||||||
"redox_syscall",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libsqlite3-sys"
|
name = "libsqlite3-sys"
|
||||||
version = "0.30.1"
|
version = "0.30.1"
|
||||||
@ -1502,7 +1432,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"log",
|
|
||||||
"wasi",
|
"wasi",
|
||||||
"windows-sys 0.52.0",
|
"windows-sys 0.52.0",
|
||||||
]
|
]
|
||||||
@ -1523,7 +1452,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "f4929caab512f6e9650b53d27b4076f3e0524a1369e5d4ab25965fcc60b31cad"
|
checksum = "f4929caab512f6e9650b53d27b4076f3e0524a1369e5d4ab25965fcc60b31cad"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bitflags 2.6.0",
|
"bitflags",
|
||||||
"chrono",
|
"chrono",
|
||||||
"ctor",
|
"ctor",
|
||||||
"napi-build",
|
"napi-build",
|
||||||
@ -1583,35 +1512,6 @@ dependencies = [
|
|||||||
"minimal-lexical",
|
"minimal-lexical",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "notify"
|
|
||||||
version = "7.0.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009"
|
|
||||||
dependencies = [
|
|
||||||
"bitflags 2.6.0",
|
|
||||||
"filetime",
|
|
||||||
"fsevent-sys",
|
|
||||||
"inotify",
|
|
||||||
"kqueue",
|
|
||||||
"libc",
|
|
||||||
"log",
|
|
||||||
"mio",
|
|
||||||
"notify-types",
|
|
||||||
"walkdir",
|
|
||||||
"windows-sys 0.52.0",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "notify-types"
|
|
||||||
version = "1.0.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "7393c226621f817964ffb3dc5704f9509e107a8b024b489cc2c1b217378785df"
|
|
||||||
dependencies = [
|
|
||||||
"instant",
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "nu-ansi-term"
|
name = "nu-ansi-term"
|
||||||
version = "0.46.0"
|
version = "0.46.0"
|
||||||
@ -1900,7 +1800,7 @@ version = "0.5.7"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
|
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -2000,7 +1900,7 @@ version = "0.38.41"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
|
checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags",
|
||||||
"errno",
|
"errno",
|
||||||
"libc",
|
"libc",
|
||||||
"linux-raw-sys",
|
"linux-raw-sys",
|
||||||
@ -2400,7 +2300,7 @@ checksum = "64bb4714269afa44aef2755150a0fc19d756fb580a67db8885608cf02f47d06a"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"atoi",
|
"atoi",
|
||||||
"base64 0.22.1",
|
"base64 0.22.1",
|
||||||
"bitflags 2.6.0",
|
"bitflags",
|
||||||
"byteorder",
|
"byteorder",
|
||||||
"bytes",
|
"bytes",
|
||||||
"chrono",
|
"chrono",
|
||||||
@ -2443,7 +2343,7 @@ checksum = "6fa91a732d854c5d7726349bb4bb879bb9478993ceb764247660aee25f67c2f8"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"atoi",
|
"atoi",
|
||||||
"base64 0.22.1",
|
"base64 0.22.1",
|
||||||
"bitflags 2.6.0",
|
"bitflags",
|
||||||
"byteorder",
|
"byteorder",
|
||||||
"chrono",
|
"chrono",
|
||||||
"crc",
|
"crc",
|
||||||
@ -2981,17 +2881,6 @@ version = "0.2.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "uuid"
|
|
||||||
version = "1.11.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
|
|
||||||
dependencies = [
|
|
||||||
"getrandom",
|
|
||||||
"rand",
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "v_htmlescape"
|
name = "v_htmlescape"
|
||||||
version = "0.15.8"
|
version = "0.15.8"
|
||||||
|
@ -3,6 +3,8 @@ members = [
|
|||||||
"./packages/backend/native",
|
"./packages/backend/native",
|
||||||
"./packages/common/native",
|
"./packages/common/native",
|
||||||
"./packages/frontend/native",
|
"./packages/frontend/native",
|
||||||
|
"./packages/frontend/native/sqlite_v1",
|
||||||
|
"./packages/frontend/native/nbstore",
|
||||||
"./packages/frontend/native/schema",
|
"./packages/frontend/native/schema",
|
||||||
"./packages/frontend/mobile-native",
|
"./packages/frontend/mobile-native",
|
||||||
]
|
]
|
||||||
@ -13,7 +15,7 @@ affine_common = { path = "./packages/common/native" }
|
|||||||
criterion2 = { version = "2", default-features = false }
|
criterion2 = { version = "2", default-features = false }
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
dotenv = "0.15"
|
dotenvy = "0.15"
|
||||||
file-format = { version = "0.26", features = ["reader"] }
|
file-format = { version = "0.26", features = ["reader"] }
|
||||||
mimalloc = "0.1"
|
mimalloc = "0.1"
|
||||||
napi = { version = "3.0.0-alpha.12", features = ["async", "chrono_date", "error_anyhow", "napi9", "serde"] }
|
napi = { version = "3.0.0-alpha.12", features = ["async", "chrono_date", "error_anyhow", "napi9", "serde"] }
|
||||||
|
@ -34,36 +34,18 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@affine-test/fixtures": "workspace:*",
|
"@affine-test/fixtures": "workspace:*",
|
||||||
"@affine/templates": "workspace:*",
|
"@affine/templates": "workspace:*",
|
||||||
|
"@emotion/react": "^11.14.0",
|
||||||
"@swc/core": "^1.0.0",
|
"@swc/core": "^1.0.0",
|
||||||
"@testing-library/dom": "^10.0.0",
|
"@testing-library/dom": "^10.0.0",
|
||||||
"@testing-library/react": "^16.1.0",
|
"@testing-library/react": "^16.1.0",
|
||||||
|
"@types/react": "^19.0.1",
|
||||||
"fake-indexeddb": "^6.0.0",
|
"fake-indexeddb": "^6.0.0",
|
||||||
"react": "^19.0.0",
|
|
||||||
"rxjs": "^7.8.1",
|
"rxjs": "^7.8.1",
|
||||||
"vitest": "2.1.8"
|
"vitest": "2.1.8"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@affine/templates": "*",
|
|
||||||
"@swc/core": "^1.0.0",
|
|
||||||
"@testing-library/dom": ">=7.0.0",
|
|
||||||
"electron": "*",
|
"electron": "*",
|
||||||
"react": "^19.0.0",
|
"react-dom": "^19.0.0"
|
||||||
"react-dom": "^19.0.0",
|
|
||||||
"yjs": "^13"
|
|
||||||
},
|
|
||||||
"peerDependenciesMeta": {
|
|
||||||
"@affine/templates": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"electron": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"react": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"yjs": {
|
|
||||||
"optional": true
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"version": "0.18.0"
|
"version": "0.18.0"
|
||||||
}
|
}
|
||||||
|
@ -10,3 +10,8 @@ sha3 = { workspace = true }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rayon = { workspace = true }
|
rayon = { workspace = true }
|
||||||
|
criterion2 = { workspace = true }
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
name = "hashcash"
|
||||||
|
harness = false
|
||||||
|
@ -2,7 +2,7 @@ use std::hint::black_box;
|
|||||||
|
|
||||||
use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion};
|
use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion};
|
||||||
|
|
||||||
use affine_native::hashcash::Stamp;
|
use affine_common::hashcash::Stamp;
|
||||||
|
|
||||||
fn bench_hashcash(c: &mut Criterion) {
|
fn bench_hashcash(c: &mut Criterion) {
|
||||||
let mut group = c.benchmark_group("hashcash");
|
let mut group = c.benchmark_group("hashcash");
|
@ -9,7 +9,9 @@
|
|||||||
"./op": "./src/op/index.ts",
|
"./op": "./src/op/index.ts",
|
||||||
"./idb": "./src/impls/idb/index.ts",
|
"./idb": "./src/impls/idb/index.ts",
|
||||||
"./idb/v1": "./src/impls/idb/v1/index.ts",
|
"./idb/v1": "./src/impls/idb/v1/index.ts",
|
||||||
"./cloud": "./src/impls/cloud/index.ts"
|
"./cloud": "./src/impls/cloud/index.ts",
|
||||||
|
"./sqlite": "./src/impls/sqlite/index.ts",
|
||||||
|
"./sqlite/v1": "./src/impls/sqlite/v1/index.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@datastructures-js/binary-search-tree": "^5.3.2",
|
"@datastructures-js/binary-search-tree": "^5.3.2",
|
||||||
@ -21,6 +23,7 @@
|
|||||||
"yjs": "patch:yjs@npm%3A13.6.18#~/.yarn/patches/yjs-npm-13.6.18-ad0d5f7c43.patch"
|
"yjs": "patch:yjs@npm%3A13.6.18#~/.yarn/patches/yjs-npm-13.6.18-ad0d5f7c43.patch"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@affine/electron-api": "workspace:*",
|
||||||
"@affine/graphql": "workspace:*",
|
"@affine/graphql": "workspace:*",
|
||||||
"fake-indexeddb": "^6.0.0",
|
"fake-indexeddb": "^6.0.0",
|
||||||
"idb": "^8.0.0",
|
"idb": "^8.0.0",
|
||||||
@ -28,6 +31,7 @@
|
|||||||
"vitest": "2.1.8"
|
"vitest": "2.1.8"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
"@affine/electron-api": "workspace:*",
|
||||||
"@affine/graphql": "workspace:*",
|
"@affine/graphql": "workspace:*",
|
||||||
"idb": "^8.0.0",
|
"idb": "^8.0.0",
|
||||||
"socket.io-client": "^4.7.5"
|
"socket.io-client": "^4.7.5"
|
||||||
|
33
packages/common/nbstore/src/impls/sqlite/blob.ts
Normal file
33
packages/common/nbstore/src/impls/sqlite/blob.ts
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
import { share } from '../../connection';
|
||||||
|
import { type BlobRecord, BlobStorage } from '../../storage';
|
||||||
|
import { NativeDBConnection } from './db';
|
||||||
|
|
||||||
|
export class SqliteBlobStorage extends BlobStorage {
|
||||||
|
override connection = share(
|
||||||
|
new NativeDBConnection(this.peer, this.spaceType, this.spaceId)
|
||||||
|
);
|
||||||
|
|
||||||
|
get db() {
|
||||||
|
return this.connection.apis;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async get(key: string) {
|
||||||
|
return this.db.getBlob(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async set(blob: BlobRecord) {
|
||||||
|
await this.db.setBlob(blob);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async delete(key: string, permanently: boolean) {
|
||||||
|
await this.db.deleteBlob(key, permanently);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async release() {
|
||||||
|
await this.db.releaseBlobs();
|
||||||
|
}
|
||||||
|
|
||||||
|
override async list() {
|
||||||
|
return this.db.listBlobs();
|
||||||
|
}
|
||||||
|
}
|
83
packages/common/nbstore/src/impls/sqlite/db.ts
Normal file
83
packages/common/nbstore/src/impls/sqlite/db.ts
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
import { apis, events } from '@affine/electron-api';
|
||||||
|
|
||||||
|
import { Connection, type ConnectionStatus } from '../../connection';
|
||||||
|
import { type SpaceType, universalId } from '../../storage';
|
||||||
|
|
||||||
|
type NativeDBApis = NonNullable<typeof apis>['nbstore'] extends infer APIs
|
||||||
|
? {
|
||||||
|
[K in keyof APIs]: APIs[K] extends (...args: any[]) => any
|
||||||
|
? Parameters<APIs[K]> extends [string, ...infer Rest]
|
||||||
|
? (...args: Rest) => ReturnType<APIs[K]>
|
||||||
|
: never
|
||||||
|
: never;
|
||||||
|
}
|
||||||
|
: never;
|
||||||
|
|
||||||
|
export class NativeDBConnection extends Connection<void> {
|
||||||
|
readonly apis: NativeDBApis;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
private readonly peer: string,
|
||||||
|
private readonly type: SpaceType,
|
||||||
|
private readonly id: string
|
||||||
|
) {
|
||||||
|
super();
|
||||||
|
if (!apis) {
|
||||||
|
throw new Error('Not in electron context.');
|
||||||
|
}
|
||||||
|
|
||||||
|
this.apis = this.bindApis(apis.nbstore);
|
||||||
|
this.listenToConnectionEvents();
|
||||||
|
}
|
||||||
|
|
||||||
|
override get shareId(): string {
|
||||||
|
return `sqlite:${this.peer}:${this.type}:${this.id}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
bindApis(originalApis: NonNullable<typeof apis>['nbstore']): NativeDBApis {
|
||||||
|
const id = universalId({
|
||||||
|
peer: this.peer,
|
||||||
|
type: this.type,
|
||||||
|
id: this.id,
|
||||||
|
});
|
||||||
|
return new Proxy(originalApis, {
|
||||||
|
get: (target, key: keyof NativeDBApis) => {
|
||||||
|
const v = target[key];
|
||||||
|
if (typeof v !== 'function') {
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
return async (...args: any[]) => {
|
||||||
|
return v.call(
|
||||||
|
originalApis,
|
||||||
|
id,
|
||||||
|
// @ts-expect-error I don't know why it complains ts(2556)
|
||||||
|
...args
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
}) as unknown as NativeDBApis;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async doConnect() {
|
||||||
|
await this.apis.connect();
|
||||||
|
}
|
||||||
|
|
||||||
|
override async doDisconnect() {
|
||||||
|
await this.apis.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
private listenToConnectionEvents() {
|
||||||
|
events?.nbstore.onConnectionStatusChanged(
|
||||||
|
({ peer, spaceType, spaceId, status, error }) => {
|
||||||
|
if (
|
||||||
|
peer === this.peer &&
|
||||||
|
spaceType === this.type &&
|
||||||
|
spaceId === this.id
|
||||||
|
) {
|
||||||
|
this.setStatus(status as ConnectionStatus, error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
54
packages/common/nbstore/src/impls/sqlite/doc.ts
Normal file
54
packages/common/nbstore/src/impls/sqlite/doc.ts
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import { share } from '../../connection';
|
||||||
|
import { type DocClock, DocStorage, type DocUpdate } from '../../storage';
|
||||||
|
import { NativeDBConnection } from './db';
|
||||||
|
|
||||||
|
export class SqliteDocStorage extends DocStorage {
|
||||||
|
override connection = share(
|
||||||
|
new NativeDBConnection(this.peer, this.spaceType, this.spaceId)
|
||||||
|
);
|
||||||
|
|
||||||
|
get db() {
|
||||||
|
return this.connection.apis;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getDoc(docId: string) {
|
||||||
|
return this.db.getDoc(docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async pushDocUpdate(update: DocUpdate) {
|
||||||
|
return this.db.pushDocUpdate(update);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async deleteDoc(docId: string) {
|
||||||
|
return this.db.deleteDoc(docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getDocTimestamps(after?: Date) {
|
||||||
|
return this.db.getDocTimestamps(after ? new Date(after) : undefined);
|
||||||
|
}
|
||||||
|
|
||||||
|
override getDocTimestamp(docId: string): Promise<DocClock | null> {
|
||||||
|
return this.db.getDocTimestamp(docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async getDocSnapshot() {
|
||||||
|
// handled in db
|
||||||
|
// see electron/src/helper/nbstore/doc.ts
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async setDocSnapshot(): Promise<boolean> {
|
||||||
|
// handled in db
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async getDocUpdates() {
|
||||||
|
// handled in db
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override markUpdatesMerged() {
|
||||||
|
// handled in db
|
||||||
|
return Promise.resolve(0);
|
||||||
|
}
|
||||||
|
}
|
3
packages/common/nbstore/src/impls/sqlite/index.ts
Normal file
3
packages/common/nbstore/src/impls/sqlite/index.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export * from './blob';
|
||||||
|
export * from './doc';
|
||||||
|
export * from './sync';
|
53
packages/common/nbstore/src/impls/sqlite/sync.ts
Normal file
53
packages/common/nbstore/src/impls/sqlite/sync.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { share } from '../../connection';
|
||||||
|
import { type DocClock, SyncStorage } from '../../storage';
|
||||||
|
import { NativeDBConnection } from './db';
|
||||||
|
|
||||||
|
export class SqliteSyncStorage extends SyncStorage {
|
||||||
|
override connection = share(
|
||||||
|
new NativeDBConnection(this.peer, this.spaceType, this.spaceId)
|
||||||
|
);
|
||||||
|
|
||||||
|
get db() {
|
||||||
|
return this.connection.apis;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerRemoteClocks(peer: string) {
|
||||||
|
return this.db.getPeerRemoteClocks(peer);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerRemoteClock(peer: string, docId: string) {
|
||||||
|
return this.db.getPeerRemoteClock(peer, docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async setPeerRemoteClock(peer: string, clock: DocClock) {
|
||||||
|
await this.db.setPeerRemoteClock(peer, clock);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerPulledRemoteClocks(peer: string) {
|
||||||
|
return this.db.getPeerPulledRemoteClocks(peer);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerPulledRemoteClock(peer: string, docId: string) {
|
||||||
|
return this.db.getPeerPulledRemoteClock(peer, docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async setPeerPulledRemoteClock(peer: string, clock: DocClock) {
|
||||||
|
await this.db.setPeerPulledRemoteClock(peer, clock);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerPushedClocks(peer: string) {
|
||||||
|
return this.db.getPeerPushedClocks(peer);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerPushedClock(peer: string, docId: string) {
|
||||||
|
return this.db.getPeerPushedClock(peer, docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async setPeerPushedClock(peer: string, clock: DocClock) {
|
||||||
|
await this.db.setPeerPushedClock(peer, clock);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async clearClocks() {
|
||||||
|
await this.db.clearClocks();
|
||||||
|
}
|
||||||
|
}
|
62
packages/common/nbstore/src/impls/sqlite/v1/blob.ts
Normal file
62
packages/common/nbstore/src/impls/sqlite/v1/blob.ts
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
import { apis } from '@affine/electron-api';
|
||||||
|
|
||||||
|
import { DummyConnection, share } from '../../../connection';
|
||||||
|
import { BlobStorage } from '../../../storage';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated readonly
|
||||||
|
*/
|
||||||
|
export class SqliteV1BlobStorage extends BlobStorage {
|
||||||
|
override connection = share(new DummyConnection());
|
||||||
|
|
||||||
|
get db() {
|
||||||
|
if (!apis) {
|
||||||
|
throw new Error('Not in electron context.');
|
||||||
|
}
|
||||||
|
|
||||||
|
return apis.db;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async get(key: string) {
|
||||||
|
const data: Uint8Array | null = await this.db.getBlob(
|
||||||
|
this.spaceType,
|
||||||
|
this.spaceId,
|
||||||
|
key
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!data) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
key,
|
||||||
|
data,
|
||||||
|
mime: '',
|
||||||
|
createdAt: new Date(),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
override async delete(key: string, permanently: boolean) {
|
||||||
|
if (permanently) {
|
||||||
|
await this.db.deleteBlob(this.spaceType, this.spaceId, key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override async list() {
|
||||||
|
const keys = await this.db.getBlobKeys(this.spaceType, this.spaceId);
|
||||||
|
|
||||||
|
return keys.map(key => ({
|
||||||
|
key,
|
||||||
|
mime: '',
|
||||||
|
size: 0,
|
||||||
|
createdAt: new Date(),
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
override async set() {
|
||||||
|
// no more writes
|
||||||
|
}
|
||||||
|
override async release() {
|
||||||
|
// no more writes
|
||||||
|
}
|
||||||
|
}
|
67
packages/common/nbstore/src/impls/sqlite/v1/doc.ts
Normal file
67
packages/common/nbstore/src/impls/sqlite/v1/doc.ts
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
import { apis } from '@affine/electron-api';
|
||||||
|
|
||||||
|
import { DummyConnection, share } from '../../../connection';
|
||||||
|
import { type DocRecord, DocStorage, type DocUpdate } from '../../../storage';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated readonly
|
||||||
|
*/
|
||||||
|
export class SqliteV1DocStorage extends DocStorage {
|
||||||
|
override connection = share(new DummyConnection());
|
||||||
|
|
||||||
|
get db() {
|
||||||
|
if (!apis) {
|
||||||
|
throw new Error('Not in electron context.');
|
||||||
|
}
|
||||||
|
|
||||||
|
return apis.db;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async pushDocUpdate(update: DocUpdate) {
|
||||||
|
// no more writes
|
||||||
|
|
||||||
|
return { docId: update.docId, timestamp: new Date() };
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getDoc(docId: string) {
|
||||||
|
const bin = await this.db.getDocAsUpdates(
|
||||||
|
this.spaceType,
|
||||||
|
this.spaceId,
|
||||||
|
docId
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
docId,
|
||||||
|
bin,
|
||||||
|
timestamp: new Date(),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
override async deleteDoc(docId: string) {
|
||||||
|
await this.db.deleteDoc(this.spaceType, this.spaceId, docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async getDocSnapshot() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getDocTimestamps() {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getDocTimestamp() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async setDocSnapshot(): Promise<boolean> {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async getDocUpdates(): Promise<DocRecord[]> {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async markUpdatesMerged(): Promise<number> {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
2
packages/common/nbstore/src/impls/sqlite/v1/index.ts
Normal file
2
packages/common/nbstore/src/impls/sqlite/v1/index.ts
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
export * from './blob';
|
||||||
|
export * from './doc';
|
@ -3,6 +3,8 @@ import { OpClient } from '@toeverything/infra/op';
|
|||||||
import type { Storage } from '../storage';
|
import type { Storage } from '../storage';
|
||||||
import type { SpaceStorageOps } from './ops';
|
import type { SpaceStorageOps } from './ops';
|
||||||
|
|
||||||
|
export { SpaceStorageConsumer } from './consumer';
|
||||||
|
|
||||||
export class SpaceStorageClient extends OpClient<SpaceStorageOps> {
|
export class SpaceStorageClient extends OpClient<SpaceStorageOps> {
|
||||||
/**
|
/**
|
||||||
* Adding a storage implementation to the backend.
|
* Adding a storage implementation to the backend.
|
||||||
|
@ -0,0 +1,41 @@
|
|||||||
|
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
||||||
|
|
||||||
|
exports[`parseUniversalId > should parse universal id > @peer(@name);@type(userspace);@id(@id); 1`] = `
|
||||||
|
{
|
||||||
|
"id": "@id",
|
||||||
|
"peer": "@name",
|
||||||
|
"type": "userspace",
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`parseUniversalId > should parse universal id > @peer(@peer(name);@type(userspace);@id(@id); 1`] = `
|
||||||
|
{
|
||||||
|
"id": "@id",
|
||||||
|
"peer": "@peer(name",
|
||||||
|
"type": "userspace",
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`parseUniversalId > should parse universal id > @peer(123);@type(userspace);@id(456); 1`] = `
|
||||||
|
{
|
||||||
|
"id": "456",
|
||||||
|
"peer": "123",
|
||||||
|
"type": "userspace",
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`parseUniversalId > should parse universal id > @peer(123);@type(workspace);@id(456); 1`] = `
|
||||||
|
{
|
||||||
|
"id": "456",
|
||||||
|
"peer": "123",
|
||||||
|
"type": "workspace",
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`parseUniversalId > should parse universal id > @peer(https://app.affine.pro);@type(userspace);@id(hello:world); 1`] = `
|
||||||
|
{
|
||||||
|
"id": "hello:world",
|
||||||
|
"peer": "https://app.affine.pro",
|
||||||
|
"type": "userspace",
|
||||||
|
}
|
||||||
|
`;
|
@ -0,0 +1,36 @@
|
|||||||
|
import { describe, expect, it } from 'vitest';
|
||||||
|
|
||||||
|
import { parseUniversalId, universalId } from '../storage';
|
||||||
|
|
||||||
|
describe('parseUniversalId', () => {
|
||||||
|
it('should generate universal id', () => {
|
||||||
|
expect(universalId({ peer: '123', type: 'workspace', id: '456' })).toEqual(
|
||||||
|
'@peer(123);@type(workspace);@id(456);'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should parse universal id', () => {
|
||||||
|
const testcases = [
|
||||||
|
'@peer(123);@type(userspace);@id(456);',
|
||||||
|
'@peer(123);@type(workspace);@id(456);',
|
||||||
|
'@peer(https://app.affine.pro);@type(userspace);@id(hello:world);',
|
||||||
|
'@peer(@name);@type(userspace);@id(@id);',
|
||||||
|
'@peer(@peer(name);@type(userspace);@id(@id);',
|
||||||
|
];
|
||||||
|
|
||||||
|
testcases.forEach(id => {
|
||||||
|
expect(parseUniversalId(id)).toMatchSnapshot(id);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw invalid universal id', () => {
|
||||||
|
const testcases = [
|
||||||
|
'@peer(123);@type(anyspace);@id(456);', // invalid space type
|
||||||
|
'@peer(@peer(name););@type(userspace);@id(@id);', // invalid peer
|
||||||
|
];
|
||||||
|
|
||||||
|
testcases.forEach(id => {
|
||||||
|
expect(() => parseUniversalId(id)).toThrow();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
@ -6,6 +6,8 @@ import type { BlobStorage } from './blob';
|
|||||||
import type { DocStorage } from './doc';
|
import type { DocStorage } from './doc';
|
||||||
import type { SyncStorage } from './sync';
|
import type { SyncStorage } from './sync';
|
||||||
|
|
||||||
|
type Storages = DocStorage | BlobStorage | SyncStorage;
|
||||||
|
|
||||||
export class SpaceStorage {
|
export class SpaceStorage {
|
||||||
protected readonly storages: Map<StorageType, Storage> = new Map();
|
protected readonly storages: Map<StorageType, Storage> = new Map();
|
||||||
private readonly event = new EventEmitter2();
|
private readonly event = new EventEmitter2();
|
||||||
@ -17,24 +19,20 @@ export class SpaceStorage {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
tryGet(type: 'blob'): BlobStorage | undefined;
|
tryGet<T extends StorageType>(
|
||||||
tryGet(type: 'sync'): SyncStorage | undefined;
|
type: T
|
||||||
tryGet(type: 'doc'): DocStorage | undefined;
|
): Extract<Storages, { storageType: T }> | undefined {
|
||||||
tryGet(type: StorageType) {
|
return this.storages.get(type) as Extract<Storages, { storageType: T }>;
|
||||||
return this.storages.get(type);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get(type: 'blob'): BlobStorage;
|
get<T extends StorageType>(type: T): Extract<Storages, { storageType: T }> {
|
||||||
get(type: 'sync'): SyncStorage;
|
const storage = this.tryGet(type);
|
||||||
get(type: 'doc'): DocStorage;
|
|
||||||
get(type: StorageType) {
|
|
||||||
const storage = this.storages.get(type);
|
|
||||||
|
|
||||||
if (!storage) {
|
if (!storage) {
|
||||||
throw new Error(`Storage ${type} not registered.`);
|
throw new Error(`Storage ${type} not registered.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
return storage;
|
return storage as Extract<Storages, { storageType: T }>;
|
||||||
}
|
}
|
||||||
|
|
||||||
async connect() {
|
async connect() {
|
||||||
|
@ -9,6 +9,77 @@ export interface StorageOptions {
|
|||||||
id: string;
|
id: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function universalId({ peer, type, id }: StorageOptions) {
|
||||||
|
return `@peer(${peer});@type(${type});@id(${id});`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function isValidUniversalId(opts: Record<string, string>): boolean {
|
||||||
|
const requiredKeys: Array<keyof StorageOptions> = [
|
||||||
|
'peer',
|
||||||
|
'type',
|
||||||
|
'id',
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
for (const key of requiredKeys) {
|
||||||
|
if (!opts[key]) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return opts.type === 'userspace' || opts.type === 'workspace';
|
||||||
|
}
|
||||||
|
|
||||||
|
export function parseUniversalId(id: string) {
|
||||||
|
const result: Record<string, string> = {};
|
||||||
|
let key = '';
|
||||||
|
let value = '';
|
||||||
|
let isInValue = false;
|
||||||
|
|
||||||
|
let i = -1;
|
||||||
|
|
||||||
|
while (++i < id.length) {
|
||||||
|
const ch = id[i];
|
||||||
|
const nextCh = id[i + 1];
|
||||||
|
|
||||||
|
// when we are in value string, we only care about ch and next char to be [')', ';'] to end the id part
|
||||||
|
if (isInValue) {
|
||||||
|
if (ch === ')' && nextCh === ';') {
|
||||||
|
result[key] = value;
|
||||||
|
key = '';
|
||||||
|
value = '';
|
||||||
|
isInValue = false;
|
||||||
|
i++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
value += ch;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch === '@') {
|
||||||
|
const keyEnd = id.indexOf('(', i);
|
||||||
|
// we find '@' but no '(' in lookahead or '(' is immediately after '@', invalid id
|
||||||
|
if (keyEnd === -1 || keyEnd === i + 1) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
key = id.slice(i + 1, keyEnd);
|
||||||
|
i = keyEnd;
|
||||||
|
isInValue = true;
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isValidUniversalId(result)) {
|
||||||
|
throw new Error(
|
||||||
|
`Invalid universal storage id: ${id}. It should be in format of @peer(\${peer});@type(\${type});@id(\${id});`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result as any;
|
||||||
|
}
|
||||||
|
|
||||||
export abstract class Storage<Opts extends StorageOptions = StorageOptions> {
|
export abstract class Storage<Opts extends StorageOptions = StorageOptions> {
|
||||||
abstract readonly storageType: StorageType;
|
abstract readonly storageType: StorageType;
|
||||||
abstract readonly connection: Connection;
|
abstract readonly connection: Connection;
|
||||||
@ -25,6 +96,10 @@ export abstract class Storage<Opts extends StorageOptions = StorageOptions> {
|
|||||||
return this.options.id;
|
return this.options.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get universalId() {
|
||||||
|
return universalId(this.options);
|
||||||
|
}
|
||||||
|
|
||||||
constructor(public readonly options: Opts) {}
|
constructor(public readonly options: Opts) {}
|
||||||
|
|
||||||
async connect() {
|
async connect() {
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
"@affine/core": "workspace:*",
|
"@affine/core": "workspace:*",
|
||||||
"@affine/i18n": "workspace:*",
|
"@affine/i18n": "workspace:*",
|
||||||
"@affine/native": "workspace:*",
|
"@affine/native": "workspace:*",
|
||||||
|
"@affine/nbstore": "workspace:*",
|
||||||
"@blocksuite/affine": "0.18.7",
|
"@blocksuite/affine": "0.18.7",
|
||||||
"@electron-forge/cli": "^7.3.0",
|
"@electron-forge/cli": "^7.3.0",
|
||||||
"@electron-forge/core": "^7.3.0",
|
"@electron-forge/core": "^7.3.0",
|
||||||
|
@ -1 +0,0 @@
|
|||||||
export type SpaceType = 'userspace' | 'workspace';
|
|
@ -2,9 +2,9 @@ import { ValidationResult } from '@affine/native';
|
|||||||
import fs from 'fs-extra';
|
import fs from 'fs-extra';
|
||||||
import { nanoid } from 'nanoid';
|
import { nanoid } from 'nanoid';
|
||||||
|
|
||||||
import { ensureSQLiteDB } from '../db/ensure-db';
|
|
||||||
import { logger } from '../logger';
|
import { logger } from '../logger';
|
||||||
import { mainRPC } from '../main-rpc';
|
import { mainRPC } from '../main-rpc';
|
||||||
|
import { ensureSQLiteDB } from '../nbstore/v1';
|
||||||
import { storeWorkspaceMeta } from '../workspace';
|
import { storeWorkspaceMeta } from '../workspace';
|
||||||
import { getWorkspaceDBPath, getWorkspacesBasePath } from '../workspace/meta';
|
import { getWorkspaceDBPath, getWorkspacesBasePath } from '../workspace/meta';
|
||||||
|
|
||||||
@ -69,14 +69,20 @@ function getDefaultDBFileName(name: string, id: string) {
|
|||||||
*
|
*
|
||||||
* It will just copy the file to the given path
|
* It will just copy the file to the given path
|
||||||
*/
|
*/
|
||||||
export async function saveDBFileAs(
|
export async function saveDBFileAs(id: string): Promise<SaveDBFileResult> {
|
||||||
workspaceId: string
|
|
||||||
): Promise<SaveDBFileResult> {
|
|
||||||
try {
|
try {
|
||||||
const db = await ensureSQLiteDB('workspace', workspaceId);
|
// TODO(@forehalo): use `nbstore` when it is ready
|
||||||
await db.checkpoint(); // make sure all changes (WAL) are written to db
|
// const storage = await ensureStorage(id);
|
||||||
const fakedResult = getFakedResult();
|
|
||||||
|
|
||||||
|
const storage = await ensureSQLiteDB('workspace', id);
|
||||||
|
await storage.checkpoint(); // make sure all changes (WAL) are written to db
|
||||||
|
const fakedResult = getFakedResult();
|
||||||
|
const dbPath = storage.path;
|
||||||
|
if (!dbPath) {
|
||||||
|
return {
|
||||||
|
error: 'DB_FILE_PATH_INVALID',
|
||||||
|
};
|
||||||
|
}
|
||||||
const ret =
|
const ret =
|
||||||
fakedResult ??
|
fakedResult ??
|
||||||
(await mainRPC.showSaveDialog({
|
(await mainRPC.showSaveDialog({
|
||||||
@ -91,8 +97,8 @@ export async function saveDBFileAs(
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
defaultPath: getDefaultDBFileName(
|
defaultPath: getDefaultDBFileName(
|
||||||
await db.getWorkspaceName(),
|
(await storage.getWorkspaceName()) ?? 'db',
|
||||||
workspaceId
|
id
|
||||||
),
|
),
|
||||||
message: 'Save Workspace as a SQLite Database file',
|
message: 'Save Workspace as a SQLite Database file',
|
||||||
}));
|
}));
|
||||||
@ -103,7 +109,7 @@ export async function saveDBFileAs(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
await fs.copyFile(db.path, filePath);
|
await fs.copyFile(dbPath, filePath);
|
||||||
logger.log('saved', filePath);
|
logger.log('saved', filePath);
|
||||||
if (!fakedResult) {
|
if (!fakedResult) {
|
||||||
mainRPC.showItemInFolder(filePath).catch(err => {
|
mainRPC.showItemInFolder(filePath).catch(err => {
|
||||||
@ -188,6 +194,47 @@ export async function loadDBFile(): Promise<LoadDBFileResult> {
|
|||||||
return { error: 'DB_FILE_PATH_INVALID' };
|
return { error: 'DB_FILE_PATH_INVALID' };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const workspaceId = nanoid(10);
|
||||||
|
return loadV1DBFile(originalPath, workspaceId);
|
||||||
|
|
||||||
|
// TODO(forehalo): use `nbstore` when it is ready
|
||||||
|
// let storage = new DocStorage(originalPath);
|
||||||
|
|
||||||
|
// // if imported db is not a valid v2 db, we will treat it as a v1 db
|
||||||
|
// if (!(await storage.validate())) {
|
||||||
|
// return loadV1DBFile(originalPath, workspaceId);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// // v2 import logic
|
||||||
|
// const internalFilePath = await getSpaceDBPath(
|
||||||
|
// 'local',
|
||||||
|
// 'workspace',
|
||||||
|
// workspaceId
|
||||||
|
// );
|
||||||
|
// await fs.ensureDir(await getWorkspacesBasePath());
|
||||||
|
// await fs.copy(originalPath, internalFilePath);
|
||||||
|
// logger.info(`loadDBFile, copy: ${originalPath} -> ${internalFilePath}`);
|
||||||
|
|
||||||
|
// storage = new DocStorage(internalFilePath);
|
||||||
|
// await storage.connect();
|
||||||
|
// await storage.setSpaceId(workspaceId);
|
||||||
|
// await storage.close();
|
||||||
|
|
||||||
|
// return {
|
||||||
|
// workspaceId,
|
||||||
|
// };
|
||||||
|
} catch (err) {
|
||||||
|
logger.error('loadDBFile', err);
|
||||||
|
return {
|
||||||
|
error: 'UNKNOWN_ERROR',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function loadV1DBFile(
|
||||||
|
originalPath: string,
|
||||||
|
workspaceId: string
|
||||||
|
): Promise<LoadDBFileResult> {
|
||||||
const { SqliteConnection } = await import('@affine/native');
|
const { SqliteConnection } = await import('@affine/native');
|
||||||
|
|
||||||
const validationResult = await SqliteConnection.validate(originalPath);
|
const validationResult = await SqliteConnection.validate(originalPath);
|
||||||
@ -196,8 +243,6 @@ export async function loadDBFile(): Promise<LoadDBFileResult> {
|
|||||||
return { error: 'DB_FILE_INVALID' }; // invalid db file
|
return { error: 'DB_FILE_INVALID' }; // invalid db file
|
||||||
}
|
}
|
||||||
|
|
||||||
// copy the db file to a new workspace id
|
|
||||||
const workspaceId = nanoid(10);
|
|
||||||
const internalFilePath = await getWorkspaceDBPath('workspace', workspaceId);
|
const internalFilePath = await getWorkspaceDBPath('workspace', workspaceId);
|
||||||
|
|
||||||
await fs.ensureDir(await getWorkspacesBasePath());
|
await fs.ensureDir(await getWorkspacesBasePath());
|
||||||
@ -209,11 +254,7 @@ export async function loadDBFile(): Promise<LoadDBFileResult> {
|
|||||||
mainDBPath: internalFilePath,
|
mainDBPath: internalFilePath,
|
||||||
});
|
});
|
||||||
|
|
||||||
return { workspaceId };
|
|
||||||
} catch (err) {
|
|
||||||
logger.error('loadDBFile', err);
|
|
||||||
return {
|
return {
|
||||||
error: 'UNKNOWN_ERROR',
|
workspaceId,
|
||||||
};
|
};
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -9,8 +9,8 @@ export const dialogHandlers = {
|
|||||||
loadDBFile: async () => {
|
loadDBFile: async () => {
|
||||||
return loadDBFile();
|
return loadDBFile();
|
||||||
},
|
},
|
||||||
saveDBFileAs: async (workspaceId: string) => {
|
saveDBFileAs: async (id: string) => {
|
||||||
return saveDBFileAs(workspaceId);
|
return saveDBFileAs(id);
|
||||||
},
|
},
|
||||||
selectDBFileLocation: async () => {
|
selectDBFileLocation: async () => {
|
||||||
return selectDBFileLocation();
|
return selectDBFileLocation();
|
||||||
|
@ -1,17 +1,24 @@
|
|||||||
import { dbEvents, dbHandlers } from './db';
|
|
||||||
import { dialogHandlers } from './dialog';
|
import { dialogHandlers } from './dialog';
|
||||||
|
import {
|
||||||
|
dbEventsV1,
|
||||||
|
dbHandlersV1,
|
||||||
|
nbstoreEvents,
|
||||||
|
nbstoreHandlers,
|
||||||
|
} from './nbstore';
|
||||||
import { provideExposed } from './provide';
|
import { provideExposed } from './provide';
|
||||||
import { workspaceEvents, workspaceHandlers } from './workspace';
|
import { workspaceEvents, workspaceHandlers } from './workspace';
|
||||||
|
|
||||||
export const handlers = {
|
export const handlers = {
|
||||||
db: dbHandlers,
|
db: dbHandlersV1,
|
||||||
|
nbstore: nbstoreHandlers,
|
||||||
workspace: workspaceHandlers,
|
workspace: workspaceHandlers,
|
||||||
dialog: dialogHandlers,
|
dialog: dialogHandlers,
|
||||||
};
|
};
|
||||||
|
|
||||||
export const events = {
|
export const events = {
|
||||||
db: dbEvents,
|
db: dbEventsV1,
|
||||||
workspace: workspaceEvents,
|
workspace: workspaceEvents,
|
||||||
|
nbstore: nbstoreEvents,
|
||||||
};
|
};
|
||||||
|
|
||||||
const getExposedMeta = () => {
|
const getExposedMeta = () => {
|
||||||
|
33
packages/frontend/apps/electron/src/helper/nbstore/blob.ts
Normal file
33
packages/frontend/apps/electron/src/helper/nbstore/blob.ts
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
import { type BlobRecord, BlobStorage, share } from '@affine/nbstore';
|
||||||
|
|
||||||
|
import { NativeDBConnection } from './db';
|
||||||
|
|
||||||
|
export class SqliteBlobStorage extends BlobStorage {
|
||||||
|
override connection = share(
|
||||||
|
new NativeDBConnection(this.peer, this.spaceType, this.spaceId)
|
||||||
|
);
|
||||||
|
|
||||||
|
get db() {
|
||||||
|
return this.connection.inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async get(key: string) {
|
||||||
|
return this.db.getBlob(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async set(blob: BlobRecord) {
|
||||||
|
await this.db.setBlob(blob);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async delete(key: string, permanently: boolean) {
|
||||||
|
await this.db.deleteBlob(key, permanently);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async release() {
|
||||||
|
await this.db.releaseBlobs();
|
||||||
|
}
|
||||||
|
|
||||||
|
override async list() {
|
||||||
|
return this.db.listBlobs();
|
||||||
|
}
|
||||||
|
}
|
40
packages/frontend/apps/electron/src/helper/nbstore/db.ts
Normal file
40
packages/frontend/apps/electron/src/helper/nbstore/db.ts
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
import path from 'node:path';
|
||||||
|
|
||||||
|
import { DocStorage as NativeDocStorage } from '@affine/native';
|
||||||
|
import { Connection, type SpaceType } from '@affine/nbstore';
|
||||||
|
import fs from 'fs-extra';
|
||||||
|
|
||||||
|
import { logger } from '../logger';
|
||||||
|
import { getSpaceDBPath } from '../workspace/meta';
|
||||||
|
|
||||||
|
export class NativeDBConnection extends Connection<NativeDocStorage> {
|
||||||
|
constructor(
|
||||||
|
private readonly peer: string,
|
||||||
|
private readonly type: SpaceType,
|
||||||
|
private readonly id: string
|
||||||
|
) {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
async getDBPath() {
|
||||||
|
return await getSpaceDBPath(this.peer, this.type, this.id);
|
||||||
|
}
|
||||||
|
|
||||||
|
override get shareId(): string {
|
||||||
|
return `sqlite:${this.peer}:${this.type}:${this.id}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async doConnect() {
|
||||||
|
const dbPath = await this.getDBPath();
|
||||||
|
await fs.ensureDir(path.dirname(dbPath));
|
||||||
|
const conn = new NativeDocStorage(dbPath);
|
||||||
|
await conn.connect();
|
||||||
|
logger.info('[nbstore] connection established', this.shareId);
|
||||||
|
return conn;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async doDisconnect(conn: NativeDocStorage) {
|
||||||
|
await conn.close();
|
||||||
|
logger.info('[nbstore] connection closed', this.shareId);
|
||||||
|
}
|
||||||
|
}
|
83
packages/frontend/apps/electron/src/helper/nbstore/doc.ts
Normal file
83
packages/frontend/apps/electron/src/helper/nbstore/doc.ts
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
import {
|
||||||
|
type DocClocks,
|
||||||
|
type DocRecord,
|
||||||
|
DocStorage,
|
||||||
|
type DocUpdate,
|
||||||
|
share,
|
||||||
|
} from '@affine/nbstore';
|
||||||
|
|
||||||
|
import { NativeDBConnection } from './db';
|
||||||
|
|
||||||
|
export class SqliteDocStorage extends DocStorage {
|
||||||
|
override connection = share(
|
||||||
|
new NativeDBConnection(this.peer, this.spaceType, this.spaceId)
|
||||||
|
);
|
||||||
|
|
||||||
|
get db() {
|
||||||
|
return this.connection.inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async pushDocUpdate(update: DocUpdate) {
|
||||||
|
const timestamp = await this.db.pushUpdate(update.docId, update.bin);
|
||||||
|
|
||||||
|
return { docId: update.docId, timestamp };
|
||||||
|
}
|
||||||
|
|
||||||
|
override async deleteDoc(docId: string) {
|
||||||
|
await this.db.deleteDoc(docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getDocTimestamps(after?: Date) {
|
||||||
|
const clocks = await this.db.getDocClocks(after);
|
||||||
|
|
||||||
|
return clocks.reduce((ret, cur) => {
|
||||||
|
ret[cur.docId] = cur.timestamp;
|
||||||
|
return ret;
|
||||||
|
}, {} as DocClocks);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getDocTimestamp(docId: string) {
|
||||||
|
return this.db.getDocClock(docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async getDocSnapshot(docId: string) {
|
||||||
|
const snapshot = await this.db.getDocSnapshot(docId);
|
||||||
|
|
||||||
|
if (!snapshot) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
docId,
|
||||||
|
bin: snapshot.data,
|
||||||
|
timestamp: snapshot.timestamp,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async setDocSnapshot(
|
||||||
|
snapshot: DocRecord
|
||||||
|
): Promise<boolean> {
|
||||||
|
return this.db.setDocSnapshot({
|
||||||
|
docId: snapshot.docId,
|
||||||
|
data: Buffer.from(snapshot.bin),
|
||||||
|
timestamp: new Date(snapshot.timestamp),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async getDocUpdates(docId: string) {
|
||||||
|
return this.db.getDocUpdates(docId).then(updates =>
|
||||||
|
updates.map(update => ({
|
||||||
|
docId,
|
||||||
|
bin: update.data,
|
||||||
|
timestamp: update.createdAt,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override markUpdatesMerged(docId: string, updates: DocRecord[]) {
|
||||||
|
return this.db.markUpdatesMerged(
|
||||||
|
docId,
|
||||||
|
updates.map(update => update.timestamp)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
143
packages/frontend/apps/electron/src/helper/nbstore/handlers.ts
Normal file
143
packages/frontend/apps/electron/src/helper/nbstore/handlers.ts
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
import {
|
||||||
|
type BlobRecord,
|
||||||
|
type DocClock,
|
||||||
|
type DocUpdate,
|
||||||
|
} from '@affine/nbstore';
|
||||||
|
|
||||||
|
import type { MainEventRegister } from '../type';
|
||||||
|
import {
|
||||||
|
type ConnectionStatus,
|
||||||
|
ensureStorage,
|
||||||
|
getStorage,
|
||||||
|
onConnectionChanged,
|
||||||
|
} from './storage';
|
||||||
|
|
||||||
|
export const nbstoreHandlers = {
|
||||||
|
connect: async (id: string) => {
|
||||||
|
await ensureStorage(id);
|
||||||
|
},
|
||||||
|
|
||||||
|
close: async (id: string) => {
|
||||||
|
const store = getStorage(id);
|
||||||
|
|
||||||
|
if (store) {
|
||||||
|
await store.disconnect();
|
||||||
|
// The store may be shared with other tabs, so we don't delete it from cache
|
||||||
|
// the underlying connection will handle the close correctly
|
||||||
|
// STORE_CACHE.delete(`${spaceType}:${spaceId}`);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
pushDocUpdate: async (id: string, update: DocUpdate) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('doc').pushDocUpdate(update);
|
||||||
|
},
|
||||||
|
|
||||||
|
getDoc: async (id: string, docId: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('doc').getDoc(docId);
|
||||||
|
},
|
||||||
|
|
||||||
|
deleteDoc: async (id: string, docId: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('doc').deleteDoc(docId);
|
||||||
|
},
|
||||||
|
|
||||||
|
getDocTimestamps: async (id: string, after?: Date) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('doc').getDocTimestamps(after);
|
||||||
|
},
|
||||||
|
|
||||||
|
getDocTimestamp: async (id: string, docId: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('doc').getDocTimestamp(docId);
|
||||||
|
},
|
||||||
|
|
||||||
|
setBlob: async (id: string, blob: BlobRecord) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('blob').set(blob);
|
||||||
|
},
|
||||||
|
|
||||||
|
getBlob: async (id: string, key: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('blob').get(key);
|
||||||
|
},
|
||||||
|
|
||||||
|
deleteBlob: async (id: string, key: string, permanently: boolean) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('blob').delete(key, permanently);
|
||||||
|
},
|
||||||
|
|
||||||
|
listBlobs: async (id: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('blob').list();
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseBlobs: async (id: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('blob').release();
|
||||||
|
},
|
||||||
|
|
||||||
|
getPeerRemoteClocks: async (id: string, peer: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').getPeerRemoteClocks(peer);
|
||||||
|
},
|
||||||
|
|
||||||
|
getPeerRemoteClock: async (id: string, peer: string, docId: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').getPeerRemoteClock(peer, docId);
|
||||||
|
},
|
||||||
|
|
||||||
|
setPeerRemoteClock: async (id: string, peer: string, clock: DocClock) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').setPeerRemoteClock(peer, clock);
|
||||||
|
},
|
||||||
|
|
||||||
|
getPeerPulledRemoteClocks: async (id: string, peer: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').getPeerPulledRemoteClocks(peer);
|
||||||
|
},
|
||||||
|
|
||||||
|
getPeerPulledRemoteClock: async (id: string, peer: string, docId: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').getPeerPulledRemoteClock(peer, docId);
|
||||||
|
},
|
||||||
|
|
||||||
|
setPeerPulledRemoteClock: async (
|
||||||
|
id: string,
|
||||||
|
peer: string,
|
||||||
|
clock: DocClock
|
||||||
|
) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').setPeerPulledRemoteClock(peer, clock);
|
||||||
|
},
|
||||||
|
|
||||||
|
getPeerPushedClocks: async (id: string, peer: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').getPeerPushedClocks(peer);
|
||||||
|
},
|
||||||
|
|
||||||
|
getPeerPushedClock: async (id: string, peer: string, docId: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').getPeerPushedClock(peer, docId);
|
||||||
|
},
|
||||||
|
|
||||||
|
setPeerPushedClock: async (id: string, peer: string, clock: DocClock) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').setPeerPushedClock(peer, clock);
|
||||||
|
},
|
||||||
|
|
||||||
|
clearClocks: async (id: string) => {
|
||||||
|
const store = await ensureStorage(id);
|
||||||
|
return store.get('sync').clearClocks();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export const nbstoreEvents = {
|
||||||
|
onConnectionStatusChanged: (fn: (payload: ConnectionStatus) => void) => {
|
||||||
|
const sub = onConnectionChanged(fn);
|
||||||
|
return () => {
|
||||||
|
sub.unsubscribe();
|
||||||
|
};
|
||||||
|
},
|
||||||
|
} satisfies Record<string, MainEventRegister>;
|
@ -0,0 +1,4 @@
|
|||||||
|
export { nbstoreEvents, nbstoreHandlers } from './handlers';
|
||||||
|
export * from './storage';
|
||||||
|
export { dbEvents as dbEventsV1, dbHandlers as dbHandlersV1 } from './v1';
|
||||||
|
export { universalId } from '@affine/nbstore';
|
127
packages/frontend/apps/electron/src/helper/nbstore/storage.ts
Normal file
127
packages/frontend/apps/electron/src/helper/nbstore/storage.ts
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
import {
|
||||||
|
parseUniversalId,
|
||||||
|
SpaceStorage,
|
||||||
|
type SpaceType,
|
||||||
|
type StorageType,
|
||||||
|
} from '@affine/nbstore';
|
||||||
|
import { Subject } from 'rxjs';
|
||||||
|
import { applyUpdate, Doc as YDoc } from 'yjs';
|
||||||
|
|
||||||
|
import { logger } from '../logger';
|
||||||
|
import { SqliteBlobStorage } from './blob';
|
||||||
|
import { NativeDBConnection } from './db';
|
||||||
|
import { SqliteDocStorage } from './doc';
|
||||||
|
import { SqliteSyncStorage } from './sync';
|
||||||
|
|
||||||
|
export class SqliteSpaceStorage extends SpaceStorage {
|
||||||
|
get connection() {
|
||||||
|
const docStore = this.get('doc');
|
||||||
|
|
||||||
|
if (!docStore) {
|
||||||
|
throw new Error('doc store not found');
|
||||||
|
}
|
||||||
|
|
||||||
|
const connection = docStore.connection;
|
||||||
|
|
||||||
|
if (!(connection instanceof NativeDBConnection)) {
|
||||||
|
throw new Error('doc store connection is not a Sqlite connection');
|
||||||
|
}
|
||||||
|
|
||||||
|
return connection;
|
||||||
|
}
|
||||||
|
|
||||||
|
async getDBPath() {
|
||||||
|
return this.connection.getDBPath();
|
||||||
|
}
|
||||||
|
|
||||||
|
async getWorkspaceName() {
|
||||||
|
const docStore = this.tryGet('doc');
|
||||||
|
|
||||||
|
if (!docStore) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const doc = await docStore.getDoc(docStore.spaceId);
|
||||||
|
if (!doc) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ydoc = new YDoc();
|
||||||
|
applyUpdate(ydoc, doc.bin);
|
||||||
|
return ydoc.getMap('meta').get('name') as string;
|
||||||
|
}
|
||||||
|
|
||||||
|
async checkpoint() {
|
||||||
|
await this.connection.inner.checkpoint();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const STORE_CACHE = new Map<string, SqliteSpaceStorage>();
|
||||||
|
export interface ConnectionStatus {
|
||||||
|
peer: string;
|
||||||
|
spaceType: SpaceType;
|
||||||
|
spaceId: string;
|
||||||
|
storage: StorageType;
|
||||||
|
status: string;
|
||||||
|
error?: Error;
|
||||||
|
}
|
||||||
|
const CONNECTION$ = new Subject<ConnectionStatus>();
|
||||||
|
|
||||||
|
process.on('beforeExit', () => {
|
||||||
|
CONNECTION$.complete();
|
||||||
|
STORE_CACHE.forEach(store => {
|
||||||
|
store.destroy().catch(err => {
|
||||||
|
logger.error('[nbstore] destroy store failed', err);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
export function onConnectionChanged(fn: (payload: ConnectionStatus) => void) {
|
||||||
|
return CONNECTION$.subscribe({ next: fn });
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getStorage(universalId: string) {
|
||||||
|
return STORE_CACHE.get(universalId);
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function ensureStorage(universalId: string) {
|
||||||
|
const { peer, type, id } = parseUniversalId(universalId);
|
||||||
|
let store = STORE_CACHE.get(universalId);
|
||||||
|
|
||||||
|
if (!store) {
|
||||||
|
const opts = {
|
||||||
|
peer,
|
||||||
|
type,
|
||||||
|
id,
|
||||||
|
};
|
||||||
|
|
||||||
|
store = new SqliteSpaceStorage([
|
||||||
|
new SqliteDocStorage(opts),
|
||||||
|
new SqliteBlobStorage(opts),
|
||||||
|
new SqliteSyncStorage(opts),
|
||||||
|
]);
|
||||||
|
|
||||||
|
store.on('connection', ({ storage, status, error }) => {
|
||||||
|
CONNECTION$.next({
|
||||||
|
peer,
|
||||||
|
spaceType: type,
|
||||||
|
spaceId: id,
|
||||||
|
storage,
|
||||||
|
status,
|
||||||
|
error,
|
||||||
|
});
|
||||||
|
logger.info(
|
||||||
|
`[nbstore] status changed: ${status}, spaceType: ${type}, spaceId: ${id}, storage: ${storage}`
|
||||||
|
);
|
||||||
|
if (error) {
|
||||||
|
logger.error(`[nbstore] connection error: ${error}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
await store.connect();
|
||||||
|
|
||||||
|
STORE_CACHE.set(universalId, store);
|
||||||
|
}
|
||||||
|
|
||||||
|
return store;
|
||||||
|
}
|
70
packages/frontend/apps/electron/src/helper/nbstore/sync.ts
Normal file
70
packages/frontend/apps/electron/src/helper/nbstore/sync.ts
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
import {
|
||||||
|
type DocClock,
|
||||||
|
type DocClocks,
|
||||||
|
share,
|
||||||
|
SyncStorage,
|
||||||
|
} from '@affine/nbstore';
|
||||||
|
|
||||||
|
import { NativeDBConnection } from './db';
|
||||||
|
|
||||||
|
export class SqliteSyncStorage extends SyncStorage {
|
||||||
|
override connection = share(
|
||||||
|
new NativeDBConnection(this.peer, this.spaceType, this.spaceId)
|
||||||
|
);
|
||||||
|
|
||||||
|
get db() {
|
||||||
|
return this.connection.inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerRemoteClocks(peer: string) {
|
||||||
|
const records = await this.db.getPeerRemoteClocks(peer);
|
||||||
|
return records.reduce((clocks, { docId, timestamp }) => {
|
||||||
|
clocks[docId] = timestamp;
|
||||||
|
return clocks;
|
||||||
|
}, {} as DocClocks);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerRemoteClock(peer: string, docId: string) {
|
||||||
|
return this.db.getPeerRemoteClock(peer, docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async setPeerRemoteClock(peer: string, clock: DocClock) {
|
||||||
|
await this.db.setPeerRemoteClock(peer, clock.docId, clock.timestamp);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerPulledRemoteClock(peer: string, docId: string) {
|
||||||
|
return this.db.getPeerPulledRemoteClock(peer, docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerPulledRemoteClocks(peer: string) {
|
||||||
|
const records = await this.db.getPeerPulledRemoteClocks(peer);
|
||||||
|
return records.reduce((clocks, { docId, timestamp }) => {
|
||||||
|
clocks[docId] = timestamp;
|
||||||
|
return clocks;
|
||||||
|
}, {} as DocClocks);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async setPeerPulledRemoteClock(peer: string, clock: DocClock) {
|
||||||
|
await this.db.setPeerPulledRemoteClock(peer, clock.docId, clock.timestamp);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerPushedClocks(peer: string) {
|
||||||
|
const records = await this.db.getPeerPushedClocks(peer);
|
||||||
|
return records.reduce((clocks, { docId, timestamp }) => {
|
||||||
|
clocks[docId] = timestamp;
|
||||||
|
return clocks;
|
||||||
|
}, {} as DocClocks);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async getPeerPushedClock(peer: string, docId: string) {
|
||||||
|
return this.db.getPeerPushedClock(peer, docId);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async setPeerPushedClock(peer: string, clock: DocClock) {
|
||||||
|
await this.db.setPeerPushedClock(peer, clock.docId, clock.timestamp);
|
||||||
|
}
|
||||||
|
|
||||||
|
override async clearClocks() {
|
||||||
|
await this.db.clearClocks();
|
||||||
|
}
|
||||||
|
}
|
@ -2,7 +2,7 @@ import type { InsertRow } from '@affine/native';
|
|||||||
import { SqliteConnection } from '@affine/native';
|
import { SqliteConnection } from '@affine/native';
|
||||||
import type { ByteKVBehavior } from '@toeverything/infra/storage';
|
import type { ByteKVBehavior } from '@toeverything/infra/storage';
|
||||||
|
|
||||||
import { logger } from '../logger';
|
import { logger } from '../../logger';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A base class for SQLite DB adapter that provides basic methods around updates & blobs
|
* A base class for SQLite DB adapter that provides basic methods around updates & blobs
|
@ -1,5 +1,6 @@
|
|||||||
import { logger } from '../logger';
|
import type { SpaceType } from '@affine/nbstore';
|
||||||
import type { SpaceType } from './types';
|
|
||||||
|
import { logger } from '../../logger';
|
||||||
import type { WorkspaceSQLiteDB } from './workspace-db-adapter';
|
import type { WorkspaceSQLiteDB } from './workspace-db-adapter';
|
||||||
import { openWorkspaceDatabase } from './workspace-db-adapter';
|
import { openWorkspaceDatabase } from './workspace-db-adapter';
|
||||||
|
|
@ -1,7 +1,8 @@
|
|||||||
import { mainRPC } from '../main-rpc';
|
import type { SpaceType } from '@affine/nbstore';
|
||||||
import type { MainEventRegister } from '../type';
|
|
||||||
|
import { mainRPC } from '../../main-rpc';
|
||||||
|
import type { MainEventRegister } from '../../type';
|
||||||
import { ensureSQLiteDB } from './ensure-db';
|
import { ensureSQLiteDB } from './ensure-db';
|
||||||
import type { SpaceType } from './types';
|
|
||||||
|
|
||||||
export * from './ensure-db';
|
export * from './ensure-db';
|
||||||
|
|
@ -1,12 +1,12 @@
|
|||||||
|
import type { SpaceType } from '@affine/nbstore';
|
||||||
import { AsyncLock } from '@toeverything/infra/utils';
|
import { AsyncLock } from '@toeverything/infra/utils';
|
||||||
import { Subject } from 'rxjs';
|
import { Subject } from 'rxjs';
|
||||||
import { applyUpdate, Doc as YDoc } from 'yjs';
|
import { applyUpdate, Doc as YDoc } from 'yjs';
|
||||||
|
|
||||||
import { logger } from '../logger';
|
import { logger } from '../../logger';
|
||||||
import { getWorkspaceMeta } from '../workspace/meta';
|
import { getWorkspaceMeta } from '../../workspace/meta';
|
||||||
import { SQLiteAdapter } from './db-adapter';
|
import { SQLiteAdapter } from './db-adapter';
|
||||||
import { mergeUpdate } from './merge-update';
|
import { mergeUpdate } from './merge-update';
|
||||||
import type { SpaceType } from './types';
|
|
||||||
|
|
||||||
const TRIM_SIZE = 1;
|
const TRIM_SIZE = 1;
|
||||||
|
|
@ -2,17 +2,17 @@ import path from 'node:path';
|
|||||||
|
|
||||||
import fs from 'fs-extra';
|
import fs from 'fs-extra';
|
||||||
|
|
||||||
import { ensureSQLiteDB } from '../db/ensure-db';
|
|
||||||
import { logger } from '../logger';
|
import { logger } from '../logger';
|
||||||
|
import { ensureSQLiteDB } from '../nbstore/v1/ensure-db';
|
||||||
import type { WorkspaceMeta } from '../type';
|
import type { WorkspaceMeta } from '../type';
|
||||||
import {
|
import {
|
||||||
getDeletedWorkspacesBasePath,
|
getDeletedWorkspacesBasePath,
|
||||||
getWorkspaceBasePath,
|
getWorkspaceBasePathV1,
|
||||||
getWorkspaceMeta,
|
getWorkspaceMeta,
|
||||||
} from './meta';
|
} from './meta';
|
||||||
|
|
||||||
export async function deleteWorkspace(id: string) {
|
export async function deleteWorkspace(id: string) {
|
||||||
const basePath = await getWorkspaceBasePath('workspace', id);
|
const basePath = await getWorkspaceBasePathV1('workspace', id);
|
||||||
const movedPath = path.join(await getDeletedWorkspacesBasePath(), `${id}`);
|
const movedPath = path.join(await getDeletedWorkspacesBasePath(), `${id}`);
|
||||||
try {
|
try {
|
||||||
const db = await ensureSQLiteDB('workspace', id);
|
const db = await ensureSQLiteDB('workspace', id);
|
||||||
@ -30,7 +30,7 @@ export async function storeWorkspaceMeta(
|
|||||||
meta: Partial<WorkspaceMeta>
|
meta: Partial<WorkspaceMeta>
|
||||||
) {
|
) {
|
||||||
try {
|
try {
|
||||||
const basePath = await getWorkspaceBasePath('workspace', workspaceId);
|
const basePath = await getWorkspaceBasePathV1('workspace', workspaceId);
|
||||||
await fs.ensureDir(basePath);
|
await fs.ensureDir(basePath);
|
||||||
const metaPath = path.join(basePath, 'meta.json');
|
const metaPath = path.join(basePath, 'meta.json');
|
||||||
const currentMeta = await getWorkspaceMeta('workspace', workspaceId);
|
const currentMeta = await getWorkspaceMeta('workspace', workspaceId);
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import path from 'node:path';
|
import path from 'node:path';
|
||||||
|
|
||||||
|
import type { SpaceType } from '@affine/nbstore';
|
||||||
import fs from 'fs-extra';
|
import fs from 'fs-extra';
|
||||||
|
|
||||||
import { isWindows } from '../../shared/utils';
|
import { isWindows } from '../../shared/utils';
|
||||||
import type { SpaceType } from '../db/types';
|
|
||||||
import { logger } from '../logger';
|
import { logger } from '../logger';
|
||||||
import { mainRPC } from '../main-rpc';
|
import { mainRPC } from '../main-rpc';
|
||||||
import type { WorkspaceMeta } from '../type';
|
import type { WorkspaceMeta } from '../type';
|
||||||
@ -22,7 +22,7 @@ export async function getWorkspacesBasePath() {
|
|||||||
return path.join(await getAppDataPath(), 'workspaces');
|
return path.join(await getAppDataPath(), 'workspaces');
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getWorkspaceBasePath(
|
export async function getWorkspaceBasePathV1(
|
||||||
spaceType: SpaceType,
|
spaceType: SpaceType,
|
||||||
workspaceId: string
|
workspaceId: string
|
||||||
) {
|
) {
|
||||||
@ -33,6 +33,34 @@ export async function getWorkspaceBasePath(
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function getSpaceBasePath(spaceType: SpaceType) {
|
||||||
|
return path.join(
|
||||||
|
await getAppDataPath(),
|
||||||
|
spaceType === 'userspace' ? 'userspaces' : 'workspaces'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function escapeFilename(name: string) {
|
||||||
|
// replace all special characters with '_' and replace repeated '_' with a single '_' and remove trailing '_'
|
||||||
|
return name
|
||||||
|
.replaceAll(/[\\/!@#$%^&*()+~`"':;,?<>|]/g, '_')
|
||||||
|
.replaceAll(/_+/g, '_')
|
||||||
|
.replace(/_+$/, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getSpaceDBPath(
|
||||||
|
peer: string,
|
||||||
|
spaceType: SpaceType,
|
||||||
|
id: string
|
||||||
|
) {
|
||||||
|
return path.join(
|
||||||
|
await getSpaceBasePath(spaceType),
|
||||||
|
escapeFilename(peer),
|
||||||
|
id,
|
||||||
|
'storage.db'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
export async function getDeletedWorkspacesBasePath() {
|
export async function getDeletedWorkspacesBasePath() {
|
||||||
return path.join(await getAppDataPath(), 'deleted-workspaces');
|
return path.join(await getAppDataPath(), 'deleted-workspaces');
|
||||||
}
|
}
|
||||||
@ -42,7 +70,7 @@ export async function getWorkspaceDBPath(
|
|||||||
workspaceId: string
|
workspaceId: string
|
||||||
) {
|
) {
|
||||||
return path.join(
|
return path.join(
|
||||||
await getWorkspaceBasePath(spaceType, workspaceId),
|
await getWorkspaceBasePathV1(spaceType, workspaceId),
|
||||||
'storage.db'
|
'storage.db'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -52,7 +80,7 @@ export async function getWorkspaceMetaPath(
|
|||||||
workspaceId: string
|
workspaceId: string
|
||||||
) {
|
) {
|
||||||
return path.join(
|
return path.join(
|
||||||
await getWorkspaceBasePath(spaceType, workspaceId),
|
await getWorkspaceBasePathV1(spaceType, workspaceId),
|
||||||
'meta.json'
|
'meta.json'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -66,7 +94,7 @@ export async function getWorkspaceMeta(
|
|||||||
workspaceId: string
|
workspaceId: string
|
||||||
): Promise<WorkspaceMeta> {
|
): Promise<WorkspaceMeta> {
|
||||||
try {
|
try {
|
||||||
const basePath = await getWorkspaceBasePath(spaceType, workspaceId);
|
const basePath = await getWorkspaceBasePathV1(spaceType, workspaceId);
|
||||||
const metaPath = await getWorkspaceMetaPath(spaceType, workspaceId);
|
const metaPath = await getWorkspaceMetaPath(spaceType, workspaceId);
|
||||||
if (
|
if (
|
||||||
!(await fs
|
!(await fs
|
||||||
|
@ -54,7 +54,7 @@ afterAll(() => {
|
|||||||
|
|
||||||
test('can get a valid WorkspaceSQLiteDB', async () => {
|
test('can get a valid WorkspaceSQLiteDB', async () => {
|
||||||
const { ensureSQLiteDB } = await import(
|
const { ensureSQLiteDB } = await import(
|
||||||
'@affine/electron/helper/db/ensure-db'
|
'@affine/electron/helper/nbstore/v1/ensure-db'
|
||||||
);
|
);
|
||||||
const workspaceId = v4();
|
const workspaceId = v4();
|
||||||
const db0 = await ensureSQLiteDB('workspace', workspaceId);
|
const db0 = await ensureSQLiteDB('workspace', workspaceId);
|
||||||
@ -71,7 +71,7 @@ test('can get a valid WorkspaceSQLiteDB', async () => {
|
|||||||
|
|
||||||
test('db should be destroyed when app quits', async () => {
|
test('db should be destroyed when app quits', async () => {
|
||||||
const { ensureSQLiteDB } = await import(
|
const { ensureSQLiteDB } = await import(
|
||||||
'@affine/electron/helper/db/ensure-db'
|
'@affine/electron/helper/nbstore/v1/ensure-db'
|
||||||
);
|
);
|
||||||
const workspaceId = v4();
|
const workspaceId = v4();
|
||||||
const db0 = await ensureSQLiteDB('workspace', workspaceId);
|
const db0 = await ensureSQLiteDB('workspace', workspaceId);
|
||||||
@ -91,7 +91,7 @@ test('db should be destroyed when app quits', async () => {
|
|||||||
|
|
||||||
test('db should be removed in db$Map after destroyed', async () => {
|
test('db should be removed in db$Map after destroyed', async () => {
|
||||||
const { ensureSQLiteDB, db$Map } = await import(
|
const { ensureSQLiteDB, db$Map } = await import(
|
||||||
'@affine/electron/helper/db/ensure-db'
|
'@affine/electron/helper/nbstore/v1/ensure-db'
|
||||||
);
|
);
|
||||||
const workspaceId = v4();
|
const workspaceId = v4();
|
||||||
const db = await ensureSQLiteDB('workspace', workspaceId);
|
const db = await ensureSQLiteDB('workspace', workspaceId);
|
||||||
|
@ -26,7 +26,7 @@ afterAll(() => {
|
|||||||
|
|
||||||
test('can create new db file if not exists', async () => {
|
test('can create new db file if not exists', async () => {
|
||||||
const { openWorkspaceDatabase } = await import(
|
const { openWorkspaceDatabase } = await import(
|
||||||
'@affine/electron/helper/db/workspace-db-adapter'
|
'@affine/electron/helper/nbstore/v1/workspace-db-adapter'
|
||||||
);
|
);
|
||||||
const workspaceId = v4();
|
const workspaceId = v4();
|
||||||
const db = await openWorkspaceDatabase('workspace', workspaceId);
|
const db = await openWorkspaceDatabase('workspace', workspaceId);
|
||||||
@ -41,7 +41,7 @@ test('can create new db file if not exists', async () => {
|
|||||||
|
|
||||||
test('on destroy, check if resources have been released', async () => {
|
test('on destroy, check if resources have been released', async () => {
|
||||||
const { openWorkspaceDatabase } = await import(
|
const { openWorkspaceDatabase } = await import(
|
||||||
'@affine/electron/helper/db/workspace-db-adapter'
|
'@affine/electron/helper/nbstore/v1/workspace-db-adapter'
|
||||||
);
|
);
|
||||||
const workspaceId = v4();
|
const workspaceId = v4();
|
||||||
const db = await openWorkspaceDatabase('workspace', workspaceId);
|
const db = await openWorkspaceDatabase('workspace', workspaceId);
|
||||||
|
@ -1 +0,0 @@
|
|||||||
DATABASE_URL="sqlite:affine.db"
|
|
@ -6,38 +6,17 @@ version = "0.0.0"
|
|||||||
[lib]
|
[lib]
|
||||||
crate-type = ["rlib", "cdylib"]
|
crate-type = ["rlib", "cdylib"]
|
||||||
|
|
||||||
[features]
|
|
||||||
noop = ["napi/noop", "napi-derive/noop"]
|
|
||||||
|
|
||||||
[[bench]]
|
|
||||||
name = "hashcash"
|
|
||||||
harness = false
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
affine_common = { workspace = true }
|
affine_common = { workspace = true }
|
||||||
affine_schema = { path = "./schema" }
|
affine_sqlite_v1 = { path = "./sqlite_v1" }
|
||||||
anyhow = { workspace = true }
|
affine_nbstore = { path = "./nbstore" }
|
||||||
chrono = { workspace = true }
|
|
||||||
criterion2 = { workspace = true }
|
|
||||||
napi = { workspace = true }
|
napi = { workspace = true }
|
||||||
napi-derive = { workspace = true }
|
napi-derive = { workspace = true }
|
||||||
notify = { workspace = true, features = ["serde"] }
|
|
||||||
once_cell = { workspace = true }
|
once_cell = { workspace = true }
|
||||||
parking_lot = { workspace = true }
|
|
||||||
rand = { workspace = true }
|
|
||||||
serde = { workspace = true }
|
|
||||||
serde_json = { workspace = true }
|
|
||||||
sha3 = { workspace = true }
|
|
||||||
sqlx = { workspace = true, default-features = false, features = ["chrono", "macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls"] }
|
sqlx = { workspace = true, default-features = false, features = ["chrono", "macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls"] }
|
||||||
tokio = { workspace = true, features = ["full"] }
|
tokio = { workspace = true, features = ["full"] }
|
||||||
uuid = { workspace = true, features = ["fast-rng", "serde", "v4"] }
|
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
rayon = { workspace = true }
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
affine_schema = { path = "./schema" }
|
|
||||||
dotenv = { workspace = true }
|
|
||||||
napi-build = { workspace = true }
|
napi-build = { workspace = true }
|
||||||
sqlx = { workspace = true, default-features = false, features = ["chrono", "json", "macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls"] }
|
sqlx = { workspace = true, default-features = false, features = ["chrono", "json", "macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls"] }
|
||||||
tokio = { workspace = true, features = ["full"] }
|
tokio = { workspace = true, features = ["full"] }
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import test from 'ava';
|
|
||||||
import { fileURLToPath } from 'node:url';
|
import { fileURLToPath } from 'node:url';
|
||||||
|
|
||||||
|
import test from 'ava';
|
||||||
|
|
||||||
import { SqliteConnection, ValidationResult } from '../index';
|
import { SqliteConnection, ValidationResult } from '../index';
|
||||||
|
|
||||||
test('db validate', async t => {
|
test('db validate', async t => {
|
||||||
|
@ -1,34 +1,5 @@
|
|||||||
use sqlx::sqlite::SqliteConnectOptions;
|
|
||||||
use std::fs;
|
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() -> Result<(), std::io::Error> {
|
async fn main() -> Result<(), std::io::Error> {
|
||||||
dotenv::dotenv().ok();
|
|
||||||
|
|
||||||
// always start with a fresh database to have
|
|
||||||
// latest db schema
|
|
||||||
let db_path = "../../../affine.db";
|
|
||||||
|
|
||||||
// check if db exists and then remove file
|
|
||||||
if fs::metadata(db_path).is_ok() {
|
|
||||||
fs::remove_file(db_path)?;
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(not(feature = "noop"))]
|
|
||||||
napi_build::setup();
|
napi_build::setup();
|
||||||
let options = SqliteConnectOptions::new()
|
|
||||||
.filename(db_path)
|
|
||||||
.journal_mode(sqlx::sqlite::SqliteJournalMode::Off)
|
|
||||||
.locking_mode(sqlx::sqlite::SqliteLockingMode::Exclusive)
|
|
||||||
.create_if_missing(true);
|
|
||||||
let pool = sqlx::sqlite::SqlitePoolOptions::new()
|
|
||||||
.max_connections(1)
|
|
||||||
.connect_with(options)
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
sqlx::query(affine_schema::SCHEMA)
|
|
||||||
.execute(&pool)
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
43
packages/frontend/native/event.d.ts
vendored
43
packages/frontend/native/event.d.ts
vendored
@ -1,43 +0,0 @@
|
|||||||
export interface NotifyEvent {
|
|
||||||
type: EventKind;
|
|
||||||
paths: string[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export type EventKind =
|
|
||||||
| 'any'
|
|
||||||
| 'other'
|
|
||||||
| {
|
|
||||||
remove: {
|
|
||||||
kind: 'any' | 'file' | 'folder' | 'other';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
| {
|
|
||||||
create: {
|
|
||||||
kind: 'any' | 'file' | 'folder' | 'other';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
| {
|
|
||||||
modify:
|
|
||||||
| {
|
|
||||||
kind: 'any' | 'other';
|
|
||||||
}
|
|
||||||
| {
|
|
||||||
kind: 'data';
|
|
||||||
mode: 'any' | 'size' | 'content' | 'other';
|
|
||||||
}
|
|
||||||
| {
|
|
||||||
kind: 'metadata';
|
|
||||||
mode:
|
|
||||||
| 'any'
|
|
||||||
| 'access-time'
|
|
||||||
| 'write-time'
|
|
||||||
| 'permissions'
|
|
||||||
| 'ownership'
|
|
||||||
| 'extended'
|
|
||||||
| 'other';
|
|
||||||
}
|
|
||||||
| {
|
|
||||||
kind: 'rename';
|
|
||||||
mode: 'any' | 'to' | 'from' | 'both' | 'other';
|
|
||||||
};
|
|
||||||
};
|
|
77
packages/frontend/native/index.d.ts
vendored
77
packages/frontend/native/index.d.ts
vendored
@ -1,5 +1,43 @@
|
|||||||
/* auto-generated by NAPI-RS */
|
/* auto-generated by NAPI-RS */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
export declare class DocStorage {
|
||||||
|
constructor(path: string)
|
||||||
|
/** Initialize the database and run migrations. */
|
||||||
|
connect(): Promise<void>
|
||||||
|
close(): Promise<void>
|
||||||
|
get isClosed(): Promise<boolean>
|
||||||
|
/**
|
||||||
|
* Flush the WAL file to the database file.
|
||||||
|
* See https://www.sqlite.org/pragma.html#pragma_wal_checkpoint:~:text=PRAGMA%20schema.wal_checkpoint%3B
|
||||||
|
*/
|
||||||
|
checkpoint(): Promise<void>
|
||||||
|
validate(): Promise<boolean>
|
||||||
|
setSpaceId(spaceId: string): Promise<void>
|
||||||
|
pushUpdate(docId: string, update: Uint8Array): Promise<Date>
|
||||||
|
getDocSnapshot(docId: string): Promise<DocRecord | null>
|
||||||
|
setDocSnapshot(snapshot: DocRecord): Promise<boolean>
|
||||||
|
getDocUpdates(docId: string): Promise<Array<DocUpdate>>
|
||||||
|
markUpdatesMerged(docId: string, updates: Array<Date>): Promise<number>
|
||||||
|
deleteDoc(docId: string): Promise<void>
|
||||||
|
getDocClocks(after?: Date | undefined | null): Promise<Array<DocClock>>
|
||||||
|
getDocClock(docId: string): Promise<DocClock | null>
|
||||||
|
getBlob(key: string): Promise<Blob | null>
|
||||||
|
setBlob(blob: SetBlob): Promise<void>
|
||||||
|
deleteBlob(key: string, permanently: boolean): Promise<void>
|
||||||
|
releaseBlobs(): Promise<void>
|
||||||
|
listBlobs(): Promise<Array<ListedBlob>>
|
||||||
|
getPeerRemoteClocks(peer: string): Promise<Array<DocClock>>
|
||||||
|
getPeerRemoteClock(peer: string, docId: string): Promise<DocClock>
|
||||||
|
setPeerRemoteClock(peer: string, docId: string, clock: Date): Promise<void>
|
||||||
|
getPeerPulledRemoteClocks(peer: string): Promise<Array<DocClock>>
|
||||||
|
getPeerPulledRemoteClock(peer: string, docId: string): Promise<DocClock>
|
||||||
|
setPeerPulledRemoteClock(peer: string, docId: string, clock: Date): Promise<void>
|
||||||
|
getPeerPushedClocks(peer: string): Promise<Array<DocClock>>
|
||||||
|
getPeerPushedClock(peer: string, docId: string): Promise<DocClock>
|
||||||
|
setPeerPushedClock(peer: string, docId: string, clock: Date): Promise<void>
|
||||||
|
clearClocks(): Promise<void>
|
||||||
|
}
|
||||||
|
|
||||||
export declare class SqliteConnection {
|
export declare class SqliteConnection {
|
||||||
constructor(path: string)
|
constructor(path: string)
|
||||||
connect(): Promise<void>
|
connect(): Promise<void>
|
||||||
@ -37,19 +75,57 @@ export declare class SqliteConnection {
|
|||||||
checkpoint(): Promise<void>
|
checkpoint(): Promise<void>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface Blob {
|
||||||
|
key: string
|
||||||
|
data: Uint8Array
|
||||||
|
mime: string
|
||||||
|
size: number
|
||||||
|
createdAt: Date
|
||||||
|
}
|
||||||
|
|
||||||
export interface BlobRow {
|
export interface BlobRow {
|
||||||
key: string
|
key: string
|
||||||
data: Buffer
|
data: Buffer
|
||||||
timestamp: Date
|
timestamp: Date
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface DocClock {
|
||||||
|
docId: string
|
||||||
|
timestamp: Date
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DocRecord {
|
||||||
|
docId: string
|
||||||
|
data: Uint8Array
|
||||||
|
timestamp: Date
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DocUpdate {
|
||||||
|
docId: string
|
||||||
|
createdAt: Date
|
||||||
|
data: Uint8Array
|
||||||
|
}
|
||||||
|
|
||||||
export interface InsertRow {
|
export interface InsertRow {
|
||||||
docId?: string
|
docId?: string
|
||||||
data: Uint8Array
|
data: Uint8Array
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ListedBlob {
|
||||||
|
key: string
|
||||||
|
size: number
|
||||||
|
mime: string
|
||||||
|
createdAt: Date
|
||||||
|
}
|
||||||
|
|
||||||
export declare function mintChallengeResponse(resource: string, bits?: number | undefined | null): Promise<string>
|
export declare function mintChallengeResponse(resource: string, bits?: number | undefined | null): Promise<string>
|
||||||
|
|
||||||
|
export interface SetBlob {
|
||||||
|
key: string
|
||||||
|
data: Uint8Array
|
||||||
|
mime: string
|
||||||
|
}
|
||||||
|
|
||||||
export interface UpdateRow {
|
export interface UpdateRow {
|
||||||
id: number
|
id: number
|
||||||
timestamp: Date
|
timestamp: Date
|
||||||
@ -66,4 +142,3 @@ export declare enum ValidationResult {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export declare function verifyChallengeResponse(response: string, bits: number, resource: string): Promise<boolean>
|
export declare function verifyChallengeResponse(response: string, bits: number, resource: string): Promise<boolean>
|
||||||
|
|
||||||
|
@ -1,9 +1,12 @@
|
|||||||
// prettier-ignore
|
// prettier-ignore
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
// @ts-nocheck
|
||||||
/* auto-generated by NAPI-RS */
|
/* auto-generated by NAPI-RS */
|
||||||
|
|
||||||
const { readFileSync } = require('fs')
|
const { createRequire } = require('node:module')
|
||||||
|
require = createRequire(__filename)
|
||||||
|
|
||||||
|
const { readFileSync } = require('node:fs')
|
||||||
let nativeBinding = null
|
let nativeBinding = null
|
||||||
const loadErrors = []
|
const loadErrors = []
|
||||||
|
|
||||||
@ -361,6 +364,7 @@ if (!nativeBinding) {
|
|||||||
throw new Error(`Failed to load native binding`)
|
throw new Error(`Failed to load native binding`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module.exports.DocStorage = nativeBinding.DocStorage
|
||||||
module.exports.SqliteConnection = nativeBinding.SqliteConnection
|
module.exports.SqliteConnection = nativeBinding.SqliteConnection
|
||||||
module.exports.mintChallengeResponse = nativeBinding.mintChallengeResponse
|
module.exports.mintChallengeResponse = nativeBinding.mintChallengeResponse
|
||||||
module.exports.ValidationResult = nativeBinding.ValidationResult
|
module.exports.ValidationResult = nativeBinding.ValidationResult
|
||||||
|
23
packages/frontend/native/nbstore/Cargo.toml
Normal file
23
packages/frontend/native/nbstore/Cargo.toml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
[package]
|
||||||
|
edition = "2021"
|
||||||
|
name = "affine_nbstore"
|
||||||
|
version = "0.0.0"
|
||||||
|
|
||||||
|
[lib]
|
||||||
|
crate-type = ["rlib", "cdylib"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
affine_schema = { path = "../schema" }
|
||||||
|
anyhow = { workspace = true }
|
||||||
|
chrono = { workspace = true }
|
||||||
|
napi = { workspace = true }
|
||||||
|
napi-derive = { workspace = true }
|
||||||
|
sqlx = { workspace = true, default-features = false, features = ["chrono", "macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls"] }
|
||||||
|
tokio = { workspace = true, features = ["full"] }
|
||||||
|
|
||||||
|
[build-dependencies]
|
||||||
|
affine_schema = { path = "../schema" }
|
||||||
|
dotenvy = { workspace = true }
|
||||||
|
napi-build = { workspace = true }
|
||||||
|
sqlx = { workspace = true, default-features = false, features = ["chrono", "json", "macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls"] }
|
||||||
|
tokio = { workspace = true, features = ["full"] }
|
33
packages/frontend/native/nbstore/build.rs
Normal file
33
packages/frontend/native/nbstore/build.rs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
use affine_schema::get_migrator;
|
||||||
|
use sqlx::sqlite::SqliteConnectOptions;
|
||||||
|
use std::fs;
|
||||||
|
|
||||||
|
#[tokio::main]
|
||||||
|
async fn main() -> Result<(), std::io::Error> {
|
||||||
|
napi_build::setup();
|
||||||
|
|
||||||
|
// always start with a fresh database to have latest db schema
|
||||||
|
let cwd = std::env::var("CARGO_MANIFEST_DIR").unwrap();
|
||||||
|
let db_path = format!("{cwd}/affine.db");
|
||||||
|
|
||||||
|
if fs::metadata(&db_path).is_ok() {
|
||||||
|
fs::remove_file(&db_path)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
let options = SqliteConnectOptions::new()
|
||||||
|
.filename(&db_path)
|
||||||
|
.journal_mode(sqlx::sqlite::SqliteJournalMode::Off)
|
||||||
|
.locking_mode(sqlx::sqlite::SqliteLockingMode::Exclusive)
|
||||||
|
.create_if_missing(true);
|
||||||
|
let pool = sqlx::sqlite::SqlitePoolOptions::new()
|
||||||
|
.max_connections(1)
|
||||||
|
.connect_with(options)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
get_migrator().run(&pool).await.unwrap();
|
||||||
|
|
||||||
|
println!("cargo::rustc-env=DATABASE_URL=sqlite://{db_path}");
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
198
packages/frontend/native/nbstore/src/blob.rs
Normal file
198
packages/frontend/native/nbstore/src/blob.rs
Normal file
@ -0,0 +1,198 @@
|
|||||||
|
use super::{storage::SqliteDocStorage, Blob, ListedBlob, SetBlob};
|
||||||
|
|
||||||
|
type Result<T> = std::result::Result<T, sqlx::Error>;
|
||||||
|
|
||||||
|
impl SqliteDocStorage {
|
||||||
|
pub async fn get_blob(&self, key: String) -> Result<Option<Blob>> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
Blob,
|
||||||
|
"SELECT key, data, size, mime, created_at FROM blobs WHERE key = ? AND deleted_at IS NULL",
|
||||||
|
key
|
||||||
|
)
|
||||||
|
.fetch_optional(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_blob(&self, blob: SetBlob) -> Result<()> {
|
||||||
|
sqlx::query(
|
||||||
|
r#"
|
||||||
|
INSERT INTO blobs (key, data, mime, size)
|
||||||
|
VALUES ($1, $2, $3, $4)
|
||||||
|
ON CONFLICT(key)
|
||||||
|
DO UPDATE SET data=$2, mime=$3, size=$4, deleted_at=NULL;"#,
|
||||||
|
)
|
||||||
|
.bind(blob.key)
|
||||||
|
.bind(blob.data.as_ref())
|
||||||
|
.bind(blob.mime)
|
||||||
|
.bind(blob.data.len() as i64)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn delete_blob(&self, key: String, permanently: bool) -> Result<()> {
|
||||||
|
if permanently {
|
||||||
|
sqlx::query("DELETE FROM blobs WHERE key = ?")
|
||||||
|
.bind(&key)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
} else {
|
||||||
|
sqlx::query("UPDATE blobs SET deleted_at = CURRENT_TIMESTAMP WHERE key = ?")
|
||||||
|
.bind(&key)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn release_blobs(&self) -> Result<()> {
|
||||||
|
sqlx::query("DELETE FROM blobs WHERE deleted_at IS NOT NULL;")
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn list_blobs(&self) -> Result<Vec<ListedBlob>> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
ListedBlob,
|
||||||
|
"SELECT key, size, mime, created_at FROM blobs WHERE deleted_at IS NULL ORDER BY created_at DESC;"
|
||||||
|
)
|
||||||
|
.fetch_all(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use napi::bindgen_prelude::Uint8Array;
|
||||||
|
use sqlx::Row;
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
async fn get_storage() -> SqliteDocStorage {
|
||||||
|
let storage = SqliteDocStorage::new(":memory:".to_string());
|
||||||
|
storage.connect().await.unwrap();
|
||||||
|
|
||||||
|
storage
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn delete_blob() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
for i in 1..5u32 {
|
||||||
|
storage
|
||||||
|
.set_blob(SetBlob {
|
||||||
|
key: format!("test_{}", i),
|
||||||
|
data: Uint8Array::from(vec![0, 0]),
|
||||||
|
mime: "text/plain".to_string(),
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let result = storage.get_blob("test_1".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
assert!(result.is_some());
|
||||||
|
|
||||||
|
storage
|
||||||
|
.delete_blob("test_".to_string(), false)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let result = storage.get_blob("test".to_string()).await.unwrap();
|
||||||
|
assert!(result.is_none());
|
||||||
|
|
||||||
|
storage
|
||||||
|
.delete_blob("test_2".to_string(), true)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let result = storage.get_blob("test".to_string()).await.unwrap();
|
||||||
|
assert!(result.is_none());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn list_blobs() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
let blobs = storage.list_blobs().await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(blobs.len(), 0);
|
||||||
|
|
||||||
|
for i in 1..5u32 {
|
||||||
|
storage
|
||||||
|
.set_blob(SetBlob {
|
||||||
|
key: format!("test_{}", i),
|
||||||
|
data: Uint8Array::from(vec![0, 0]),
|
||||||
|
mime: "text/plain".to_string(),
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let blobs = storage.list_blobs().await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(blobs.len(), 4);
|
||||||
|
assert_eq!(
|
||||||
|
blobs.iter().map(|b| b.key.as_str()).collect::<Vec<_>>(),
|
||||||
|
vec!["test_1", "test_2", "test_3", "test_4"]
|
||||||
|
);
|
||||||
|
|
||||||
|
storage
|
||||||
|
.delete_blob("test_2".to_string(), false)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
storage
|
||||||
|
.delete_blob("test_3".to_string(), true)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let query = sqlx::query("SELECT COUNT(*) as len FROM blobs;")
|
||||||
|
.fetch_one(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(query.get::<i64, &str>("len"), 3);
|
||||||
|
|
||||||
|
let blobs = storage.list_blobs().await.unwrap();
|
||||||
|
assert_eq!(blobs.len(), 2);
|
||||||
|
assert_eq!(
|
||||||
|
blobs.iter().map(|b| b.key.as_str()).collect::<Vec<_>>(),
|
||||||
|
vec!["test_1", "test_4"]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn release_blobs() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
for i in 1..5u32 {
|
||||||
|
storage
|
||||||
|
.set_blob(SetBlob {
|
||||||
|
key: format!("test_{}", i),
|
||||||
|
data: Uint8Array::from(vec![0, 0]),
|
||||||
|
mime: "text/plain".to_string(),
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
storage
|
||||||
|
.delete_blob("test_2".to_string(), false)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
storage.release_blobs().await.unwrap();
|
||||||
|
|
||||||
|
let query = sqlx::query("SELECT COUNT(*) as len FROM blobs;")
|
||||||
|
.fetch_one(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(query.get::<i64, &str>("len"), 3);
|
||||||
|
}
|
||||||
|
}
|
449
packages/frontend/native/nbstore/src/doc.rs
Normal file
449
packages/frontend/native/nbstore/src/doc.rs
Normal file
@ -0,0 +1,449 @@
|
|||||||
|
use chrono::NaiveDateTime;
|
||||||
|
use sqlx::{QueryBuilder, Row};
|
||||||
|
|
||||||
|
use super::storage::{Result, SqliteDocStorage};
|
||||||
|
use super::{DocClock, DocRecord, DocUpdate};
|
||||||
|
|
||||||
|
struct Meta {
|
||||||
|
space_id: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl SqliteDocStorage {
|
||||||
|
pub async fn set_space_id(&self, space_id: String) -> Result<()> {
|
||||||
|
// ensure only one record exists in table
|
||||||
|
let result = sqlx::query_as!(Meta, "SELECT * FROM meta;")
|
||||||
|
.fetch_optional(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
match result {
|
||||||
|
Some(meta) => {
|
||||||
|
if meta.space_id != space_id {
|
||||||
|
sqlx::query("UPDATE meta SET space_id = $1;")
|
||||||
|
.bind(&space_id)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("UPDATE updates SET doc_id = $1 WHERE doc_id = $2;")
|
||||||
|
.bind(&space_id)
|
||||||
|
.bind(&meta.space_id)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("UPDATE snapshots SET doc_id = $1 WHERE doc_id = $2;")
|
||||||
|
.bind(&space_id)
|
||||||
|
.bind(&meta.space_id)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("UPDATE clocks SET doc_id = $1 WHERE doc_id = $2;")
|
||||||
|
.bind(&space_id)
|
||||||
|
.bind(&meta.space_id)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("UPDATE peer_clocks SET doc_id = $1 WHERE doc_id = $2;")
|
||||||
|
.bind(&space_id)
|
||||||
|
.bind(&meta.space_id)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
sqlx::query("INSERT INTO meta (space_id) VALUES ($1);")
|
||||||
|
.bind(&space_id)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn push_update<Update: AsRef<[u8]>>(
|
||||||
|
&self,
|
||||||
|
doc_id: String,
|
||||||
|
update: Update,
|
||||||
|
) -> Result<NaiveDateTime> {
|
||||||
|
let timestamp = chrono::Utc::now().naive_utc();
|
||||||
|
let mut tx = self.pool.begin().await?;
|
||||||
|
|
||||||
|
sqlx::query(r#"INSERT INTO updates (doc_id, data, created_at) VALUES ($1, $2, $3);"#)
|
||||||
|
.bind(&doc_id)
|
||||||
|
.bind(update.as_ref())
|
||||||
|
.bind(timestamp)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
r#"
|
||||||
|
INSERT INTO clocks (doc_id, timestamp) VALUES ($1, $2)
|
||||||
|
ON CONFLICT(doc_id)
|
||||||
|
DO UPDATE SET timestamp=$2;"#,
|
||||||
|
)
|
||||||
|
.bind(&doc_id)
|
||||||
|
.bind(timestamp)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
tx.commit().await?;
|
||||||
|
|
||||||
|
Ok(timestamp)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_doc_snapshot(&self, doc_id: String) -> Result<Option<DocRecord>> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
DocRecord,
|
||||||
|
"SELECT doc_id, data, updated_at as timestamp FROM snapshots WHERE doc_id = ?",
|
||||||
|
doc_id
|
||||||
|
)
|
||||||
|
.fetch_optional(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_doc_snapshot(&self, snapshot: DocRecord) -> Result<bool> {
|
||||||
|
let result = sqlx::query(
|
||||||
|
r#"
|
||||||
|
INSERT INTO snapshots (doc_id, data, updated_at)
|
||||||
|
VALUES ($1, $2, $3)
|
||||||
|
ON CONFLICT(doc_id)
|
||||||
|
DO UPDATE SET data=$2, updated_at=$3
|
||||||
|
WHERE updated_at <= $3;"#,
|
||||||
|
)
|
||||||
|
.bind(snapshot.doc_id)
|
||||||
|
.bind(snapshot.data.as_ref())
|
||||||
|
.bind(snapshot.timestamp)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(result.rows_affected() == 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_doc_updates(&self, doc_id: String) -> Result<Vec<DocUpdate>> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
DocUpdate,
|
||||||
|
"SELECT doc_id, created_at, data FROM updates WHERE doc_id = ?",
|
||||||
|
doc_id
|
||||||
|
)
|
||||||
|
.fetch_all(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn mark_updates_merged(
|
||||||
|
&self,
|
||||||
|
doc_id: String,
|
||||||
|
updates: Vec<NaiveDateTime>,
|
||||||
|
) -> Result<u32> {
|
||||||
|
let mut qb = QueryBuilder::new("DELETE FROM updates");
|
||||||
|
|
||||||
|
qb.push(" WHERE doc_id = ");
|
||||||
|
qb.push_bind(doc_id);
|
||||||
|
qb.push(" AND created_at IN (");
|
||||||
|
let mut separated = qb.separated(", ");
|
||||||
|
updates.iter().for_each(|update| {
|
||||||
|
separated.push_bind(update);
|
||||||
|
});
|
||||||
|
qb.push(");");
|
||||||
|
|
||||||
|
let query = qb.build();
|
||||||
|
|
||||||
|
let result = query.execute(&self.pool).await?;
|
||||||
|
|
||||||
|
Ok(result.rows_affected() as u32)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn delete_doc(&self, doc_id: String) -> Result<()> {
|
||||||
|
let mut tx = self.pool.begin().await?;
|
||||||
|
|
||||||
|
sqlx::query("DELETE FROM updates WHERE doc_id = ?;")
|
||||||
|
.bind(&doc_id)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("DELETE FROM snapshots WHERE doc_id = ?;")
|
||||||
|
.bind(&doc_id)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("DELETE FROM clocks WHERE doc_id = ?;")
|
||||||
|
.bind(&doc_id)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
tx.commit().await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_doc_clocks(&self, after: Option<NaiveDateTime>) -> Result<Vec<DocClock>> {
|
||||||
|
let query = if let Some(after) = after {
|
||||||
|
sqlx::query("SELECT doc_id, timestamp FROM clocks WHERE timestamp > $1").bind(after)
|
||||||
|
} else {
|
||||||
|
sqlx::query("SELECT doc_id, timestamp FROM clocks")
|
||||||
|
};
|
||||||
|
|
||||||
|
let clocks = query.fetch_all(&self.pool).await?;
|
||||||
|
|
||||||
|
Ok(
|
||||||
|
clocks
|
||||||
|
.iter()
|
||||||
|
.map(|row| DocClock {
|
||||||
|
doc_id: row.get("doc_id"),
|
||||||
|
timestamp: row.get("timestamp"),
|
||||||
|
})
|
||||||
|
.collect(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_doc_clock(&self, doc_id: String) -> Result<Option<DocClock>> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
DocClock,
|
||||||
|
"SELECT doc_id, timestamp FROM clocks WHERE doc_id = ?",
|
||||||
|
doc_id
|
||||||
|
)
|
||||||
|
.fetch_optional(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use chrono::{DateTime, Utc};
|
||||||
|
use napi::bindgen_prelude::Uint8Array;
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
async fn get_storage() -> SqliteDocStorage {
|
||||||
|
let storage = SqliteDocStorage::new(":memory:".to_string());
|
||||||
|
storage.connect().await.unwrap();
|
||||||
|
|
||||||
|
storage
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn set_space_id() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
storage.set_space_id("test".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
let result = sqlx::query!("SELECT space_id FROM meta;")
|
||||||
|
.fetch_one(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(result.space_id, "test");
|
||||||
|
|
||||||
|
storage.set_space_id("test2".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
let result = sqlx::query!("SELECT space_id FROM meta;")
|
||||||
|
.fetch_one(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(result.space_id, "test2");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn set_space_id_with_existing_doc() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
storage.set_space_id("test".to_string()).await.unwrap();
|
||||||
|
storage
|
||||||
|
.push_update("test".to_string(), vec![0, 0])
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
storage
|
||||||
|
.set_doc_snapshot(DocRecord {
|
||||||
|
doc_id: "test".to_string(),
|
||||||
|
data: Uint8Array::from(vec![0, 0]),
|
||||||
|
timestamp: Utc::now().naive_utc(),
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
storage
|
||||||
|
.set_peer_pulled_remote_clock(
|
||||||
|
"remote".to_string(),
|
||||||
|
"test".to_string(),
|
||||||
|
Utc::now().naive_utc(),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
storage.set_space_id("new_id".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
let result = sqlx::query!("SELECT space_id FROM meta;")
|
||||||
|
.fetch_one(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(result.space_id, "new_id");
|
||||||
|
|
||||||
|
let clocks = storage.get_doc_clocks(None).await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(clocks[0].doc_id, "new_id");
|
||||||
|
|
||||||
|
let clocks = storage
|
||||||
|
.get_peer_pulled_remote_clock("remote".to_string(), "new_id".to_string())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(clocks.doc_id, "new_id");
|
||||||
|
|
||||||
|
let updates = storage.get_doc_updates("new_id".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(updates.len(), 1);
|
||||||
|
|
||||||
|
let snapshot = storage
|
||||||
|
.get_doc_snapshot("new_id".to_string())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert!(snapshot.is_some());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn push_updates() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
let updates = vec![vec![0, 0], vec![0, 1], vec![1, 0], vec![1, 1]];
|
||||||
|
|
||||||
|
for update in updates.iter() {
|
||||||
|
storage
|
||||||
|
.push_update("test".to_string(), update)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let result = storage.get_doc_updates("test".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(result.len(), 4);
|
||||||
|
assert_eq!(
|
||||||
|
result.iter().map(|u| u.data.as_ref()).collect::<Vec<_>>(),
|
||||||
|
updates
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn get_doc_snapshot() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
let none = storage.get_doc_snapshot("test".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
assert!(none.is_none());
|
||||||
|
|
||||||
|
let snapshot = DocRecord {
|
||||||
|
doc_id: "test".to_string(),
|
||||||
|
data: Uint8Array::from(vec![0, 0]),
|
||||||
|
timestamp: Utc::now().naive_utc(),
|
||||||
|
};
|
||||||
|
|
||||||
|
storage.set_doc_snapshot(snapshot).await.unwrap();
|
||||||
|
|
||||||
|
let result = storage.get_doc_snapshot("test".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
assert!(result.is_some());
|
||||||
|
assert_eq!(result.unwrap().data.as_ref(), vec![0, 0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn set_doc_snapshot() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
let snapshot = DocRecord {
|
||||||
|
doc_id: "test".to_string(),
|
||||||
|
data: Uint8Array::from(vec![0, 0]),
|
||||||
|
timestamp: Utc::now().naive_utc(),
|
||||||
|
};
|
||||||
|
|
||||||
|
storage.set_doc_snapshot(snapshot).await.unwrap();
|
||||||
|
|
||||||
|
let result = storage.get_doc_snapshot("test".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
assert!(result.is_some());
|
||||||
|
assert_eq!(result.unwrap().data.as_ref(), vec![0, 0]);
|
||||||
|
|
||||||
|
let snapshot = DocRecord {
|
||||||
|
doc_id: "test".to_string(),
|
||||||
|
data: Uint8Array::from(vec![0, 1]),
|
||||||
|
timestamp: DateTime::from_timestamp_millis(Utc::now().timestamp_millis() - 1000)
|
||||||
|
.unwrap()
|
||||||
|
.naive_utc(),
|
||||||
|
};
|
||||||
|
|
||||||
|
// can't update because it's tempstamp is older
|
||||||
|
storage.set_doc_snapshot(snapshot).await.unwrap();
|
||||||
|
|
||||||
|
let result = storage.get_doc_snapshot("test".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
assert!(result.is_some());
|
||||||
|
assert_eq!(result.unwrap().data.as_ref(), vec![0, 0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn get_doc_clocks() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
let clocks = storage.get_doc_clocks(None).await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(clocks.len(), 0);
|
||||||
|
|
||||||
|
for i in 1..5u32 {
|
||||||
|
storage
|
||||||
|
.push_update(format!("test_{i}"), vec![0, 0])
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let clocks = storage.get_doc_clocks(None).await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(clocks.len(), 4);
|
||||||
|
assert_eq!(
|
||||||
|
clocks.iter().map(|c| c.doc_id.as_str()).collect::<Vec<_>>(),
|
||||||
|
vec!["test_1", "test_2", "test_3", "test_4"]
|
||||||
|
);
|
||||||
|
|
||||||
|
let clocks = storage
|
||||||
|
.get_doc_clocks(Some(Utc::now().naive_utc()))
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(clocks.len(), 0);
|
||||||
|
|
||||||
|
let clock = storage.get_doc_clock("test_1".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
assert!(clock.is_some());
|
||||||
|
assert_eq!(clock.unwrap().doc_id, "test_1");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn mark_updates_merged() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
let updates = [vec![0, 0], vec![0, 1], vec![1, 0], vec![1, 1]];
|
||||||
|
|
||||||
|
for update in updates.iter() {
|
||||||
|
storage
|
||||||
|
.push_update("test".to_string(), update)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let updates = storage.get_doc_updates("test".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
let result = storage
|
||||||
|
.mark_updates_merged(
|
||||||
|
"test".to_string(),
|
||||||
|
updates
|
||||||
|
.iter()
|
||||||
|
.skip(1)
|
||||||
|
.map(|u| u.created_at)
|
||||||
|
.collect::<Vec<_>>(),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(result, 3);
|
||||||
|
|
||||||
|
let updates = storage.get_doc_updates("test".to_string()).await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(updates.len(), 1);
|
||||||
|
}
|
||||||
|
}
|
311
packages/frontend/native/nbstore/src/lib.rs
Normal file
311
packages/frontend/native/nbstore/src/lib.rs
Normal file
@ -0,0 +1,311 @@
|
|||||||
|
mod blob;
|
||||||
|
mod doc;
|
||||||
|
mod storage;
|
||||||
|
mod sync;
|
||||||
|
|
||||||
|
use chrono::NaiveDateTime;
|
||||||
|
use napi::bindgen_prelude::*;
|
||||||
|
use napi_derive::napi;
|
||||||
|
|
||||||
|
fn map_err(err: sqlx::Error) -> napi::Error {
|
||||||
|
napi::Error::from(anyhow::Error::from(err))
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi(object)]
|
||||||
|
pub struct DocUpdate {
|
||||||
|
pub doc_id: String,
|
||||||
|
pub created_at: NaiveDateTime,
|
||||||
|
pub data: Uint8Array,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi(object)]
|
||||||
|
pub struct DocRecord {
|
||||||
|
pub doc_id: String,
|
||||||
|
pub data: Uint8Array,
|
||||||
|
pub timestamp: NaiveDateTime,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
#[napi(object)]
|
||||||
|
pub struct DocClock {
|
||||||
|
pub doc_id: String,
|
||||||
|
pub timestamp: NaiveDateTime,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi(object)]
|
||||||
|
pub struct SetBlob {
|
||||||
|
pub key: String,
|
||||||
|
pub data: Uint8Array,
|
||||||
|
pub mime: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi(object)]
|
||||||
|
pub struct Blob {
|
||||||
|
pub key: String,
|
||||||
|
pub data: Uint8Array,
|
||||||
|
pub mime: String,
|
||||||
|
pub size: i64,
|
||||||
|
pub created_at: NaiveDateTime,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi(object)]
|
||||||
|
pub struct ListedBlob {
|
||||||
|
pub key: String,
|
||||||
|
pub size: i64,
|
||||||
|
pub mime: String,
|
||||||
|
pub created_at: NaiveDateTime,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub struct DocStorage {
|
||||||
|
storage: storage::SqliteDocStorage,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
impl DocStorage {
|
||||||
|
#[napi(constructor, async_runtime)]
|
||||||
|
pub fn new(path: String) -> napi::Result<Self> {
|
||||||
|
Ok(Self {
|
||||||
|
storage: storage::SqliteDocStorage::new(path),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
/// Initialize the database and run migrations.
|
||||||
|
pub async fn connect(&self) -> napi::Result<()> {
|
||||||
|
self.storage.connect().await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn close(&self) -> napi::Result<()> {
|
||||||
|
self.storage.close().await;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi(getter)]
|
||||||
|
pub async fn is_closed(&self) -> napi::Result<bool> {
|
||||||
|
Ok(self.storage.is_closed())
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Flush the WAL file to the database file.
|
||||||
|
* See https://www.sqlite.org/pragma.html#pragma_wal_checkpoint:~:text=PRAGMA%20schema.wal_checkpoint%3B
|
||||||
|
*/
|
||||||
|
#[napi]
|
||||||
|
pub async fn checkpoint(&self) -> napi::Result<()> {
|
||||||
|
self.storage.checkpoint().await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn validate(&self) -> napi::Result<bool> {
|
||||||
|
self.storage.validate().await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn set_space_id(&self, space_id: String) -> napi::Result<()> {
|
||||||
|
self.storage.set_space_id(space_id).await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn push_update(
|
||||||
|
&self,
|
||||||
|
doc_id: String,
|
||||||
|
update: Uint8Array,
|
||||||
|
) -> napi::Result<NaiveDateTime> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.push_update(doc_id, update)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_doc_snapshot(&self, doc_id: String) -> napi::Result<Option<DocRecord>> {
|
||||||
|
self.storage.get_doc_snapshot(doc_id).await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn set_doc_snapshot(&self, snapshot: DocRecord) -> napi::Result<bool> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.set_doc_snapshot(snapshot)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_doc_updates(&self, doc_id: String) -> napi::Result<Vec<DocUpdate>> {
|
||||||
|
self.storage.get_doc_updates(doc_id).await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn mark_updates_merged(
|
||||||
|
&self,
|
||||||
|
doc_id: String,
|
||||||
|
updates: Vec<NaiveDateTime>,
|
||||||
|
) -> napi::Result<u32> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.mark_updates_merged(doc_id, updates)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn delete_doc(&self, doc_id: String) -> napi::Result<()> {
|
||||||
|
self.storage.delete_doc(doc_id).await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_doc_clocks(&self, after: Option<NaiveDateTime>) -> napi::Result<Vec<DocClock>> {
|
||||||
|
self.storage.get_doc_clocks(after).await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_doc_clock(&self, doc_id: String) -> napi::Result<Option<DocClock>> {
|
||||||
|
self.storage.get_doc_clock(doc_id).await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_blob(&self, key: String) -> napi::Result<Option<Blob>> {
|
||||||
|
self.storage.get_blob(key).await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn set_blob(&self, blob: SetBlob) -> napi::Result<()> {
|
||||||
|
self.storage.set_blob(blob).await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn delete_blob(&self, key: String, permanently: bool) -> napi::Result<()> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.delete_blob(key, permanently)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn release_blobs(&self) -> napi::Result<()> {
|
||||||
|
self.storage.release_blobs().await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn list_blobs(&self) -> napi::Result<Vec<ListedBlob>> {
|
||||||
|
self.storage.list_blobs().await.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_peer_remote_clocks(&self, peer: String) -> napi::Result<Vec<DocClock>> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.get_peer_remote_clocks(peer)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_peer_remote_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
) -> napi::Result<DocClock> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.get_peer_remote_clock(peer, doc_id)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn set_peer_remote_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
clock: NaiveDateTime,
|
||||||
|
) -> napi::Result<()> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.set_peer_remote_clock(peer, doc_id, clock)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_peer_pulled_remote_clocks(&self, peer: String) -> napi::Result<Vec<DocClock>> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.get_peer_pulled_remote_clocks(peer)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_peer_pulled_remote_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
) -> napi::Result<DocClock> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.get_peer_pulled_remote_clock(peer, doc_id)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn set_peer_pulled_remote_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
clock: NaiveDateTime,
|
||||||
|
) -> napi::Result<()> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.set_peer_pulled_remote_clock(peer, doc_id, clock)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_peer_pushed_clocks(&self, peer: String) -> napi::Result<Vec<DocClock>> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.get_peer_pushed_clocks(peer)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn get_peer_pushed_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
) -> napi::Result<DocClock> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.get_peer_pushed_clock(peer, doc_id)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn set_peer_pushed_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
clock: NaiveDateTime,
|
||||||
|
) -> napi::Result<()> {
|
||||||
|
self
|
||||||
|
.storage
|
||||||
|
.set_peer_pushed_clock(peer, doc_id, clock)
|
||||||
|
.await
|
||||||
|
.map_err(map_err)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub async fn clear_clocks(&self) -> napi::Result<()> {
|
||||||
|
self.storage.clear_clocks().await.map_err(map_err)
|
||||||
|
}
|
||||||
|
}
|
129
packages/frontend/native/nbstore/src/storage.rs
Normal file
129
packages/frontend/native/nbstore/src/storage.rs
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
use affine_schema::get_migrator;
|
||||||
|
use sqlx::{
|
||||||
|
migrate::MigrateDatabase,
|
||||||
|
sqlite::{Sqlite, SqliteConnectOptions, SqlitePoolOptions},
|
||||||
|
Pool, Row,
|
||||||
|
};
|
||||||
|
|
||||||
|
pub type Result<T> = std::result::Result<T, sqlx::Error>;
|
||||||
|
|
||||||
|
pub struct SqliteDocStorage {
|
||||||
|
pub pool: Pool<Sqlite>,
|
||||||
|
path: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl SqliteDocStorage {
|
||||||
|
pub fn new(path: String) -> Self {
|
||||||
|
let sqlite_options = SqliteConnectOptions::new()
|
||||||
|
.filename(&path)
|
||||||
|
.foreign_keys(false)
|
||||||
|
.journal_mode(sqlx::sqlite::SqliteJournalMode::Wal);
|
||||||
|
|
||||||
|
let mut pool_options = SqlitePoolOptions::new();
|
||||||
|
|
||||||
|
if cfg!(test) && path == ":memory:" {
|
||||||
|
pool_options = pool_options
|
||||||
|
.min_connections(1)
|
||||||
|
.max_connections(1)
|
||||||
|
.idle_timeout(None)
|
||||||
|
.max_lifetime(None);
|
||||||
|
} else {
|
||||||
|
pool_options = pool_options.max_connections(4);
|
||||||
|
}
|
||||||
|
|
||||||
|
Self {
|
||||||
|
pool: pool_options.connect_lazy_with(sqlite_options),
|
||||||
|
path,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn validate(&self) -> Result<bool> {
|
||||||
|
let record = sqlx::query("SELECT * FROM _sqlx_migrations ORDER BY installed_on ASC LIMIT 1;")
|
||||||
|
.fetch_optional(&self.pool)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
match record {
|
||||||
|
Ok(Some(row)) => {
|
||||||
|
let name: &str = row.try_get("description")?;
|
||||||
|
Ok(name == "init_v2")
|
||||||
|
}
|
||||||
|
_ => return Ok(false),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn connect(&self) -> Result<()> {
|
||||||
|
if !Sqlite::database_exists(&self.path).await.unwrap_or(false) {
|
||||||
|
Sqlite::create_database(&self.path).await?;
|
||||||
|
};
|
||||||
|
|
||||||
|
self.migrate().await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn migrate(&self) -> Result<()> {
|
||||||
|
let migrator = get_migrator();
|
||||||
|
migrator.run(&self.pool).await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn close(&self) {
|
||||||
|
self.pool.close().await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn is_closed(&self) -> bool {
|
||||||
|
self.pool.is_closed()
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Flush the WAL file to the database file.
|
||||||
|
/// See https://www.sqlite.org/pragma.html#pragma_wal_checkpoint:~:text=PRAGMA%20schema.wal_checkpoint%3B
|
||||||
|
///
|
||||||
|
pub async fn checkpoint(&self) -> Result<()> {
|
||||||
|
sqlx::query("PRAGMA wal_checkpoint(FULL);")
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
async fn get_storage() -> SqliteDocStorage {
|
||||||
|
let storage = SqliteDocStorage::new(":memory:".to_string());
|
||||||
|
storage.connect().await.unwrap();
|
||||||
|
|
||||||
|
storage
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn init_tables() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
|
||||||
|
sqlx::query("INSERT INTO meta (space_id) VALUES ($1);")
|
||||||
|
.bind("test")
|
||||||
|
.execute(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let record = sqlx::query!("SELECT space_id FROM meta;")
|
||||||
|
.fetch_one(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(record.space_id, "test");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn validate_db() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
assert!(storage.validate().await.unwrap());
|
||||||
|
|
||||||
|
let storage = SqliteDocStorage::new(":memory:".to_string());
|
||||||
|
assert!(!storage.validate().await.unwrap());
|
||||||
|
}
|
||||||
|
}
|
289
packages/frontend/native/nbstore/src/sync.rs
Normal file
289
packages/frontend/native/nbstore/src/sync.rs
Normal file
@ -0,0 +1,289 @@
|
|||||||
|
use chrono::NaiveDateTime;
|
||||||
|
|
||||||
|
use super::storage::{Result, SqliteDocStorage};
|
||||||
|
use super::DocClock;
|
||||||
|
|
||||||
|
impl SqliteDocStorage {
|
||||||
|
pub async fn get_peer_remote_clocks(&self, peer: String) -> Result<Vec<DocClock>> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
DocClock,
|
||||||
|
"SELECT doc_id, remote_clock as timestamp FROM peer_clocks WHERE peer = ?",
|
||||||
|
peer
|
||||||
|
)
|
||||||
|
.fetch_all(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_peer_remote_clock(&self, peer: String, doc_id: String) -> Result<DocClock> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
DocClock,
|
||||||
|
"SELECT doc_id, remote_clock as timestamp FROM peer_clocks WHERE peer = ? AND doc_id = ?",
|
||||||
|
peer,
|
||||||
|
doc_id
|
||||||
|
)
|
||||||
|
.fetch_one(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_peer_remote_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
clock: NaiveDateTime,
|
||||||
|
) -> Result<()> {
|
||||||
|
sqlx::query(
|
||||||
|
r#"
|
||||||
|
INSERT INTO peer_clocks (peer, doc_id, remote_clock)
|
||||||
|
VALUES ($1, $2, $3)
|
||||||
|
ON CONFLICT(peer, doc_id)
|
||||||
|
DO UPDATE SET remote_clock=$3 WHERE remote_clock < $3;"#,
|
||||||
|
)
|
||||||
|
.bind(peer)
|
||||||
|
.bind(doc_id)
|
||||||
|
.bind(clock)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_peer_pulled_remote_clocks(&self, peer: String) -> Result<Vec<DocClock>> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
DocClock,
|
||||||
|
"SELECT doc_id, pulled_remote_clock as timestamp FROM peer_clocks WHERE peer = ?",
|
||||||
|
peer
|
||||||
|
)
|
||||||
|
.fetch_all(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_peer_pulled_remote_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
) -> Result<DocClock> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
DocClock,
|
||||||
|
"SELECT doc_id, pulled_remote_clock as timestamp FROM peer_clocks WHERE peer = ? AND doc_id = ?",
|
||||||
|
peer,
|
||||||
|
doc_id
|
||||||
|
)
|
||||||
|
.fetch_one(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_peer_pulled_remote_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
clock: NaiveDateTime,
|
||||||
|
) -> Result<()> {
|
||||||
|
sqlx::query(
|
||||||
|
r#"
|
||||||
|
INSERT INTO peer_clocks (peer, doc_id, pulled_remote_clock)
|
||||||
|
VALUES ($1, $2, $3)
|
||||||
|
ON CONFLICT(peer, doc_id)
|
||||||
|
DO UPDATE SET pulled_remote_clock=$3 WHERE pulled_remote_clock < $3;"#,
|
||||||
|
)
|
||||||
|
.bind(peer)
|
||||||
|
.bind(doc_id)
|
||||||
|
.bind(clock)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_peer_pushed_clocks(&self, peer: String) -> Result<Vec<DocClock>> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
DocClock,
|
||||||
|
"SELECT doc_id, pushed_clock as timestamp FROM peer_clocks WHERE peer = ?",
|
||||||
|
peer
|
||||||
|
)
|
||||||
|
.fetch_all(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_peer_pushed_clock(&self, peer: String, doc_id: String) -> Result<DocClock> {
|
||||||
|
sqlx::query_as!(
|
||||||
|
DocClock,
|
||||||
|
"SELECT doc_id, pushed_clock as timestamp FROM peer_clocks WHERE peer = ? AND doc_id = ?",
|
||||||
|
peer,
|
||||||
|
doc_id
|
||||||
|
)
|
||||||
|
.fetch_one(&self.pool)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_peer_pushed_clock(
|
||||||
|
&self,
|
||||||
|
peer: String,
|
||||||
|
doc_id: String,
|
||||||
|
clock: NaiveDateTime,
|
||||||
|
) -> Result<()> {
|
||||||
|
sqlx::query(
|
||||||
|
r#"
|
||||||
|
INSERT INTO peer_clocks (peer, doc_id, pushed_clock)
|
||||||
|
VALUES ($1, $2, $3)
|
||||||
|
ON CONFLICT(peer, doc_id)
|
||||||
|
DO UPDATE SET pushed_clock=$3 WHERE pushed_clock < $3;"#,
|
||||||
|
)
|
||||||
|
.bind(peer)
|
||||||
|
.bind(doc_id)
|
||||||
|
.bind(clock)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn clear_clocks(&self) -> Result<()> {
|
||||||
|
sqlx::query("DELETE FROM peer_clocks;")
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use chrono::{DateTime, Utc};
|
||||||
|
use sqlx::Row;
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
async fn get_storage() -> SqliteDocStorage {
|
||||||
|
let storage = SqliteDocStorage::new(":memory:".to_string());
|
||||||
|
storage.connect().await.unwrap();
|
||||||
|
|
||||||
|
storage
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn set_peer_clock() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
let peer = String::from("peer1");
|
||||||
|
|
||||||
|
let clocks = storage.get_peer_remote_clocks(peer.clone()).await.unwrap();
|
||||||
|
|
||||||
|
assert!(clocks.is_empty());
|
||||||
|
|
||||||
|
let clock = Utc::now().naive_utc();
|
||||||
|
storage
|
||||||
|
.set_peer_remote_clock(peer.clone(), "doc1".to_string(), clock)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let clocks = storage.get_peer_remote_clocks(peer.clone()).await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(clocks.len(), 1);
|
||||||
|
assert_eq!(clocks.first().unwrap().doc_id, "doc1");
|
||||||
|
assert_eq!(clocks.first().unwrap().timestamp, clock);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn set_peer_pushed_clock() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
let peer = String::from("peer1");
|
||||||
|
|
||||||
|
let clocks = storage.get_peer_pushed_clocks(peer.clone()).await.unwrap();
|
||||||
|
|
||||||
|
assert!(clocks.is_empty());
|
||||||
|
|
||||||
|
let clock = Utc::now().naive_utc();
|
||||||
|
storage
|
||||||
|
.set_peer_pushed_clock(peer.clone(), "doc1".to_string(), clock)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let clocks = storage.get_peer_pushed_clocks(peer.clone()).await.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(clocks.len(), 1);
|
||||||
|
assert_eq!(clocks.first().unwrap().doc_id, "doc1");
|
||||||
|
assert_eq!(clocks.first().unwrap().timestamp, clock);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn default_clocks() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
let peer = String::from("peer1");
|
||||||
|
|
||||||
|
storage
|
||||||
|
.set_peer_remote_clock(peer.clone(), "doc1".to_string(), Utc::now().naive_utc())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
storage
|
||||||
|
.set_peer_pushed_clock(peer.clone(), "doc2".to_string(), Utc::now().naive_utc())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
storage
|
||||||
|
.set_peer_pulled_remote_clock(peer.clone(), "doc3".to_string(), Utc::now().naive_utc())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let record = sqlx::query("SELECT * FROM peer_clocks WHERE peer = ? AND doc_id = ?")
|
||||||
|
.bind(peer.clone())
|
||||||
|
.bind("doc1")
|
||||||
|
.fetch_one(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
record.get::<NaiveDateTime, &str>("pushed_clock"),
|
||||||
|
DateTime::from_timestamp(0, 0).unwrap().naive_utc()
|
||||||
|
);
|
||||||
|
|
||||||
|
let record = sqlx::query("SELECT * FROM peer_clocks WHERE peer = ? AND doc_id = ?")
|
||||||
|
.bind(peer.clone())
|
||||||
|
.bind("doc2")
|
||||||
|
.fetch_one(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
assert_eq!(
|
||||||
|
record.get::<NaiveDateTime, &str>("remote_clock"),
|
||||||
|
DateTime::from_timestamp(0, 0).unwrap().naive_utc()
|
||||||
|
);
|
||||||
|
|
||||||
|
let record = sqlx::query("SELECT * FROM peer_clocks WHERE peer = ? AND doc_id = ?")
|
||||||
|
.bind(peer.clone())
|
||||||
|
.bind("doc3")
|
||||||
|
.fetch_one(&storage.pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
record.get::<NaiveDateTime, &str>("remote_clock"),
|
||||||
|
DateTime::from_timestamp(0, 0).unwrap().naive_utc()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn clear_clocks() {
|
||||||
|
let storage = get_storage().await;
|
||||||
|
let peer = String::from("peer1");
|
||||||
|
|
||||||
|
storage
|
||||||
|
.set_peer_remote_clock(peer.clone(), "doc1".to_string(), Utc::now().naive_utc())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
storage
|
||||||
|
.set_peer_pushed_clock(peer.clone(), "doc2".to_string(), Utc::now().naive_utc())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let clocks = storage.get_peer_remote_clocks(peer.clone()).await.unwrap();
|
||||||
|
assert_eq!(clocks.len(), 2);
|
||||||
|
|
||||||
|
let clocks = storage.get_peer_pushed_clocks(peer.clone()).await.unwrap();
|
||||||
|
assert_eq!(clocks.len(), 2);
|
||||||
|
|
||||||
|
storage.clear_clocks().await.unwrap();
|
||||||
|
|
||||||
|
let clocks = storage.get_peer_remote_clocks(peer.clone()).await.unwrap();
|
||||||
|
assert!(clocks.is_empty());
|
||||||
|
|
||||||
|
let clocks = storage.get_peer_pushed_clocks(peer.clone()).await.unwrap();
|
||||||
|
assert!(clocks.is_empty());
|
||||||
|
}
|
||||||
|
}
|
@ -13,9 +13,7 @@
|
|||||||
"aarch64-unknown-linux-gnu",
|
"aarch64-unknown-linux-gnu",
|
||||||
"aarch64-pc-windows-msvc"
|
"aarch64-pc-windows-msvc"
|
||||||
],
|
],
|
||||||
"ts": {
|
|
||||||
"constEnum": false
|
"constEnum": false
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"ava": {
|
"ava": {
|
||||||
|
@ -2,3 +2,6 @@
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
name = "affine_schema"
|
name = "affine_schema"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
sqlx = { workspace = true, default-features = false, features = ["migrate"] }
|
@ -1,29 +1,96 @@
|
|||||||
// TODO
|
use std::borrow::Cow;
|
||||||
// dynamic create it from JavaScript side
|
|
||||||
// and remove this crate then.
|
use sqlx::migrate::{Migration, MigrationType, Migrator};
|
||||||
pub const SCHEMA: &str = r#"CREATE TABLE IF NOT EXISTS "updates" (
|
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
pub mod v1;
|
||||||
data BLOB NOT NULL,
|
|
||||||
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
type SimpleMigration = (
|
||||||
doc_id TEXT
|
/* name */ &'static str,
|
||||||
|
/* up */ &'static str,
|
||||||
|
/* down */ Option<&'static str>,
|
||||||
);
|
);
|
||||||
CREATE TABLE IF NOT EXISTS "blobs" (
|
|
||||||
key TEXT PRIMARY KEY NOT NULL,
|
// ORDER MATTERS
|
||||||
data BLOB NOT NULL,
|
const MIGRATIONS: &[SimpleMigration] = &[
|
||||||
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
|
// v2 db init
|
||||||
|
(
|
||||||
|
"init_v2",
|
||||||
|
r#"
|
||||||
|
CREATE TABLE "meta" (
|
||||||
|
space_id VARCHAR PRIMARY KEY NOT NULL
|
||||||
);
|
);
|
||||||
CREATE TABLE IF NOT EXISTS "version_info" (
|
|
||||||
version NUMBER NOT NULL,
|
CREATE TABLE "snapshots" (
|
||||||
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
|
doc_id VARCHAR PRIMARY KEY NOT NULL,
|
||||||
);
|
|
||||||
CREATE TABLE IF NOT EXISTS "server_clock" (
|
|
||||||
key TEXT PRIMARY KEY NOT NULL,
|
|
||||||
data BLOB NOT NULL,
|
data BLOB NOT NULL,
|
||||||
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||||||
|
updated_at TIMESTAMP NOT NULL
|
||||||
);
|
);
|
||||||
CREATE TABLE IF NOT EXISTS "sync_metadata" (
|
|
||||||
key TEXT PRIMARY KEY NOT NULL,
|
CREATE TABLE "updates" (
|
||||||
|
doc_id VARCHAR NOT NULL,
|
||||||
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||||||
data BLOB NOT NULL,
|
data BLOB NOT NULL,
|
||||||
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
|
PRIMARY KEY (doc_id, created_at)
|
||||||
)
|
);
|
||||||
"#;
|
|
||||||
|
CREATE TABLE "clocks" (
|
||||||
|
doc_id VARCHAR PRIMARY KEY NOT NULL,
|
||||||
|
timestamp TIMESTAMP NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE "blobs" (
|
||||||
|
key VARCHAR PRIMARY KEY NOT NULL,
|
||||||
|
data BLOB NOT NULL,
|
||||||
|
mime VARCHAR NOT NULL,
|
||||||
|
size INTEGER NOT NULL,
|
||||||
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||||||
|
deleted_at TIMESTAMP
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE "peer_clocks" (
|
||||||
|
peer VARCHAR NOT NULL,
|
||||||
|
doc_id VARCHAR NOT NULL,
|
||||||
|
remote_clock TIMESTAMP NOT NULL DEFAULT 0,
|
||||||
|
pulled_remote_clock TIMESTAMP NOT NULL DEFAULT 0,
|
||||||
|
pushed_clock TIMESTAMP NOT NULL DEFAULT 0,
|
||||||
|
PRIMARY KEY (peer, doc_id)
|
||||||
|
);
|
||||||
|
CREATE INDEX peer_clocks_doc_id ON peer_clocks (doc_id);
|
||||||
|
"#,
|
||||||
|
None,
|
||||||
|
),
|
||||||
|
];
|
||||||
|
|
||||||
|
pub fn get_migrator() -> Migrator {
|
||||||
|
let mut migrations = vec![];
|
||||||
|
|
||||||
|
MIGRATIONS.iter().for_each(|&(name, up, down)| {
|
||||||
|
migrations.push(Migration::new(
|
||||||
|
migrations.len() as i64 + 1,
|
||||||
|
Cow::from(name),
|
||||||
|
if down.is_some() {
|
||||||
|
MigrationType::ReversibleUp
|
||||||
|
} else {
|
||||||
|
MigrationType::Simple
|
||||||
|
},
|
||||||
|
Cow::from(up),
|
||||||
|
false,
|
||||||
|
));
|
||||||
|
|
||||||
|
if let Some(down) = down {
|
||||||
|
migrations.push(Migration::new(
|
||||||
|
migrations.len() as i64 + 1,
|
||||||
|
Cow::from(name),
|
||||||
|
MigrationType::ReversibleDown,
|
||||||
|
Cow::from(down),
|
||||||
|
false,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Migrator {
|
||||||
|
migrations: Cow::Owned(migrations),
|
||||||
|
..Migrator::DEFAULT
|
||||||
|
}
|
||||||
|
}
|
||||||
|
26
packages/frontend/native/schema/src/v1.rs
Normal file
26
packages/frontend/native/schema/src/v1.rs
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
pub const SCHEMA: &str = r#"CREATE TABLE IF NOT EXISTS "updates" (
|
||||||
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
|
data BLOB NOT NULL,
|
||||||
|
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||||||
|
doc_id TEXT
|
||||||
|
);
|
||||||
|
CREATE TABLE IF NOT EXISTS "blobs" (
|
||||||
|
key TEXT PRIMARY KEY NOT NULL,
|
||||||
|
data BLOB NOT NULL,
|
||||||
|
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
|
||||||
|
);
|
||||||
|
CREATE TABLE IF NOT EXISTS "version_info" (
|
||||||
|
version NUMBER NOT NULL,
|
||||||
|
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
|
||||||
|
);
|
||||||
|
CREATE TABLE IF NOT EXISTS "server_clock" (
|
||||||
|
key TEXT PRIMARY KEY NOT NULL,
|
||||||
|
data BLOB NOT NULL,
|
||||||
|
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
|
||||||
|
);
|
||||||
|
CREATE TABLE IF NOT EXISTS "sync_metadata" (
|
||||||
|
key TEXT PRIMARY KEY NOT NULL,
|
||||||
|
data BLOB NOT NULL,
|
||||||
|
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
|
||||||
|
)
|
||||||
|
"#;
|
23
packages/frontend/native/sqlite_v1/Cargo.toml
Normal file
23
packages/frontend/native/sqlite_v1/Cargo.toml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
[package]
|
||||||
|
edition = "2021"
|
||||||
|
name = "affine_sqlite_v1"
|
||||||
|
version = "0.0.0"
|
||||||
|
|
||||||
|
[lib]
|
||||||
|
crate-type = ["rlib", "cdylib"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
affine_schema = { path = "../schema" }
|
||||||
|
anyhow = { workspace = true }
|
||||||
|
chrono = { workspace = true }
|
||||||
|
napi = { workspace = true }
|
||||||
|
napi-derive = { workspace = true }
|
||||||
|
sqlx = { workspace = true, default-features = false, features = ["chrono", "macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls"] }
|
||||||
|
tokio = { workspace = true, features = ["full"] }
|
||||||
|
|
||||||
|
[build-dependencies]
|
||||||
|
affine_schema = { path = "../schema" }
|
||||||
|
dotenvy = { workspace = true }
|
||||||
|
napi-build = { workspace = true }
|
||||||
|
sqlx = { workspace = true, default-features = false, features = ["chrono", "json", "macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls"] }
|
||||||
|
tokio = { workspace = true, features = ["full"] }
|
35
packages/frontend/native/sqlite_v1/build.rs
Normal file
35
packages/frontend/native/sqlite_v1/build.rs
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
use sqlx::sqlite::SqliteConnectOptions;
|
||||||
|
use std::fs;
|
||||||
|
|
||||||
|
#[tokio::main]
|
||||||
|
async fn main() -> Result<(), std::io::Error> {
|
||||||
|
napi_build::setup();
|
||||||
|
|
||||||
|
// always start with a fresh database to have latest db schema
|
||||||
|
let cwd = std::env::var("CARGO_MANIFEST_DIR").unwrap();
|
||||||
|
let db_path = format!("{cwd}/affine.db");
|
||||||
|
|
||||||
|
if fs::metadata(&db_path).is_ok() {
|
||||||
|
fs::remove_file(&db_path)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
let options = SqliteConnectOptions::new()
|
||||||
|
.filename(&db_path)
|
||||||
|
.journal_mode(sqlx::sqlite::SqliteJournalMode::Off)
|
||||||
|
.locking_mode(sqlx::sqlite::SqliteLockingMode::Exclusive)
|
||||||
|
.create_if_missing(true);
|
||||||
|
let pool = sqlx::sqlite::SqlitePoolOptions::new()
|
||||||
|
.max_connections(1)
|
||||||
|
.connect_with(options)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
sqlx::query(affine_schema::v1::SCHEMA)
|
||||||
|
.execute(&pool)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
println!("cargo::rustc-env=DATABASE_URL=sqlite://{db_path}");
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
@ -68,7 +68,7 @@ impl SqliteConnection {
|
|||||||
.map_err(anyhow::Error::from)?;
|
.map_err(anyhow::Error::from)?;
|
||||||
};
|
};
|
||||||
let mut connection = self.pool.acquire().await.map_err(anyhow::Error::from)?;
|
let mut connection = self.pool.acquire().await.map_err(anyhow::Error::from)?;
|
||||||
sqlx::query(affine_schema::SCHEMA)
|
sqlx::query(affine_schema::v1::SCHEMA)
|
||||||
.execute(connection.as_mut())
|
.execute(connection.as_mut())
|
||||||
.await
|
.await
|
||||||
.map_err(anyhow::Error::from)?;
|
.map_err(anyhow::Error::from)?;
|
@ -1,2 +1,4 @@
|
|||||||
pub mod hashcash;
|
pub mod hashcash;
|
||||||
pub mod sqlite;
|
|
||||||
|
pub use affine_nbstore::*;
|
||||||
|
pub use affine_sqlite_v1::*;
|
||||||
|
27
yarn.lock
27
yarn.lock
@ -516,6 +516,7 @@ __metadata:
|
|||||||
"@affine/core": "workspace:*"
|
"@affine/core": "workspace:*"
|
||||||
"@affine/i18n": "workspace:*"
|
"@affine/i18n": "workspace:*"
|
||||||
"@affine/native": "workspace:*"
|
"@affine/native": "workspace:*"
|
||||||
|
"@affine/nbstore": "workspace:*"
|
||||||
"@blocksuite/affine": "npm:0.18.7"
|
"@blocksuite/affine": "npm:0.18.7"
|
||||||
"@electron-forge/cli": "npm:^7.3.0"
|
"@electron-forge/cli": "npm:^7.3.0"
|
||||||
"@electron-forge/core": "npm:^7.3.0"
|
"@electron-forge/core": "npm:^7.3.0"
|
||||||
@ -724,10 +725,11 @@ __metadata:
|
|||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"@affine/nbstore@workspace:packages/common/nbstore":
|
"@affine/nbstore@workspace:*, @affine/nbstore@workspace:packages/common/nbstore":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@affine/nbstore@workspace:packages/common/nbstore"
|
resolution: "@affine/nbstore@workspace:packages/common/nbstore"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
"@affine/electron-api": "workspace:*"
|
||||||
"@affine/graphql": "workspace:*"
|
"@affine/graphql": "workspace:*"
|
||||||
"@datastructures-js/binary-search-tree": "npm:^5.3.2"
|
"@datastructures-js/binary-search-tree": "npm:^5.3.2"
|
||||||
"@toeverything/infra": "workspace:*"
|
"@toeverything/infra": "workspace:*"
|
||||||
@ -741,6 +743,7 @@ __metadata:
|
|||||||
vitest: "npm:2.1.8"
|
vitest: "npm:2.1.8"
|
||||||
yjs: "patch:yjs@npm%3A13.6.18#~/.yarn/patches/yjs-npm-13.6.18-ad0d5f7c43.patch"
|
yjs: "patch:yjs@npm%3A13.6.18#~/.yarn/patches/yjs-npm-13.6.18-ad0d5f7c43.patch"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
"@affine/electron-api": "workspace:*"
|
||||||
"@affine/graphql": "workspace:*"
|
"@affine/graphql": "workspace:*"
|
||||||
idb: ^8.0.0
|
idb: ^8.0.0
|
||||||
socket.io-client: ^4.7.5
|
socket.io-client: ^4.7.5
|
||||||
@ -4057,7 +4060,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@emotion/react@npm:^11.11.4":
|
"@emotion/react@npm:^11.11.4, @emotion/react@npm:^11.14.0":
|
||||||
version: 11.14.0
|
version: 11.14.0
|
||||||
resolution: "@emotion/react@npm:11.14.0"
|
resolution: "@emotion/react@npm:11.14.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -12937,9 +12940,11 @@ __metadata:
|
|||||||
"@affine/templates": "workspace:*"
|
"@affine/templates": "workspace:*"
|
||||||
"@blocksuite/affine": "npm:0.18.7"
|
"@blocksuite/affine": "npm:0.18.7"
|
||||||
"@datastructures-js/binary-search-tree": "npm:^5.3.2"
|
"@datastructures-js/binary-search-tree": "npm:^5.3.2"
|
||||||
|
"@emotion/react": "npm:^11.14.0"
|
||||||
"@swc/core": "npm:^1.0.0"
|
"@swc/core": "npm:^1.0.0"
|
||||||
"@testing-library/dom": "npm:^10.0.0"
|
"@testing-library/dom": "npm:^10.0.0"
|
||||||
"@testing-library/react": "npm:^16.1.0"
|
"@testing-library/react": "npm:^16.1.0"
|
||||||
|
"@types/react": "npm:^19.0.1"
|
||||||
eventemitter2: "npm:^6.4.9"
|
eventemitter2: "npm:^6.4.9"
|
||||||
fake-indexeddb: "npm:^6.0.0"
|
fake-indexeddb: "npm:^6.0.0"
|
||||||
foxact: "npm:^0.2.33"
|
foxact: "npm:^0.2.33"
|
||||||
@ -12951,28 +12956,14 @@ __metadata:
|
|||||||
jotai-effect: "npm:^1.0.0"
|
jotai-effect: "npm:^1.0.0"
|
||||||
lodash-es: "npm:^4.17.21"
|
lodash-es: "npm:^4.17.21"
|
||||||
nanoid: "npm:^5.0.7"
|
nanoid: "npm:^5.0.7"
|
||||||
react: "npm:^19.0.0"
|
react: "npm:19.0.0"
|
||||||
rxjs: "npm:^7.8.1"
|
rxjs: "npm:^7.8.1"
|
||||||
vitest: "npm:2.1.8"
|
vitest: "npm:2.1.8"
|
||||||
yjs: "patch:yjs@npm%3A13.6.18#~/.yarn/patches/yjs-npm-13.6.18-ad0d5f7c43.patch"
|
yjs: "patch:yjs@npm%3A13.6.18#~/.yarn/patches/yjs-npm-13.6.18-ad0d5f7c43.patch"
|
||||||
zod: "npm:^3.22.4"
|
zod: "npm:^3.22.4"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@affine/templates": "*"
|
|
||||||
"@swc/core": ^1.0.0
|
|
||||||
"@testing-library/dom": ">=7.0.0"
|
|
||||||
electron: "*"
|
electron: "*"
|
||||||
react: ^19.0.0
|
|
||||||
react-dom: ^19.0.0
|
react-dom: ^19.0.0
|
||||||
yjs: ^13
|
|
||||||
peerDependenciesMeta:
|
|
||||||
"@affine/templates":
|
|
||||||
optional: true
|
|
||||||
electron:
|
|
||||||
optional: true
|
|
||||||
react:
|
|
||||||
optional: true
|
|
||||||
yjs:
|
|
||||||
optional: true
|
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
@ -13864,7 +13855,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@types/react@npm:^19.0.0":
|
"@types/react@npm:^19.0.0, @types/react@npm:^19.0.1":
|
||||||
version: 19.0.1
|
version: 19.0.1
|
||||||
resolution: "@types/react@npm:19.0.1"
|
resolution: "@types/react@npm:19.0.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
Loading…
Reference in New Issue
Block a user