iscc-lib 0.2.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.
- checksums.yaml +7 -0
- data/Cargo.toml +14 -0
- data/LICENSE +190 -0
- data/README.md +93 -0
- data/extconf.rb +9 -0
- data/lib/iscc_lib/version.rb +6 -0
- data/lib/iscc_lib.rb +217 -0
- data/src/lib.rs +521 -0
- metadata +56 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: cb56331f61e33a3793e9b323860a22174a611c71db426c34e80ff088e6876972
|
|
4
|
+
data.tar.gz: 7ca682d292eb7714d6ef28bfadc31089a3c62afc635e7cb86257af85bb259076
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: ee207ab6501c9a20937b2b04750014857a5417abb804f58a91eb7cf47624d0396d4a8c719d7d1c2a2db069f02d83a9e72eadf2e7f14375b39616f4504ff0f28f
|
|
7
|
+
data.tar.gz: 618ada4639532ac73002e739df6e5f56fa648c6f308b1f87c772356f6715bc3fe713e60538319bd022b01a78fe0b0c3f3618a4bc5c4a62e01b6ff6e49931f9be
|
data/Cargo.toml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "iscc-rb"
|
|
3
|
+
version.workspace = true
|
|
4
|
+
edition.workspace = true
|
|
5
|
+
rust-version.workspace = true
|
|
6
|
+
publish = false # Published via RubyGems, not crates.io
|
|
7
|
+
|
|
8
|
+
[lib]
|
|
9
|
+
name = "iscc_rb"
|
|
10
|
+
crate-type = ["cdylib"]
|
|
11
|
+
|
|
12
|
+
[dependencies]
|
|
13
|
+
iscc-lib = { path = "../iscc-lib" }
|
|
14
|
+
magnus = { workspace = true }
|
data/LICENSE
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding any notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2026 The Authors
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
data/README.md
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# iscc-lib
|
|
2
|
+
|
|
3
|
+
[](https://github.com/iscc/iscc-lib/actions/workflows/ci.yml)
|
|
4
|
+
[](https://rubygems.org/gems/iscc-lib)
|
|
5
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
6
|
+
|
|
7
|
+
High-performance Ruby bindings for [ISO 24138:2024](https://www.iso.org/standard/77899.html) —
|
|
8
|
+
International Standard Content Code (ISCC). Built as a native Rust extension via
|
|
9
|
+
[Magnus](https://github.com/matsadler/magnus) for speed, with an idiomatic Ruby API featuring
|
|
10
|
+
keyword arguments and attribute-style result access.
|
|
11
|
+
|
|
12
|
+
## What is ISCC
|
|
13
|
+
|
|
14
|
+
The ISCC is a similarity-preserving fingerprint and identifier for digital media assets. ISCCs are
|
|
15
|
+
generated algorithmically from digital content, just like cryptographic hashes. However, instead of
|
|
16
|
+
using a single cryptographic hash function to identify data only, the ISCC uses various algorithms
|
|
17
|
+
to create a composite identifier that exhibits similarity-preserving properties (soft hash).
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
gem install iscc-lib
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Or add to your `Gemfile`:
|
|
26
|
+
|
|
27
|
+
```ruby
|
|
28
|
+
gem "iscc-lib"
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Precompiled gems are available for common platforms. If no precompiled gem matches your platform,
|
|
32
|
+
the gem builds from source (requires a Rust toolchain and `libclang-dev`).
|
|
33
|
+
|
|
34
|
+
## Quick Start
|
|
35
|
+
|
|
36
|
+
```ruby
|
|
37
|
+
require "iscc_lib"
|
|
38
|
+
|
|
39
|
+
# Generate a Meta-Code from content metadata
|
|
40
|
+
result = IsccLib.gen_meta_code_v0("Hello World", description: "A greeting")
|
|
41
|
+
puts result.iscc # => "ISCC:..."
|
|
42
|
+
puts result.name # => "Hello World"
|
|
43
|
+
puts result.metahash # => "1e20..."
|
|
44
|
+
|
|
45
|
+
# Streaming for large files
|
|
46
|
+
hasher = IsccLib::DataHasher.new
|
|
47
|
+
File.open("large_file.bin", "rb") do |f|
|
|
48
|
+
while (chunk = f.read(65_536))
|
|
49
|
+
hasher.update(chunk)
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
result = hasher.finalize
|
|
53
|
+
puts result.iscc
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## API Overview
|
|
57
|
+
|
|
58
|
+
### Code Generators
|
|
59
|
+
|
|
60
|
+
| Function | Description |
|
|
61
|
+
| ---------------------- | -------------------------------------------- |
|
|
62
|
+
| `gen_meta_code_v0` | Generate a Meta-Code from metadata fields |
|
|
63
|
+
| `gen_text_code_v0` | Generate a Text-Code from plain text |
|
|
64
|
+
| `gen_image_code_v0` | Generate an Image-Code from pixel data |
|
|
65
|
+
| `gen_audio_code_v0` | Generate an Audio-Code from Chromaprint data |
|
|
66
|
+
| `gen_video_code_v0` | Generate a Video-Code from frame signatures |
|
|
67
|
+
| `gen_mixed_code_v0` | Generate a Mixed-Code from Content-Codes |
|
|
68
|
+
| `gen_data_code_v0` | Generate a Data-Code from binary data |
|
|
69
|
+
| `gen_instance_code_v0` | Generate an Instance-Code from binary data |
|
|
70
|
+
| `gen_iscc_code_v0` | Generate a composite ISCC-CODE |
|
|
71
|
+
| `gen_sum_code_v0` | Generate an ISCC-SUM from a file path |
|
|
72
|
+
|
|
73
|
+
### Utilities
|
|
74
|
+
|
|
75
|
+
- **Text processing:** `text_clean`, `text_remove_newlines`, `text_trim`, `text_collapse`
|
|
76
|
+
- **Algorithm primitives:** `alg_simhash`, `alg_minhash_256`, `alg_cdc_chunks`, `sliding_window`
|
|
77
|
+
- **Soft hashing:** `soft_hash_video_v0`
|
|
78
|
+
- **Encoding:** `encode_base64`, `encode_component`
|
|
79
|
+
- **Codec:** `iscc_decode`, `iscc_decompose`, `json_to_data_url`
|
|
80
|
+
- **Streaming:** `DataHasher`, `InstanceHasher` for incremental processing
|
|
81
|
+
- **Diagnostics:** `conformance_selftest`
|
|
82
|
+
|
|
83
|
+
## Links
|
|
84
|
+
|
|
85
|
+
- [Documentation](https://lib.iscc.codes)
|
|
86
|
+
- [How-to Guide](https://lib.iscc.codes/howto/ruby/)
|
|
87
|
+
- [Repository](https://github.com/iscc/iscc-lib)
|
|
88
|
+
- [ISCC Specification (ISO 24138)](https://www.iso.org/standard/77899.html)
|
|
89
|
+
- [ISCC Foundation](https://iscc.io)
|
|
90
|
+
|
|
91
|
+
## License
|
|
92
|
+
|
|
93
|
+
Apache-2.0
|
data/extconf.rb
ADDED
data/lib/iscc_lib.rb
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Ruby bindings for iscc-lib — ISO 24138:2024 (ISCC).
|
|
4
|
+
#
|
|
5
|
+
# This module provides the public API for generating ISCC codes from Ruby.
|
|
6
|
+
# Result classes wrap the native Hash returns with attribute-style access.
|
|
7
|
+
|
|
8
|
+
require_relative "iscc_lib/version"
|
|
9
|
+
|
|
10
|
+
# Load native extension from version-specific subdirectory (precompiled gems)
|
|
11
|
+
# or flat path (source-compiled).
|
|
12
|
+
begin
|
|
13
|
+
RUBY_VERSION =~ /(\d+\.\d+)/
|
|
14
|
+
require_relative "iscc_lib/#{$1}/iscc_rb"
|
|
15
|
+
rescue LoadError
|
|
16
|
+
require_relative "iscc_lib/iscc_rb"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
module IsccLib
|
|
20
|
+
# Base result class providing both Hash-style and attribute-style access.
|
|
21
|
+
class Result < Hash
|
|
22
|
+
# Allow attribute-style access for hash keys (e.g., result.iscc).
|
|
23
|
+
def method_missing(name, *args)
|
|
24
|
+
key = name.to_s
|
|
25
|
+
return self[key] if key?(key)
|
|
26
|
+
|
|
27
|
+
super
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# Support respond_to? for dynamic attribute access.
|
|
31
|
+
def respond_to_missing?(name, include_private = false)
|
|
32
|
+
key?(name.to_s) || super
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
# Result from gen_meta_code_v0.
|
|
37
|
+
class MetaCodeResult < Result; end
|
|
38
|
+
|
|
39
|
+
# Result from gen_text_code_v0.
|
|
40
|
+
class TextCodeResult < Result; end
|
|
41
|
+
|
|
42
|
+
# Result from gen_image_code_v0.
|
|
43
|
+
class ImageCodeResult < Result; end
|
|
44
|
+
|
|
45
|
+
# Result from gen_audio_code_v0.
|
|
46
|
+
class AudioCodeResult < Result; end
|
|
47
|
+
|
|
48
|
+
# Result from gen_video_code_v0.
|
|
49
|
+
class VideoCodeResult < Result; end
|
|
50
|
+
|
|
51
|
+
# Result from gen_mixed_code_v0.
|
|
52
|
+
class MixedCodeResult < Result; end
|
|
53
|
+
|
|
54
|
+
# Result from gen_data_code_v0.
|
|
55
|
+
class DataCodeResult < Result; end
|
|
56
|
+
|
|
57
|
+
# Result from gen_instance_code_v0.
|
|
58
|
+
class InstanceCodeResult < Result; end
|
|
59
|
+
|
|
60
|
+
# Result from gen_iscc_code_v0.
|
|
61
|
+
class IsccCodeResult < Result; end
|
|
62
|
+
|
|
63
|
+
# Result from gen_sum_code_v0.
|
|
64
|
+
class SumCodeResult < Result; end
|
|
65
|
+
|
|
66
|
+
# Generate a Meta-Code from name and optional metadata.
|
|
67
|
+
#
|
|
68
|
+
# @param name [String] content name (required, non-empty)
|
|
69
|
+
# @param description [String, nil] optional content description
|
|
70
|
+
# @param meta [String, nil] optional JSON metadata
|
|
71
|
+
# @param bits [Integer] bit length (default: 64)
|
|
72
|
+
# @return [MetaCodeResult] hash with iscc, name, metahash, and optionally description, meta
|
|
73
|
+
def self.gen_meta_code_v0(name, description: nil, meta: nil, bits: 64)
|
|
74
|
+
MetaCodeResult[_gen_meta_code_v0(name, description, meta, bits)]
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Generate a Text-Code from plain text content.
|
|
78
|
+
#
|
|
79
|
+
# @param text [String] plain text content
|
|
80
|
+
# @param bits [Integer] bit length (default: 64)
|
|
81
|
+
# @return [TextCodeResult] hash with iscc, characters
|
|
82
|
+
def self.gen_text_code_v0(text, bits: 64)
|
|
83
|
+
TextCodeResult[_gen_text_code_v0(text, bits)]
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
# Generate an Image-Code from pixel data.
|
|
87
|
+
#
|
|
88
|
+
# @param pixels [String] binary pixel data
|
|
89
|
+
# @param bits [Integer] bit length (default: 64)
|
|
90
|
+
# @return [ImageCodeResult] hash with iscc
|
|
91
|
+
def self.gen_image_code_v0(pixels, bits: 64)
|
|
92
|
+
ImageCodeResult[_gen_image_code_v0(pixels, bits)]
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Generate an Audio-Code from a Chromaprint feature vector.
|
|
96
|
+
#
|
|
97
|
+
# @param cv [Array<Integer>] Chromaprint fingerprint integers
|
|
98
|
+
# @param bits [Integer] bit length (default: 64)
|
|
99
|
+
# @return [AudioCodeResult] hash with iscc
|
|
100
|
+
def self.gen_audio_code_v0(cv, bits: 64)
|
|
101
|
+
AudioCodeResult[_gen_audio_code_v0(cv, bits)]
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
# Generate a Video-Code from frame signature vectors.
|
|
105
|
+
#
|
|
106
|
+
# @param frame_sigs [Array<Array<Integer>>] nested array of frame signatures
|
|
107
|
+
# @param bits [Integer] bit length (default: 64)
|
|
108
|
+
# @return [VideoCodeResult] hash with iscc
|
|
109
|
+
def self.gen_video_code_v0(frame_sigs, bits: 64)
|
|
110
|
+
VideoCodeResult[_gen_video_code_v0(frame_sigs, bits)]
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
# Generate a Mixed-Code from multiple ISCC content code strings.
|
|
114
|
+
#
|
|
115
|
+
# @param codes [Array<String>] ISCC unit strings
|
|
116
|
+
# @param bits [Integer] bit length (default: 64)
|
|
117
|
+
# @return [MixedCodeResult] hash with iscc, parts
|
|
118
|
+
def self.gen_mixed_code_v0(codes, bits: 64)
|
|
119
|
+
MixedCodeResult[_gen_mixed_code_v0(codes, bits)]
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
# Generate a Data-Code from binary data.
|
|
123
|
+
#
|
|
124
|
+
# @param data [String] binary data
|
|
125
|
+
# @param bits [Integer] bit length (default: 64)
|
|
126
|
+
# @return [DataCodeResult] hash with iscc
|
|
127
|
+
def self.gen_data_code_v0(data, bits: 64)
|
|
128
|
+
DataCodeResult[_gen_data_code_v0(data, bits)]
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
# Generate an Instance-Code from binary data.
|
|
132
|
+
#
|
|
133
|
+
# @param data [String] binary data
|
|
134
|
+
# @param bits [Integer] bit length (default: 64, accepted for API consistency)
|
|
135
|
+
# @return [InstanceCodeResult] hash with iscc, datahash, filesize
|
|
136
|
+
def self.gen_instance_code_v0(data, bits: 64)
|
|
137
|
+
InstanceCodeResult[_gen_instance_code_v0(data, bits)]
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
# Generate a composite ISCC-CODE from individual unit codes.
|
|
141
|
+
#
|
|
142
|
+
# @param codes [Array<String>] ISCC unit strings (Data-Code + Instance-Code, optional Content-Code)
|
|
143
|
+
# @param wide [Boolean] use 256-bit combination (default: false for 128-bit)
|
|
144
|
+
# @return [IsccCodeResult] hash with iscc
|
|
145
|
+
def self.gen_iscc_code_v0(codes, wide: false)
|
|
146
|
+
IsccCodeResult[_gen_iscc_code_v0(codes, wide)]
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
# Generate a composite ISCC-CODE from a file in a single pass.
|
|
150
|
+
#
|
|
151
|
+
# @param path [String] file path
|
|
152
|
+
# @param bits [Integer] bit length (default: 64)
|
|
153
|
+
# @param wide [Boolean] use 256-bit combination (default: false)
|
|
154
|
+
# @param add_units [Boolean] include individual unit codes (default: false)
|
|
155
|
+
# @return [SumCodeResult] hash with iscc, datahash, filesize, and optionally units
|
|
156
|
+
def self.gen_sum_code_v0(path, bits: 64, wide: false, add_units: false)
|
|
157
|
+
SumCodeResult[_gen_sum_code_v0(path, bits, wide, add_units)]
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
# Streaming Data-Code generator (reopens native class).
|
|
161
|
+
#
|
|
162
|
+
# Incrementally processes data with content-defined chunking and MinHash
|
|
163
|
+
# to produce results identical to gen_data_code_v0.
|
|
164
|
+
#
|
|
165
|
+
# @example
|
|
166
|
+
# hasher = IsccLib::DataHasher.new
|
|
167
|
+
# hasher.update(chunk1).update(chunk2)
|
|
168
|
+
# result = hasher.finalize(bits: 64)
|
|
169
|
+
class DataHasher
|
|
170
|
+
# Push binary data into the hasher.
|
|
171
|
+
#
|
|
172
|
+
# @param data [String] binary data
|
|
173
|
+
# @return [self] for method chaining
|
|
174
|
+
def update(data)
|
|
175
|
+
_update(data)
|
|
176
|
+
self
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
# Consume the hasher and produce a Data-Code result.
|
|
180
|
+
#
|
|
181
|
+
# @param bits [Integer] bit length (default: 64)
|
|
182
|
+
# @return [DataCodeResult] hash with iscc
|
|
183
|
+
# @raise [RuntimeError] if called more than once
|
|
184
|
+
def finalize(bits: 64)
|
|
185
|
+
DataCodeResult[_finalize(bits)]
|
|
186
|
+
end
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
# Streaming Instance-Code generator (reopens native class).
|
|
190
|
+
#
|
|
191
|
+
# Incrementally hashes data with BLAKE3 to produce results identical
|
|
192
|
+
# to gen_instance_code_v0.
|
|
193
|
+
#
|
|
194
|
+
# @example
|
|
195
|
+
# hasher = IsccLib::InstanceHasher.new
|
|
196
|
+
# hasher.update(chunk1).update(chunk2)
|
|
197
|
+
# result = hasher.finalize(bits: 64)
|
|
198
|
+
class InstanceHasher
|
|
199
|
+
# Push binary data into the hasher.
|
|
200
|
+
#
|
|
201
|
+
# @param data [String] binary data
|
|
202
|
+
# @return [self] for method chaining
|
|
203
|
+
def update(data)
|
|
204
|
+
_update(data)
|
|
205
|
+
self
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
# Consume the hasher and produce an Instance-Code result.
|
|
209
|
+
#
|
|
210
|
+
# @param bits [Integer] bit length (default: 64)
|
|
211
|
+
# @return [InstanceCodeResult] hash with iscc, datahash, filesize
|
|
212
|
+
# @raise [RuntimeError] if called more than once
|
|
213
|
+
def finalize(bits: 64)
|
|
214
|
+
InstanceCodeResult[_finalize(bits)]
|
|
215
|
+
end
|
|
216
|
+
end
|
|
217
|
+
end
|
data/src/lib.rs
ADDED
|
@@ -0,0 +1,521 @@
|
|
|
1
|
+
//! Magnus bridge for iscc-lib Ruby bindings.
|
|
2
|
+
//!
|
|
3
|
+
//! Exposes a subset of Tier 1 ISCC functions as Ruby module functions
|
|
4
|
+
//! under the `IsccLib` module. The pure Ruby wrapper in `lib/iscc_lib.rb`
|
|
5
|
+
//! provides idiomatic result classes and keyword arguments.
|
|
6
|
+
//!
|
|
7
|
+
//! Symbols (32 of 32):
|
|
8
|
+
//! - `gen_meta_code_v0`, `gen_text_code_v0`, `gen_image_code_v0`, `gen_audio_code_v0`
|
|
9
|
+
//! - `gen_video_code_v0`, `gen_mixed_code_v0`, `gen_data_code_v0`
|
|
10
|
+
//! - `gen_instance_code_v0`, `gen_iscc_code_v0`, `gen_sum_code_v0`
|
|
11
|
+
//! - `text_clean`, `text_remove_newlines`, `text_trim`, `text_collapse`
|
|
12
|
+
//! - `encode_base64`, `iscc_decompose`, `encode_component`, `iscc_decode`
|
|
13
|
+
//! - `json_to_data_url`, `conformance_selftest`
|
|
14
|
+
//! - `sliding_window`, `alg_simhash`, `alg_minhash_256`, `alg_cdc_chunks`,
|
|
15
|
+
//! `soft_hash_video_v0`
|
|
16
|
+
//! - `DataHasher`, `InstanceHasher` (streaming classes)
|
|
17
|
+
//! - Constants: META_TRIM_NAME, META_TRIM_DESCRIPTION, META_TRIM_META,
|
|
18
|
+
//! IO_READ_SIZE, TEXT_NGRAM_SIZE
|
|
19
|
+
|
|
20
|
+
use magnus::{Error, RArray, RHash, RString, Ruby, TryConvert, function, method, prelude::*};
|
|
21
|
+
use std::cell::RefCell;
|
|
22
|
+
|
|
23
|
+
/// Map an `IsccError` to a Magnus `RuntimeError`.
|
|
24
|
+
fn to_magnus_err(e: iscc_lib::IsccError) -> Error {
|
|
25
|
+
Error::new(magnus::exception::runtime_error(), e.to_string())
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/// Generate a Meta-Code from name and optional metadata.
|
|
29
|
+
///
|
|
30
|
+
/// Returns a Ruby Hash with keys: `iscc`, `name`, `metahash`, and optionally
|
|
31
|
+
/// `description` and `meta`.
|
|
32
|
+
fn gen_meta_code_v0(
|
|
33
|
+
name: String,
|
|
34
|
+
description: Option<String>,
|
|
35
|
+
meta: Option<String>,
|
|
36
|
+
bits: u32,
|
|
37
|
+
) -> Result<RHash, Error> {
|
|
38
|
+
let r = iscc_lib::gen_meta_code_v0(&name, description.as_deref(), meta.as_deref(), bits)
|
|
39
|
+
.map_err(to_magnus_err)?;
|
|
40
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
41
|
+
let hash = ruby.hash_new();
|
|
42
|
+
hash.aset("iscc", r.iscc)?;
|
|
43
|
+
hash.aset("name", r.name)?;
|
|
44
|
+
hash.aset("metahash", r.metahash)?;
|
|
45
|
+
if let Some(desc) = r.description {
|
|
46
|
+
hash.aset("description", desc)?;
|
|
47
|
+
}
|
|
48
|
+
if let Some(meta) = r.meta {
|
|
49
|
+
hash.aset("meta", meta)?;
|
|
50
|
+
}
|
|
51
|
+
Ok(hash)
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/// Generate a Text-Code from plain text content.
|
|
55
|
+
///
|
|
56
|
+
/// Returns a Ruby Hash with keys: `iscc`, `characters`.
|
|
57
|
+
fn gen_text_code_v0(text: String, bits: u32) -> Result<RHash, Error> {
|
|
58
|
+
let r = iscc_lib::gen_text_code_v0(&text, bits).map_err(to_magnus_err)?;
|
|
59
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
60
|
+
let hash = ruby.hash_new();
|
|
61
|
+
hash.aset("iscc", r.iscc)?;
|
|
62
|
+
hash.aset("characters", r.characters)?;
|
|
63
|
+
Ok(hash)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/// Generate an Image-Code from pixel data.
|
|
67
|
+
///
|
|
68
|
+
/// Accepts a binary Ruby String of raw pixel bytes.
|
|
69
|
+
/// Returns a Ruby Hash with key: `iscc`.
|
|
70
|
+
fn gen_image_code_v0(pixels: RString, bits: u32) -> Result<RHash, Error> {
|
|
71
|
+
// Safety: the slice is passed directly to a pure Rust function
|
|
72
|
+
// and not held across any Ruby API calls.
|
|
73
|
+
let bytes = unsafe { pixels.as_slice() };
|
|
74
|
+
let r = iscc_lib::gen_image_code_v0(bytes, bits).map_err(to_magnus_err)?;
|
|
75
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
76
|
+
let hash = ruby.hash_new();
|
|
77
|
+
hash.aset("iscc", r.iscc)?;
|
|
78
|
+
Ok(hash)
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/// Generate an Audio-Code from a Chromaprint feature vector.
|
|
82
|
+
///
|
|
83
|
+
/// Accepts a Ruby Array of integers (i32 Chromaprint fingerprints).
|
|
84
|
+
/// Returns a Ruby Hash with key: `iscc`.
|
|
85
|
+
fn gen_audio_code_v0(cv: Vec<i32>, bits: u32) -> Result<RHash, Error> {
|
|
86
|
+
let r = iscc_lib::gen_audio_code_v0(&cv, bits).map_err(to_magnus_err)?;
|
|
87
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
88
|
+
let hash = ruby.hash_new();
|
|
89
|
+
hash.aset("iscc", r.iscc)?;
|
|
90
|
+
Ok(hash)
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/// Generate a Video-Code from frame signature vectors.
|
|
94
|
+
///
|
|
95
|
+
/// Accepts a Ruby Array of Arrays of integers (nested `i32` frame signatures).
|
|
96
|
+
/// Returns a Ruby Hash with key: `iscc`.
|
|
97
|
+
fn gen_video_code_v0(frame_sigs: RArray, bits: u32) -> Result<RHash, Error> {
|
|
98
|
+
let frames: Vec<Vec<i32>> = frame_sigs
|
|
99
|
+
.into_iter()
|
|
100
|
+
.map(|frame| {
|
|
101
|
+
let arr: Vec<i32> = TryConvert::try_convert(frame)?;
|
|
102
|
+
Ok(arr)
|
|
103
|
+
})
|
|
104
|
+
.collect::<Result<Vec<_>, Error>>()?;
|
|
105
|
+
let r = iscc_lib::gen_video_code_v0(&frames, bits).map_err(to_magnus_err)?;
|
|
106
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
107
|
+
let hash = ruby.hash_new();
|
|
108
|
+
hash.aset("iscc", r.iscc)?;
|
|
109
|
+
Ok(hash)
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/// Generate a Mixed-Code from multiple ISCC content code strings.
|
|
113
|
+
///
|
|
114
|
+
/// Accepts a Ruby Array of ISCC unit strings.
|
|
115
|
+
/// Returns a Ruby Hash with keys: `iscc`, `parts`.
|
|
116
|
+
fn gen_mixed_code_v0(codes: Vec<String>, bits: u32) -> Result<RHash, Error> {
|
|
117
|
+
let refs: Vec<&str> = codes.iter().map(|s| s.as_str()).collect();
|
|
118
|
+
let r = iscc_lib::gen_mixed_code_v0(&refs, bits).map_err(to_magnus_err)?;
|
|
119
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
120
|
+
let hash = ruby.hash_new();
|
|
121
|
+
hash.aset("iscc", r.iscc)?;
|
|
122
|
+
hash.aset("parts", r.parts)?;
|
|
123
|
+
Ok(hash)
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/// Generate a Data-Code from binary data.
|
|
127
|
+
///
|
|
128
|
+
/// Accepts a binary Ruby String of raw bytes.
|
|
129
|
+
/// Returns a Ruby Hash with key: `iscc`.
|
|
130
|
+
fn gen_data_code_v0(data: RString, bits: u32) -> Result<RHash, Error> {
|
|
131
|
+
// Safety: the slice is passed directly to a pure Rust function
|
|
132
|
+
// and not held across any Ruby API calls.
|
|
133
|
+
let bytes = unsafe { data.as_slice() };
|
|
134
|
+
let r = iscc_lib::gen_data_code_v0(bytes, bits).map_err(to_magnus_err)?;
|
|
135
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
136
|
+
let hash = ruby.hash_new();
|
|
137
|
+
hash.aset("iscc", r.iscc)?;
|
|
138
|
+
Ok(hash)
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/// Generate an Instance-Code from binary data.
|
|
142
|
+
///
|
|
143
|
+
/// Accepts a binary Ruby String of raw bytes.
|
|
144
|
+
/// Returns a Ruby Hash with keys: `iscc`, `datahash`, `filesize`.
|
|
145
|
+
fn gen_instance_code_v0(data: RString, bits: u32) -> Result<RHash, Error> {
|
|
146
|
+
// Safety: the slice is passed directly to a pure Rust function
|
|
147
|
+
// and not held across any Ruby API calls.
|
|
148
|
+
let bytes = unsafe { data.as_slice() };
|
|
149
|
+
let r = iscc_lib::gen_instance_code_v0(bytes, bits).map_err(to_magnus_err)?;
|
|
150
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
151
|
+
let hash = ruby.hash_new();
|
|
152
|
+
hash.aset("iscc", r.iscc)?;
|
|
153
|
+
hash.aset("datahash", r.datahash)?;
|
|
154
|
+
hash.aset("filesize", r.filesize)?;
|
|
155
|
+
Ok(hash)
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/// Generate a composite ISCC-CODE from individual unit codes.
|
|
159
|
+
///
|
|
160
|
+
/// Accepts a Ruby Array of ISCC unit strings and a wide flag.
|
|
161
|
+
/// Returns a Ruby Hash with key: `iscc`.
|
|
162
|
+
fn gen_iscc_code_v0(codes: Vec<String>, wide: bool) -> Result<RHash, Error> {
|
|
163
|
+
let refs: Vec<&str> = codes.iter().map(|s| s.as_str()).collect();
|
|
164
|
+
let r = iscc_lib::gen_iscc_code_v0(&refs, wide).map_err(to_magnus_err)?;
|
|
165
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
166
|
+
let hash = ruby.hash_new();
|
|
167
|
+
hash.aset("iscc", r.iscc)?;
|
|
168
|
+
Ok(hash)
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/// Generate a composite ISCC-CODE from a file in a single pass.
|
|
172
|
+
///
|
|
173
|
+
/// Accepts a file path string, bit length, wide flag, and add_units flag.
|
|
174
|
+
/// Returns a Ruby Hash with keys: `iscc`, `datahash`, `filesize`, and
|
|
175
|
+
/// optionally `units` when `add_units` is true.
|
|
176
|
+
fn gen_sum_code_v0(path: String, bits: u32, wide: bool, add_units: bool) -> Result<RHash, Error> {
|
|
177
|
+
let r = iscc_lib::gen_sum_code_v0(std::path::Path::new(&path), bits, wide, add_units)
|
|
178
|
+
.map_err(to_magnus_err)?;
|
|
179
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
180
|
+
let hash = ruby.hash_new();
|
|
181
|
+
hash.aset("iscc", r.iscc)?;
|
|
182
|
+
hash.aset("datahash", r.datahash)?;
|
|
183
|
+
hash.aset("filesize", r.filesize)?;
|
|
184
|
+
if let Some(units) = r.units {
|
|
185
|
+
hash.aset("units", units)?;
|
|
186
|
+
}
|
|
187
|
+
Ok(hash)
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/// Clean and normalize text for display.
|
|
191
|
+
///
|
|
192
|
+
/// Applies NFKC normalization, removes control characters (except newlines),
|
|
193
|
+
/// normalizes `\r\n` to `\n`, collapses consecutive empty lines, and strips
|
|
194
|
+
/// leading/trailing whitespace.
|
|
195
|
+
fn text_clean(text: String) -> String {
|
|
196
|
+
iscc_lib::text_clean(&text)
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/// Remove newlines and collapse whitespace to single spaces.
|
|
200
|
+
///
|
|
201
|
+
/// Converts multi-line text into a single normalized line.
|
|
202
|
+
fn text_remove_newlines(text: String) -> String {
|
|
203
|
+
iscc_lib::text_remove_newlines(&text)
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/// Trim text so its UTF-8 encoded size does not exceed `nbytes`.
|
|
207
|
+
///
|
|
208
|
+
/// Multi-byte characters that would be split are dropped entirely.
|
|
209
|
+
/// Leading/trailing whitespace is stripped from the result.
|
|
210
|
+
fn text_trim(text: String, nbytes: usize) -> String {
|
|
211
|
+
iscc_lib::text_trim(&text, nbytes)
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/// Normalize and simplify text for similarity hashing.
|
|
215
|
+
///
|
|
216
|
+
/// Applies NFD normalization, lowercasing, removes whitespace and certain
|
|
217
|
+
/// Unicode categories, then recombines with NFKC normalization.
|
|
218
|
+
fn text_collapse(text: String) -> String {
|
|
219
|
+
iscc_lib::text_collapse(&text)
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
/// Encode bytes as base64url (RFC 4648 §5, no padding).
|
|
223
|
+
///
|
|
224
|
+
/// Accepts a Ruby String (binary data) and returns a URL-safe base64 string.
|
|
225
|
+
fn encode_base64(data: RString) -> String {
|
|
226
|
+
// Safety: the slice is passed directly to a pure Rust function
|
|
227
|
+
// and not held across any Ruby API calls.
|
|
228
|
+
let bytes = unsafe { data.as_slice() };
|
|
229
|
+
iscc_lib::encode_base64(bytes)
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/// Decompose a composite ISCC-CODE into individual ISCC-UNITs.
|
|
233
|
+
///
|
|
234
|
+
/// Returns a Ruby Array of base32-encoded ISCC-UNIT strings (without prefix).
|
|
235
|
+
fn iscc_decompose(iscc_code: String) -> Result<Vec<String>, Error> {
|
|
236
|
+
iscc_lib::iscc_decompose(&iscc_code).map_err(to_magnus_err)
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/// Encode raw digest components into a base32 ISCC unit string.
|
|
240
|
+
///
|
|
241
|
+
/// Takes integer type identifiers (mtype, stype, version), a bit_length,
|
|
242
|
+
/// and a binary digest String. Returns a base32-encoded ISCC unit string.
|
|
243
|
+
fn encode_component(
|
|
244
|
+
mtype: u8,
|
|
245
|
+
stype: u8,
|
|
246
|
+
version: u8,
|
|
247
|
+
bit_length: u32,
|
|
248
|
+
digest: RString,
|
|
249
|
+
) -> Result<String, Error> {
|
|
250
|
+
// Safety: we copy the bytes immediately and do not hold the slice
|
|
251
|
+
// across any Ruby API calls.
|
|
252
|
+
let bytes = unsafe { digest.as_slice() }.to_vec();
|
|
253
|
+
iscc_lib::encode_component(mtype, stype, version, bit_length, &bytes).map_err(to_magnus_err)
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/// Decode an ISCC unit string into header components and raw digest.
|
|
257
|
+
///
|
|
258
|
+
/// Returns a 5-element Ruby Array: `[maintype, subtype, version, length_index, digest_bytes]`
|
|
259
|
+
/// where digest_bytes is a binary Ruby String.
|
|
260
|
+
fn iscc_decode(iscc: String) -> Result<RArray, Error> {
|
|
261
|
+
let (mt, st, vs, li, digest) = iscc_lib::iscc_decode(&iscc).map_err(to_magnus_err)?;
|
|
262
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
263
|
+
let arr = ruby.ary_new_capa(5);
|
|
264
|
+
arr.push(mt)?;
|
|
265
|
+
arr.push(st)?;
|
|
266
|
+
arr.push(vs)?;
|
|
267
|
+
arr.push(li)?;
|
|
268
|
+
arr.push(RString::from_slice(&digest))?;
|
|
269
|
+
Ok(arr)
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/// Convert a JSON string into a `data:` URL with JCS canonicalization.
|
|
273
|
+
///
|
|
274
|
+
/// Uses `application/ld+json` media type when the JSON contains an `@context`
|
|
275
|
+
/// key, otherwise `application/json`.
|
|
276
|
+
fn json_to_data_url(json: String) -> Result<String, Error> {
|
|
277
|
+
iscc_lib::json_to_data_url(&json).map_err(to_magnus_err)
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
/// Run conformance self-test against vendored test vectors.
|
|
281
|
+
///
|
|
282
|
+
/// Returns `true` if all tests pass, `false` if any fail.
|
|
283
|
+
fn conformance_selftest() -> bool {
|
|
284
|
+
iscc_lib::conformance_selftest()
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/// Generate sliding window n-grams from a string.
|
|
288
|
+
///
|
|
289
|
+
/// Returns overlapping substrings of `width` Unicode characters.
|
|
290
|
+
/// Raises `RuntimeError` if `width < 2`.
|
|
291
|
+
fn sliding_window(seq: String, width: usize) -> Result<Vec<String>, Error> {
|
|
292
|
+
iscc_lib::sliding_window(&seq, width).map_err(to_magnus_err)
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/// Compute a SimHash from a sequence of equal-length hash digests.
|
|
296
|
+
///
|
|
297
|
+
/// Accepts a Ruby Array of binary Strings, returns a binary String.
|
|
298
|
+
/// Raises `RuntimeError` on mismatched digest lengths.
|
|
299
|
+
fn alg_simhash(hash_digests: RArray) -> Result<RString, Error> {
|
|
300
|
+
let digests: Vec<Vec<u8>> = hash_digests
|
|
301
|
+
.into_iter()
|
|
302
|
+
.map(|val| {
|
|
303
|
+
let s: RString = TryConvert::try_convert(val)?;
|
|
304
|
+
// Safety: we copy the bytes immediately before any Ruby API calls.
|
|
305
|
+
let bytes = unsafe { s.as_slice() }.to_vec();
|
|
306
|
+
Ok(bytes)
|
|
307
|
+
})
|
|
308
|
+
.collect::<Result<Vec<_>, Error>>()?;
|
|
309
|
+
let result = iscc_lib::alg_simhash(&digests).map_err(to_magnus_err)?;
|
|
310
|
+
Ok(RString::from_slice(&result))
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
/// Compute a 256-bit MinHash digest from 32-bit integer features.
|
|
314
|
+
///
|
|
315
|
+
/// Returns a 32-byte binary String.
|
|
316
|
+
fn alg_minhash_256(features: Vec<u32>) -> RString {
|
|
317
|
+
let result = iscc_lib::alg_minhash_256(&features);
|
|
318
|
+
RString::from_slice(&result)
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
/// Split data into content-defined chunks using gear rolling hash.
|
|
322
|
+
///
|
|
323
|
+
/// Accepts a binary Ruby String, a `utf32` flag, and an `avg_chunk_size`.
|
|
324
|
+
/// Returns a Ruby Array of binary Strings (one per chunk).
|
|
325
|
+
fn alg_cdc_chunks(data: RString, utf32: bool, avg_chunk_size: u32) -> Result<RArray, Error> {
|
|
326
|
+
// Safety: the slice is passed directly to a pure Rust function
|
|
327
|
+
// and not held across any Ruby API calls that could trigger GC.
|
|
328
|
+
let bytes = unsafe { data.as_slice() };
|
|
329
|
+
let chunks = iscc_lib::alg_cdc_chunks(bytes, utf32, avg_chunk_size).map_err(to_magnus_err)?;
|
|
330
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
331
|
+
let arr = ruby.ary_new_capa(chunks.len());
|
|
332
|
+
for chunk in chunks {
|
|
333
|
+
arr.push(RString::from_slice(chunk))?;
|
|
334
|
+
}
|
|
335
|
+
Ok(arr)
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/// Compute a similarity-preserving hash from video frame signatures.
|
|
339
|
+
///
|
|
340
|
+
/// Accepts a Ruby Array of Arrays of integers (nested `i32` frame signatures)
|
|
341
|
+
/// and a bit length. Returns a binary String of length `bits / 8`.
|
|
342
|
+
fn soft_hash_video_v0(frame_sigs: RArray, bits: u32) -> Result<RString, Error> {
|
|
343
|
+
let frames: Vec<Vec<i32>> = frame_sigs
|
|
344
|
+
.into_iter()
|
|
345
|
+
.map(|frame| {
|
|
346
|
+
let arr: Vec<i32> = TryConvert::try_convert(frame)?;
|
|
347
|
+
Ok(arr)
|
|
348
|
+
})
|
|
349
|
+
.collect::<Result<Vec<_>, Error>>()?;
|
|
350
|
+
let result = iscc_lib::soft_hash_video_v0(&frames, bits).map_err(to_magnus_err)?;
|
|
351
|
+
Ok(RString::from_slice(&result))
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/// Streaming Data-Code generator for Ruby.
|
|
355
|
+
///
|
|
356
|
+
/// Wraps `iscc_lib::DataHasher` with `RefCell<Option<...>>` for one-shot
|
|
357
|
+
/// finalize semantics (Magnus instance methods receive `&self`, not `&mut self`).
|
|
358
|
+
#[magnus::wrap(class = "IsccLib::DataHasher")]
|
|
359
|
+
struct RbDataHasher {
|
|
360
|
+
inner: RefCell<Option<iscc_lib::DataHasher>>,
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
impl RbDataHasher {
|
|
364
|
+
/// Create a new `RbDataHasher`.
|
|
365
|
+
fn rb_new() -> Self {
|
|
366
|
+
Self {
|
|
367
|
+
inner: RefCell::new(Some(iscc_lib::DataHasher::new())),
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
/// Push binary data into the hasher.
|
|
372
|
+
///
|
|
373
|
+
/// Raises `RuntimeError` if called after `finalize`.
|
|
374
|
+
fn update(&self, data: RString) -> Result<(), Error> {
|
|
375
|
+
let mut inner = self.inner.borrow_mut();
|
|
376
|
+
let hasher = inner.as_mut().ok_or_else(|| {
|
|
377
|
+
Error::new(
|
|
378
|
+
magnus::exception::runtime_error(),
|
|
379
|
+
"DataHasher already finalized",
|
|
380
|
+
)
|
|
381
|
+
})?;
|
|
382
|
+
// Safety: the slice is passed directly to a pure Rust function
|
|
383
|
+
// and not held across any Ruby API calls.
|
|
384
|
+
let bytes = unsafe { data.as_slice() };
|
|
385
|
+
hasher.update(bytes);
|
|
386
|
+
Ok(())
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
/// Consume the hasher and produce a Data-Code result hash.
|
|
390
|
+
///
|
|
391
|
+
/// Returns an `RHash` with key `"iscc"`. Raises `RuntimeError` if
|
|
392
|
+
/// called more than once.
|
|
393
|
+
fn finalize(&self, bits: u32) -> Result<RHash, Error> {
|
|
394
|
+
let hasher = self.inner.borrow_mut().take().ok_or_else(|| {
|
|
395
|
+
Error::new(
|
|
396
|
+
magnus::exception::runtime_error(),
|
|
397
|
+
"DataHasher already finalized",
|
|
398
|
+
)
|
|
399
|
+
})?;
|
|
400
|
+
let r = hasher.finalize(bits).map_err(to_magnus_err)?;
|
|
401
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
402
|
+
let hash = ruby.hash_new();
|
|
403
|
+
hash.aset("iscc", r.iscc)?;
|
|
404
|
+
Ok(hash)
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
/// Streaming Instance-Code generator for Ruby.
|
|
409
|
+
///
|
|
410
|
+
/// Wraps `iscc_lib::InstanceHasher` with `RefCell<Option<...>>` for one-shot
|
|
411
|
+
/// finalize semantics.
|
|
412
|
+
#[magnus::wrap(class = "IsccLib::InstanceHasher")]
|
|
413
|
+
struct RbInstanceHasher {
|
|
414
|
+
inner: RefCell<Option<iscc_lib::InstanceHasher>>,
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
impl RbInstanceHasher {
|
|
418
|
+
/// Create a new `RbInstanceHasher`.
|
|
419
|
+
fn rb_new() -> Self {
|
|
420
|
+
Self {
|
|
421
|
+
inner: RefCell::new(Some(iscc_lib::InstanceHasher::new())),
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
/// Push binary data into the hasher.
|
|
426
|
+
///
|
|
427
|
+
/// Raises `RuntimeError` if called after `finalize`.
|
|
428
|
+
fn update(&self, data: RString) -> Result<(), Error> {
|
|
429
|
+
let mut inner = self.inner.borrow_mut();
|
|
430
|
+
let hasher = inner.as_mut().ok_or_else(|| {
|
|
431
|
+
Error::new(
|
|
432
|
+
magnus::exception::runtime_error(),
|
|
433
|
+
"InstanceHasher already finalized",
|
|
434
|
+
)
|
|
435
|
+
})?;
|
|
436
|
+
// Safety: the slice is passed directly to a pure Rust function
|
|
437
|
+
// and not held across any Ruby API calls.
|
|
438
|
+
let bytes = unsafe { data.as_slice() };
|
|
439
|
+
hasher.update(bytes);
|
|
440
|
+
Ok(())
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
/// Consume the hasher and produce an Instance-Code result hash.
|
|
444
|
+
///
|
|
445
|
+
/// Returns an `RHash` with keys `"iscc"`, `"datahash"`, `"filesize"`.
|
|
446
|
+
/// Raises `RuntimeError` if called more than once.
|
|
447
|
+
fn finalize(&self, bits: u32) -> Result<RHash, Error> {
|
|
448
|
+
let hasher = self.inner.borrow_mut().take().ok_or_else(|| {
|
|
449
|
+
Error::new(
|
|
450
|
+
magnus::exception::runtime_error(),
|
|
451
|
+
"InstanceHasher already finalized",
|
|
452
|
+
)
|
|
453
|
+
})?;
|
|
454
|
+
let r = hasher.finalize(bits).map_err(to_magnus_err)?;
|
|
455
|
+
let ruby = Ruby::get().expect("called from Ruby");
|
|
456
|
+
let hash = ruby.hash_new();
|
|
457
|
+
hash.aset("iscc", r.iscc)?;
|
|
458
|
+
hash.aset("datahash", r.datahash)?;
|
|
459
|
+
hash.aset("filesize", r.filesize)?;
|
|
460
|
+
Ok(hash)
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
/// Initialize the IsccLib Ruby module with all bridge functions and constants.
|
|
465
|
+
#[magnus::init]
|
|
466
|
+
fn init(ruby: &Ruby) -> Result<(), Error> {
|
|
467
|
+
let module = ruby.define_module("IsccLib")?;
|
|
468
|
+
|
|
469
|
+
// Gen functions (prefixed with _ for Ruby wrapper layer)
|
|
470
|
+
module.define_module_function("_gen_meta_code_v0", function!(gen_meta_code_v0, 4))?;
|
|
471
|
+
module.define_module_function("_gen_text_code_v0", function!(gen_text_code_v0, 2))?;
|
|
472
|
+
module.define_module_function("_gen_image_code_v0", function!(gen_image_code_v0, 2))?;
|
|
473
|
+
module.define_module_function("_gen_audio_code_v0", function!(gen_audio_code_v0, 2))?;
|
|
474
|
+
module.define_module_function("_gen_video_code_v0", function!(gen_video_code_v0, 2))?;
|
|
475
|
+
module.define_module_function("_gen_mixed_code_v0", function!(gen_mixed_code_v0, 2))?;
|
|
476
|
+
module.define_module_function("_gen_data_code_v0", function!(gen_data_code_v0, 2))?;
|
|
477
|
+
module.define_module_function("_gen_instance_code_v0", function!(gen_instance_code_v0, 2))?;
|
|
478
|
+
module.define_module_function("_gen_iscc_code_v0", function!(gen_iscc_code_v0, 2))?;
|
|
479
|
+
module.define_module_function("_gen_sum_code_v0", function!(gen_sum_code_v0, 4))?;
|
|
480
|
+
|
|
481
|
+
// Text utility functions
|
|
482
|
+
module.define_module_function("text_clean", function!(text_clean, 1))?;
|
|
483
|
+
module.define_module_function("text_remove_newlines", function!(text_remove_newlines, 1))?;
|
|
484
|
+
module.define_module_function("text_trim", function!(text_trim, 2))?;
|
|
485
|
+
module.define_module_function("text_collapse", function!(text_collapse, 1))?;
|
|
486
|
+
|
|
487
|
+
// Codec and encoding functions
|
|
488
|
+
module.define_module_function("encode_base64", function!(encode_base64, 1))?;
|
|
489
|
+
module.define_module_function("iscc_decompose", function!(iscc_decompose, 1))?;
|
|
490
|
+
module.define_module_function("encode_component", function!(encode_component, 5))?;
|
|
491
|
+
module.define_module_function("iscc_decode", function!(iscc_decode, 1))?;
|
|
492
|
+
module.define_module_function("json_to_data_url", function!(json_to_data_url, 1))?;
|
|
493
|
+
module.define_module_function("conformance_selftest", function!(conformance_selftest, 0))?;
|
|
494
|
+
|
|
495
|
+
// Algorithm primitives
|
|
496
|
+
module.define_module_function("sliding_window", function!(sliding_window, 2))?;
|
|
497
|
+
module.define_module_function("alg_simhash", function!(alg_simhash, 1))?;
|
|
498
|
+
module.define_module_function("alg_minhash_256", function!(alg_minhash_256, 1))?;
|
|
499
|
+
module.define_module_function("alg_cdc_chunks", function!(alg_cdc_chunks, 3))?;
|
|
500
|
+
module.define_module_function("soft_hash_video_v0", function!(soft_hash_video_v0, 2))?;
|
|
501
|
+
|
|
502
|
+
// Streaming hasher classes (Ruby wrapper reopens to add defaults + result wrapping)
|
|
503
|
+
let data_hasher = module.define_class("DataHasher", ruby.class_object())?;
|
|
504
|
+
data_hasher.define_singleton_method("new", function!(RbDataHasher::rb_new, 0))?;
|
|
505
|
+
data_hasher.define_method("_update", method!(RbDataHasher::update, 1))?;
|
|
506
|
+
data_hasher.define_method("_finalize", method!(RbDataHasher::finalize, 1))?;
|
|
507
|
+
|
|
508
|
+
let instance_hasher = module.define_class("InstanceHasher", ruby.class_object())?;
|
|
509
|
+
instance_hasher.define_singleton_method("new", function!(RbInstanceHasher::rb_new, 0))?;
|
|
510
|
+
instance_hasher.define_method("_update", method!(RbInstanceHasher::update, 1))?;
|
|
511
|
+
instance_hasher.define_method("_finalize", method!(RbInstanceHasher::finalize, 1))?;
|
|
512
|
+
|
|
513
|
+
// Constants
|
|
514
|
+
module.const_set("META_TRIM_NAME", iscc_lib::META_TRIM_NAME)?;
|
|
515
|
+
module.const_set("META_TRIM_DESCRIPTION", iscc_lib::META_TRIM_DESCRIPTION)?;
|
|
516
|
+
module.const_set("META_TRIM_META", iscc_lib::META_TRIM_META)?;
|
|
517
|
+
module.const_set("IO_READ_SIZE", iscc_lib::IO_READ_SIZE)?;
|
|
518
|
+
module.const_set("TEXT_NGRAM_SIZE", iscc_lib::TEXT_NGRAM_SIZE)?;
|
|
519
|
+
|
|
520
|
+
Ok(())
|
|
521
|
+
}
|
metadata
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: iscc-lib
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Titusz Pan
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-03-05 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: High-performance Ruby bindings for ISO 24138:2024 (ISCC). Native Rust
|
|
14
|
+
extension via Magnus for content identification and matching.
|
|
15
|
+
email:
|
|
16
|
+
- tp@py7.de
|
|
17
|
+
executables: []
|
|
18
|
+
extensions:
|
|
19
|
+
- extconf.rb
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- Cargo.toml
|
|
23
|
+
- LICENSE
|
|
24
|
+
- README.md
|
|
25
|
+
- extconf.rb
|
|
26
|
+
- lib/iscc_lib.rb
|
|
27
|
+
- lib/iscc_lib/version.rb
|
|
28
|
+
- src/lib.rs
|
|
29
|
+
homepage: https://github.com/iscc/iscc-lib
|
|
30
|
+
licenses:
|
|
31
|
+
- Apache-2.0
|
|
32
|
+
metadata:
|
|
33
|
+
homepage_uri: https://github.com/iscc/iscc-lib
|
|
34
|
+
source_code_uri: https://github.com/iscc/iscc-lib
|
|
35
|
+
documentation_uri: https://lib.iscc.codes
|
|
36
|
+
rubygems_mfa_required: 'true'
|
|
37
|
+
post_install_message:
|
|
38
|
+
rdoc_options: []
|
|
39
|
+
require_paths:
|
|
40
|
+
- lib
|
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: 3.1.0
|
|
46
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
47
|
+
requirements:
|
|
48
|
+
- - ">="
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: '0'
|
|
51
|
+
requirements: []
|
|
52
|
+
rubygems_version: 3.5.22
|
|
53
|
+
signing_key:
|
|
54
|
+
specification_version: 4
|
|
55
|
+
summary: ISCC - International Standard Content Code (ISO 24138)
|
|
56
|
+
test_files: []
|