22 Commits

Author SHA1 Message Date
bb678b4b3a fix: tests 2025-05-28 16:48:07 +10:00
cc94798962 feat: add file reader 2025-05-28 15:03:45 +10:00
7811818a72 Merge branch 'borked-reader' 2025-05-28 14:55:05 +10:00
b6910e717b fix: Changed FramedRead to work with ReadableStream
Signed-off-by: quexeky <git@quexeky.dev>
2025-05-28 14:52:42 +10:00
45a26c7156 inprogress: handoff to quexeky 2025-05-28 13:53:28 +10:00
16b78bca17 fix: chunk size 2025-05-27 10:34:44 +10:00
4ac19b8be0 fix: update index.js & index.d.ts 2025-05-26 17:20:03 +10:00
072a1584a0 feat: add list files command 2025-05-26 15:02:41 +10:00
6b5356627a fix: remove unnecessary size parameter causing windows build issues 2025-05-26 14:03:26 +10:00
7ede73e87c feat: move to backend-based manifest 2025-05-26 13:56:24 +10:00
921eb02132 fix: finish removing 32-bit windows 2025-03-31 09:25:30 +11:00
a95d0cea26 fix: bump version and remove freebsd 2025-03-31 09:15:56 +11:00
277651df09 fix: temporarily remove docker-based builds from publish stage 2025-03-31 09:07:44 +11:00
7896f11207 fix: temporarily remove docker-basd tests 2025-03-31 09:06:17 +11:00
0c3196ba7d fix: remove android builds 2025-03-30 18:18:41 +11:00
a0791d71a9 fix: package json 2025-03-30 13:14:51 +11:00
a8b8d4bb3d fix: remove android builds from package.json 2025-03-30 13:12:45 +11:00
59dd17a156 fix: add repo urls 2025-03-30 12:56:15 +11:00
2c28c605ba fix: add repo url 2025-03-30 12:37:41 +11:00
987defaafb fix: update container path 2025-03-29 22:56:21 +11:00
7815338e9e fix: update to use AWS docker mirror 2025-03-29 22:51:44 +11:00
7bb0689cbd fix: update namespace from @drop to @drop-oss 2025-03-29 22:44:30 +11:00
43 changed files with 511 additions and 404 deletions

View File

