Sha256: 44ad01857048c73abbfe7aab846c327853bcecde9b1fac0bec7e383f1614903d

Contents?: true

Size: 926 Bytes

Versions: 119

Compression:

Stored size: 926 Bytes

Contents

module Origen
  module Pins
    require 'delegate'
    require 'origen/pins/pin'
    # Thin wrapper around pin objects to implement a defined function.
    #
    # The pin object stores all attributes associated with the function, this
    # wrapper simply keeps track of what function a given pin reference refers to
    class FunctionProxy < ::Delegator
      def initialize(id, pin)
        @id = id
        @pin = pin
      end

      def __getobj__
        @pin
      end

      # Intercept all calls to function-scoped attributes of the pin so
      # that we can inject the function that we want the attribute value for
      Pin::FUNCTION_SCOPED_ATTRIBUTES.each do |attribute|
        define_method attribute do |options = {}|
          options[:function] = @id
          @pin.send(attribute, options)
        end
      end

      private

      # For debug
      def _function
        @id
      end
    end
  end
end

Version data entries

119 entries across 119 versions & 1 rubygems

Version Path
origen-0.28.2 lib/origen/pins/function_proxy.rb
origen-0.28.1 lib/origen/pins/function_proxy.rb
origen-0.28.0 lib/origen/pins/function_proxy.rb
origen-0.27.0 lib/origen/pins/function_proxy.rb
origen-0.26.0 lib/origen/pins/function_proxy.rb
origen-0.25.1 lib/origen/pins/function_proxy.rb
origen-0.25.0 lib/origen/pins/function_proxy.rb
origen-0.24.0 lib/origen/pins/function_proxy.rb
origen-0.23.0 lib/origen/pins/function_proxy.rb
origen-0.22.0 lib/origen/pins/function_proxy.rb
origen-0.21.0 lib/origen/pins/function_proxy.rb
origen-0.20.3 lib/origen/pins/function_proxy.rb
origen-0.20.2 lib/origen/pins/function_proxy.rb
origen-0.20.1 lib/origen/pins/function_proxy.rb
origen-0.20.0 lib/origen/pins/function_proxy.rb
origen-0.13.0 lib/origen/pins/function_proxy.rb
origen-0.12.1 lib/origen/pins/function_proxy.rb
origen-0.12.0 lib/origen/pins/function_proxy.rb
origen-0.11.0 lib/origen/pins/function_proxy.rb
origen-0.10.1 lib/origen/pins/function_proxy.rb