Sha256: b26b38151d30ebee29d7e2e10408a217d8de0002f4772bc84becb9a742667617

Contents?: true

Size: 1.14 KB

Versions: 5

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

require "hanami/router/node"

module Hanami
  class Router
    # Trie data structure to store routes
    #
    # @api private
    # @since 2.0.0
    class Trie
      # @api private
      # @since 2.0.0
      attr_reader :root

      # @api private
      # @since 2.0.0
      def initialize
        @root = Node.new
      end

      # @api private
      # @since 2.0.0
      def add(path, to, constraints)
        node = @root
        for_each_segment(path) do |segment|
          node = node.put(segment, constraints)
        end

        node.leaf!(to)
      end

      # @api private
      # @since 2.0.0
      def find(path)
        node = @root
        params = {}

        for_each_segment(path) do |segment|
          break unless node

          child, captures = node.get(segment)
          params.merge!(captures) if captures

          node = child
        end

        return [node.to, params] if node&.leaf?

        nil
      end

      private

      # @api private
      # @since 2.0.0
      def for_each_segment(path, &blk)
        _, *segments = path.split(/\//)
        segments.each(&blk)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hanami-router-2.0.0.alpha6 lib/hanami/router/trie.rb
hanami-router-2.0.0.alpha5 lib/hanami/router/trie.rb
hanami-router-2.0.0.alpha4 lib/hanami/router/trie.rb
hanami-router-2.0.0.alpha3 lib/hanami/router/trie.rb
hanami-router-2.0.0.alpha2 lib/hanami/router/trie.rb