activesupport 6.1.0 → 7.1.5.1
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 +4 -4
- data/CHANGELOG.md +1075 -325
- data/MIT-LICENSE +1 -1
- data/README.rdoc +7 -7
- data/lib/active_support/actionable_error.rb +4 -2
- data/lib/active_support/array_inquirer.rb +2 -2
- data/lib/active_support/backtrace_cleaner.rb +32 -7
- data/lib/active_support/benchmarkable.rb +3 -2
- data/lib/active_support/broadcast_logger.rb +251 -0
- data/lib/active_support/builder.rb +1 -1
- data/lib/active_support/cache/coder.rb +153 -0
- data/lib/active_support/cache/entry.rb +134 -0
- data/lib/active_support/cache/file_store.rb +53 -20
- data/lib/active_support/cache/mem_cache_store.rb +201 -62
- data/lib/active_support/cache/memory_store.rb +86 -24
- data/lib/active_support/cache/null_store.rb +16 -2
- data/lib/active_support/cache/redis_cache_store.rb +186 -193
- data/lib/active_support/cache/serializer_with_fallback.rb +175 -0
- data/lib/active_support/cache/strategy/local_cache.rb +63 -71
- data/lib/active_support/cache.rb +487 -249
- data/lib/active_support/callbacks.rb +227 -105
- data/lib/active_support/code_generator.rb +70 -0
- data/lib/active_support/concern.rb +9 -7
- data/lib/active_support/concurrency/load_interlock_aware_monitor.rb +44 -7
- data/lib/active_support/concurrency/null_lock.rb +13 -0
- data/lib/active_support/concurrency/share_lock.rb +2 -2
- data/lib/active_support/configurable.rb +18 -5
- data/lib/active_support/configuration_file.rb +7 -2
- data/lib/active_support/core_ext/array/access.rb +1 -5
- data/lib/active_support/core_ext/array/conversions.rb +15 -13
- data/lib/active_support/core_ext/array/grouping.rb +6 -6
- data/lib/active_support/core_ext/array/inquiry.rb +2 -2
- data/lib/active_support/core_ext/big_decimal/conversions.rb +1 -1
- data/lib/active_support/core_ext/class/subclasses.rb +37 -26
- data/lib/active_support/core_ext/date/blank.rb +1 -1
- data/lib/active_support/core_ext/date/calculations.rb +24 -9
- data/lib/active_support/core_ext/date/conversions.rb +16 -15
- data/lib/active_support/core_ext/date_and_time/calculations.rb +14 -4
- data/lib/active_support/core_ext/date_and_time/compatibility.rb +1 -1
- data/lib/active_support/core_ext/date_time/blank.rb +1 -1
- data/lib/active_support/core_ext/date_time/calculations.rb +4 -0
- data/lib/active_support/core_ext/date_time/conversions.rb +19 -15
- data/lib/active_support/core_ext/digest/uuid.rb +30 -13
- data/lib/active_support/core_ext/enumerable.rb +85 -83
- data/lib/active_support/core_ext/erb/util.rb +196 -0
- data/lib/active_support/core_ext/file/atomic.rb +3 -1
- data/lib/active_support/core_ext/hash/conversions.rb +1 -2
- data/lib/active_support/core_ext/hash/deep_merge.rb +22 -14
- data/lib/active_support/core_ext/hash/deep_transform_values.rb +3 -3
- data/lib/active_support/core_ext/hash/indifferent_access.rb +3 -3
- data/lib/active_support/core_ext/hash/keys.rb +4 -4
- data/lib/active_support/core_ext/integer/inflections.rb +12 -12
- data/lib/active_support/core_ext/kernel/reporting.rb +4 -4
- data/lib/active_support/core_ext/kernel/singleton_class.rb +1 -1
- data/lib/active_support/core_ext/module/attribute_accessors.rb +8 -0
- data/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +49 -22
- data/lib/active_support/core_ext/module/concerning.rb +6 -6
- data/lib/active_support/core_ext/module/delegation.rb +81 -43
- data/lib/active_support/core_ext/module/deprecation.rb +15 -12
- data/lib/active_support/core_ext/module/introspection.rb +0 -1
- data/lib/active_support/core_ext/name_error.rb +2 -8
- data/lib/active_support/core_ext/numeric/bytes.rb +9 -0
- data/lib/active_support/core_ext/numeric/conversions.rb +82 -77
- data/lib/active_support/core_ext/object/acts_like.rb +29 -5
- data/lib/active_support/core_ext/object/blank.rb +2 -2
- data/lib/active_support/core_ext/object/deep_dup.rb +17 -1
- data/lib/active_support/core_ext/object/duplicable.rb +31 -11
- data/lib/active_support/core_ext/object/inclusion.rb +13 -5
- data/lib/active_support/core_ext/object/instance_variables.rb +22 -12
- data/lib/active_support/core_ext/object/json.rb +49 -27
- data/lib/active_support/core_ext/object/to_query.rb +2 -4
- data/lib/active_support/core_ext/object/try.rb +20 -20
- data/lib/active_support/core_ext/object/with.rb +44 -0
- data/lib/active_support/core_ext/object/with_options.rb +25 -6
- data/lib/active_support/core_ext/object.rb +1 -0
- data/lib/active_support/core_ext/pathname/blank.rb +16 -0
- data/lib/active_support/core_ext/pathname/existence.rb +23 -0
- data/lib/active_support/core_ext/pathname.rb +4 -0
- data/lib/active_support/core_ext/range/compare_range.rb +0 -25
- data/lib/active_support/core_ext/range/conversions.rb +34 -13
- data/lib/active_support/core_ext/range/each.rb +1 -1
- data/lib/active_support/core_ext/range/overlap.rb +40 -0
- data/lib/active_support/core_ext/range.rb +1 -2
- data/lib/active_support/core_ext/securerandom.rb +25 -13
- data/lib/active_support/core_ext/string/conversions.rb +2 -2
- data/lib/active_support/core_ext/string/filters.rb +21 -15
- data/lib/active_support/core_ext/string/indent.rb +1 -1
- data/lib/active_support/core_ext/string/inflections.rb +17 -10
- data/lib/active_support/core_ext/string/inquiry.rb +1 -1
- data/lib/active_support/core_ext/string/output_safety.rb +85 -165
- data/lib/active_support/core_ext/symbol/starts_ends_with.rb +0 -8
- data/lib/active_support/core_ext/thread/backtrace/location.rb +12 -0
- data/lib/active_support/core_ext/time/calculations.rb +30 -8
- data/lib/active_support/core_ext/time/conversions.rb +15 -13
- data/lib/active_support/core_ext/time/zones.rb +12 -28
- data/lib/active_support/core_ext.rb +2 -1
- data/lib/active_support/current_attributes.rb +47 -20
- data/lib/active_support/deep_mergeable.rb +53 -0
- data/lib/active_support/dependencies/autoload.rb +17 -12
- data/lib/active_support/dependencies/interlock.rb +10 -18
- data/lib/active_support/dependencies/require_dependency.rb +28 -0
- data/lib/active_support/dependencies.rb +58 -788
- data/lib/active_support/deprecation/behaviors.rb +66 -40
- data/lib/active_support/deprecation/constant_accessor.rb +5 -4
- data/lib/active_support/deprecation/deprecators.rb +104 -0
- data/lib/active_support/deprecation/disallowed.rb +6 -8
- data/lib/active_support/deprecation/instance_delegator.rb +31 -4
- data/lib/active_support/deprecation/method_wrappers.rb +9 -26
- data/lib/active_support/deprecation/proxy_wrappers.rb +38 -23
- data/lib/active_support/deprecation/reporting.rb +43 -26
- data/lib/active_support/deprecation.rb +32 -5
- data/lib/active_support/deprecator.rb +7 -0
- data/lib/active_support/descendants_tracker.rb +150 -72
- data/lib/active_support/digest.rb +5 -3
- data/lib/active_support/duration/iso8601_parser.rb +3 -3
- data/lib/active_support/duration/iso8601_serializer.rb +9 -3
- data/lib/active_support/duration.rb +83 -52
- data/lib/active_support/encrypted_configuration.rb +72 -9
- data/lib/active_support/encrypted_file.rb +29 -13
- data/lib/active_support/environment_inquirer.rb +23 -3
- data/lib/active_support/error_reporter/test_helper.rb +15 -0
- data/lib/active_support/error_reporter.rb +203 -0
- data/lib/active_support/evented_file_update_checker.rb +20 -7
- data/lib/active_support/execution_context/test_helper.rb +13 -0
- data/lib/active_support/execution_context.rb +53 -0
- data/lib/active_support/execution_wrapper.rb +44 -22
- data/lib/active_support/executor/test_helper.rb +7 -0
- data/lib/active_support/file_update_checker.rb +4 -2
- data/lib/active_support/fork_tracker.rb +28 -11
- data/lib/active_support/gem_version.rb +4 -4
- data/lib/active_support/gzip.rb +2 -0
- data/lib/active_support/hash_with_indifferent_access.rb +44 -19
- data/lib/active_support/html_safe_translation.rb +53 -0
- data/lib/active_support/i18n.rb +2 -1
- data/lib/active_support/i18n_railtie.rb +21 -14
- data/lib/active_support/inflector/inflections.rb +25 -7
- data/lib/active_support/inflector/methods.rb +50 -64
- data/lib/active_support/inflector/transliterate.rb +4 -2
- data/lib/active_support/isolated_execution_state.rb +76 -0
- data/lib/active_support/json/decoding.rb +2 -1
- data/lib/active_support/json/encoding.rb +27 -45
- data/lib/active_support/key_generator.rb +31 -6
- data/lib/active_support/lazy_load_hooks.rb +33 -7
- data/lib/active_support/locale/en.yml +4 -2
- data/lib/active_support/log_subscriber/test_helper.rb +2 -2
- data/lib/active_support/log_subscriber.rb +97 -35
- data/lib/active_support/logger.rb +9 -60
- data/lib/active_support/logger_thread_safe_level.rb +11 -34
- data/lib/active_support/message_encryptor.rb +206 -56
- data/lib/active_support/message_encryptors.rb +141 -0
- data/lib/active_support/message_pack/cache_serializer.rb +23 -0
- data/lib/active_support/message_pack/extensions.rb +292 -0
- data/lib/active_support/message_pack/serializer.rb +63 -0
- data/lib/active_support/message_pack.rb +50 -0
- data/lib/active_support/message_verifier.rb +235 -84
- data/lib/active_support/message_verifiers.rb +135 -0
- data/lib/active_support/messages/codec.rb +65 -0
- data/lib/active_support/messages/metadata.rb +112 -46
- data/lib/active_support/messages/rotation_coordinator.rb +93 -0
- data/lib/active_support/messages/rotator.rb +34 -32
- data/lib/active_support/messages/serializer_with_fallback.rb +158 -0
- data/lib/active_support/multibyte/chars.rb +12 -11
- data/lib/active_support/multibyte/unicode.rb +9 -49
- data/lib/active_support/multibyte.rb +1 -1
- data/lib/active_support/notifications/fanout.rb +304 -114
- data/lib/active_support/notifications/instrumenter.rb +117 -35
- data/lib/active_support/notifications.rb +25 -25
- data/lib/active_support/number_helper/number_converter.rb +14 -7
- data/lib/active_support/number_helper/number_to_currency_converter.rb +11 -6
- data/lib/active_support/number_helper/number_to_delimited_converter.rb +1 -1
- data/lib/active_support/number_helper/number_to_human_size_converter.rb +4 -4
- data/lib/active_support/number_helper/number_to_phone_converter.rb +2 -1
- data/lib/active_support/number_helper/number_to_rounded_converter.rb +10 -6
- data/lib/active_support/number_helper/rounding_helper.rb +2 -6
- data/lib/active_support/number_helper.rb +379 -319
- data/lib/active_support/option_merger.rb +10 -18
- data/lib/active_support/ordered_hash.rb +4 -4
- data/lib/active_support/ordered_options.rb +15 -1
- data/lib/active_support/parameter_filter.rb +105 -81
- data/lib/active_support/proxy_object.rb +2 -0
- data/lib/active_support/railtie.rb +83 -21
- data/lib/active_support/reloader.rb +13 -5
- data/lib/active_support/rescuable.rb +18 -16
- data/lib/active_support/ruby_features.rb +7 -0
- data/lib/active_support/secure_compare_rotator.rb +18 -11
- data/lib/active_support/security_utils.rb +1 -1
- data/lib/active_support/string_inquirer.rb +3 -3
- data/lib/active_support/subscriber.rb +11 -40
- data/lib/active_support/syntax_error_proxy.rb +60 -0
- data/lib/active_support/tagged_logging.rb +65 -25
- data/lib/active_support/test_case.rb +166 -27
- data/lib/active_support/testing/assertions.rb +61 -15
- data/lib/active_support/testing/autorun.rb +0 -2
- data/lib/active_support/testing/constant_stubbing.rb +32 -0
- data/lib/active_support/testing/deprecation.rb +53 -2
- data/lib/active_support/testing/error_reporter_assertions.rb +107 -0
- data/lib/active_support/testing/isolation.rb +30 -29
- data/lib/active_support/testing/method_call_assertions.rb +24 -11
- data/lib/active_support/testing/parallelization/server.rb +4 -0
- data/lib/active_support/testing/parallelization/worker.rb +3 -0
- data/lib/active_support/testing/parallelization.rb +4 -0
- data/lib/active_support/testing/parallelize_executor.rb +81 -0
- data/lib/active_support/testing/setup_and_teardown.rb +2 -0
- data/lib/active_support/testing/stream.rb +4 -6
- data/lib/active_support/testing/strict_warnings.rb +39 -0
- data/lib/active_support/testing/tagged_logging.rb +1 -1
- data/lib/active_support/testing/time_helpers.rb +49 -16
- data/lib/active_support/time_with_zone.rb +39 -28
- data/lib/active_support/values/time_zone.rb +50 -18
- data/lib/active_support/version.rb +1 -1
- data/lib/active_support/xml_mini/jdom.rb +4 -11
- data/lib/active_support/xml_mini/libxml.rb +5 -5
- data/lib/active_support/xml_mini/libxmlsax.rb +1 -1
- data/lib/active_support/xml_mini/nokogiri.rb +5 -5
- data/lib/active_support/xml_mini/nokogirisax.rb +2 -2
- data/lib/active_support/xml_mini/rexml.rb +2 -2
- data/lib/active_support/xml_mini.rb +7 -6
- data/lib/active_support.rb +28 -1
- metadata +150 -18
- data/lib/active_support/core_ext/marshal.rb +0 -26
- data/lib/active_support/core_ext/range/include_time_with_zone.rb +0 -28
- data/lib/active_support/core_ext/range/overlaps.rb +0 -10
- data/lib/active_support/core_ext/uri.rb +0 -29
- data/lib/active_support/dependencies/zeitwerk_integration.rb +0 -117
- data/lib/active_support/per_thread_registry.rb +0 -60
@@ -5,7 +5,7 @@ require "active_support/core_ext/module/delegation"
|
|
5
5
|
require "json"
|
6
6
|
|
7
7
|
module ActiveSupport
|
8
|
-
# Look for and parse
|
8
|
+
# Look for and parse JSON strings that look like ISO 8601 times.
|
9
9
|
mattr_accessor :parse_json_times
|
10
10
|
|
11
11
|
module JSON
|
@@ -28,6 +28,7 @@ module ActiveSupport
|
|
28
28
|
data
|
29
29
|
end
|
30
30
|
end
|
31
|
+
alias_method :load, :decode
|
31
32
|
|
32
33
|
# Returns the class of the error that will be raised when there is an
|
33
34
|
# error in decoding JSON. Using this method means you won't directly
|
@@ -18,12 +18,15 @@ module ActiveSupport
|
|
18
18
|
#
|
19
19
|
# ActiveSupport::JSON.encode({ team: 'rails', players: '36' })
|
20
20
|
# # => "{\"team\":\"rails\",\"players\":\"36\"}"
|
21
|
-
|
22
|
-
|
21
|
+
class << self
|
22
|
+
def encode(value, options = nil)
|
23
|
+
Encoding.json_encoder.new(options).encode(value)
|
24
|
+
end
|
25
|
+
alias_method :dump, :encode
|
23
26
|
end
|
24
27
|
|
25
|
-
module Encoding
|
26
|
-
class JSONGemEncoder
|
28
|
+
module Encoding # :nodoc:
|
29
|
+
class JSONGemEncoder # :nodoc:
|
27
30
|
attr_reader :options
|
28
31
|
|
29
32
|
def initialize(options = nil)
|
@@ -32,49 +35,27 @@ module ActiveSupport
|
|
32
35
|
|
33
36
|
# Encode the given object into a JSON string
|
34
37
|
def encode(value)
|
35
|
-
|
36
|
-
|
38
|
+
unless options.empty?
|
39
|
+
value = value.as_json(options.dup)
|
40
|
+
end
|
41
|
+
json = stringify(jsonify(value))
|
37
42
|
|
38
|
-
private
|
39
43
|
# Rails does more escaping than the JSON gem natively does (we
|
40
44
|
# escape \u2028 and \u2029 and optionally >, <, & to work around
|
41
45
|
# certain browser problems).
|
42
|
-
|
43
|
-
"
|
44
|
-
"
|
45
|
-
"
|
46
|
-
"<" => '\u003c',
|
47
|
-
"&" => '\u0026',
|
48
|
-
}
|
49
|
-
|
50
|
-
ESCAPE_REGEX_WITH_HTML_ENTITIES = /[\u2028\u2029><&]/u
|
51
|
-
ESCAPE_REGEX_WITHOUT_HTML_ENTITIES = /[\u2028\u2029]/u
|
52
|
-
|
53
|
-
# This class wraps all the strings we see and does the extra escaping
|
54
|
-
class EscapedString < String #:nodoc:
|
55
|
-
def to_json(*)
|
56
|
-
if Encoding.escape_html_entities_in_json
|
57
|
-
s = super
|
58
|
-
s.gsub! ESCAPE_REGEX_WITH_HTML_ENTITIES, ESCAPED_CHARS
|
59
|
-
s
|
60
|
-
else
|
61
|
-
s = super
|
62
|
-
s.gsub! ESCAPE_REGEX_WITHOUT_HTML_ENTITIES, ESCAPED_CHARS
|
63
|
-
s
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
def to_s
|
68
|
-
self
|
69
|
-
end
|
46
|
+
if Encoding.escape_html_entities_in_json
|
47
|
+
json.gsub!(">", '\u003e')
|
48
|
+
json.gsub!("<", '\u003c')
|
49
|
+
json.gsub!("&", '\u0026')
|
70
50
|
end
|
51
|
+
json.gsub!("\u2028", '\u2028')
|
52
|
+
json.gsub!("\u2029", '\u2029')
|
53
|
+
json
|
54
|
+
end
|
71
55
|
|
72
|
-
|
73
|
-
private_constant :ESCAPED_CHARS, :ESCAPE_REGEX_WITH_HTML_ENTITIES,
|
74
|
-
:ESCAPE_REGEX_WITHOUT_HTML_ENTITIES, :EscapedString
|
75
|
-
|
56
|
+
private
|
76
57
|
# Convert an object into a "JSON-ready" representation composed of
|
77
|
-
# primitives like Hash, Array, String, Numeric,
|
58
|
+
# primitives like Hash, Array, String, Symbol, Numeric,
|
78
59
|
# and +true+/+false+/+nil+.
|
79
60
|
# Recursively calls #as_json to the object to recursively build a
|
80
61
|
# fully JSON-ready object.
|
@@ -88,14 +69,15 @@ module ActiveSupport
|
|
88
69
|
# calls.
|
89
70
|
def jsonify(value)
|
90
71
|
case value
|
91
|
-
when String
|
92
|
-
|
93
|
-
when Numeric
|
72
|
+
when String, Integer, Symbol, nil, true, false
|
73
|
+
value
|
74
|
+
when Numeric
|
94
75
|
value.as_json
|
95
76
|
when Hash
|
96
77
|
result = {}
|
97
78
|
value.each do |k, v|
|
98
|
-
|
79
|
+
k = k.to_s unless Symbol === k || String === k
|
80
|
+
result[k] = jsonify(v)
|
99
81
|
end
|
100
82
|
result
|
101
83
|
when Array
|
@@ -124,7 +106,7 @@ module ActiveSupport
|
|
124
106
|
# Defaults to 3 (equivalent to millisecond precision)
|
125
107
|
attr_accessor :time_precision
|
126
108
|
|
127
|
-
# Sets the encoder used by Rails to encode Ruby objects into JSON strings
|
109
|
+
# Sets the encoder used by \Rails to encode Ruby objects into JSON strings
|
128
110
|
# in +Object#to_json+ and +ActiveSupport::JSON.encode+.
|
129
111
|
attr_accessor :json_encoder
|
130
112
|
end
|
@@ -4,29 +4,54 @@ require "concurrent/map"
|
|
4
4
|
require "openssl"
|
5
5
|
|
6
6
|
module ActiveSupport
|
7
|
+
# = Key Generator
|
8
|
+
#
|
7
9
|
# KeyGenerator is a simple wrapper around OpenSSL's implementation of PBKDF2.
|
8
10
|
# It can be used to derive a number of keys for various purposes from a given secret.
|
9
|
-
# This lets Rails applications have a single secure secret, but avoid reusing that
|
11
|
+
# This lets \Rails applications have a single secure secret, but avoid reusing that
|
10
12
|
# key in multiple incompatible contexts.
|
11
13
|
class KeyGenerator
|
14
|
+
class << self
|
15
|
+
def hash_digest_class=(klass)
|
16
|
+
if klass.kind_of?(Class) && klass < OpenSSL::Digest
|
17
|
+
@hash_digest_class = klass
|
18
|
+
else
|
19
|
+
raise ArgumentError, "#{klass} is expected to be an OpenSSL::Digest subclass"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def hash_digest_class
|
24
|
+
@hash_digest_class ||= OpenSSL::Digest::SHA1
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
12
28
|
def initialize(secret, options = {})
|
13
29
|
@secret = secret
|
14
30
|
# The default iterations are higher than required for our key derivation uses
|
15
31
|
# on the off chance someone uses this for password storage
|
16
32
|
@iterations = options[:iterations] || 2**16
|
33
|
+
# Also allow configuration here so people can use this to build a rotation
|
34
|
+
# scheme when switching the digest class.
|
35
|
+
@hash_digest_class = options[:hash_digest_class] || self.class.hash_digest_class
|
17
36
|
end
|
18
37
|
|
19
|
-
# Returns a derived key suitable for use. The default key_size is chosen
|
38
|
+
# Returns a derived key suitable for use. The default +key_size+ is chosen
|
20
39
|
# to be compatible with the default settings of ActiveSupport::MessageVerifier.
|
21
|
-
# i.e. OpenSSL::Digest::SHA1#block_length
|
40
|
+
# i.e. <tt>OpenSSL::Digest::SHA1#block_length</tt>
|
22
41
|
def generate_key(salt, key_size = 64)
|
23
|
-
OpenSSL::PKCS5.
|
42
|
+
OpenSSL::PKCS5.pbkdf2_hmac(@secret, salt, @iterations, key_size, @hash_digest_class.new)
|
43
|
+
end
|
44
|
+
|
45
|
+
def inspect # :nodoc:
|
46
|
+
"#<#{self.class.name}:#{'%#016x' % (object_id << 1)}>"
|
24
47
|
end
|
25
48
|
end
|
26
49
|
|
50
|
+
# = Caching Key Generator
|
51
|
+
#
|
27
52
|
# CachingKeyGenerator is a wrapper around KeyGenerator which allows users to avoid
|
28
|
-
# re-executing the key generation process when it's called using the same salt and
|
29
|
-
# key_size
|
53
|
+
# re-executing the key generation process when it's called using the same +salt+ and
|
54
|
+
# +key_size+.
|
30
55
|
class CachingKeyGenerator
|
31
56
|
def initialize(key_generator)
|
32
57
|
@key_generator = key_generator
|
@@ -1,14 +1,16 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module ActiveSupport
|
4
|
-
#
|
4
|
+
# = Lazy Load Hooks
|
5
|
+
#
|
6
|
+
# LazyLoadHooks allows \Rails to lazily load a lot of components and thus
|
5
7
|
# making the app boot faster. Because of this feature now there is no need to
|
6
|
-
# require
|
8
|
+
# require +ActiveRecord::Base+ at boot time purely to apply
|
7
9
|
# configuration. Instead a hook is registered that applies configuration once
|
8
|
-
#
|
10
|
+
# +ActiveRecord::Base+ is loaded. Here +ActiveRecord::Base+ is
|
9
11
|
# used as example but this feature can be applied elsewhere too.
|
10
12
|
#
|
11
|
-
# Here is an example where
|
13
|
+
# Here is an example where on_load method is called to register a hook.
|
12
14
|
#
|
13
15
|
# initializer 'active_record.initialize_timezone' do
|
14
16
|
# ActiveSupport.on_load(:active_record) do
|
@@ -18,10 +20,26 @@ module ActiveSupport
|
|
18
20
|
# end
|
19
21
|
#
|
20
22
|
# When the entirety of +ActiveRecord::Base+ has been
|
21
|
-
# evaluated then
|
23
|
+
# evaluated then run_load_hooks is invoked. The very last line of
|
22
24
|
# +ActiveRecord::Base+ is:
|
23
25
|
#
|
24
26
|
# ActiveSupport.run_load_hooks(:active_record, ActiveRecord::Base)
|
27
|
+
#
|
28
|
+
# run_load_hooks will then execute all the hooks that were registered
|
29
|
+
# with the on_load method. In the case of the above example, it will
|
30
|
+
# execute the block of code that is in the +initializer+.
|
31
|
+
#
|
32
|
+
# Registering a hook that has already run results in that hook executing
|
33
|
+
# immediately. This allows hooks to be nested for code that relies on
|
34
|
+
# multiple lazily loaded components:
|
35
|
+
#
|
36
|
+
# initializer "action_text.renderer" do
|
37
|
+
# ActiveSupport.on_load(:action_controller_base) do
|
38
|
+
# ActiveSupport.on_load(:action_text_content) do
|
39
|
+
# self.default_renderer = Class.new(ActionController::Base).renderer
|
40
|
+
# end
|
41
|
+
# end
|
42
|
+
# end
|
25
43
|
module LazyLoadHooks
|
26
44
|
def self.extended(base) # :nodoc:
|
27
45
|
base.class_eval do
|
@@ -31,8 +49,9 @@ module ActiveSupport
|
|
31
49
|
end
|
32
50
|
end
|
33
51
|
|
34
|
-
# Declares a block that will be executed when a Rails component is fully
|
35
|
-
# loaded.
|
52
|
+
# Declares a block that will be executed when a \Rails component is fully
|
53
|
+
# loaded. If the component has already loaded, the block is executed
|
54
|
+
# immediately.
|
36
55
|
#
|
37
56
|
# Options:
|
38
57
|
#
|
@@ -46,6 +65,13 @@ module ActiveSupport
|
|
46
65
|
@load_hooks[name] << [block, options]
|
47
66
|
end
|
48
67
|
|
68
|
+
# Executes all blocks registered to +name+ via on_load, using +base+ as the
|
69
|
+
# evaluation context.
|
70
|
+
#
|
71
|
+
# ActiveSupport.run_load_hooks(:active_record, ActiveRecord::Base)
|
72
|
+
#
|
73
|
+
# In the case of the above example, it will execute all hooks registered
|
74
|
+
# for +:active_record+ within the class +ActiveRecord::Base+.
|
49
75
|
def run_load_hooks(name, base = Object)
|
50
76
|
@loaded[name] << base
|
51
77
|
@load_hooks[name].each do |hook, options|
|
@@ -45,7 +45,7 @@ en:
|
|
45
45
|
# Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
|
46
46
|
precision: 3
|
47
47
|
# Determine how rounding is performed (see BigDecimal::mode)
|
48
|
-
round_mode:
|
48
|
+
round_mode: default
|
49
49
|
# If set to true, precision will mean the number of significant digits instead
|
50
50
|
# of the number of decimal digits (1234 with precision 2 becomes 1200, 1.23543 becomes 1.2)
|
51
51
|
significant: false
|
@@ -55,8 +55,9 @@ en:
|
|
55
55
|
# Used in NumberHelper.number_to_currency()
|
56
56
|
currency:
|
57
57
|
format:
|
58
|
-
# Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
|
58
|
+
# Where is the currency sign? %u is the currency unit, %n is the number (default: $5.00)
|
59
59
|
format: "%u%n"
|
60
|
+
negative_format: "-%u%n"
|
60
61
|
unit: "$"
|
61
62
|
# These six are to override number.format and are optional
|
62
63
|
separator: "."
|
@@ -112,6 +113,7 @@ en:
|
|
112
113
|
tb: "TB"
|
113
114
|
pb: "PB"
|
114
115
|
eb: "EB"
|
116
|
+
zb: "ZB"
|
115
117
|
# Used in NumberHelper.number_to_human()
|
116
118
|
decimal_units:
|
117
119
|
format: "%n %u"
|
@@ -27,13 +27,13 @@ module ActiveSupport
|
|
27
27
|
#
|
28
28
|
# All you need to do is to ensure that your log subscriber is added to
|
29
29
|
# Rails::Subscriber, as in the second line of the code above. The test
|
30
|
-
# helpers are responsible for setting up the queue
|
30
|
+
# helpers are responsible for setting up the queue and subscriptions, and
|
31
31
|
# turning colors in logs off.
|
32
32
|
#
|
33
33
|
# The messages are available in the @logger instance, which is a logger with
|
34
34
|
# limited powers (it actually does not send anything to your output), and
|
35
35
|
# you can collect them doing @logger.logged(level), where level is the level
|
36
|
-
# used in logging, like info, debug, warn and so on.
|
36
|
+
# used in logging, like info, debug, warn, and so on.
|
37
37
|
module TestHelper
|
38
38
|
def setup # :nodoc:
|
39
39
|
@logger = MockLogger.new
|
@@ -2,11 +2,15 @@
|
|
2
2
|
|
3
3
|
require "active_support/core_ext/module/attribute_accessors"
|
4
4
|
require "active_support/core_ext/class/attribute"
|
5
|
+
require "active_support/core_ext/enumerable"
|
5
6
|
require "active_support/subscriber"
|
7
|
+
require "active_support/deprecation/proxy_wrappers"
|
6
8
|
|
7
9
|
module ActiveSupport
|
8
|
-
#
|
9
|
-
#
|
10
|
+
# = Active Support Log \Subscriber
|
11
|
+
#
|
12
|
+
# +ActiveSupport::LogSubscriber+ is an object set to consume
|
13
|
+
# ActiveSupport::Notifications with the sole purpose of logging them.
|
10
14
|
# The log subscriber dispatches notifications to a registered object based
|
11
15
|
# on its given namespace.
|
12
16
|
#
|
@@ -15,29 +19,23 @@ module ActiveSupport
|
|
15
19
|
#
|
16
20
|
# module ActiveRecord
|
17
21
|
# class LogSubscriber < ActiveSupport::LogSubscriber
|
22
|
+
# attach_to :active_record
|
23
|
+
#
|
18
24
|
# def sql(event)
|
19
25
|
# info "#{event.payload[:name]} (#{event.duration}) #{event.payload[:sql]}"
|
20
26
|
# end
|
21
27
|
# end
|
22
28
|
# end
|
23
29
|
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
# ActiveRecord::LogSubscriber.attach_to :active_record
|
27
|
-
#
|
28
|
-
# Since we need to know all instance methods before attaching the log
|
29
|
-
# subscriber, the line above should be called after your
|
30
|
-
# <tt>ActiveRecord::LogSubscriber</tt> definition.
|
30
|
+
# ActiveRecord::LogSubscriber.logger must be set as well, but it is assigned
|
31
|
+
# automatically in a \Rails environment.
|
31
32
|
#
|
32
|
-
#
|
33
|
-
#
|
33
|
+
# After configured, whenever a <tt>"sql.active_record"</tt> notification is
|
34
|
+
# published, it will properly dispatch the event
|
35
|
+
# (ActiveSupport::Notifications::Event) to the +sql+ method.
|
34
36
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
# (<tt>ActiveSupport::Notifications::Event</tt>) to the sql method.
|
38
|
-
#
|
39
|
-
# Being an <tt>ActiveSupport::Notifications</tt> consumer,
|
40
|
-
# <tt>ActiveSupport::LogSubscriber</tt> exposes a simple interface to check if
|
37
|
+
# Being an ActiveSupport::Notifications consumer,
|
38
|
+
# +ActiveSupport::LogSubscriber+ exposes a simple interface to check if
|
41
39
|
# instrumented code raises an exception. It is common to log a different
|
42
40
|
# message in case of an error, and this can be achieved by extending
|
43
41
|
# the previous example:
|
@@ -59,15 +57,24 @@ module ActiveSupport
|
|
59
57
|
# end
|
60
58
|
# end
|
61
59
|
#
|
62
|
-
#
|
63
|
-
#
|
64
|
-
#
|
60
|
+
# +ActiveSupport::LogSubscriber+ also has some helpers to deal with
|
61
|
+
# logging. For example, ActiveSupport::LogSubscriber.flush_all! will ensure
|
62
|
+
# that all logs are flushed, and it is called in Rails::Rack::Logger after a
|
63
|
+
# request finishes.
|
65
64
|
class LogSubscriber < Subscriber
|
66
65
|
# Embed in a String to clear all previous ANSI sequences.
|
67
|
-
CLEAR
|
68
|
-
BOLD
|
66
|
+
CLEAR = ActiveSupport::Deprecation::DeprecatedObjectProxy.new("\e[0m", "CLEAR is deprecated! Use MODES[:clear] instead.", ActiveSupport.deprecator)
|
67
|
+
BOLD = ActiveSupport::Deprecation::DeprecatedObjectProxy.new("\e[1m", "BOLD is deprecated! Use MODES[:bold] instead.", ActiveSupport.deprecator)
|
68
|
+
|
69
|
+
# ANSI sequence modes
|
70
|
+
MODES = {
|
71
|
+
clear: 0,
|
72
|
+
bold: 1,
|
73
|
+
italic: 3,
|
74
|
+
underline: 4,
|
75
|
+
}
|
69
76
|
|
70
|
-
#
|
77
|
+
# ANSI sequence colors
|
71
78
|
BLACK = "\e[30m"
|
72
79
|
RED = "\e[31m"
|
73
80
|
GREEN = "\e[32m"
|
@@ -78,6 +85,13 @@ module ActiveSupport
|
|
78
85
|
WHITE = "\e[37m"
|
79
86
|
|
80
87
|
mattr_accessor :colorize_logging, default: true
|
88
|
+
class_attribute :log_levels, instance_accessor: false, default: {} # :nodoc:
|
89
|
+
|
90
|
+
LEVEL_CHECKS = {
|
91
|
+
debug: -> (logger) { !logger.debug? },
|
92
|
+
info: -> (logger) { !logger.info? },
|
93
|
+
error: -> (logger) { !logger.error? },
|
94
|
+
}
|
81
95
|
|
82
96
|
class << self
|
83
97
|
def logger
|
@@ -86,6 +100,12 @@ module ActiveSupport
|
|
86
100
|
end
|
87
101
|
end
|
88
102
|
|
103
|
+
def attach_to(...) # :nodoc:
|
104
|
+
result = super
|
105
|
+
set_event_levels
|
106
|
+
result
|
107
|
+
end
|
108
|
+
|
89
109
|
attr_writer :logger
|
90
110
|
|
91
111
|
def log_subscribers
|
@@ -101,24 +121,46 @@ module ActiveSupport
|
|
101
121
|
def fetch_public_methods(subscriber, inherit_all)
|
102
122
|
subscriber.public_methods(inherit_all) - LogSubscriber.public_instance_methods(true)
|
103
123
|
end
|
124
|
+
|
125
|
+
def set_event_levels
|
126
|
+
if subscriber
|
127
|
+
subscriber.event_levels = log_levels.transform_keys { |k| "#{k}.#{namespace}" }
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
def subscribe_log_level(method, level)
|
132
|
+
self.log_levels = log_levels.merge(method => LEVEL_CHECKS.fetch(level))
|
133
|
+
set_event_levels
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
def initialize
|
138
|
+
super
|
139
|
+
@event_levels = {}
|
104
140
|
end
|
105
141
|
|
106
142
|
def logger
|
107
143
|
LogSubscriber.logger
|
108
144
|
end
|
109
145
|
|
110
|
-
def
|
146
|
+
def silenced?(event)
|
147
|
+
logger.nil? || @event_levels[event]&.call(logger)
|
148
|
+
end
|
149
|
+
|
150
|
+
def call(event)
|
111
151
|
super if logger
|
152
|
+
rescue => e
|
153
|
+
log_exception(event.name, e)
|
112
154
|
end
|
113
155
|
|
114
|
-
def
|
156
|
+
def publish_event(event)
|
115
157
|
super if logger
|
116
158
|
rescue => e
|
117
|
-
|
118
|
-
logger.error "Could not log #{name.inspect} event. #{e.class}: #{e.message} #{e.backtrace}"
|
119
|
-
end
|
159
|
+
log_exception(event.name, e)
|
120
160
|
end
|
121
161
|
|
162
|
+
attr_writer :event_levels # :nodoc:
|
163
|
+
|
122
164
|
private
|
123
165
|
%w(info debug warn error fatal unknown).each do |level|
|
124
166
|
class_eval <<-METHOD, __FILE__, __LINE__ + 1
|
@@ -128,15 +170,35 @@ module ActiveSupport
|
|
128
170
|
METHOD
|
129
171
|
end
|
130
172
|
|
131
|
-
# Set color by using a symbol or one of the defined constants.
|
132
|
-
#
|
133
|
-
#
|
134
|
-
|
135
|
-
def color(text, color, bold = false) # :doc:
|
173
|
+
# Set color by using a symbol or one of the defined constants. Set modes
|
174
|
+
# by specifying bold, italic, or underline options. Inspired by Highline,
|
175
|
+
# this method will automatically clear formatting at the end of the returned String.
|
176
|
+
def color(text, color, mode_options = {}) # :doc:
|
136
177
|
return text unless colorize_logging
|
137
178
|
color = self.class.const_get(color.upcase) if color.is_a?(Symbol)
|
138
|
-
|
139
|
-
"#{
|
179
|
+
mode = mode_from(mode_options)
|
180
|
+
clear = "\e[#{MODES[:clear]}m"
|
181
|
+
"#{mode}#{color}#{text}#{clear}"
|
182
|
+
end
|
183
|
+
|
184
|
+
def mode_from(options)
|
185
|
+
if options.is_a?(TrueClass) || options.is_a?(FalseClass)
|
186
|
+
ActiveSupport.deprecator.warn(<<~MSG.squish)
|
187
|
+
Bolding log text with a positional boolean is deprecated and will be removed
|
188
|
+
in Rails 7.2. Use an option hash instead (eg. `color("my text", :red, bold: true)`).
|
189
|
+
MSG
|
190
|
+
options = { bold: options }
|
191
|
+
end
|
192
|
+
|
193
|
+
modes = MODES.values_at(*options.compact_blank.keys)
|
194
|
+
|
195
|
+
"\e[#{modes.join(";")}m" if modes.any?
|
196
|
+
end
|
197
|
+
|
198
|
+
def log_exception(name, e)
|
199
|
+
if logger
|
200
|
+
logger.error "Could not log #{name.inspect} event. #{e.class}: #{e.message} #{e.backtrace}"
|
201
|
+
end
|
140
202
|
end
|
141
203
|
end
|
142
204
|
end
|
@@ -14,72 +14,21 @@ module ActiveSupport
|
|
14
14
|
# ActiveSupport::Logger.logger_outputs_to?(logger, STDOUT)
|
15
15
|
# # => true
|
16
16
|
def self.logger_outputs_to?(logger, *sources)
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
# Broadcasts logs to multiple loggers.
|
23
|
-
def self.broadcast(logger) # :nodoc:
|
24
|
-
Module.new do
|
25
|
-
define_method(:add) do |*args, &block|
|
26
|
-
logger.add(*args, &block)
|
27
|
-
super(*args, &block)
|
28
|
-
end
|
29
|
-
|
30
|
-
define_method(:<<) do |x|
|
31
|
-
logger << x
|
32
|
-
super(x)
|
33
|
-
end
|
34
|
-
|
35
|
-
define_method(:close) do
|
36
|
-
logger.close
|
37
|
-
super()
|
38
|
-
end
|
39
|
-
|
40
|
-
define_method(:progname=) do |name|
|
41
|
-
logger.progname = name
|
42
|
-
super(name)
|
43
|
-
end
|
44
|
-
|
45
|
-
define_method(:formatter=) do |formatter|
|
46
|
-
logger.formatter = formatter
|
47
|
-
super(formatter)
|
48
|
-
end
|
49
|
-
|
50
|
-
define_method(:level=) do |level|
|
51
|
-
logger.level = level
|
52
|
-
super(level)
|
53
|
-
end
|
17
|
+
loggers = if logger.is_a?(BroadcastLogger)
|
18
|
+
logger.broadcasts
|
19
|
+
else
|
20
|
+
[logger]
|
21
|
+
end
|
54
22
|
|
55
|
-
|
56
|
-
|
57
|
-
super(level) if respond_to?(:local_level=)
|
58
|
-
end
|
23
|
+
logdevs = loggers.map { |logger| logger.instance_variable_get(:@logdev) }
|
24
|
+
logger_sources = logdevs.filter_map { |logdev| logdev.dev if logdev.respond_to?(:dev) }
|
59
25
|
|
60
|
-
|
61
|
-
if logger.respond_to?(:silence)
|
62
|
-
logger.silence(level) do
|
63
|
-
if defined?(super)
|
64
|
-
super(level, &block)
|
65
|
-
else
|
66
|
-
block.call(self)
|
67
|
-
end
|
68
|
-
end
|
69
|
-
else
|
70
|
-
if defined?(super)
|
71
|
-
super(level, &block)
|
72
|
-
else
|
73
|
-
block.call(self)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
end
|
77
|
-
end
|
26
|
+
(sources & logger_sources).any?
|
78
27
|
end
|
79
28
|
|
80
29
|
def initialize(*args, **kwargs)
|
81
30
|
super
|
82
|
-
@formatter
|
31
|
+
@formatter ||= SimpleFormatter.new
|
83
32
|
end
|
84
33
|
|
85
34
|
# Simple formatter which only displays the message.
|