Sha256: 7b86b7b70bcabcb7dc8e2cf62ea14e46d255a9f9567126db3ac2a314bbd6a64e

Contents?: true

Size: 1.7 KB

Versions: 120

Compression:

Stored size: 1.7 KB

Contents

require_relative '../../puppet/property'

module Puppet
  class Property
    # This subclass of {Puppet::Property} manages an unordered list of values.
    # For an ordered list see {Puppet::Property::OrderedList}.
    #
    class List < Property

      def is_to_s(currentvalue)
        currentvalue == :absent ? super(currentvalue) : currentvalue.join(delimiter)
      end

      def membership
        :membership
      end

      def add_should_with_current(should, current)
        should += current if current.is_a?(Array)
        should.uniq
      end

      def inclusive?
        @resource[membership] == :inclusive
      end

      #dearrayify was motivated because to simplify the implementation of the OrderedList property
      def dearrayify(array)
        array.sort.join(delimiter)
      end

      def should
        return nil unless @should

        members = @should
        #inclusive means we are managing everything so if it isn't in should, its gone
        members = add_should_with_current(members, retrieve) if ! inclusive?

        dearrayify(members)
      end

      def delimiter
        ","
      end

      def retrieve
        #ok, some 'convention' if the list property is named groups, provider should implement a groups method
        tmp = provider.send(name) if provider
        if tmp && tmp != :absent
          return tmp.instance_of?(Array) ? tmp : tmp.split(delimiter)
        else
          return :absent
        end
      end

      def prepare_is_for_comparison(is)
        if is == :absent
          is = []
        end
        dearrayify(is)
      end

      def insync?(is)
        return true unless is

        (prepare_is_for_comparison(is) == self.should)
      end
    end
  end
end

Version data entries

120 entries across 120 versions & 1 rubygems

Version Path
puppet-7.34.0 lib/puppet/property/list.rb
puppet-7.34.0-x86-mingw32 lib/puppet/property/list.rb
puppet-7.34.0-x64-mingw32 lib/puppet/property/list.rb
puppet-7.34.0-universal-darwin lib/puppet/property/list.rb
puppet-7.33.0 lib/puppet/property/list.rb
puppet-7.33.0-x86-mingw32 lib/puppet/property/list.rb
puppet-7.33.0-x64-mingw32 lib/puppet/property/list.rb
puppet-7.33.0-universal-darwin lib/puppet/property/list.rb
puppet-7.32.1 lib/puppet/property/list.rb
puppet-7.32.1-x86-mingw32 lib/puppet/property/list.rb
puppet-7.32.1-x64-mingw32 lib/puppet/property/list.rb
puppet-7.32.1-universal-darwin lib/puppet/property/list.rb
puppet-7.31.0 lib/puppet/property/list.rb
puppet-7.31.0-x86-mingw32 lib/puppet/property/list.rb
puppet-7.31.0-x64-mingw32 lib/puppet/property/list.rb
puppet-7.31.0-universal-darwin lib/puppet/property/list.rb
puppet-7.30.0 lib/puppet/property/list.rb
puppet-7.30.0-x86-mingw32 lib/puppet/property/list.rb
puppet-7.30.0-x64-mingw32 lib/puppet/property/list.rb
puppet-7.30.0-universal-darwin lib/puppet/property/list.rb