1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionview/lib/action_view/path_set.rb

78 lines
1.7 KiB
Ruby
Raw Normal View History

module ActionView #:nodoc:
# = Action View PathSet
#
# This class is used to store and access paths in Action View. A number of
# operations are defined so that you can search among the paths in this
# set and also perform operations on other +PathSet+ objects.
#
# A +LookupContext+ will use a +PathSet+ to store the paths in its context.
2011-08-09 14:23:02 -04:00
class PathSet #:nodoc:
include Enumerable
attr_reader :paths
2012-11-09 01:52:38 -05:00
delegate :[], :include?, :pop, :size, :each, to: :paths
2011-08-09 14:23:02 -04:00
def initialize(paths = [])
2011-08-09 14:26:44 -04:00
@paths = typecast paths
2011-08-09 14:23:02 -04:00
end
def initialize_copy(other)
@paths = other.paths.dup
self
end
def to_ary
paths.dup
end
def compact
PathSet.new paths.compact
end
2011-08-09 14:26:44 -04:00
def +(array)
PathSet.new(paths + array)
2011-08-09 14:23:02 -04:00
end
%w(<< concat push insert unshift).each do |method|
2010-03-07 06:49:27 -05:00
class_eval <<-METHOD, __FILE__, __LINE__ + 1
def #{method}(*args)
2011-08-09 14:26:44 -04:00
paths.#{method}(*typecast(args))
end
2010-03-07 06:49:27 -05:00
METHOD
end
def find(*args)
2010-12-27 04:15:54 -05:00
find_all(*args).first || raise(MissingTemplate.new(self, *args))
2010-03-08 17:13:24 -05:00
end
2010-09-17 16:39:14 -04:00
def find_all(path, prefixes = [], *args)
prefixes = [prefixes] if String === prefixes
2010-09-17 16:39:14 -04:00
prefixes.each do |prefix|
2011-08-09 14:23:02 -04:00
paths.each do |resolver|
2010-12-27 04:15:54 -05:00
templates = resolver.find_all(path, prefix, *args)
return templates unless templates.empty?
2010-09-17 16:39:14 -04:00
end
end
[]
end
def exists?(path, prefixes, *args)
find_all(path, prefixes, *args).any?
end
private
2011-08-09 14:26:44 -04:00
def typecast(paths)
paths.map do |path|
case path
when Pathname, String
OptimizedFileSystemResolver.new path.to_s
else
path
end
end
end
end
end