Sha256: d247b30be26d12c5a3feaf223cb0daf0d49bac983879397b959e916a9fa55555

Contents?: true

Size: 1.84 KB

Versions: 8

Compression:

Stored size: 1.84 KB

Contents

# frozen_string_literal: true

module Puma

  # Puma::Launcher uses StateFile to write a yaml file for use with Puma::ControlCLI.
  #
  # In previous versions of Puma, YAML was used to read/write the state file.
  # Since Puma is similar to Bundler/RubyGems in that it may load before one's app
  # does, minimizing the dependencies that may be shared with the app is desired.
  #
  # At present, it only works with numeric and string values.  It is still a valid
  # yaml file, and the CI tests parse it with Psych.
  #
  class StateFile

    ALLOWED_FIELDS = %w!control_url control_auth_token pid running_from!

    # @deprecated 6.0.0
    FIELDS = ALLOWED_FIELDS

    def initialize
      @options = {}
    end

    def save(path, permission = nil)
      contents = "---\n".dup
      @options.each do |k,v|
        next unless ALLOWED_FIELDS.include? k
        case v
        when Numeric
          contents << "#{k}: #{v}\n"
        when String
          next if v.strip.empty?
          contents << (k == 'running_from' || v.to_s.include?(' ') ?
            "#{k}: \"#{v}\"\n" : "#{k}: #{v}\n")
        end
      end
      if permission
        File.write path, contents, mode: 'wb:UTF-8'
      else
        File.write path, contents, mode: 'wb:UTF-8', perm: permission
      end
    end

    def load(path)
      File.read(path).lines.each do |line|
        next if line.start_with? '#'
        k,v = line.split ':', 2
        next unless v && ALLOWED_FIELDS.include?(k)
        v = v.strip
        @options[k] =
          case v
          when /\A\d+\z/       then v.to_i
          when /\A\d+\.\d+\z/  then v.to_f
          else                      v.gsub(/\A"|"\z/, '')
          end
      end
    end

    ALLOWED_FIELDS.each do |f|
      define_method f do
        @options[f]
      end

      define_method "#{f}=" do |v|
        @options[f] = v
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
puma-5.6.4-java lib/puma/state_file.rb
puma-5.6.4 lib/puma/state_file.rb
puma-5.6.2-java lib/puma/state_file.rb
puma-5.6.2 lib/puma/state_file.rb
puma-5.6.1-java lib/puma/state_file.rb
puma-5.6.1 lib/puma/state_file.rb
puma-5.6.0-java lib/puma/state_file.rb
puma-5.6.0 lib/puma/state_file.rb