Sha256: a1e2c6afa7faa2552686b5168d8fc1c01e37709323fa788cfc40e2c905a28114

Contents?: true

Size: 1.42 KB

Versions: 20

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true
# Finds an existing file from a module and returns its path.
#
# This function accepts an argument that is a String as a `<MODULE NAME>/<FILE>`
# reference, which searches for `<FILE>` relative to a module's `files`
# directory. (For example, the reference `mysql/mysqltuner.pl` will search for the
# file `<MODULES DIRECTORY>/mysql/files/mysqltuner.pl`.)
#
# This function can also accept:
#
# * An absolute String path, which checks for the existence of a file from anywhere on disk.
# * Multiple String arguments, which returns the path of the **first** file
#   found, skipping nonexistent files.
# * An array of string paths, which returns the path of the **first** file
#   found from the given paths in the array, skipping nonexistent files.
#
# The function returns `undef` if none of the given paths were found.
#
# @since 4.8.0
#
Puppet::Functions.create_function(:find_file, Puppet::Functions::InternalFunction) do
  dispatch :find_file do
    scope_param
    repeated_param 'String', :paths
  end

  dispatch :find_file_array do
    scope_param
    repeated_param 'Array[String]', :paths_array
  end

  def find_file_array(scope, array)
    find_file(scope, *array)
  end

  def find_file(scope, *args)
    args.each do |file|
      found = Puppet::Parser::Files.find_file(file, scope.compiler.environment)
      if found && Puppet::FileSystem.exist?(found)
        return found
      end
    end
    nil
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.3.0 lib/puppet/functions/find_file.rb
puppet-8.3.0-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-8.3.0-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-8.3.0-universal-darwin lib/puppet/functions/find_file.rb
puppet-8.3.1 lib/puppet/functions/find_file.rb
puppet-8.3.1-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-8.3.1-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-8.3.1-universal-darwin lib/puppet/functions/find_file.rb
puppet-8.2.0 lib/puppet/functions/find_file.rb
puppet-8.2.0-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-8.2.0-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-8.2.0-universal-darwin lib/puppet/functions/find_file.rb
puppet-8.1.0 lib/puppet/functions/find_file.rb
puppet-8.1.0-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-8.1.0-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-8.1.0-universal-darwin lib/puppet/functions/find_file.rb
puppet-8.0.1 lib/puppet/functions/find_file.rb
puppet-8.0.1-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-8.0.1-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-8.0.1-universal-darwin lib/puppet/functions/find_file.rb