Class: RuboCop::Cop::Lint::NonAtomicFileOperation
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
::RuboCop::Cop::AutoCorrector,
::RuboCop::Cop::Base,
::RuboCop::ExcludeLimit,
NodePattern::Macros,
RuboCop::AST::Sexp
|
|
|
Instance Chain:
self,
::RuboCop::Cop::Base,
::RuboCop::Cop::AutocorrectLogic,
::RuboCop::Cop::IgnoredNode,
::RuboCop::Util,
RuboCop::AST::Sexp
|
|
| Inherits: |
RuboCop::Cop::Base
|
| Defined in: | lib/rubocop/cop/lint/non_atomic_file_operation.rb |
Overview
Checks for non-atomic file operation. And then replace it with a nearly equivalent and atomic method.
These can cause problems that are difficult to reproduce, especially in cases of frequent file operations in parallel, such as test runs with parallel_rspec.
For examples: creating a directory if there is none, has the following problems
An exception occurs when the directory didn’t exist at the time of exist?,
but someone else created it before mkdir was executed.
Subsequent processes are executed without the directory that should be there
when the directory existed at the time of exist?,
but someone else deleted it shortly afterwards.
Constant Summary
-
MAKE_FORCE_METHODS =
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 50%i[makedirs mkdir_p mkpath].freeze
-
MAKE_METHODS =
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 51%i[mkdir].freeze
-
MSG_CHANGE_FORCE_METHOD =
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 49'Use atomic file operation method `FileUtils.%<method_name>s`.' -
MSG_REMOVE_FILE_EXIST_CHECK =
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 47'Remove unnecessary existence check ' \ '`%<receiver>s.%<method_name>s`.'
-
RECURSIVE_REMOVE_METHODS =
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 54%i[remove_dir remove_entry remove_entry_secure].freeze
-
REMOVE_FORCE_METHODS =
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 52%i[rm_f rm_rf].freeze
-
REMOVE_METHODS =
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 53%i[remove delete unlink remove_file rm rmdir safe_unlink].freeze
-
RESTRICT_ON_SEND =
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 55( MAKE_METHODS + MAKE_FORCE_METHODS + REMOVE_METHODS + RECURSIVE_REMOVE_METHODS + REMOVE_FORCE_METHODS ).freeze
::RuboCop::Cop::Base - Inherited
Class Attribute Summary
::RuboCop::Cop::AutoCorrector - Extended
::RuboCop::Cop::Base - Inherited
| .gem_requirements, .lint?, | |
| .support_autocorrect? | Returns if class supports autocorrect. |
| .support_multiple_source? | Override if your cop should be called repeatedly for multiple investigations Between calls to |
Class Method Summary
::RuboCop::Cop::Base - Inherited
| .autocorrect_incompatible_with | List of cops that should not try to autocorrect at the same time as this cop. |
| .badge | Naming. |
| .callbacks_needed, .cop_name, .department, | |
| .documentation_url | Returns a url to view this cops documentation online. |
| .exclude_from_registry | Call for abstract Cop classes. |
| .inherited, | |
| .joining_forces | Override and return the Force class(es) you need to join. |
| .match? | Returns true if the cop name or the cop namespace matches any of the given names. |
| .new, | |
| .requires_gem | Register a version requirement for the given gem name. |
| .restrict_on_send | |
::RuboCop::ExcludeLimit - Extended
| exclude_limit | Sets up a configuration option to have an exclude limit tracked. |
| transform | |
Instance Attribute Summary
::RuboCop::Cop::Base - Inherited
::RuboCop::Cop::AutocorrectLogic - Included
Instance Method Summary
- #explicit_not_force?(node)
- #force?(node)
- #on_send(node)
- #receiver_and_method_name(node)
- #send_exist_node(node)
- #allowable_use_with_if?(if_node) ⇒ Boolean private
- #autocorrect(corrector, node, range) private
- #autocorrect_replace_method(corrector, node) private
- #force_method?(node) ⇒ Boolean private
- #force_method_name?(node) ⇒ Boolean private
- #force_option?(node) ⇒ Boolean private
- #if_node_child?(node) ⇒ Boolean private
- #message_change_force_method(node) private
- #message_remove_file_exist_check(node) private
- #register_offense(node, exist_node) private
- #replacement_method(node) private
- #require_mode_keyword?(node) ⇒ Boolean private
::RuboCop::Cop::Base - Inherited
| #add_global_offense | Adds an offense that has no particular location. |
| #add_offense | Adds an offense on the specified range (or node with an expression) Unless that offense is disabled for this range, a corrector will be yielded to provide the cop the opportunity to autocorrect the offense. |
| #begin_investigation | Called before any investigation. |
| #callbacks_needed, | |
| #cop_config | Configuration Helpers. |
| #cop_name, #excluded_file?, | |
| #external_dependency_checksum | This method should be overridden when a cop’s behavior depends on state that lives outside of these locations: |
| #inspect, | |
| #message | Gets called if no message is specified when calling |
| #name | Alias for Base#cop_name. |
| #offenses, | |
| #on_investigation_end | Called after all on_… |
| #on_new_investigation | Called before all on_… |
| #on_other_file | Called instead of all on_… |
| #parse | There should be very limited reasons for a Cop to do it’s own parsing. |
| #parser_engine, | |
| #ready | Called between investigations. |
| #relevant_file?, | |
| #target_gem_version | Returns a gems locked versions (i.e. |
| #target_rails_version, #target_ruby_version, #annotate, #apply_correction, #attempt_correction, | |
| #callback_argument | Reserved for Cop::Cop. |
| #complete_investigation | Called to complete an investigation. |
| #correct, #current_corrector, | |
| #current_offense_locations | Reserved for Commissioner: |
| #current_offenses, #currently_disabled_lines, #custom_severity, #default_severity, #disable_uncorrectable, #enabled_line?, #file_name_matches_any?, #find_message, #find_severity, #range_for_original, #range_from_node_or_range, | |
| #reset_investigation | Actually private methods. |
| #use_corrector | |
::RuboCop::Cop::AutocorrectLogic - Included
::RuboCop::Cop::IgnoredNode - Included
Constructor Details
This class inherits a constructor from RuboCop::Cop::Base
Instance Method Details
#allowable_use_with_if?(if_node) ⇒ Boolean (private)
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 98
def allowable_use_with_if?(if_node) if_node.condition.operator_keyword? || if_node.else_branch end
#autocorrect(corrector, node, range) (private)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 123
def autocorrect(corrector, node, range) corrector.remove(range) autocorrect_replace_method(corrector, node) if node.parent.modifier_form? corrector.remove(node.source_range.end.join(node.parent.loc.keyword.begin)) else corrector.remove(node.parent.loc.end) end end
#autocorrect_replace_method(corrector, node) (private)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 134
def autocorrect_replace_method(corrector, node) return if force_method?(node) corrector.replace(node.child_nodes.first.loc.name, 'FileUtils') corrector.replace(node.loc.selector, replacement_method(node)) corrector.insert_before(node.last_argument, 'mode: ') if require_mode_keyword?(node) end
#explicit_not_force?(node)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 76
def_node_search :explicit_not_force?, <<~PATTERN (pair (sym :force) (:false)) PATTERN
#force?(node)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 71
def_node_search :force?, <<~PATTERN (pair (sym :force) (:true)) PATTERN
#force_method?(node) ⇒ Boolean (private)
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 154
def force_method?(node) force_method_name?(node) || force_option?(node) end
#force_method_name?(node) ⇒ Boolean (private)
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 168
def force_method_name?(node) (MAKE_FORCE_METHODS + REMOVE_FORCE_METHODS).include?(node.method_name) end
#force_option?(node) ⇒ Boolean (private)
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 164
def force_option?(node) node.arguments.any? { |arg| force?(arg) } end
#if_node_child?(node) ⇒ Boolean (private)
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 92
def if_node_child?(node) return false unless (parent = node.parent) parent.if_type? && !allowable_use_with_if?(parent) end
#message_change_force_method(node) (private)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 113
def (node) format(MSG_CHANGE_FORCE_METHOD, method_name: replacement_method(node)) end
#message_remove_file_exist_check(node) (private)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 117
def (node) receiver, method_name = receiver_and_method_name(node) format(MSG_REMOVE_FILE_EXIST_CHECK, receiver: receiver, method_name: method_name) end
#on_send(node)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 80
def on_send(node) return unless node.receiver&.const_type? return unless if_node_child?(node) return if explicit_not_force?(node) return unless (exist_node = send_exist_node(node.parent).first) return unless exist_node.first_argument == node.first_argument register_offense(node, exist_node) end
#receiver_and_method_name(node)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 66
def_node_matcher :receiver_and_method_name, <<~PATTERN (send (const {cbase nil?} $_) $_ ...) PATTERN
#register_offense(node, exist_node) (private)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 102
def register_offense(node, exist_node) add_offense(node, message: (node)) unless force_method?(node) parent = node.parent range = parent.loc.keyword.begin.join(parent.condition.source_range.end) add_offense(range, message: (exist_node)) do |corrector| autocorrect(corrector, node, range) unless parent.elsif? end end
#replacement_method(node) (private)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 142
def replacement_method(node) if MAKE_METHODS.include?(node.method_name) 'mkdir_p' elsif REMOVE_METHODS.include?(node.method_name) 'rm_f' elsif RECURSIVE_REMOVE_METHODS.include?(node.method_name) 'rm_rf' else node.method_name end end
#require_mode_keyword?(node) ⇒ Boolean (private)
# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 158
def require_mode_keyword?(node) return false unless node.receiver.const_name == 'Dir' replacement_method(node) == 'mkdir_p' && node.arguments.length == 2 end
#send_exist_node(node)
[ GitHub ]# File 'lib/rubocop/cop/lint/non_atomic_file_operation.rb', line 61
def_node_search :send_exist_node, <<~PATTERN $(send (const {cbase nil?} {:FileTest :File :Dir :Shell}) {:exist? :exists?} ...) PATTERN