~singpolyma/dhall-ruby

ref: 17029e2f1eaf17b3fb3612dd96fa98a2ccd5cd6b dhall-ruby/lib/dhall/as_dhall.rb -rw-r--r-- 5.4 KiB
17029e2fStephen Paul Weber Disambiguate hoisted union tags properly 4 years ago
                                                                                
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
# frozen_string_literal: true

require "ostruct"
require "psych"

module Dhall
	module AsDhall
		TAGS = {
			::Integer    => "Integer",
			::FalseClass => "Bool",
			::Integer    => "Integer",
			::Float      => "Double",
			::NilClass   => "None",
			::String     => "Text",
			::TrueClass  => "Bool"
		}.freeze

		def self.tag_for(o)
			return "Natural" if o.is_a?(::Integer) && !o.negative?

			TAGS.fetch(o.class) do
				o.class.name
			end
		end

		class AnnotatedExpressionList
			attr_reader :type
			attr_reader :exprs

			def self.from(type_annotation)
				if type_annotation.nil?
					new(nil, [nil])
				else
					new(type_annotation.type, [type_annotation.value])
				end
			end

			def initialize(type, exprs)
				@type = type
				@exprs = exprs
			end

			def +(other)
				raise "#{type} != #{other.type}" if type != other.type
				self.class.new(type, exprs + other.exprs)
			end
		end

		class UnionInferer
			def initialize(tagged={})
				@tagged = tagged
			end

			def union_type
				UnionType.new(alternatives: Hash[@tagged.map { |k, v| [k, v.type] }])
			end

			def union_for(expr)
				if expr.is_a?(Enum)
					tag = expr.tag
					expr = nil
				else
					tag = @tagged.keys.find { |k| @tagged[k].exprs.include?(expr) }
				end
				expr = expr.extract if expr.is_a?(Union)
				Union.from(union_type, tag, expr)
			end

			def with(tag, type_annotation)
				anno = AnnotatedExpressionList.from(type_annotation)
				if @tagged.key?(tag) && @tagged[tag].type != anno.type
					disambiguate_against(tag, anno)
				else
					self.class.new(@tagged.merge(tag => anno) { |_, x, y| x + y })
				end
			end

			def disambiguate_against(tag, anno)
				self.class.new(
					@tagged.reject { |k, _| k == tag }.merge(
						"#{tag}_#{@tagged[tag].type.digest.hexdigest}" => @tagged[tag],
						"#{tag}_#{anno.type.digest.hexdigest}"         => anno
					)
				)
			end
		end

		refine ::String do
			def as_dhall
				if encoding == Encoding::BINARY
					bytes.as_dhall
				else
					Text.new(value: self)
				end
			end
		end

		refine ::Symbol do
			def as_dhall
				Dhall::Enum.new(
					tag:          to_s,
					alternatives: Dhall::UnionType.new(alternatives: {})
				)
			end
		end

		refine ::Integer do
			def as_dhall
				if negative?
					Integer.new(value: self)
				else
					Natural.new(value: self)
				end
			end
		end

		refine ::Float do
			def as_dhall
				Double.new(value: self)
			end
		end

		refine ::TrueClass do
			def as_dhall
				Bool.new(value: true)
			end
		end

		refine ::FalseClass do
			def as_dhall
				Bool.new(value: false)
			end
		end

		refine ::NilClass do
			def as_dhall
				raise(
					"Cannot call NilClass#as_dhall directly, " \
					"you probably want to create a Dhall::OptionalNone yourself."
				)
			end
		end

		module ExpressionList
			def self.for(values, exprs)
				types = exprs.map(&TypeChecker.method(:type_of))

				if types.empty?
					Empty
				elsif types.include?(nil) && types.uniq.length <= 2
					Optional
				elsif types.uniq.length == 1
					Mono
				else
					Union
				end.new(values, exprs, types)
			end

			class Empty
				def initialize(*); end

				def list
					EmptyList.new(element_type: UnionType.new(alternatives: {}))
				end
			end

			class Optional
				def initialize(_, exprs, types)
					@type = types.compact.first
					@exprs = exprs
				end

				def list
					List.new(elements: @exprs.map do |x|
						if x.nil?
							Dhall::OptionalNone.new(value_type: @type)
						else
							Dhall::Optional.new(value: x)
						end
					end)
				end
			end

			class Mono
				def initialize(_, exprs, _)
					@exprs = exprs
				end

				def list
					List.new(elements: @exprs)
				end
			end

			class Union
				def initialize(values, exprs, types)
					@tags, @types = values.zip(types).map { |(value, type)|
						if type.is_a?(UnionType) && type.alternatives.length == 1
							type.alternatives.to_a.first
						else
							[AsDhall.tag_for(value), type]
						end
					}.transpose
					@exprs = exprs
					@inferer = UnionInferer.new
				end

				def list
					final_inferer =
						@tags
						.zip(@exprs, @types)
						.reduce(@inferer) do |inferer, (tag, expr, type)|
							inferer.with(
								tag,
								type.nil? ? nil : TypeAnnotation.new(value: expr, type: type)
							)
						end
					List.new(elements: @exprs.map(&final_inferer.method(:union_for)))
				end
			end
		end

		refine ::Array do
			def as_dhall
				ExpressionList.for(self, map { |x| x&.as_dhall }).list
			end
		end

		refine ::Hash do
			def as_dhall
				if empty?
					EmptyRecord.new
				else
					Record.new(record: Hash[
						reject { |_, v| v.nil? }
						.map { |k, v| [k.to_s, v.as_dhall] }
						.sort
					])
				end
			end
		end

		refine ::OpenStruct do
			def as_dhall
				expr = to_h.as_dhall
				type = TypeChecker.for(expr).annotate(TypeChecker::Context.new).type
				Union.from(
					UnionType.new(alternatives: { "OpenStruct" => type }),
					"OpenStruct",
					expr
				)
			end
		end

		refine ::Psych::Coder do
			def as_dhall
				case type
				when :seq
					seq
				when :map
					map
				else
					scalar
				end.as_dhall
			end
		end

		refine ::Object do
			def as_dhall
				tag = self.class.name
				expr = Util.psych_coder_from(tag, self).as_dhall
				type = TypeChecker.for(expr).annotate(TypeChecker::Context.new).type
				Union.from(
					UnionType.new(alternatives: { tag => type }),
					tag,
					expr
				)
			end
		end

		refine ::Proc do
			def as_dhall
				FunctionProxy.new(self)
			end
		end
	end
end