跳至内容 跳至搜索

文件更新检查器

FileUpdateChecker 指定了 Rails 用于监视文件和控制重新加载的 API。该 API 依赖于四种方法

  • initialize,它期望两个参数和一个代码块,如下所述。

  • updated?,如果文件系统中有更新,则返回布尔值。

  • execute,在初始化时执行给定的代码块,并更新最新监视的文件和时间戳。

  • execute_if_updated,仅当文件系统更新时才执行代码块。

初始化后,只有在文件系统真正发生变化时,调用 execute_if_updated 才会执行代码块。

Rails 使用此类在每次新请求时重新加载 I18n 框架,只要它们发生更改。

i18n_reloader = ActiveSupport::FileUpdateChecker.new(paths) do
  I18n.reload!
end

ActiveSupport::Reloader.to_prepare do
  i18n_reloader.execute_if_updated
end
方法
E
N
U

类公共方法

new(files, dirs = {}, &block)

它在初始化时接受两个参数。第一个是文件数组,第二个是可选的目录哈希。哈希必须以目录作为键,而值是将在该目录下监视的扩展名数组。

此方法还必须接收一个代码块,该代码块将在路径更改时调用一次。在 FileUpdateChecker 初始化后,无法更改文件数组和目录列表。

# File activesupport/lib/active_support/file_update_checker.rb, line 44
def initialize(files, dirs = {}, &block)
  unless block
    raise ArgumentError, "A block is required to initialize a FileUpdateChecker"
  end

  @files = files.freeze
  @glob  = compile_glob(dirs)
  @block = block

  @watched    = nil
  @updated_at = nil

  @last_watched   = watched
  @last_update_at = updated_at(@last_watched)
end

实例公共方法

execute()

执行给定的代码块,并更新最新监视的文件和时间戳。

# File activesupport/lib/active_support/file_update_checker.rb, line 82
def execute
  @last_watched   = watched
  @last_update_at = updated_at(@last_watched)
  @block.call
ensure
  @watched = nil
  @updated_at = nil
end

execute_if_updated()

如果更新,则执行给定的代码块。

# File activesupport/lib/active_support/file_update_checker.rb, line 92
def execute_if_updated
  if updated?
    yield if block_given?
    execute
    true
  else
    false
  end
end

updated?()

检查是否有任何条目被更新。如果是,则监视和/或 updated_at 值将被缓存,直到通过 executeexecute_if_updated 执行代码块。

# File activesupport/lib/active_support/file_update_checker.rb, line 63
def updated?
  current_watched = watched
  if @last_watched.size != current_watched.size
    @watched = current_watched
    true
  else
    current_updated_at = updated_at(current_watched)
    if @last_update_at < current_updated_at
      @watched    = current_watched
      @updated_at = current_updated_at
      true
    else
      false
    end
  end
end