sin_deep_merge 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 83bf5ce340c65fb47e454957bfdc08c4aee67b9a365e6e758561cfa4478f7c23
4
+ data.tar.gz: a0a8be8ee0776fa1171bbdeccdb1cf7bbeac4e481577f2e0662aa2261d49e94f
5
+ SHA512:
6
+ metadata.gz: 85a93561e3c6012c84f1d9b48db4eb84e4e597f2d61320e052e01da5b3a3a84061df5551b3220655243363b8578abbf7c89ee160daf1ff9702904acd4991c593
7
+ data.tar.gz: 5f69ebba27ec1f2db3eacead6ef897fcec5b517784fbf344c648a04d4e8f2b465dd14383fbb94158c427d86254d4369f07f9e14f35e047134f193e80cb73f7b9
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'mkmf'
4
+
5
+ create_makefile 'sin_deep_merge'
@@ -0,0 +1,58 @@
1
+ #include <ruby.h>
2
+
3
+ typedef struct {
4
+ VALUE hash;
5
+ VALUE block;
6
+ } deep_merge_context;
7
+
8
+ static VALUE deep_merge_hashes(VALUE self, VALUE other, VALUE block);
9
+
10
+ static int deep_merge_iter(VALUE key, VALUE other_val, VALUE data) {
11
+ deep_merge_context *ctx = (deep_merge_context *)data;
12
+ VALUE current_val = rb_hash_lookup2(ctx->hash, key, Qundef);
13
+
14
+ if (current_val == Qundef) {
15
+ rb_hash_aset(ctx->hash, key, other_val);
16
+ } else if (RB_TYPE_P(current_val, T_HASH) && RB_TYPE_P(other_val, T_HASH)) {
17
+ VALUE merged = deep_merge_hashes(rb_obj_dup(current_val), other_val, ctx->block);
18
+ rb_hash_aset(ctx->hash, key, merged);
19
+ } else if (!NIL_P(ctx->block)) {
20
+ VALUE result = rb_funcall(ctx->block, rb_intern("call"), 3, key, current_val, other_val);
21
+ rb_hash_aset(ctx->hash, key, result);
22
+ } else {
23
+ rb_hash_aset(ctx->hash, key, other_val);
24
+ }
25
+
26
+ return ST_CONTINUE;
27
+ }
28
+
29
+ static VALUE deep_merge_hashes(VALUE self, VALUE other, VALUE block) {
30
+ deep_merge_context ctx = {self, block};
31
+
32
+ rb_hash_foreach(other, deep_merge_iter, (VALUE)&ctx);
33
+
34
+ return self;
35
+ }
36
+
37
+ static VALUE hash_deep_merge_bang(int argc, VALUE *argv, VALUE self) {
38
+ VALUE other;
39
+ rb_scan_args(argc, argv, "1", &other);
40
+ other = rb_funcall(other, rb_intern("to_hash"), 0);
41
+ VALUE block = Qnil;
42
+ if (rb_block_given_p()) {
43
+ block = rb_block_proc();
44
+ }
45
+
46
+ deep_merge_hashes(self, other, block);
47
+
48
+ return self;
49
+ }
50
+
51
+ static VALUE hash_deep_merge(int argc, VALUE *argv, VALUE self) {
52
+ return hash_deep_merge_bang(argc, argv, rb_obj_dup(self));
53
+ }
54
+
55
+ void Init_sin_deep_merge(void) {
56
+ rb_define_method(rb_cHash, "deep_merge", RUBY_METHOD_FUNC(hash_deep_merge), -1);
57
+ rb_define_method(rb_cHash, "deep_merge!", RUBY_METHOD_FUNC(hash_deep_merge_bang), -1);
58
+ }
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sin_deep_merge
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Masahiro
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 2025-03-10 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Ruby extension library for up to 2x faster deep merging of Hash objects
13
+ than ActiveSupport.
14
+ email:
15
+ - watanabe@cadenza-tech.com
16
+ executables: []
17
+ extensions:
18
+ - ext/sin_deep_merge/extconf.rb
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ext/sin_deep_merge/extconf.rb
22
+ - ext/sin_deep_merge/sin_deep_merge.c
23
+ homepage: https://github.com/cadenza-tech/sin_deep_merge/tree/v0.0.0
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ homepage_uri: https://github.com/cadenza-tech/sin_deep_merge/tree/v0.0.0
28
+ source_code_uri: https://github.com/cadenza-tech/sin_deep_merge/tree/v0.0.0
29
+ changelog_uri: https://github.com/cadenza-tech/sin_deep_merge/blob/v0.0.0/CHANGELOG.md
30
+ bug_tracker_uri: https://github.com/cadenza-tech/sin_deep_merge/issues
31
+ documentation_uri: https://rubydoc.info/gems/sin_deep_merge/0.0.0
32
+ funding_uri: https://patreon.com/CadenzaTech
33
+ rubygems_mfa_required: 'true'
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 2.3.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.6.2
49
+ specification_version: 4
50
+ summary: Ruby extension library for up to 2x faster deep merging of Hash objects than
51
+ ActiveSupport.
52
+ test_files: []