@ -55,12 +55,6 @@ jobs:
- host: ubuntu-latest
target: armv7-unknown-linux-musleabihf
build: yarn build --target armv7-unknown-linux-musleabihf
- host: ubuntu-latest
target: aarch64-linux-android
build: yarn build --target aarch64-linux-android
- host: ubuntu-latest
target: armv7-linux-androideabi
build: yarn build --target armv7-linux-androideabi
- host: ubuntu-latest
target: aarch64-unknown-linux-musl
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
@ -166,180 +160,180 @@ jobs:
shell: bash
- name: Test bindings
run: yarn test
test-linux-x64-gnu-binding:
name: Test bindings on Linux-x64-gnu - node@${{ matrix.node }}
needs:
- build
strategy:
fail-fast: false
matrix:
node:
- "18"
- "20"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: yarn install
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: bindings-x86_64-unknown-linux-gnu
path: .
- name: List packages
run: ls -R .
shell: bash
- name: Test bindings
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim yarn test
test-linux-x64-musl-binding:
name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
needs:
- build
strategy:
fail-fast: false
matrix:
node:
- "18"
- "20"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: |
yarn config set supportedArchitectures.libc "musl"
yarn install
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: bindings-x86_64-unknown-linux-musl
path: .
- name: List packages
run: ls -R .
shell: bash
- name: Test bindings
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine yarn test
test-linux-aarch64-gnu-binding:
name: Test bindings on aarch64-unknown-linux-gnu - node@${{ matrix.node }}
needs:
- build
strategy:
fail-fast: false
matrix:
node:
- "18"
- "20"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: bindings-aarch64-unknown-linux-gnu
path: .
- name: List packages
run: ls -R .
shell: bash
- name: Install dependencies
run: |
yarn config set supportedArchitectures.cpu "arm64"
yarn config set supportedArchitectures.libc "glibc"
yarn install
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Setup and run tests
uses: addnab/docker-run-action@v3
with:
image: node:${{ matrix.node }}-slim
options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
run: |
set -e
yarn test
ls -la
test-linux-aarch64-musl-binding:
name: Test bindings on aarch64-unknown-linux-musl - node@${{ matrix.node }}
needs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: bindings-aarch64-unknown-linux-musl
path: .
- name: List packages
run: ls -R .
shell: bash
- name: Install dependencies
run: |
yarn config set supportedArchitectures.cpu "arm64"
yarn config set supportedArchitectures.libc "musl"
yarn install
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Setup and run tests
uses: addnab/docker-run-action@v3
with:
image: node:lts-alpine
options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
run: |
set -e
yarn test
test-linux-arm-gnueabihf-binding:
name: Test bindings on armv7-unknown-linux-gnueabihf - node@${{ matrix.node }}
needs:
- build
strategy:
fail-fast: false
matrix:
node:
- "18"
- "20"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: bindings-armv7-unknown-linux-gnueabihf
path: .
- name: List packages
run: ls -R .
shell: bash
- name: Install dependencies
run: |
yarn config set supportedArchitectures.cpu "arm"
yarn install
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Setup and run tests
uses: addnab/docker-run-action@v3
with:
image: node:${{ matrix.node }}-bullseye-slim
options: "--platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build"
run: |
set -e
yarn test
ls -la
# test-linux-x64-gnu-binding:
# name: Test bindings on Linux-x64-gnu - node@${{ matrix.node }}
# needs:
# - build
# strategy:
# fail-fast: false
# matrix:
# node:
# - "18"
# - "20"
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Setup node
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node }}
# cache: yarn
# - name: Install dependencies
# run: yarn install
# - name: Download artifacts
# uses: actions/download-artifact@v4
# with:
# name: bindings-x86_64-unknown-linux-gnu
# path: .
# - name: List packages
# run: ls -R .
# shell: bash
# - name: Test bindings
# run: docker run --rm -v $(pwd):/build -w /build public.ecr.aws/docker/library/node:${{ matrix.node }}-slim yarn test
# test-linux-x64-musl-binding:
# name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
# needs:
# - build
# strategy:
# fail-fast: false
# matrix:
# node:
# - "18"
# - "20"
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Setup node
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node }}
# cache: yarn
# - name: Install dependencies
# run: |
# yarn config set supportedArchitectures.libc "musl"
# yarn install
# - name: Download artifacts
# uses: actions/download-artifact@v4
# with:
# name: bindings-x86_64-unknown-linux-musl
# path: .
# - name: List packages
# run: ls -R .
# shell: bash
# - name: Test bindings
# run: docker run --rm -v $(pwd):/build -w /build public.ecr.aws/docker/library/node:${{ matrix.node }}-alpine yarn test
# test-linux-aarch64-gnu-binding:
# name: Test bindings on aarch64-unknown-linux-gnu - node@${{ matrix.node }}
# needs:
# - build
# strategy:
# fail-fast: false
# matrix:
# node:
# - "18"
# - "20"
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Download artifacts
# uses: actions/download-artifact@v4
# with:
# name: bindings-aarch64-unknown-linux-gnu
# path: .
# - name: List packages
# run: ls -R .
# shell: bash
# - name: Install dependencies
# run: |
# yarn config set supportedArchitectures.cpu "arm64"
# yarn config set supportedArchitectures.libc "glibc"
# yarn install
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# with:
# platforms: arm64
# - run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
# - name: Setup and run tests
# uses: addnab/docker-run-action@v3
# with:
# image: public.ecr.aws/docker/library/node:${{ matrix.node }}-slim
# options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
# run: |
# set -e
# yarn test
# ls -la
# test-linux-aarch64-musl-binding:
# name: Test bindings on aarch64-unknown-linux-musl - node@${{ matrix.node }}
# needs:
# - build
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Download artifacts
# uses: actions/download-artifact@v4
# with:
# name: bindings-aarch64-unknown-linux-musl
# path: .
# - name: List packages
# run: ls -R .
# shell: bash
# - name: Install dependencies
# run: |
# yarn config set supportedArchitectures.cpu "arm64"
# yarn config set supportedArchitectures.libc "musl"
# yarn install
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# with:
# platforms: arm64
# - run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
# - name: Setup and run tests
# uses: addnab/docker-run-action@v3
# with:
# image: node:lts-alpine
# options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
# run: |
# set -e
# yarn test
# test-linux-arm-gnueabihf-binding:
# name: Test bindings on armv7-unknown-linux-gnueabihf - node@${{ matrix.node }}
# needs:
# - build
# strategy:
# fail-fast: false
# matrix:
# node:
# - "18"
# - "20"
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Download artifacts
# uses: actions/download-artifact@v4
# with:
# name: bindings-armv7-unknown-linux-gnueabihf
# path: .
# - name: List packages
# run: ls -R .
# shell: bash
# - name: Install dependencies
# run: |
# yarn config set supportedArchitectures.cpu "arm"
# yarn install
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# with:
# platforms: arm
# - run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
# - name: Setup and run tests
# uses: addnab/docker-run-action@v3
# with:
# image: public.ecr.aws/docker/library/node:${{ matrix.node }}-bullseye-slim
# options: "--platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build"
# run: |
# set -e
# yarn test
# ls -la
universal-macOS:
name: Build universal macOS binary
needs:
@ -377,11 +371,11 @@ jobs:
runs-on: ubuntu-latest
needs:
- test-macOS-windows-binding
- test-linux-x64-gnu-binding
- test-linux-x64-musl-binding
- test-linux-aarch64-gnu-binding
- test-linux-aarch64-musl-binding
- test-linux-arm-gnueabihf-binding
# - test-linux-x64-gnu-binding
# - test-linux-x64-musl-binding
# - test-linux-aarch64-gnu-binding
# - test-linux-aarch64-musl-binding
# - test-linux-arm-gnueabihf-binding
- universal-macOS
steps:
- uses: actions/checkout@v4

