-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathgenerate-versioned-array.rb
72 lines (54 loc) · 2.16 KB
/
generate-versioned-array.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright (c) 2021, 2025 Oracle and/or its affiliates. All rights reserved. This
# code is released under a tri EPL/GPL/LGPL license. You can use it,
# redistribute it and/or modify it under the terms of the:
#
# Eclipse Public License version 2.0, or
# GNU General Public License version 2, or
# GNU Lesser General Public License version 2.1.
abort "this file should be run on TruffleRuby to list TruffleRuby's Array methods" unless RUBY_ENGINE == 'truffleruby'
copyright = File.read(__FILE__)[/Copyright \(c\) \d+, \d+ Oracle/]
file = 'src/main/ruby/truffleruby/core/truffle/versioned_array.rb'
code = <<RUBY
# frozen_string_literal: true
# #{copyright} and/or its affiliates. All rights reserved. This
# code is released under a tri EPL/GPL/LGPL license. You can use it,
# redistribute it and/or modify it under the terms of the:
#
# Eclipse Public License version 2.0, or
# GNU General Public License version 2, or
# GNU Lesser General Public License version 2.1.
# GENERATED BY #{__FILE__}
# This class is used for $LOADED_FEATURES and $LOAD_PATH.
class Truffle::VersionedArray < Array
# the monitor must be owned when calling this method
attr_reader :version
def initialize(lock)
@lock = lock
@version = 0
end
RUBY
mutating_methods_name =
[:<<, :[]=, :append, :clear, :collect!, :compact!, :concat, :delete, :delete_at, :delete_if, :fill, :filter!,
:flatten!, :insert, :keep_if, :map!, :pop, :prepend, :push, :reject!, :replace, :reverse!, :rotate!, :select!,
:shift, :shuffle!, :slice!, :sort!, :sort_by!, :uniq!, :unshift]
mutating_methods, read_only_methods = Array.public_instance_methods(false).partition do |method|
mutating_methods_name.include? method
end
read_only_methods.concat Enumerable.public_instance_methods(false)
mutating_methods.sort.each do |method|
code << <<-RUBY
def #{method}(*args, &block)
TruffleRuby.synchronized(@lock) { @version += 1; super(*args, &block) }
end
RUBY
end
read_only_methods.uniq.sort.each do |method|
code << <<-RUBY
def #{method}(*args, &block)
copy = TruffleRuby.synchronized(@lock) { Array.new self }
copy.#{method}(*args, &block)
end
RUBY
end
code << "end\n"
File.write(file, code)