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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
# frozen_string_literal: true
require 'dry/types/options'
require 'dry/types/meta'
module Dry
module Types
# Sum type
#
# @api public
class Sum
include Type
include Builder
include Options
include Meta
include Printable
include Dry::Equalizer(:left, :right, :options, :meta, inspect: false, immutable: true)
# @return [Type]
attr_reader :left
# @return [Type]
attr_reader :right
# @api private
class Constrained < Sum
# @return [Dry::Logic::Operations::Or]
def rule
left.rule | right.rule
end
# @return [true]
def constrained?
true
end
end
# @param [Type] left
# @param [Type] right
# @param [Hash] options
#
# @api private
def initialize(left, right, **options)
super
@left, @right = left, right
freeze
end
# @return [String]
#
# @api public
def name
[left, right].map(&:name).join(' | ')
end
# @return [false]
#
# @api public
def default?
false
end
# @return [false]
#
# @api public
def constrained?
false
end
# @return [Boolean]
#
# @api public
def optional?
primitive?(nil)
end
# @param [Object] input
#
# @return [Object]
#
# @api private
def call_unsafe(input)
left.call_safe(input) { right.call_unsafe(input) }
end
# @param [Object] input
#
# @return [Object]
#
# @api private
def call_safe(input, &block)
left.call_safe(input) { right.call_safe(input, &block) }
end
# @param [Object] input
#
# @api public
def try(input)
left.try(input) do
right.try(input) do |failure|
if block_given?
yield(failure)
else
failure
end
end
end
end
# @api private
def success(input)
if left.valid?(input)
left.success(input)
elsif right.valid?(input)
right.success(input)
else
raise ArgumentError, "Invalid success value '#{input}' for #{inspect}"
end
end
# @api private
def failure(input, _error = nil)
if !left.valid?(input)
left.failure(input, left.try(input).error)
else
right.failure(input, right.try(input).error)
end
end
# @param [Object] value
#
# @return [Boolean]
#
# @api private
def primitive?(value)
left.primitive?(value) || right.primitive?(value)
end
# Manage metadata to the type. If the type is an optional, #meta delegates
# to the right branch
#
# @see [Meta#meta]
#
# @api public
def meta(data = nil)
if data.nil?
optional? ? right.meta : super
elsif optional?
self.class.new(left, right.meta(data), **options)
else
super
end
end
# @see Nominal#to_ast
#
# @api public
def to_ast(meta: true)
[:sum, [left.to_ast(meta: meta), right.to_ast(meta: meta), meta ? self.meta : EMPTY_HASH]]
end
# @param [Hash] options
#
# @return [Constrained,Sum]
#
# @see Builder#constrained
#
# @api public
def constrained(options)
if optional?
right.constrained(options).optional
else
super
end
end
# Wrap the type with a proc
#
# @return [Proc]
#
# @api public
def to_proc
proc { |value| self.(value) }
end
end
end
end
|