Sha256: 0401204b9cd8aad43985ec5073d0904c8480f03c2b3e08de80d2e945519c8daf

Contents?: true

Size: 1.65 KB

Versions: 88

Compression:

Stored size: 1.65 KB

Contents

require '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.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

88 entries across 88 versions & 1 rubygems

Version Path
puppet-7.3.0 lib/puppet/property/list.rb
puppet-7.3.0-x86-mingw32 lib/puppet/property/list.rb
puppet-7.3.0-x64-mingw32 lib/puppet/property/list.rb
puppet-7.3.0-universal-darwin lib/puppet/property/list.rb
puppet-6.20.0 lib/puppet/property/list.rb
puppet-6.20.0-x86-mingw32 lib/puppet/property/list.rb
puppet-6.20.0-x64-mingw32 lib/puppet/property/list.rb
puppet-6.20.0-universal-darwin lib/puppet/property/list.rb
puppet-7.1.0 lib/puppet/property/list.rb
puppet-7.1.0-x86-mingw32 lib/puppet/property/list.rb
puppet-7.1.0-x64-mingw32 lib/puppet/property/list.rb
puppet-7.1.0-universal-darwin lib/puppet/property/list.rb
puppet-7.0.0 lib/puppet/property/list.rb
puppet-7.0.0-x86-mingw32 lib/puppet/property/list.rb
puppet-7.0.0-x64-mingw32 lib/puppet/property/list.rb
puppet-7.0.0-universal-darwin lib/puppet/property/list.rb
puppet-6.19.1 lib/puppet/property/list.rb
puppet-6.19.1-x86-mingw32 lib/puppet/property/list.rb
puppet-6.19.1-x64-mingw32 lib/puppet/property/list.rb
puppet-6.19.1-universal-darwin lib/puppet/property/list.rb