Sha256: c017a478144c4ef4641f8c3e01086055d59dfe1c767467dd78f8175385b18114

Contents?: true

Size: 1.77 KB

Versions: 76

Compression:

Stored size: 1.77 KB

Contents

module CC
  class Workspace
    class PathTree
      class DirNode
        def initialize(root_path, children = {})
          @root_path = root_path.dup.freeze
          @children = children.each_with_object({}) do |(k, v), memo|
            memo[k.clone] = v.clone
          end
        end

        def clone
          self.class.new(root_path, children)
        end

        def all_paths
          if populated?
            children.values.flat_map(&:all_paths)
          else
            [File.join(root_path, File::SEPARATOR)]
          end
        end

        def populated?
          children.present?
        end

        def remove(head = nil, *tail)
          return if head.nil? && tail.empty?
          populate_direct_children

          if (child = children[head])
            child.remove(*tail)
            children.delete(head) if !child.populated? || tail.empty?
          end
        end

        def add(head = nil, *tail)
          return if head.nil? && tail.empty?

          if (entry = find_direct_child(head))
            children[entry.basename.to_s.dup.freeze] ||= PathTree.node_for_pathname(entry)
            children[entry.basename.to_s.dup.freeze].add(*tail)
          else
            CLI.debug("Couldn't include because part of path doesn't exist.", path: File.join(root_path, head))
          end
        end

        private

        attr_reader :children, :root_path

        def populate_direct_children
          return if populated?

          Pathname.new(root_path).each_child do |child_path|
            children[child_path.basename.to_s] = PathTree.node_for_pathname(child_path)
          end
        end

        def find_direct_child(name)
          Pathname.new(root_path).children.detect { |c| c.basename.to_s == name }
        end
      end
    end
  end
end

Version data entries

76 entries across 76 versions & 1 rubygems

Version Path
codeclimate-0.69.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.68.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.67.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.66.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.65.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.64.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.63.7 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.63.6 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.63.5 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.63.4 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.63.3 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.63.2 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.63.1 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.63.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.62.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.61.1 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.61.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.60.1 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.60.0 lib/cc/workspace/path_tree/dir_node.rb
codeclimate-0.59.1 lib/cc/workspace/path_tree/dir_node.rb