class Facter::Resolvers::Macosx::Mountpoints

Private Class Methods

post_resolve(fact_name) click to toggle source
# File lib/facter/resolvers/macosx/mountpoints_resolver.rb, line 11
def post_resolve(fact_name)
  @fact_list.fetch(fact_name) { read_mounts }
end
read_mounts() click to toggle source
# File lib/facter/resolvers/macosx/mountpoints_resolver.rb, line 15
def read_mounts
  mounts = {}

  FilesystemHelper.read_mountpoints.each do |fs|
    device = fs.name
    filesystem = fs.mount_type
    path = fs.mount_point
    options = fs.options.split(',').map(&:strip).map { |o| o == 'rootfs' ? 'root' : o }

    mounts[path] = read_stats(path).tap do |hash|
      hash[:device] = device
      hash[:filesystem] = filesystem
      hash[:options] = options if options.any?
    end
  end

  @fact_list[:mountpoints] = mounts
end
read_stats(path) click to toggle source
# File lib/facter/resolvers/macosx/mountpoints_resolver.rb, line 34
def read_stats(path)
  begin
    stats = FilesystemHelper.read_mountpoint_stats(path)
    size_bytes = stats.bytes_total
    available_bytes = stats.bytes_available
    used_bytes = size_bytes - available_bytes
  rescue Sys::Filesystem::Error
    size_bytes = used_bytes = available_bytes = 0
  end

  {
    size_bytes: size_bytes,
    used_bytes: used_bytes,
    available_bytes: available_bytes,
    capacity: FilesystemHelper.compute_capacity(used_bytes, size_bytes),
    size: Facter::FactsUtils::UnitConverter.bytes_to_human_readable(size_bytes),
    available: Facter::FactsUtils::UnitConverter.bytes_to_human_readable(available_bytes),
    used: Facter::FactsUtils::UnitConverter.bytes_to_human_readable(used_bytes)
  }
end