# frozen_string_literal: truerequire"active_support/notifications"moduleActiveSupport# Raised when ActiveSupport::Deprecation::Behavior#behavior is set with <tt>:raise</tt>.# You would set <tt>:raise</tt>, as a behavior to raise errors and proactively report exceptions from deprecations.classDeprecationException<StandardErrorendclassDeprecation# Default warning behaviors per Rails.env.DEFAULT_BEHAVIORS={raise: ->(message,callstack,deprecator)doe=DeprecationException.new(message)e.set_backtrace(callstack.map(&:to_s))raiseeend,stderr: ->(message,callstack,deprecator)do$stderr.puts(message)$stderr.putscallstack.join("\n ")ifdeprecator.debugend,log: ->(message,callstack,deprecator)dologger=ifdefined?(Rails.logger)&&Rails.loggerRails.loggerelserequire"active_support/logger"ActiveSupport::Logger.new($stderr)endlogger.warnmessagelogger.debugcallstack.join("\n ")ifdeprecator.debugend,notify: ->(message,callstack,deprecator)doActiveSupport::Notifications.instrument("deprecation.#{deprecator.gem_name.underscore.tr("/","_")}",message: message,callstack: callstack,gem_name: deprecator.gem_name,deprecation_horizon: deprecator.deprecation_horizon,)end,silence: ->(message,callstack,deprecator){},report: ->(message,callstack,deprecator)doerror=DeprecationException.new(message)error.set_backtrace(callstack.map(&:to_s))ActiveSupport.error_reporter.report(error)end}# Behavior module allows to determine how to display deprecation messages.# You can create a custom behavior or set any from the +DEFAULT_BEHAVIORS+# constant. Available behaviors are:## [+:raise+] Raise ActiveSupport::DeprecationException.# [+:stderr+] Log all deprecation warnings to <tt>$stderr</tt>.# [+:log+] Log all deprecation warnings to +Rails.logger+.# [+:notify+] Use ActiveSupport::Notifications to notify +deprecation.rails+.# [+:report+] Use ActiveSupport::ErrorReporter to report deprecations.# [+:silence+] Do nothing. On \Rails, set <tt>config.active_support.report_deprecations = false</tt> to disable all behaviors.## Setting behaviors only affects deprecations that happen after boot time.# For more information you can read the documentation of the #behavior= method.moduleBehavior# Whether to print a backtrace along with the warning.attr_accessor:debug# Returns the current behavior or if one isn't set, defaults to +:stderr+.defbehavior@behavior||=[DEFAULT_BEHAVIORS[:stderr]]end# Returns the current behavior for disallowed deprecations or if one isn't set, defaults to +:raise+.defdisallowed_behavior@disallowed_behavior||=[DEFAULT_BEHAVIORS[:raise]]end# Sets the behavior to the specified value. Can be a single value, array,# or an object that responds to +call+.## Available behaviors:## [+:raise+] Raise ActiveSupport::DeprecationException.# [+:stderr+] Log all deprecation warnings to <tt>$stderr</tt>.# [+:log+] Log all deprecation warnings to +Rails.logger+.# [+:notify+] Use ActiveSupport::Notifications to notify +deprecation.rails+.# [+:report+] Use ActiveSupport::ErrorReporter to report deprecations.# [+:silence+] Do nothing.## Setting behaviors only affects deprecations that happen after boot time.# Deprecation warnings raised by gems are not affected by this setting# because they happen before \Rails boots up.## deprecator = ActiveSupport::Deprecation.new# deprecator.behavior = :stderr# deprecator.behavior = [:stderr, :log]# deprecator.behavior = MyCustomHandler# deprecator.behavior = ->(message, callstack, deprecation_horizon, gem_name) {# # custom stuff# }## If you are using \Rails, you can set# <tt>config.active_support.report_deprecations = false</tt> to disable# all deprecation behaviors. This is similar to the +:silence+ option but# more performant.defbehavior=(behavior)@behavior=Array(behavior).map{|b|DEFAULT_BEHAVIORS[b]||arity_coerce(b)}end# Sets the behavior for disallowed deprecations (those configured by# ActiveSupport::Deprecation#disallowed_warnings=) to the specified# value. As with #behavior=, this can be a single value, array, or an# object that responds to +call+.defdisallowed_behavior=(behavior)@disallowed_behavior=Array(behavior).map{|b|DEFAULT_BEHAVIORS[b]||arity_coerce(b)}endprivatedefarity_coerce(behavior)unlessbehavior.respond_to?(:call)raiseArgumentError,"#{behavior.inspect} is not a valid deprecation behavior."endcasearity_of_callable(behavior)when2->(message,callstack,deprecator)dobehavior.call(message,callstack)endwhen-2..3behaviorelse->(message,callstack,deprecator)dobehavior.call(message,callstack,deprecator.deprecation_horizon,deprecator.gem_name)endendenddefarity_of_callable(callable)callable.respond_to?(:arity)?callable.arity:callable.method(:call).arityendendendend