2
.gitignore vendored
View File

@ -9,7 +9,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.test
.test*
.tsimp
# Diagnostic reports (https://nodejs.org/api/report.html)

View File

@ -9,11 +9,12 @@ crate-type = ["cdylib"]
[dependencies]
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.12.2", default-features = false, features = [
napi = { version = "3.0.0-alpha.33", default-features = false, features = [
"napi4",
"async",
"web_stream",
] }
napi-derive = "2.12.2"
napi-derive = "3.0.0-alpha.33"
hex = "0.4.3"
serde_json = "1.0.128"
md5 = "0.7.0"
@ -21,6 +22,8 @@ time-macros = "0.2.22"
time = "0.3.41"
webpki = "0.22.4"
ring = "0.17.14"
tokio = { version = "1.45.1", features = ["fs"] }
tokio-util = { version = "0.7.15", features = ["codec"] }
[dependencies.x509-parser]
version = "0.17.0"

View File

@ -2,7 +2,7 @@ import test from "ava";
import fs from "node:fs";
import path from "path";
import { generateManifest } from "../index.js";
import { generateManifest, listFiles } from "../index.js";
test("numerous small file", async (t) => {
// Setup test dir

46
__test__/utils.spec.mjs Normal file
View File

@ -0,0 +1,46 @@
import test from "ava";
import fs from "node:fs";
import path from "path";
import droplet from "../index.js";
test("check alt thread util", async (t) => {
let endtime1, endtime2;
droplet.callAltThreadFunc(async () => {
await new Promise((r) => setTimeout(r, 100));
endtime1 = Date.now();
});
await new Promise((r) => setTimeout(r, 500));
endtime2 = Date.now();
const difference = endtime2 - endtime1;
if (difference >= 600) {
t.fail("likely isn't multithreaded, difference: " + difference);
}
t.pass();
});
test("read file", async (t) => {
const dirName = "./.test2";
if (fs.existsSync(dirName)) fs.rmSync(dirName, { recursive: true });
fs.mkdirSync(dirName, { recursive: true });
const testString = "g'day what's up my koala bros\n".repeat(10000);
fs.writeFileSync("./.test2/TESTFILE", testString);
const stream = droplet.readFile("./.test2", "TESTFILE");
let finalString = "";
for await (const chunk of stream) {
// Do something with each 'chunk'
finalString += String.fromCharCode.apply(null, chunk);
}
t.assert(finalString == testString, "file strings don't match");
fs.rmSync(dirName, { recursive: true });
});

18
index.d.ts vendored
View File

@ -3,10 +3,14 @@
/* auto-generated by NAPI-RS */
export declare function callAltThreadFunc(callback: (...args: any[]) => any): void
export declare function generateManifest(dir: string, progress: (...args: any[]) => any, log: (...args: any[]) => any, callback: (...args: any[]) => any): void
export declare function generateRootCa(): Array<string>
export declare function generateClientCertificate(clientId: string, clientName: string, rootCa: string, rootCaPrivate: string): Array<string>
export declare function verifyClientCertificate(clientCert: string, rootCa: string): boolean
export declare function signNonce(privateKey: string, nonce: string): string
export declare function verifyNonce(publicCert: string, nonce: string, signature: string): boolean
function hasBackendForPath(path: string): boolean
function listFiles(path: string): Array<string>
function readFile(path: string, subPath: string): ReadableStream<Buffer> | null
function callAltThreadFunc(tsfn: ((err: Error | null, ) => any)): void
function generateManifest(dir: string, progressSfn: ((err: Error | null, arg: number) => any), logSfn: ((err: Error | null, arg: string) => any), callbackSfn: ((err: Error | null, arg: string) => any)): void
function generateRootCa(): Array<string>
function generateClientCertificate(clientId: string, clientName: string, rootCa: string, rootCaPrivate: string): Array<string>
function verifyClientCertificate(clientCert: string, rootCa: string): boolean
function signNonce(privateKey: string, nonce: string): string
function verifyNonce(publicCert: string, nonce: string, signature: string): boolean
undefinedundefined

View File

@ -310,8 +310,11 @@ if (!nativeBinding) {
throw new Error(`Failed to load native binding`)
}
const { callAltThreadFunc, generateManifest, generateRootCa, generateClientCertificate, verifyClientCertificate, signNonce, verifyNonce } = nativeBinding
const { hasBackendForPath, listFiles, readFile, callAltThreadFunc, generateManifest, generateRootCa, generateClientCertificate, verifyClientCertificate, signNonce, verifyNonce, } = nativeBinding
module.exports.hasBackendForPath = hasBackendForPath
module.exports.listFiles = listFiles
module.exports.readFile = readFile
module.exports.callAltThreadFunc = callAltThreadFunc
module.exports.generateManifest = generateManifest
module.exports.generateRootCa = generateRootCa
@ -319,3 +322,4 @@ module.exports.generateClientCertificate = generateClientCertificate
module.exports.verifyClientCertificate = verifyClientCertificate
module.exports.signNonce = signNonce
module.exports.verifyNonce = verifyNonce
module.exports.undefined = undefined

View File

@ -1,3 +0,0 @@
# `@drop/droplet-android-arm-eabi`
This is the **armv7-linux-androideabi** binary for `@drop/droplet`

View File

@ -1,18 +0,0 @@
{
"name": "@drop/droplet-android-arm-eabi",
"version": "0.0.0",
"os": [
"android"
],
"cpu": [
"arm"
],
"main": "droplet.android-arm-eabi.node",
"files": [
"droplet.android-arm-eabi.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}

View File

@ -1,3 +0,0 @@
# `@drop/droplet-android-arm64`
This is the **aarch64-linux-android** binary for `@drop/droplet`

View File

@ -1,18 +0,0 @@
{
"name": "@drop/droplet-android-arm64",
"version": "0.0.0",
"os": [
"android"
],
"cpu": [
"arm64"
],
"main": "droplet.android-arm64.node",
"files": [
"droplet.android-arm64.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-darwin-arm64`
# `@drop-oss/droplet-darwin-arm64`
This is the **aarch64-apple-darwin** binary for `@drop/droplet`
This is the **aarch64-apple-darwin** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-darwin-arm64",
"name": "@drop-oss/droplet-darwin-arm64",
"version": "0.0.0",
"os": [
"darwin"
@ -14,5 +14,8 @@
"license": "MIT",
"engines": {
"node": ">= 10"
},
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-darwin-universal`
# `@drop-oss/droplet-darwin-universal`
This is the **universal-apple-darwin** binary for `@drop/droplet`
This is the **universal-apple-darwin** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-darwin-universal",
"name": "@drop-oss/droplet-darwin-universal",
"version": "0.0.0",
"os": [
"darwin"
@ -11,5 +11,8 @@
"license": "MIT",
"engines": {
"node": ">= 10"
},
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-darwin-x64`
# `@drop-oss/droplet-darwin-x64`
This is the **x86_64-apple-darwin** binary for `@drop/droplet`
This is the **x86_64-apple-darwin** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-darwin-x64",
"name": "@drop-oss/droplet-darwin-x64",
"version": "0.0.0",
"os": [
"darwin"
@ -14,5 +14,8 @@
"license": "MIT",
"engines": {
"node": ">= 10"
},
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +0,0 @@
# `@drop/droplet-freebsd-x64`
This is the **x86_64-unknown-freebsd** binary for `@drop/droplet`

View File

@ -1,18 +0,0 @@
{
"name": "@drop/droplet-freebsd-x64",
"version": "0.0.0",
"os": [
"freebsd"
],
"cpu": [
"x64"
],
"main": "droplet.freebsd-x64.node",
"files": [
"droplet.freebsd-x64.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-linux-arm-gnueabihf`
# `@drop-oss/droplet-linux-arm-gnueabihf`
This is the **armv7-unknown-linux-gnueabihf** binary for `@drop/droplet`
This is the **armv7-unknown-linux-gnueabihf** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-linux-arm-gnueabihf",
"name": "@drop-oss/droplet-linux-arm-gnueabihf",
"version": "0.0.0",
"os": [
"linux"
@ -14,5 +14,8 @@
"license": "MIT",
"engines": {
"node": ">= 10"
},
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-linux-arm-musleabihf`
# `@drop-oss/droplet-linux-arm-musleabihf`
This is the **armv7-unknown-linux-musleabihf** binary for `@drop/droplet`
This is the **armv7-unknown-linux-musleabihf** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-linux-arm-musleabihf",
"name": "@drop-oss/droplet-linux-arm-musleabihf",
"version": "0.0.0",
"os": [
"linux"
@ -14,5 +14,8 @@
"license": "MIT",
"engines": {
"node": ">= 10"
},
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-linux-arm64-gnu`
# `@drop-oss/droplet-linux-arm64-gnu`
This is the **aarch64-unknown-linux-gnu** binary for `@drop/droplet`
This is the **aarch64-unknown-linux-gnu** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-linux-arm64-gnu",
"name": "@drop-oss/droplet-linux-arm64-gnu",
"version": "0.0.0",
"os": [
"linux"
@ -17,5 +17,8 @@
},
"libc": [
"glibc"
]
],
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-linux-arm64-musl`
# `@drop-oss/droplet-linux-arm64-musl`
This is the **aarch64-unknown-linux-musl** binary for `@drop/droplet`
This is the **aarch64-unknown-linux-musl** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-linux-arm64-musl",
"name": "@drop-oss/droplet-linux-arm64-musl",
"version": "0.0.0",
"os": [
"linux"
@ -17,5 +17,8 @@
},
"libc": [
"musl"
]
],
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-linux-riscv64-gnu`
# `@drop-oss/droplet-linux-riscv64-gnu`
This is the **riscv64gc-unknown-linux-gnu** binary for `@drop/droplet`
This is the **riscv64gc-unknown-linux-gnu** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-linux-riscv64-gnu",
"name": "@drop-oss/droplet-linux-riscv64-gnu",
"version": "0.0.0",
"os": [
"linux"
@ -17,5 +17,8 @@
},
"libc": [
"glibc"
]
],
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-linux-x64-gnu`
# `@drop-oss/droplet-linux-x64-gnu`
This is the **x86_64-unknown-linux-gnu** binary for `@drop/droplet`
This is the **x86_64-unknown-linux-gnu** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-linux-x64-gnu",
"name": "@drop-oss/droplet-linux-x64-gnu",
"version": "0.0.0",
"os": [
"linux"
@ -17,5 +17,8 @@
},
"libc": [
"glibc"
]
],
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-linux-x64-musl`
# `@drop-oss/droplet-linux-x64-musl`
This is the **x86_64-unknown-linux-musl** binary for `@drop/droplet`
This is the **x86_64-unknown-linux-musl** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-linux-x64-musl",
"name": "@drop-oss/droplet-linux-x64-musl",
"version": "0.0.0",
"os": [
"linux"
@ -17,5 +17,8 @@
},
"libc": [
"musl"
]
],
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-win32-arm64-msvc`
# `@drop-oss/droplet-win32-arm64-msvc`
This is the **aarch64-pc-windows-msvc** binary for `@drop/droplet`
This is the **aarch64-pc-windows-msvc** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-win32-arm64-msvc",
"name": "@drop-oss/droplet-win32-arm64-msvc",
"version": "0.0.0",
"os": [
"win32"
@ -14,5 +14,8 @@
"license": "MIT",
"engines": {
"node": ">= 10"
},
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,3 +0,0 @@
# `@drop/droplet-win32-ia32-msvc`
This is the **i686-pc-windows-msvc** binary for `@drop/droplet`

View File

@ -1,18 +0,0 @@
{
"name": "@drop/droplet-win32-ia32-msvc",
"version": "0.0.0",
"os": [
"win32"
],
"cpu": [
"ia32"
],
"main": "droplet.win32-ia32-msvc.node",
"files": [
"droplet.win32-ia32-msvc.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}

View File

@ -1,3 +1,3 @@
# `@drop/droplet-win32-x64-msvc`
# `@drop-oss/droplet-win32-x64-msvc`
This is the **x86_64-pc-windows-msvc** binary for `@drop/droplet`
This is the **x86_64-pc-windows-msvc** binary for `@drop-oss/droplet`

View File

@ -1,5 +1,5 @@
{
"name": "@drop/droplet-win32-x64-msvc",
"name": "@drop-oss/droplet-win32-x64-msvc",
"version": "0.0.0",
"os": [
"win32"
@ -14,5 +14,8 @@
"license": "MIT",
"engines": {
"node": ">= 10"
},
"repository": {
"url": "https://github.com/Drop-OSS/droplet"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@drop-oss/droplet",
"version": "0.7.0",
"version": "1.2.0",
"main": "index.js",
"types": "index.d.ts",
"napi": {
@ -8,16 +8,12 @@
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"armv7-unknown-linux-musleabihf",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"armv7-linux-androideabi",
"universal-apple-darwin",
"riscv64gc-unknown-linux-gnu"
]
@ -25,7 +21,7 @@
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.18.4",
"@napi-rs/cli": "2.18.4",
"@types/node": "^22.13.10",
"ava": "^6.2.0"
},
@ -44,5 +40,8 @@
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "yarn@4.7.0"
"packageManager": "yarn@4.7.0",
"repository": {
"url": "git+https://github.com/Drop-OSS/droplet.git"
}
}

View File

@ -1,6 +1,19 @@
#[cfg(unix)]
use std::os::unix::fs::PermissionsExt;
use std::{
fs::{self, metadata},
fs::{self, metadata, File},
io::{self, BufReader, ErrorKind, Read},
path::{Path, PathBuf},
task::Poll,
};
use napi::{
bindgen_prelude::*,
tokio_stream::{Stream, StreamExt},
};
use tokio_util::{
bytes::BytesMut,
codec::{BytesCodec, FramedRead},
};
fn _list_files(vec: &mut Vec<PathBuf>, path: &Path) {
@ -17,8 +30,136 @@ fn _list_files(vec: &mut Vec<PathBuf>, path: &Path) {
}
}
pub fn list_files(path: &Path) -> Vec<PathBuf> {
pub struct VersionFile {
pub relative_filename: String,
pub permission: u32,
}
pub trait VersionBackend: 'static {
fn list_files(&self, path: &Path) -> Vec<VersionFile>;
fn reader(&self, file: &VersionFile) -> Option<File>;
}
pub struct PathVersionBackend {
pub base_dir: PathBuf,
}
impl VersionBackend for PathVersionBackend {
fn list_files(&self, path: &Path) -> Vec<VersionFile> {
let mut vec = Vec::new();
_list_files(&mut vec, path);
vec
let mut results = Vec::new();
for pathbuf in vec.iter() {
let file = File::open(pathbuf.clone()).unwrap();
let relative = pathbuf.strip_prefix(path).unwrap();
let metadata = file.try_clone().unwrap().metadata().unwrap();
let permission_object = metadata.permissions();
let permissions = {
let perm: u32;
#[cfg(target_family = "unix")]
{
perm = permission_object.mode();
}
#[cfg(not(target_family = "unix"))]
{
perm = 0
}
perm
};
results.push(VersionFile {
relative_filename: relative.to_string_lossy().to_string(),
permission: permissions,
});
}
results
}
fn reader(&self, file: &VersionFile) -> Option<File> {
let file = File::open(self.base_dir.join(file.relative_filename.clone())).ok()?;
return Some(file);
}
}
// Todo implementation for archives
// Split into a separate impl for each type of archive
pub struct ArchiveVersionBackend {}
impl VersionBackend for ArchiveVersionBackend {
fn list_files(&self, path: &Path) -> Vec<VersionFile> {
todo!()
}
fn reader(&self, file: &VersionFile) -> Option<File> {
todo!()
}
}
pub fn create_backend_for_path(path: &Path) -> Option<Box<(dyn VersionBackend)>> {
let is_directory = path.is_dir();
if is_directory {
return Some(Box::new(PathVersionBackend {
base_dir: path.to_path_buf(),
}));
};
/*
Insert checks for whatever backend you like
*/
None
}
#[napi]
pub fn has_backend_for_path(path: String) -> bool {
let path = Path::new(&path);
let has_backend = create_backend_for_path(path).is_some();
has_backend
}
#[napi]
pub fn list_files(path: String) -> Vec<String> {
let path = Path::new(&path);
let backend = create_backend_for_path(path).unwrap();
let files = backend.list_files(path);
files.into_iter().map(|e| e.relative_filename).collect()
}
#[napi]
pub fn read_file(
path: String,
sub_path: String,
env: &Env,
) -> Option<ReadableStream<'static, BufferSlice<'static>>> {
let path = Path::new(&path);
let backend = create_backend_for_path(path).unwrap();
let version_file = VersionFile {
relative_filename: sub_path,
permission: 0, // Shouldn't matter
};
// Use `?` operator for cleaner error propagation from `Option`
let reader = backend.reader(&version_file)?;
// Convert std::fs::File to tokio::fs::File for async operations
let reader = tokio::fs::File::from_std(reader);
// Create a FramedRead stream with BytesCodec for chunking
let stream = FramedRead::new(reader, BytesCodec::new())
// Use StreamExt::map to transform each Result item
.map(|result_item| {
result_item
// Apply Result::map to transform Ok(BytesMut) to Ok(Vec<u8>)
.map(|bytes| bytes.to_vec())
// Apply Result::map_err to transform Err(std::io::Error) to Err(napi::Error)
.map_err(|e| napi::Error::from(e)) // napi::Error implements From<tokio::io::Error>
});
// Create the napi-rs ReadableStream from the tokio_stream::Stream
// The unwrap() here means if stream creation fails, it will panic.
// For a production system, consider returning Result<Option<...>> and handling this.
Some(ReadableStream::create_with_stream_bytes(env, stream).unwrap())
}

View File

@ -1,22 +1,19 @@
use std::{
collections::HashMap,
fs::File,
io::{BufRead, BufReader},
path::Path,
thread,
collections::HashMap, fs::File, io::{BufRead, BufReader}, path::Path, rc::Rc, sync::Arc, thread
};
#[cfg(unix)]
use std::os::unix::fs::PermissionsExt;
use napi::{
threadsafe_function::{ErrorStrategy, ThreadsafeFunction, ThreadsafeFunctionCallMode},
Error, JsFunction,
bindgen_prelude::Function,
threadsafe_function::{ThreadsafeFunction, ThreadsafeFunctionCallMode},
Env, Error, Result,
};
use serde_json::json;
use uuid::Uuid;
use crate::file_utils::list_files;
use crate::file_utils::create_backend_for_path;
const CHUNK_SIZE: usize = 1024 * 1024 * 64;
@ -29,14 +26,10 @@ struct ChunkData {
}
#[napi]
pub fn call_alt_thread_func(callback: JsFunction) -> Result<(), Error> {
let tsfn: ThreadsafeFunction<u32, ErrorStrategy::CalleeHandled> = callback
.create_threadsafe_function(0, |ctx| {
ctx.env.create_uint32(ctx.value + 1).map(|v| vec![v])
})?;
let tsfn = tsfn.clone();
pub fn call_alt_thread_func(tsfn: Arc<ThreadsafeFunction<()>>) -> Result<(), String> {
let tsfn_cloned = tsfn.clone();
thread::spawn(move || {
tsfn.call(Ok(0), ThreadsafeFunctionCallMode::NonBlocking);
tsfn_cloned.call(Ok(()), ThreadsafeFunctionCallMode::Blocking);
});
Ok(())
}
@ -44,27 +37,14 @@ pub fn call_alt_thread_func(callback: JsFunction) -> Result<(), Error> {
#[napi]
pub fn generate_manifest(
dir: String,
progress: JsFunction,
log: JsFunction,
callback: JsFunction,
) -> Result<(), Error> {
let progress_sfn: ThreadsafeFunction<i32, ErrorStrategy::CalleeHandled> = progress
.create_threadsafe_function(0, |ctx| ctx.env.create_int32(ctx.value).map(|v| vec![v]))
.unwrap();
let log_sfn: ThreadsafeFunction<String, ErrorStrategy::CalleeHandled> = log
.create_threadsafe_function(0, |ctx| {
ctx.env.create_string_from_std(ctx.value).map(|v| vec![v])
})
.unwrap();
let callback_sfn: ThreadsafeFunction<String, ErrorStrategy::CalleeHandled> = callback
.create_threadsafe_function(0, |ctx| {
ctx.env.create_string_from_std(ctx.value).map(|v| vec![v])
})
.unwrap();
progress_sfn: ThreadsafeFunction<i32>,
log_sfn: ThreadsafeFunction<String>,
callback_sfn: ThreadsafeFunction<String>,
) -> Result<(), String> {
thread::spawn(move || {
let base_dir = Path::new(&dir);
let files = list_files(base_dir);
let backend = create_backend_for_path(base_dir).unwrap();
let files = backend.list_files(base_dir);
// Filepath to chunk data
let mut chunks: HashMap<String, ChunkData> = HashMap::new();
@ -72,27 +52,12 @@ pub fn generate_manifest(
let total: i32 = files.len() as i32;
let mut i: i32 = 0;
for file_path in files {
let file = File::open(file_path.clone()).unwrap();
let relative = file_path.strip_prefix(base_dir).unwrap();
let permission_object = file.try_clone().unwrap().metadata().unwrap().permissions();
let permissions = {
let perm: u32;
#[cfg(target_family = "unix")]
{
perm = permission_object.mode();
}
#[cfg(not(target_family = "unix"))]
{
perm = 0
}
perm
};
let mut reader = BufReader::with_capacity(CHUNK_SIZE, file);
for version_file in files {
let mut raw_reader= backend.reader(&version_file).unwrap();
let mut reader = BufReader::with_capacity(CHUNK_SIZE, raw_reader);
let mut chunk_data = ChunkData {
permissions,
permissions: version_file.permission,
ids: Vec::new(),
checksums: Vec::new(),
lengths: Vec::new(),
@ -118,8 +83,7 @@ pub fn generate_manifest(
let log_str = format!(
"Processed chunk {} for {}",
chunk_index,
relative.to_str().unwrap()
chunk_index, &version_file.relative_filename
);
log_sfn.call(Ok(log_str), ThreadsafeFunctionCallMode::Blocking);
@ -127,7 +91,7 @@ pub fn generate_manifest(
chunk_index += 1;
}
chunks.insert(relative.to_str().unwrap().to_string(), chunk_data);
chunks.insert(version_file.relative_filename, chunk_data);
i += 1;
let progress = i * 100 / total;

View File

@ -9,7 +9,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@drop-oss/droplet@workspace:."
dependencies:
"@napi-rs/cli": "npm:^2.18.4"
"@napi-rs/cli": "npm:2.18.4"
"@types/node": "npm:^22.13.10"
ava: "npm:^6.2.0"
languageName: unknown
@ -55,7 +55,7 @@ __metadata:
languageName: node
linkType: hard
"@napi-rs/cli@npm:^2.18.4":
"@napi-rs/cli@npm:2.18.4":
version: 2.18.4
resolution: "@napi-rs/cli@npm:2.18.4"
bin: