1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
# frozen_string_literal: true
require 'dry/types/fn_container'
require 'dry/types/constructor/function'
module Dry
module Types
# Constructor types apply a function to the input that is supposed to return
# a new value. Coercion is a common use case for constructor types.
#
# @api public
class Constructor < Nominal
include Dry::Equalizer(:type, :options, inspect: false, immutable: true)
# @return [#call]
attr_reader :fn
# @return [Type]
attr_reader :type
undef :constrained?, :meta, :optional?, :primitive, :default?, :name
# @param [Builder, Object] input
# @param [Hash] options
# @param [#call, nil] block
#
# @api public
def self.new(input, **options, &block)
type = input.is_a?(Builder) ? input : Nominal.new(input)
super(type, **options, fn: Function[options.fetch(:fn, block)])
end
# Instantiate a new constructor type instance
#
# @param [Type] type
# @param [Function] fn
# @param [Hash] options
#
# @api private
def initialize(type, fn: nil, **options)
@type = type
@fn = fn
super(type, **options, fn: fn)
end
# @return [Object]
#
# @api private
def call_safe(input)
coerced = fn.(input) { |output = input| return yield(output) }
type.call_safe(coerced) { |output = coerced| yield(output) }
end
# @return [Object]
#
# @api private
def call_unsafe(input)
type.call_unsafe(fn.(input))
end
# @param [Object] input
# @param [#call,nil] block
#
# @return [Logic::Result, Types::Result]
# @return [Object] if block given and try fails
#
# @api public
def try(input, &block)
value = fn.(input)
rescue CoercionError => e
failure = failure(input, e)
block_given? ? yield(failure) : failure
else
type.try(value, &block)
end
# Build a new constructor by appending a block to the coercion function
#
# @param [#call, nil] new_fn
# @param [Hash] options
# @param [#call, nil] block
#
# @return [Constructor]
#
# @api public
def constructor(new_fn = nil, **options, &block)
with(**options, fn: fn >> (new_fn || block))
end
alias_method :append, :constructor
alias_method :>>, :constructor
# @return [Class]
#
# @api private
def constrained_type
Constrained::Coercible
end
# @see Nominal#to_ast
#
# @api public
def to_ast(meta: true)
[:constructor, [type.to_ast(meta: meta), fn.to_ast]]
end
# Build a new constructor by prepending a block to the coercion function
#
# @param [#call, nil] new_fn
# @param [Hash] options
# @param [#call, nil] block
#
# @return [Constructor]
#
# @api public
def prepend(new_fn = nil, **options, &block)
with(**options, fn: fn << (new_fn || block))
end
alias_method :<<, :prepend
# Build a lax type
#
# @return [Lax]
# @api public
def lax
Lax.new(Constructor.new(type.lax, **options))
end
# Wrap the type with a proc
#
# @return [Proc]
#
# @api public
def to_proc
proc { |value| self.(value) }
end
private
# @param [Symbol] meth
# @param [Boolean] include_private
# @return [Boolean]
#
# @api private
def respond_to_missing?(meth, include_private = false)
super || type.respond_to?(meth)
end
# Delegates missing methods to {#type}
#
# @param [Symbol] method
# @param [Array] args
# @param [#call, nil] block
#
# @api private
def method_missing(method, *args, &block)
if type.respond_to?(method)
response = type.public_send(method, *args, &block)
if response.is_a?(Type) && type.class == response.class
response.constructor_type.new(response, **options)
else
response
end
else
super
end
end
end
end
end
|