crc32-rs 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +170 -0
- package/crc32.linux-x64-gnu.node +0 -0
- package/index.d.ts +89 -0
- package/index.js +708 -0
- package/package.json +47 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Mahmoud Harmouch
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
# CRC32
|
|
4
|
+
|
|
5
|
+
[](https://github.com/wiseaidotdev/crc32-v2)
|
|
6
|
+
|
|
7
|
+
[](https://crates.io/crates/crc32-v2)
|
|
8
|
+
[](https://docs.rs/crc32-v2)
|
|
9
|
+
[](https://www.npmjs.com/package/crc32-rs)
|
|
10
|
+
[](https://pypi.org/project/crc32-rs)
|
|
11
|
+
[](LICENSE)
|
|
12
|
+
|
|
13
|
+
> `crc32-v2` is a multi-language toolkit providing the fastest port of the CRC-32 algorithm from zlib to Rust, with zero-dependency Python and Node.js native bindings 🗿.
|
|
14
|
+
|
|
15
|
+
Resurrecting the [`crc32`](https://crates.io/crates/crc32) crate from the ashes.
|
|
16
|
+
|
|
17
|
+
| 🦀 Rust | 🐍 Python | 🟩 Node.js |
|
|
18
|
+
| :---------------------------------------: | :----------------------------------------------------------------------------: | :------------------------------------------------------------------------: |
|
|
19
|
+
| `cargo add crc32-v2` | `pip install crc32-rs` | `npm install crc32-rs` |
|
|
20
|
+
| [Documentation](https://docs.rs/crc32-v2) | [Read PYTHON.md](https://github.com/wiseaidotdev/crc32-v2/blob/main/PYTHON.md) | [Read NODE.md](https://github.com/wiseaidotdev/crc32-v2/blob/main/NODE.md) |
|
|
21
|
+
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
- **Standard byte-at-a-time `crc32`**: compatible with zlib, PKZIP, Ethernet, FDDI
|
|
27
|
+
- **Four-bytes-at-a-time `crc32_little`**: slicing-by-4, ~2-4x higher throughput on large inputs
|
|
28
|
+
- **Big-endian `crc32_big`**: interoperable with big-endian hardware CRC devices
|
|
29
|
+
- **Streaming `Digest`**: incremental checksum without buffering the entire payload
|
|
30
|
+
- **`crc32_combine`**: merge two independently computed CRCs in O(log n) time
|
|
31
|
+
- **Python bindings**: via PyO3 / maturin (`pip install crc32-rs`)
|
|
32
|
+
- **Node.js bindings**: via napi-rs (`npm install crc32-rs`)
|
|
33
|
+
|
|
34
|
+
## Rust Usage
|
|
35
|
+
|
|
36
|
+
Add to your `Cargo.toml`:
|
|
37
|
+
|
|
38
|
+
```toml
|
|
39
|
+
[dependencies]
|
|
40
|
+
crc32-v2 = "0.1.0"
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Or run:
|
|
44
|
+
|
|
45
|
+
```sh
|
|
46
|
+
cargo add crc32-v2
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### One-shot checksum
|
|
50
|
+
|
|
51
|
+
```rust
|
|
52
|
+
use crc32_v2::crc32;
|
|
53
|
+
|
|
54
|
+
fn main() {
|
|
55
|
+
let data = b"Hello, world!";
|
|
56
|
+
println!("CRC-32: {:#010X}", crc32(0, data)); // CRC-32: 0xEBE6C6E6
|
|
57
|
+
}
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### Four-bytes-at-a-time (higher throughput)
|
|
61
|
+
|
|
62
|
+
```rust
|
|
63
|
+
use crc32_v2::byfour::crc32_little;
|
|
64
|
+
|
|
65
|
+
fn main() {
|
|
66
|
+
let data = b"Hello, world!";
|
|
67
|
+
println!("CRC-32 (little): {:#010X}", crc32_little(0, data)); // CRC-32 (little): 0xEBE6C6E6
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Streaming checksum via `Digest`
|
|
72
|
+
|
|
73
|
+
```rust
|
|
74
|
+
use crc32_v2::Digest;
|
|
75
|
+
|
|
76
|
+
fn main() {
|
|
77
|
+
let mut digest = Digest::new();
|
|
78
|
+
digest.update(b"Hello, ");
|
|
79
|
+
digest.update(b"world!");
|
|
80
|
+
println!("CRC-32: {:#010X}", digest.finalize()); // CRC-32: 0xEBE6C6E6
|
|
81
|
+
}
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### Combining two checksums
|
|
85
|
+
|
|
86
|
+
```rust
|
|
87
|
+
use crc32_v2::{crc32, crc32_combine};
|
|
88
|
+
|
|
89
|
+
fn main() {
|
|
90
|
+
let crc1 = crc32(0, b"Hello, ");
|
|
91
|
+
let crc2 = crc32(0, b"world!");
|
|
92
|
+
let combined = crc32_combine(crc1, crc2, b"world!".len() as u64);
|
|
93
|
+
assert_eq!(combined, crc32(0, b"Hello, world!"));
|
|
94
|
+
println!("Combined: {:#010X}", combined); // Combined: 0xEBE6C6E6
|
|
95
|
+
}
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Python Usage
|
|
99
|
+
|
|
100
|
+
See [PYTHON.md](PYTHON.md) for full documentation.
|
|
101
|
+
|
|
102
|
+
```sh
|
|
103
|
+
pip install crc32-rs
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
```python
|
|
107
|
+
from crc32_rs import crc32, crc32_little, Digest
|
|
108
|
+
|
|
109
|
+
print(hex(crc32(b"Hello, world!"))) # 0xebe6c6e6
|
|
110
|
+
print(hex(crc32_little(b"Hello, world!"))) # 0xebe6c6e6
|
|
111
|
+
|
|
112
|
+
d = Digest()
|
|
113
|
+
d.update(b"Hello, ")
|
|
114
|
+
d.update(b"world!")
|
|
115
|
+
print(hex(d.finalize())) # 0xebe6c6e6
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
## Node.js Usage
|
|
119
|
+
|
|
120
|
+
See [NODE.md](NODE.md) for full documentation.
|
|
121
|
+
|
|
122
|
+
```sh
|
|
123
|
+
npm install crc32-rs
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
```javascript
|
|
127
|
+
// If installed via npm: const { crc32, crc32Little, Digest } = require('crc32-rs');
|
|
128
|
+
// For local development:
|
|
129
|
+
const { crc32, crc32Little, Digest } = require(".");
|
|
130
|
+
|
|
131
|
+
console.log(crc32(Buffer.from("Hello, world!")).toString(16)); // ebe6c6e6
|
|
132
|
+
console.log(crc32Little(Buffer.from("Hello, world!")).toString(16)); // ebe6c6e6
|
|
133
|
+
|
|
134
|
+
const d = new Digest();
|
|
135
|
+
d.update(Buffer.from("Hello, "));
|
|
136
|
+
d.update(Buffer.from("world!"));
|
|
137
|
+
console.log(d.finalize().toString(16)); // ebe6c6e6
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
## Benchmark
|
|
141
|
+
|
|
142
|
+
Running `cargo bench` measures throughput across five payload sizes. Results on a typical x86-64 machine:
|
|
143
|
+
|
|
144
|
+
<details>
|
|
145
|
+
<summary><code>cargo bench</code></summary>
|
|
146
|
+
|
|
147
|
+
| **Method** | **1 B** | **64 B** | **1 KiB** | **64 KiB** | **1 MiB** |
|
|
148
|
+
| ------------------------ | ------------------- | -------------------- | ------------------- | -------------------- | ------------------- |
|
|
149
|
+
| `crc32_v2::crc32` | ~2.3 ns (421 MiB/s) | ~154 ns (395 MiB/s) | ~2.8 µs (350 MiB/s) | ~178 µs (352 MiB/s) | ~2.8 ms (352 MiB/s) |
|
|
150
|
+
| `crc32_v2::crc32_little` | ~7.3 ns (131 MiB/s) | ~90.6 ns (673 MiB/s) | ~1.2 µs (814 MiB/s) | ~74.7 µs (837 MiB/s) | ~1.3 ms (771 MiB/s) |
|
|
151
|
+
| `crc32_v2::crc32_big` | ~2.6 ns (371 MiB/s) | ~175 ns (350 MiB/s) | ~3.2 µs (305 MiB/s) | ~193 µs (324 MiB/s) | ~3.1 ms (324 MiB/s) |
|
|
152
|
+
| `crc32_v2::Digest` | ~2.2 ns (439 MiB/s) | ~155 ns (393 MiB/s) | ~2.7 µs (357 MiB/s) | ~173 µs (361 MiB/s) | ~2.7 ms (364 MiB/s) |
|
|
153
|
+
| `crc32fast::hash` | ~10 ns (96 MiB/s) | ~20 ns (3.0 GiB/s) | ~105 ns (9.3 GiB/s) | ~5.4 µs (11.6 GiB/s) | ~86 µs (11.6 GiB/s) |
|
|
154
|
+
| `crc32fast::Hasher` | ~15 ns (64 MiB/s) | ~36 ns (1.7 GiB/s) | ~108 ns (9.0 GiB/s) | ~5.5 µs (11.5 GiB/s) | ~87 µs (11.5 GiB/s) |
|
|
155
|
+
|
|
156
|
+
</details>
|
|
157
|
+
|
|
158
|
+
> **Key takeaways**
|
|
159
|
+
>
|
|
160
|
+
> - `crc32_little` achieves ~800 MiB/s throughput for large inputs, making it over 2x faster than the simple byte-at-a-time `crc32` (~350 MiB/s), thanks to the slicing-by-4 algorithm. For tiny inputs (< 16 B), `crc32` is marginally faster due to lower alignment overhead.
|
|
161
|
+
> - `crc32_big` falls back to a byte-at-a-time loop and achieves similar throughput to `crc32` (~320 MiB/s).
|
|
162
|
+
> - `crc32fast` achieves ~11.6 GiB/s on x86-64 because it uses runtime-detected SIMD hardware acceleration (`pclmulqdq`). For maximum raw throughput on known hardware, prefer `crc32fast`. For pure portability, full control, or embedding in a `no_std` context without CPU feature detection overhead, use `crc32-v2`.
|
|
163
|
+
|
|
164
|
+
## See Also
|
|
165
|
+
|
|
166
|
+
- [A Painless Guide to CRC Error Detection Algorithms](https://www.zlib.net/crc_v3.txt) - the canonical reference for this algorithm.
|
|
167
|
+
- [zlib - crc32.c](https://github.com/madler/zlib/blob/master/crc32.c) - the C implementation this crate is ported from.
|
|
168
|
+
- [`crc32fast`](https://docs.rs/crc32fast) - SIMD-accelerated CRC-32 for Rust.
|
|
169
|
+
- [`crc`](https://docs.rs/crc) - generic CRC computation for many widths and polynomials.
|
|
170
|
+
- [IEEE 802.3 CRC-32](https://en.wikipedia.org/wiki/Cyclic_redundancy_check) - Wikipedia overview.
|
|
Binary file
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/* auto-generated by NAPI-RS */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* A streaming CRC-32 digest.
|
|
5
|
+
*
|
|
6
|
+
* Computes a CRC-32 checksum incrementally over multiple ``Buffer`` slices.
|
|
7
|
+
* The result is identical to computing the CRC over the concatenation of all
|
|
8
|
+
* buffers in one shot.
|
|
9
|
+
*
|
|
10
|
+
* ```javascript
|
|
11
|
+
* const { Digest } = require('.');
|
|
12
|
+
* const d = new Digest();
|
|
13
|
+
* d.update(Buffer.from('Hello, '));
|
|
14
|
+
* d.update(Buffer.from('world!'));
|
|
15
|
+
* console.log(d.finalize().toString(16)); // ebe6c6e6
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* See Also: ``crc32()``, ``crc32Combine()``.
|
|
19
|
+
*/
|
|
20
|
+
export declare class Digest {
|
|
21
|
+
/**
|
|
22
|
+
* Create a new ``Digest`` starting from CRC value ``0``.
|
|
23
|
+
*
|
|
24
|
+
* ``initialCrc``: Optional starting CRC value (default ``0``).
|
|
25
|
+
*/
|
|
26
|
+
constructor(initialCrc?: number | undefined | null)
|
|
27
|
+
/**
|
|
28
|
+
* Feed more bytes into the running checksum.
|
|
29
|
+
*
|
|
30
|
+
* ``data``: A ``Buffer`` to incorporate into the running CRC.
|
|
31
|
+
*/
|
|
32
|
+
update(data: Buffer): void
|
|
33
|
+
/**
|
|
34
|
+
* Return the current CRC-32 checksum as an unsigned 32-bit integer.
|
|
35
|
+
*
|
|
36
|
+
* Does **not** reset the digest; further ``update()`` calls continue
|
|
37
|
+
* from the current state.
|
|
38
|
+
*/
|
|
39
|
+
finalize(): number
|
|
40
|
+
/** Reset the digest to CRC ``0``. */
|
|
41
|
+
reset(): void
|
|
42
|
+
}
|
|
43
|
+
export type NapiDigest = Digest
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Calculates the CRC-32 checksum of `data`.
|
|
47
|
+
*
|
|
48
|
+
* Compatible with zlib, PKZIP, Ethernet, and FDDI.
|
|
49
|
+
*
|
|
50
|
+
* ``data`` : `Buffer` to checksum.
|
|
51
|
+
* ``initialCrc`` : Optional starting CRC value (default ``0``). Pass a
|
|
52
|
+
* previous result to chain multiple buffers.
|
|
53
|
+
*
|
|
54
|
+
* Returns an unsigned 32-bit integer.
|
|
55
|
+
*
|
|
56
|
+
* See [A Painless Guide to CRC Error Detection Algorithms](https://www.zlib.net/crc_v3.txt).
|
|
57
|
+
*/
|
|
58
|
+
export declare function crc32(data: Buffer, initialCrc?: number | undefined | null): number
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Calculates the CRC-32 checksum using the big-endian variant.
|
|
62
|
+
*
|
|
63
|
+
* ``data`` : `Buffer` to checksum.
|
|
64
|
+
* ``initialCrc`` : Optional starting CRC value (default ``0``).
|
|
65
|
+
*
|
|
66
|
+
* Returns an unsigned 32-bit integer.
|
|
67
|
+
*/
|
|
68
|
+
export declare function crc32Big(data: Buffer, initialCrc?: number | undefined | null): number
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Combines two CRC-32 values computed over adjacent byte sequences.
|
|
72
|
+
*
|
|
73
|
+
* ``crc1``: CRC-32 of the first sequence.
|
|
74
|
+
* ``crc2``: CRC-32 of the second sequence.
|
|
75
|
+
* ``len2``: Byte length of the second sequence.
|
|
76
|
+
*
|
|
77
|
+
* Returns the CRC-32 of the concatenation as an unsigned 32-bit integer.
|
|
78
|
+
*/
|
|
79
|
+
export declare function crc32Combine(crc1: number, crc2: number, len2: number): number
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Calculates the CRC-32 checksum using the four-bytes-at-a-time little-endian variant.
|
|
83
|
+
*
|
|
84
|
+
* ``data`` : `Buffer` to checksum.
|
|
85
|
+
* ``initialCrc`` : Optional starting CRC value (default ``0``).
|
|
86
|
+
*
|
|
87
|
+
* Returns an unsigned 32-bit integer.
|
|
88
|
+
*/
|
|
89
|
+
export declare function crc32Little(data: Buffer, initialCrc?: number | undefined | null): number
|
package/index.js
ADDED
|
@@ -0,0 +1,708 @@
|
|
|
1
|
+
// prettier-ignore
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
/* auto-generated by NAPI-RS */
|
|
5
|
+
|
|
6
|
+
const { readFileSync } = require('fs')
|
|
7
|
+
let nativeBinding = null
|
|
8
|
+
const loadErrors = []
|
|
9
|
+
|
|
10
|
+
const isMusl = () => {
|
|
11
|
+
let musl = false
|
|
12
|
+
if (process.platform === 'linux') {
|
|
13
|
+
musl = isMuslFromFilesystem()
|
|
14
|
+
if (musl === null) {
|
|
15
|
+
musl = isMuslFromReport()
|
|
16
|
+
}
|
|
17
|
+
if (musl === null) {
|
|
18
|
+
musl = isMuslFromChildProcess()
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return musl
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
const isFileMusl = (f) => f.includes('libc.musl-') || f.includes('ld-musl-')
|
|
25
|
+
|
|
26
|
+
const isMuslFromFilesystem = () => {
|
|
27
|
+
try {
|
|
28
|
+
return readFileSync('/usr/bin/ldd', 'utf-8').includes('musl')
|
|
29
|
+
} catch {
|
|
30
|
+
return null
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const isMuslFromReport = () => {
|
|
35
|
+
let report = null
|
|
36
|
+
if (process.report && typeof process.report.getReport === 'function') {
|
|
37
|
+
process.report.excludeNetwork = true
|
|
38
|
+
report = process.report.getReport()
|
|
39
|
+
}
|
|
40
|
+
if (!report) {
|
|
41
|
+
return null
|
|
42
|
+
}
|
|
43
|
+
if (report.header && report.header.glibcVersionRuntime) {
|
|
44
|
+
return false
|
|
45
|
+
}
|
|
46
|
+
if (Array.isArray(report.sharedObjects)) {
|
|
47
|
+
if (report.sharedObjects.some(isFileMusl)) {
|
|
48
|
+
return true
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return false
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
const isMuslFromChildProcess = () => {
|
|
55
|
+
try {
|
|
56
|
+
return require('child_process').execSync('ldd --version', { encoding: 'utf8' }).includes('musl')
|
|
57
|
+
} catch (e) {
|
|
58
|
+
// If we reach this case, we don't know if the system is musl or not, so is better to just fallback to false
|
|
59
|
+
return false
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function requireNative() {
|
|
64
|
+
if (process.env.NAPI_RS_NATIVE_LIBRARY_PATH) {
|
|
65
|
+
try {
|
|
66
|
+
return require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH);
|
|
67
|
+
} catch (err) {
|
|
68
|
+
loadErrors.push(err)
|
|
69
|
+
}
|
|
70
|
+
} else if (process.platform === 'android') {
|
|
71
|
+
if (process.arch === 'arm64') {
|
|
72
|
+
try {
|
|
73
|
+
return require('./crc32.android-arm64.node')
|
|
74
|
+
} catch (e) {
|
|
75
|
+
loadErrors.push(e)
|
|
76
|
+
}
|
|
77
|
+
try {
|
|
78
|
+
const binding = require('crc32-rs-android-arm64')
|
|
79
|
+
const bindingPackageVersion = require('crc32-rs-android-arm64/package.json').version
|
|
80
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
82
|
+
}
|
|
83
|
+
return binding
|
|
84
|
+
} catch (e) {
|
|
85
|
+
loadErrors.push(e)
|
|
86
|
+
}
|
|
87
|
+
} else if (process.arch === 'arm') {
|
|
88
|
+
try {
|
|
89
|
+
return require('./crc32.android-arm-eabi.node')
|
|
90
|
+
} catch (e) {
|
|
91
|
+
loadErrors.push(e)
|
|
92
|
+
}
|
|
93
|
+
try {
|
|
94
|
+
const binding = require('crc32-rs-android-arm-eabi')
|
|
95
|
+
const bindingPackageVersion = require('crc32-rs-android-arm-eabi/package.json').version
|
|
96
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
98
|
+
}
|
|
99
|
+
return binding
|
|
100
|
+
} catch (e) {
|
|
101
|
+
loadErrors.push(e)
|
|
102
|
+
}
|
|
103
|
+
} else {
|
|
104
|
+
loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`))
|
|
105
|
+
}
|
|
106
|
+
} else if (process.platform === 'win32') {
|
|
107
|
+
if (process.arch === 'x64') {
|
|
108
|
+
if ((process.config && process.config.variables && process.config.variables.shlib_suffix === 'dll.a') || (process.config && process.config.variables && process.config.variables.node_target_type === 'shared_library')) {
|
|
109
|
+
try {
|
|
110
|
+
return require('./crc32.win32-x64-gnu.node')
|
|
111
|
+
} catch (e) {
|
|
112
|
+
loadErrors.push(e)
|
|
113
|
+
}
|
|
114
|
+
try {
|
|
115
|
+
const binding = require('crc32-rs-win32-x64-gnu')
|
|
116
|
+
const bindingPackageVersion = require('crc32-rs-win32-x64-gnu/package.json').version
|
|
117
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
119
|
+
}
|
|
120
|
+
return binding
|
|
121
|
+
} catch (e) {
|
|
122
|
+
loadErrors.push(e)
|
|
123
|
+
}
|
|
124
|
+
} else {
|
|
125
|
+
try {
|
|
126
|
+
return require('./crc32.win32-x64-msvc.node')
|
|
127
|
+
} catch (e) {
|
|
128
|
+
loadErrors.push(e)
|
|
129
|
+
}
|
|
130
|
+
try {
|
|
131
|
+
const binding = require('crc32-rs-win32-x64-msvc')
|
|
132
|
+
const bindingPackageVersion = require('crc32-rs-win32-x64-msvc/package.json').version
|
|
133
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
135
|
+
}
|
|
136
|
+
return binding
|
|
137
|
+
} catch (e) {
|
|
138
|
+
loadErrors.push(e)
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
} else if (process.arch === 'ia32') {
|
|
142
|
+
try {
|
|
143
|
+
return require('./crc32.win32-ia32-msvc.node')
|
|
144
|
+
} catch (e) {
|
|
145
|
+
loadErrors.push(e)
|
|
146
|
+
}
|
|
147
|
+
try {
|
|
148
|
+
const binding = require('crc32-rs-win32-ia32-msvc')
|
|
149
|
+
const bindingPackageVersion = require('crc32-rs-win32-ia32-msvc/package.json').version
|
|
150
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
152
|
+
}
|
|
153
|
+
return binding
|
|
154
|
+
} catch (e) {
|
|
155
|
+
loadErrors.push(e)
|
|
156
|
+
}
|
|
157
|
+
} else if (process.arch === 'arm64') {
|
|
158
|
+
try {
|
|
159
|
+
return require('./crc32.win32-arm64-msvc.node')
|
|
160
|
+
} catch (e) {
|
|
161
|
+
loadErrors.push(e)
|
|
162
|
+
}
|
|
163
|
+
try {
|
|
164
|
+
const binding = require('crc32-rs-win32-arm64-msvc')
|
|
165
|
+
const bindingPackageVersion = require('crc32-rs-win32-arm64-msvc/package.json').version
|
|
166
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
168
|
+
}
|
|
169
|
+
return binding
|
|
170
|
+
} catch (e) {
|
|
171
|
+
loadErrors.push(e)
|
|
172
|
+
}
|
|
173
|
+
} else {
|
|
174
|
+
loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`))
|
|
175
|
+
}
|
|
176
|
+
} else if (process.platform === 'darwin') {
|
|
177
|
+
try {
|
|
178
|
+
return require('./crc32.darwin-universal.node')
|
|
179
|
+
} catch (e) {
|
|
180
|
+
loadErrors.push(e)
|
|
181
|
+
}
|
|
182
|
+
try {
|
|
183
|
+
const binding = require('crc32-rs-darwin-universal')
|
|
184
|
+
const bindingPackageVersion = require('crc32-rs-darwin-universal/package.json').version
|
|
185
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
187
|
+
}
|
|
188
|
+
return binding
|
|
189
|
+
} catch (e) {
|
|
190
|
+
loadErrors.push(e)
|
|
191
|
+
}
|
|
192
|
+
if (process.arch === 'x64') {
|
|
193
|
+
try {
|
|
194
|
+
return require('./crc32.darwin-x64.node')
|
|
195
|
+
} catch (e) {
|
|
196
|
+
loadErrors.push(e)
|
|
197
|
+
}
|
|
198
|
+
try {
|
|
199
|
+
const binding = require('crc32-rs-darwin-x64')
|
|
200
|
+
const bindingPackageVersion = require('crc32-rs-darwin-x64/package.json').version
|
|
201
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
203
|
+
}
|
|
204
|
+
return binding
|
|
205
|
+
} catch (e) {
|
|
206
|
+
loadErrors.push(e)
|
|
207
|
+
}
|
|
208
|
+
} else if (process.arch === 'arm64') {
|
|
209
|
+
try {
|
|
210
|
+
return require('./crc32.darwin-arm64.node')
|
|
211
|
+
} catch (e) {
|
|
212
|
+
loadErrors.push(e)
|
|
213
|
+
}
|
|
214
|
+
try {
|
|
215
|
+
const binding = require('crc32-rs-darwin-arm64')
|
|
216
|
+
const bindingPackageVersion = require('crc32-rs-darwin-arm64/package.json').version
|
|
217
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
219
|
+
}
|
|
220
|
+
return binding
|
|
221
|
+
} catch (e) {
|
|
222
|
+
loadErrors.push(e)
|
|
223
|
+
}
|
|
224
|
+
} else {
|
|
225
|
+
loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`))
|
|
226
|
+
}
|
|
227
|
+
} else if (process.platform === 'freebsd') {
|
|
228
|
+
if (process.arch === 'x64') {
|
|
229
|
+
try {
|
|
230
|
+
return require('./crc32.freebsd-x64.node')
|
|
231
|
+
} catch (e) {
|
|
232
|
+
loadErrors.push(e)
|
|
233
|
+
}
|
|
234
|
+
try {
|
|
235
|
+
const binding = require('crc32-rs-freebsd-x64')
|
|
236
|
+
const bindingPackageVersion = require('crc32-rs-freebsd-x64/package.json').version
|
|
237
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
239
|
+
}
|
|
240
|
+
return binding
|
|
241
|
+
} catch (e) {
|
|
242
|
+
loadErrors.push(e)
|
|
243
|
+
}
|
|
244
|
+
} else if (process.arch === 'arm64') {
|
|
245
|
+
try {
|
|
246
|
+
return require('./crc32.freebsd-arm64.node')
|
|
247
|
+
} catch (e) {
|
|
248
|
+
loadErrors.push(e)
|
|
249
|
+
}
|
|
250
|
+
try {
|
|
251
|
+
const binding = require('crc32-rs-freebsd-arm64')
|
|
252
|
+
const bindingPackageVersion = require('crc32-rs-freebsd-arm64/package.json').version
|
|
253
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
255
|
+
}
|
|
256
|
+
return binding
|
|
257
|
+
} catch (e) {
|
|
258
|
+
loadErrors.push(e)
|
|
259
|
+
}
|
|
260
|
+
} else {
|
|
261
|
+
loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`))
|
|
262
|
+
}
|
|
263
|
+
} else if (process.platform === 'linux') {
|
|
264
|
+
if (process.arch === 'x64') {
|
|
265
|
+
if (isMusl()) {
|
|
266
|
+
try {
|
|
267
|
+
return require('./crc32.linux-x64-musl.node')
|
|
268
|
+
} catch (e) {
|
|
269
|
+
loadErrors.push(e)
|
|
270
|
+
}
|
|
271
|
+
try {
|
|
272
|
+
const binding = require('crc32-rs-linux-x64-musl')
|
|
273
|
+
const bindingPackageVersion = require('crc32-rs-linux-x64-musl/package.json').version
|
|
274
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
276
|
+
}
|
|
277
|
+
return binding
|
|
278
|
+
} catch (e) {
|
|
279
|
+
loadErrors.push(e)
|
|
280
|
+
}
|
|
281
|
+
} else {
|
|
282
|
+
try {
|
|
283
|
+
return require('./crc32.linux-x64-gnu.node')
|
|
284
|
+
} catch (e) {
|
|
285
|
+
loadErrors.push(e)
|
|
286
|
+
}
|
|
287
|
+
try {
|
|
288
|
+
const binding = require('crc32-rs-linux-x64-gnu')
|
|
289
|
+
const bindingPackageVersion = require('crc32-rs-linux-x64-gnu/package.json').version
|
|
290
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
292
|
+
}
|
|
293
|
+
return binding
|
|
294
|
+
} catch (e) {
|
|
295
|
+
loadErrors.push(e)
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
} else if (process.arch === 'arm64') {
|
|
299
|
+
if (isMusl()) {
|
|
300
|
+
try {
|
|
301
|
+
return require('./crc32.linux-arm64-musl.node')
|
|
302
|
+
} catch (e) {
|
|
303
|
+
loadErrors.push(e)
|
|
304
|
+
}
|
|
305
|
+
try {
|
|
306
|
+
const binding = require('crc32-rs-linux-arm64-musl')
|
|
307
|
+
const bindingPackageVersion = require('crc32-rs-linux-arm64-musl/package.json').version
|
|
308
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
310
|
+
}
|
|
311
|
+
return binding
|
|
312
|
+
} catch (e) {
|
|
313
|
+
loadErrors.push(e)
|
|
314
|
+
}
|
|
315
|
+
} else {
|
|
316
|
+
try {
|
|
317
|
+
return require('./crc32.linux-arm64-gnu.node')
|
|
318
|
+
} catch (e) {
|
|
319
|
+
loadErrors.push(e)
|
|
320
|
+
}
|
|
321
|
+
try {
|
|
322
|
+
const binding = require('crc32-rs-linux-arm64-gnu')
|
|
323
|
+
const bindingPackageVersion = require('crc32-rs-linux-arm64-gnu/package.json').version
|
|
324
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
326
|
+
}
|
|
327
|
+
return binding
|
|
328
|
+
} catch (e) {
|
|
329
|
+
loadErrors.push(e)
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
} else if (process.arch === 'arm') {
|
|
333
|
+
if (isMusl()) {
|
|
334
|
+
try {
|
|
335
|
+
return require('./crc32.linux-arm-musleabihf.node')
|
|
336
|
+
} catch (e) {
|
|
337
|
+
loadErrors.push(e)
|
|
338
|
+
}
|
|
339
|
+
try {
|
|
340
|
+
const binding = require('crc32-rs-linux-arm-musleabihf')
|
|
341
|
+
const bindingPackageVersion = require('crc32-rs-linux-arm-musleabihf/package.json').version
|
|
342
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
344
|
+
}
|
|
345
|
+
return binding
|
|
346
|
+
} catch (e) {
|
|
347
|
+
loadErrors.push(e)
|
|
348
|
+
}
|
|
349
|
+
} else {
|
|
350
|
+
try {
|
|
351
|
+
return require('./crc32.linux-arm-gnueabihf.node')
|
|
352
|
+
} catch (e) {
|
|
353
|
+
loadErrors.push(e)
|
|
354
|
+
}
|
|
355
|
+
try {
|
|
356
|
+
const binding = require('crc32-rs-linux-arm-gnueabihf')
|
|
357
|
+
const bindingPackageVersion = require('crc32-rs-linux-arm-gnueabihf/package.json').version
|
|
358
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
360
|
+
}
|
|
361
|
+
return binding
|
|
362
|
+
} catch (e) {
|
|
363
|
+
loadErrors.push(e)
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
} else if (process.arch === 'loong64') {
|
|
367
|
+
if (isMusl()) {
|
|
368
|
+
try {
|
|
369
|
+
return require('./crc32.linux-loong64-musl.node')
|
|
370
|
+
} catch (e) {
|
|
371
|
+
loadErrors.push(e)
|
|
372
|
+
}
|
|
373
|
+
try {
|
|
374
|
+
const binding = require('crc32-rs-linux-loong64-musl')
|
|
375
|
+
const bindingPackageVersion = require('crc32-rs-linux-loong64-musl/package.json').version
|
|
376
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
378
|
+
}
|
|
379
|
+
return binding
|
|
380
|
+
} catch (e) {
|
|
381
|
+
loadErrors.push(e)
|
|
382
|
+
}
|
|
383
|
+
} else {
|
|
384
|
+
try {
|
|
385
|
+
return require('./crc32.linux-loong64-gnu.node')
|
|
386
|
+
} catch (e) {
|
|
387
|
+
loadErrors.push(e)
|
|
388
|
+
}
|
|
389
|
+
try {
|
|
390
|
+
const binding = require('crc32-rs-linux-loong64-gnu')
|
|
391
|
+
const bindingPackageVersion = require('crc32-rs-linux-loong64-gnu/package.json').version
|
|
392
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
394
|
+
}
|
|
395
|
+
return binding
|
|
396
|
+
} catch (e) {
|
|
397
|
+
loadErrors.push(e)
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
} else if (process.arch === 'riscv64') {
|
|
401
|
+
if (isMusl()) {
|
|
402
|
+
try {
|
|
403
|
+
return require('./crc32.linux-riscv64-musl.node')
|
|
404
|
+
} catch (e) {
|
|
405
|
+
loadErrors.push(e)
|
|
406
|
+
}
|
|
407
|
+
try {
|
|
408
|
+
const binding = require('crc32-rs-linux-riscv64-musl')
|
|
409
|
+
const bindingPackageVersion = require('crc32-rs-linux-riscv64-musl/package.json').version
|
|
410
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
412
|
+
}
|
|
413
|
+
return binding
|
|
414
|
+
} catch (e) {
|
|
415
|
+
loadErrors.push(e)
|
|
416
|
+
}
|
|
417
|
+
} else {
|
|
418
|
+
try {
|
|
419
|
+
return require('./crc32.linux-riscv64-gnu.node')
|
|
420
|
+
} catch (e) {
|
|
421
|
+
loadErrors.push(e)
|
|
422
|
+
}
|
|
423
|
+
try {
|
|
424
|
+
const binding = require('crc32-rs-linux-riscv64-gnu')
|
|
425
|
+
const bindingPackageVersion = require('crc32-rs-linux-riscv64-gnu/package.json').version
|
|
426
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
428
|
+
}
|
|
429
|
+
return binding
|
|
430
|
+
} catch (e) {
|
|
431
|
+
loadErrors.push(e)
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
} else if (process.arch === 'ppc64') {
|
|
435
|
+
try {
|
|
436
|
+
return require('./crc32.linux-ppc64-gnu.node')
|
|
437
|
+
} catch (e) {
|
|
438
|
+
loadErrors.push(e)
|
|
439
|
+
}
|
|
440
|
+
try {
|
|
441
|
+
const binding = require('crc32-rs-linux-ppc64-gnu')
|
|
442
|
+
const bindingPackageVersion = require('crc32-rs-linux-ppc64-gnu/package.json').version
|
|
443
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
445
|
+
}
|
|
446
|
+
return binding
|
|
447
|
+
} catch (e) {
|
|
448
|
+
loadErrors.push(e)
|
|
449
|
+
}
|
|
450
|
+
} else if (process.arch === 's390x') {
|
|
451
|
+
try {
|
|
452
|
+
return require('./crc32.linux-s390x-gnu.node')
|
|
453
|
+
} catch (e) {
|
|
454
|
+
loadErrors.push(e)
|
|
455
|
+
}
|
|
456
|
+
try {
|
|
457
|
+
const binding = require('crc32-rs-linux-s390x-gnu')
|
|
458
|
+
const bindingPackageVersion = require('crc32-rs-linux-s390x-gnu/package.json').version
|
|
459
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
461
|
+
}
|
|
462
|
+
return binding
|
|
463
|
+
} catch (e) {
|
|
464
|
+
loadErrors.push(e)
|
|
465
|
+
}
|
|
466
|
+
} else {
|
|
467
|
+
loadErrors.push(new Error(`Unsupported architecture on Linux: ${process.arch}`))
|
|
468
|
+
}
|
|
469
|
+
} else if (process.platform === 'openharmony') {
|
|
470
|
+
if (process.arch === 'arm64') {
|
|
471
|
+
try {
|
|
472
|
+
return require('./crc32.openharmony-arm64.node')
|
|
473
|
+
} catch (e) {
|
|
474
|
+
loadErrors.push(e)
|
|
475
|
+
}
|
|
476
|
+
try {
|
|
477
|
+
const binding = require('crc32-rs-openharmony-arm64')
|
|
478
|
+
const bindingPackageVersion = require('crc32-rs-openharmony-arm64/package.json').version
|
|
479
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
481
|
+
}
|
|
482
|
+
return binding
|
|
483
|
+
} catch (e) {
|
|
484
|
+
loadErrors.push(e)
|
|
485
|
+
}
|
|
486
|
+
} else if (process.arch === 'x64') {
|
|
487
|
+
try {
|
|
488
|
+
return require('./crc32.openharmony-x64.node')
|
|
489
|
+
} catch (e) {
|
|
490
|
+
loadErrors.push(e)
|
|
491
|
+
}
|
|
492
|
+
try {
|
|
493
|
+
const binding = require('crc32-rs-openharmony-x64')
|
|
494
|
+
const bindingPackageVersion = require('crc32-rs-openharmony-x64/package.json').version
|
|
495
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
497
|
+
}
|
|
498
|
+
return binding
|
|
499
|
+
} catch (e) {
|
|
500
|
+
loadErrors.push(e)
|
|
501
|
+
}
|
|
502
|
+
} else if (process.arch === 'arm') {
|
|
503
|
+
try {
|
|
504
|
+
return require('./crc32.openharmony-arm.node')
|
|
505
|
+
} catch (e) {
|
|
506
|
+
loadErrors.push(e)
|
|
507
|
+
}
|
|
508
|
+
try {
|
|
509
|
+
const binding = require('crc32-rs-openharmony-arm')
|
|
510
|
+
const bindingPackageVersion = require('crc32-rs-openharmony-arm/package.json').version
|
|
511
|
+
if (bindingPackageVersion !== '0.1.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
513
|
+
}
|
|
514
|
+
return binding
|
|
515
|
+
} catch (e) {
|
|
516
|
+
loadErrors.push(e)
|
|
517
|
+
}
|
|
518
|
+
} else {
|
|
519
|
+
loadErrors.push(new Error(`Unsupported architecture on OpenHarmony: ${process.arch}`))
|
|
520
|
+
}
|
|
521
|
+
} else {
|
|
522
|
+
loadErrors.push(new Error(`Unsupported OS: ${process.platform}, architecture: ${process.arch}`))
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
function createLoadErrorChain(errors) {
|
|
527
|
+
return errors.reduce((previous, current) => {
|
|
528
|
+
let message
|
|
529
|
+
try {
|
|
530
|
+
message =
|
|
531
|
+
current && typeof current.message === 'string'
|
|
532
|
+
? current.message
|
|
533
|
+
: String(current)
|
|
534
|
+
} catch {
|
|
535
|
+
message = 'Unknown error'
|
|
536
|
+
}
|
|
537
|
+
const error = new Error(message)
|
|
538
|
+
error.cause = previous
|
|
539
|
+
return error
|
|
540
|
+
}, null)
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
// NAPI_RS_FORCE_WASI is a tri-state flag:
|
|
544
|
+
// unset / any other value → native binding preferred, WASI is only a fallback
|
|
545
|
+
// 'true' → prefer WASI, but retain native as a lazy fallback
|
|
546
|
+
// 'error' → require WASI without initializing a native fallback
|
|
547
|
+
// Treating any non-empty string as truthy (the historical behavior) meant
|
|
548
|
+
// NAPI_RS_FORCE_WASI=false, NAPI_RS_FORCE_WASI=0, etc. inadvertently triggered
|
|
549
|
+
// the WASI path, causing ENOENT for packages shipped without a .wasi.cjs file.
|
|
550
|
+
//
|
|
551
|
+
// NAPI_RS_WASI_FLAVOR selects one exact generated flavor and implies strict
|
|
552
|
+
// WASI loading. It never crosses into another flavor or falls back to native.
|
|
553
|
+
const __napiWasiFlavors = ["wasm32-wasi"]
|
|
554
|
+
const __napiWasiFlavor = process.env.NAPI_RS_WASI_FLAVOR
|
|
555
|
+
const __napiWasiFlavorRequested =
|
|
556
|
+
typeof __napiWasiFlavor === 'string' && __napiWasiFlavor.length > 0
|
|
557
|
+
if (
|
|
558
|
+
__napiWasiFlavorRequested &&
|
|
559
|
+
__napiWasiFlavors.indexOf(__napiWasiFlavor) === -1
|
|
560
|
+
) {
|
|
561
|
+
throw new Error(
|
|
562
|
+
'Unsupported WASI flavor "' +
|
|
563
|
+
__napiWasiFlavor +
|
|
564
|
+
'". Available flavors: ' +
|
|
565
|
+
__napiWasiFlavors.join(', '),
|
|
566
|
+
)
|
|
567
|
+
}
|
|
568
|
+
const forceWasiError = process.env.NAPI_RS_FORCE_WASI === 'error'
|
|
569
|
+
const forceWasi =
|
|
570
|
+
process.env.NAPI_RS_FORCE_WASI === 'true' ||
|
|
571
|
+
forceWasiError ||
|
|
572
|
+
__napiWasiFlavorRequested
|
|
573
|
+
|
|
574
|
+
if (!forceWasi) {
|
|
575
|
+
nativeBinding = requireNative()
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
if (!nativeBinding || forceWasi) {
|
|
579
|
+
let wasiBinding = null
|
|
580
|
+
let wasiBindingLoaded = false
|
|
581
|
+
const wasiBindingErrors = []
|
|
582
|
+
const __napiWasiResolveCandidate = (specifier, isPackage, localArtifacts) => {
|
|
583
|
+
try {
|
|
584
|
+
require.resolve(specifier)
|
|
585
|
+
} catch (resolveError) {
|
|
586
|
+
if (!resolveError || resolveError.code !== 'MODULE_NOT_FOUND') {
|
|
587
|
+
throw resolveError
|
|
588
|
+
}
|
|
589
|
+
if (isPackage) {
|
|
590
|
+
try {
|
|
591
|
+
require.resolve(specifier + '/package.json')
|
|
592
|
+
} catch (packageError) {
|
|
593
|
+
if (packageError && packageError.code === 'MODULE_NOT_FOUND') {
|
|
594
|
+
return resolveError
|
|
595
|
+
}
|
|
596
|
+
// An exports restriction proves the package exists even when its
|
|
597
|
+
// package.json is not public. Preserve the root resolution failure.
|
|
598
|
+
throw resolveError
|
|
599
|
+
}
|
|
600
|
+
// The package exists but its main/export target is broken.
|
|
601
|
+
throw resolveError
|
|
602
|
+
}
|
|
603
|
+
return resolveError
|
|
604
|
+
}
|
|
605
|
+
if (localArtifacts) {
|
|
606
|
+
let artifactError = null
|
|
607
|
+
for (let i = 0; i < localArtifacts.length; i++) {
|
|
608
|
+
try {
|
|
609
|
+
require.resolve(localArtifacts[i])
|
|
610
|
+
return null
|
|
611
|
+
} catch (resolveError) {
|
|
612
|
+
if (!resolveError || resolveError.code !== 'MODULE_NOT_FOUND') {
|
|
613
|
+
throw resolveError
|
|
614
|
+
}
|
|
615
|
+
artifactError = resolveError
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
return artifactError
|
|
619
|
+
}
|
|
620
|
+
return null
|
|
621
|
+
}
|
|
622
|
+
if (!wasiBindingLoaded && (!__napiWasiFlavorRequested || __napiWasiFlavor === "wasm32-wasi")) {
|
|
623
|
+
let candidateError = null
|
|
624
|
+
let candidateFailed = false
|
|
625
|
+
try {
|
|
626
|
+
candidateError = __napiWasiResolveCandidate('./crc32.wasi.cjs', false, ["./crc32.wasm32-wasi.debug.wasm","./crc32.wasm32-wasi.wasm"])
|
|
627
|
+
candidateFailed = candidateError !== null
|
|
628
|
+
if (!candidateFailed) {
|
|
629
|
+
wasiBinding = require('./crc32.wasi.cjs')
|
|
630
|
+
nativeBinding = wasiBinding
|
|
631
|
+
wasiBindingLoaded = true
|
|
632
|
+
}
|
|
633
|
+
} catch (err) {
|
|
634
|
+
candidateError = err
|
|
635
|
+
candidateFailed = true
|
|
636
|
+
}
|
|
637
|
+
if (candidateFailed) {
|
|
638
|
+
wasiBindingErrors.push(candidateError)
|
|
639
|
+
loadErrors.push(candidateError)
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
if (!wasiBindingLoaded && (!__napiWasiFlavorRequested || __napiWasiFlavor === "wasm32-wasi")) {
|
|
643
|
+
let candidateError = null
|
|
644
|
+
let candidateFailed = false
|
|
645
|
+
try {
|
|
646
|
+
candidateError = __napiWasiResolveCandidate('crc32-rs-wasm32-wasi', true, undefined)
|
|
647
|
+
candidateFailed = candidateError !== null
|
|
648
|
+
if (!candidateFailed) {
|
|
649
|
+
if (process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
650
|
+
const bindingPackageVersion = require('crc32-rs-wasm32-wasi/package.json').version
|
|
651
|
+
if (bindingPackageVersion !== '0.1.0') {
|
|
652
|
+
throw new Error(`WASI binding package version mismatch, expected 0.1.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
wasiBinding = require('crc32-rs-wasm32-wasi')
|
|
656
|
+
nativeBinding = wasiBinding
|
|
657
|
+
wasiBindingLoaded = true
|
|
658
|
+
}
|
|
659
|
+
} catch (err) {
|
|
660
|
+
candidateError = err
|
|
661
|
+
candidateFailed = true
|
|
662
|
+
}
|
|
663
|
+
if (candidateFailed) {
|
|
664
|
+
wasiBindingErrors.push(candidateError)
|
|
665
|
+
loadErrors.push(candidateError)
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
if (
|
|
669
|
+
!wasiBindingLoaded &&
|
|
670
|
+
forceWasi &&
|
|
671
|
+
!forceWasiError &&
|
|
672
|
+
!__napiWasiFlavorRequested
|
|
673
|
+
) {
|
|
674
|
+
nativeBinding = requireNative()
|
|
675
|
+
}
|
|
676
|
+
if ((forceWasiError || __napiWasiFlavorRequested) && !wasiBindingLoaded) {
|
|
677
|
+
const error = new Error(
|
|
678
|
+
__napiWasiFlavorRequested
|
|
679
|
+
? 'WASI binding for flavor "' + __napiWasiFlavor + '" not found'
|
|
680
|
+
: 'WASI binding not found and NAPI_RS_FORCE_WASI is set to error',
|
|
681
|
+
)
|
|
682
|
+
error.cause = createLoadErrorChain(wasiBindingErrors)
|
|
683
|
+
throw error
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
if (!nativeBinding) {
|
|
688
|
+
if (loadErrors.length > 0) {
|
|
689
|
+
const error = new Error(
|
|
690
|
+
`Cannot find native binding. ` +
|
|
691
|
+
`npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). ` +
|
|
692
|
+
'Please try `npm i` again after removing both package-lock.json and node_modules directory.',
|
|
693
|
+
)
|
|
694
|
+
// assign instead of the `new Error(message, { cause })` options form,
|
|
695
|
+
// which Node < 16.9 silently ignores
|
|
696
|
+
error.cause = createLoadErrorChain(loadErrors)
|
|
697
|
+
throw error
|
|
698
|
+
}
|
|
699
|
+
throw new Error(`Failed to load native binding`)
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
module.exports = nativeBinding
|
|
703
|
+
module.exports.Digest = nativeBinding.Digest
|
|
704
|
+
module.exports.NapiDigest = nativeBinding.NapiDigest
|
|
705
|
+
module.exports.crc32 = nativeBinding.crc32
|
|
706
|
+
module.exports.crc32Big = nativeBinding.crc32Big
|
|
707
|
+
module.exports.crc32Combine = nativeBinding.crc32Combine
|
|
708
|
+
module.exports.crc32Little = nativeBinding.crc32Little
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "crc32-rs",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"types": "index.d.ts",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/wiseaidev/crc32-v2.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/wiseaidev/crc32-v2",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/wiseaidev/crc32-v2/issues"
|
|
13
|
+
},
|
|
14
|
+
"author": "Mahmoud Harmouch <oss@wiseai.dev>",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"description": "A fast CRC-32 library for Node.js, powered by Rust.",
|
|
17
|
+
"keywords": [
|
|
18
|
+
"crc32",
|
|
19
|
+
"checksum",
|
|
20
|
+
"hash",
|
|
21
|
+
"zlib",
|
|
22
|
+
"rust",
|
|
23
|
+
"napi"
|
|
24
|
+
],
|
|
25
|
+
"files": [
|
|
26
|
+
"index.js",
|
|
27
|
+
"index.d.ts",
|
|
28
|
+
"*.node",
|
|
29
|
+
"README.md",
|
|
30
|
+
"LICENSE"
|
|
31
|
+
],
|
|
32
|
+
"napi": {
|
|
33
|
+
"binaryName": "crc32"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"artifacts": "napi artifacts",
|
|
37
|
+
"build": "napi build --platform --release --features node",
|
|
38
|
+
"build:debug": "napi build --platform --features node",
|
|
39
|
+
"version": "napi version"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@napi-rs/cli": "^3.6.2"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">= 22"
|
|
46
|
+
}
|
|
47
|
+
}
|