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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
|
# Protocol Buffers - Google's data interchange format
# Copyright 2022 Google Inc. All rights reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file or at
# https://developers.google.com/open-source/licenses/bsd
module Google
module Protobuf
class FFI
# Map
attach_function :map_clear, :upb_Map_Clear, [:Map], :void
attach_function :map_delete, :upb_Map_Delete, [:Map, MessageValue.by_value, MessageValue.by_ref], :bool
attach_function :map_get, :upb_Map_Get, [:Map, MessageValue.by_value, MessageValue.by_ref], :bool
attach_function :create_map, :upb_Map_New, [Internal::Arena, CType, CType], :Map
attach_function :map_size, :upb_Map_Size, [:Map], :size_t
attach_function :map_set, :upb_Map_Set, [:Map, MessageValue.by_value, MessageValue.by_value, Internal::Arena], :bool
attach_function :map_freeze, :upb_Map_Freeze, [:Map, MiniTable.by_ref], :void
attach_function :map_frozen?, :upb_Map_IsFrozen, [:Map], :bool
# MapIterator
attach_function :map_next, :upb_MapIterator_Next, [:Map, :pointer], :bool
attach_function :map_done, :upb_MapIterator_Done, [:Map, :size_t], :bool
attach_function :map_key, :upb_MapIterator_Key, [:Map, :size_t], MessageValue.by_value
attach_function :map_value, :upb_MapIterator_Value, [:Map, :size_t], MessageValue.by_value
end
class Map
include Enumerable
##
# call-seq:
# Map.new(key_type, value_type, value_typeclass = nil, init_hashmap = {})
# => new map
#
# Allocates a new Map container. This constructor may be called with 2, 3, or 4
# arguments. The first two arguments are always present and are symbols (taking
# on the same values as field-type symbols in message descriptors) that
# indicate the type of the map key and value fields.
#
# The supported key types are: :int32, :int64, :uint32, :uint64, :bool,
# :string, :bytes.
#
# The supported value types are: :int32, :int64, :uint32, :uint64, :bool,
# :string, :bytes, :enum, :message.
#
# The third argument, value_typeclass, must be present if value_type is :enum
# or :message. As in RepeatedField#new, this argument must be a message class
# (for :message) or enum module (for :enum).
#
# The last argument, if present, provides initial content for map. Note that
# this may be an ordinary Ruby hashmap or another Map instance with identical
# key and value types. Also note that this argument may be present whether or
# not value_typeclass is present (and it is unambiguously separate from
# value_typeclass because value_typeclass's presence is strictly determined by
# value_type). The contents of this initial hashmap or Map instance are
# shallow-copied into the new Map: the original map is unmodified, but
# references to underlying objects will be shared if the value type is a
# message type.
def self.new(key_type, value_type, value_typeclass = nil, init_hashmap = {})
instance = allocate
# TODO This argument mangling doesn't agree with the type signature,
# but does align with the text of the comments and is required to make unit tests pass.
if init_hashmap.empty? and ![:enum, :message].include?(value_type)
init_hashmap = value_typeclass
value_typeclass = nil
end
instance.send(:initialize, key_type, value_type, value_type_class: value_typeclass, initial_values: init_hashmap)
instance
end
##
# call-seq:
# Map.keys => [list_of_keys]
#
# Returns the list of keys contained in the map, in unspecified order.
def keys
return_value = []
internal_iterator do |iterator|
key_message_value = Google::Protobuf::FFI.map_key(@map_ptr, iterator)
return_value << convert_upb_to_ruby(key_message_value, key_type)
end
return_value
end
##
# call-seq:
# Map.values => [list_of_values]
#
# Returns the list of values contained in the map, in unspecified order.
def values
return_value = []
internal_iterator do |iterator|
value_message_value = Google::Protobuf::FFI.map_value(@map_ptr, iterator)
return_value << convert_upb_to_ruby(value_message_value, value_type, descriptor, arena)
end
return_value
end
##
# call-seq:
# Map.[](key) => value
#
# Accesses the element at the given key. Throws an exception if the key type is
# incorrect. Returns nil when the key is not present in the map.
def [](key)
value = Google::Protobuf::FFI::MessageValue.new
key_message_value = convert_ruby_to_upb(key, arena, key_type, nil)
if Google::Protobuf::FFI.map_get(@map_ptr, key_message_value, value)
convert_upb_to_ruby(value, value_type, descriptor, arena)
end
end
##
# call-seq:
# Map.[]=(key, value) => value
#
# Inserts or overwrites the value at the given key with the given new value.
# Throws an exception if the key type is incorrect. Returns the new value that
# was just inserted.
def []=(key, value)
raise FrozenError.new "can't modify frozen #{self.class}" if frozen?
key_message_value = convert_ruby_to_upb(key, arena, key_type, nil)
value_message_value = convert_ruby_to_upb(value, arena, value_type, descriptor)
Google::Protobuf::FFI.map_set(@map_ptr, key_message_value, value_message_value, arena)
value
end
def has_key?(key)
key_message_value = convert_ruby_to_upb(key, arena, key_type, nil)
Google::Protobuf::FFI.map_get(@map_ptr, key_message_value, nil)
end
##
# call-seq:
# Map.delete(key) => old_value
#
# Deletes the value at the given key, if any, returning either the old value or
# nil if none was present. Throws an exception if the key is of the wrong type.
def delete(key)
raise FrozenError.new "can't modify frozen #{self.class}" if frozen?
value = Google::Protobuf::FFI::MessageValue.new
key_message_value = convert_ruby_to_upb(key, arena, key_type, nil)
if Google::Protobuf::FFI.map_delete(@map_ptr, key_message_value, value)
convert_upb_to_ruby(value, value_type, descriptor, arena)
else
nil
end
end
def clear
raise FrozenError.new "can't modify frozen #{self.class}" if frozen?
Google::Protobuf::FFI.map_clear(@map_ptr)
nil
end
def length
Google::Protobuf::FFI.map_size(@map_ptr)
end
alias size length
##
# Is this object frozen?
# Returns true if either this Ruby wrapper or the underlying
# representation are frozen. Freezes the wrapper if the underlying
# representation is already frozen but this wrapper isn't.
def frozen?
unless Google::Protobuf::FFI.map_frozen? @map_ptr
raise RuntimeError.new "Ruby frozen Map with mutable representation" if super
return false
end
method(:freeze).super_method.call unless super
true
end
##
# Freezes the map object. We have to intercept this so we can freeze the
# underlying representation, not just the Ruby wrapper. Returns self.
def freeze
if method(:frozen?).super_method.call
unless Google::Protobuf::FFI.map_frozen? @map_ptr
raise RuntimeError.new "Underlying representation of map still mutable despite frozen wrapper"
end
return self
end
unless Google::Protobuf::FFI.map_frozen? @map_ptr
mini_table = (value_type == :message) ? Google::Protobuf::FFI.get_mini_table(@descriptor) : nil
Google::Protobuf::FFI.map_freeze(@map_ptr, mini_table)
end
super
end
##
# call-seq:
# Map.dup => new_map
#
# Duplicates this map with a shallow copy. References to all non-primitive
# element objects (e.g., submessages) are shared.
def dup
internal_dup
end
alias clone dup
##
# call-seq:
# Map.==(other) => boolean
#
# Compares this map to another. Maps are equal if they have identical key sets,
# and for each key, the values in both maps compare equal. Elements are
# compared as per normal Ruby semantics, by calling their :== methods (or
# performing a more efficient comparison for primitive types).
#
# Maps with dissimilar key types or value types/typeclasses are never equal,
# even if value comparison (for example, between integers and floats) would
# have otherwise indicated that every element has equal value.
def ==(other)
if other.is_a? Hash
other = self.class.send(:private_constructor, key_type, value_type, descriptor, initial_values: other)
elsif !other.is_a? Google::Protobuf::Map
return false
end
return true if object_id == other.object_id
return false if key_type != other.send(:key_type) or value_type != other.send(:value_type) or descriptor != other.send(:descriptor) or length != other.length
other_map_ptr = other.send(:map_ptr)
each_msg_val do |key_message_value, value_message_value|
other_value = Google::Protobuf::FFI::MessageValue.new
return false unless Google::Protobuf::FFI.map_get(other_map_ptr, key_message_value, other_value)
return false unless Google::Protobuf::FFI.message_value_equal(value_message_value, other_value, value_type, descriptor)
end
true
end
def hash
return_value = 0
each_msg_val do |key_message_value, value_message_value|
return_value += Google::Protobuf::FFI.message_value_hash(key_message_value, key_type, nil, 0)
return_value += Google::Protobuf::FFI.message_value_hash(value_message_value, value_type, descriptor, 0)
end
return_value
end
##
# call-seq:
# Map.to_h => {}
#
# Returns a Ruby Hash object containing all the values within the map
def to_h
return {} if map_ptr.nil? or map_ptr.null?
return_value = {}
each_msg_val do |key_message_value, value_message_value|
hash_key = convert_upb_to_ruby(key_message_value, key_type)
hash_value = scalar_create_hash(value_message_value, value_type, msg_or_enum_descriptor: descriptor)
return_value[hash_key] = hash_value
end
return_value
end
def inspect
key_value_pairs = []
each_msg_val do |key_message_value, value_message_value|
key_string = convert_upb_to_ruby(key_message_value, key_type).inspect
if value_type == :message
sub_msg_descriptor = Google::Protobuf::FFI.get_subtype_as_message(descriptor)
value_string = sub_msg_descriptor.msgclass.send(:inspect_internal, value_message_value[:msg_val])
else
value_string = convert_upb_to_ruby(value_message_value, value_type, descriptor).inspect
end
key_value_pairs << "#{key_string}=>#{value_string}"
end
"{#{key_value_pairs.join(", ")}}"
end
##
# call-seq:
# Map.merge(other_map) => map
#
# Copies key/value pairs from other_map into a copy of this map. If a key is
# set in other_map and this map, the value from other_map overwrites the value
# in the new copy of this map. Returns the new copy of this map with merged
# contents.
def merge(other)
internal_merge(other)
end
##
# call-seq:
# Map.each(&block)
#
# Invokes &block on each |key, value| pair in the map, in unspecified order.
# Note that Map also includes Enumerable; map thus acts like a normal Ruby
# sequence.
def each &block
each_msg_val do |key_message_value, value_message_value|
key_value = convert_upb_to_ruby(key_message_value, key_type)
value_value = convert_upb_to_ruby(value_message_value, value_type, descriptor, arena)
yield key_value, value_value
end
nil
end
private
attr :arena, :map_ptr, :key_type, :value_type, :descriptor, :name
include Google::Protobuf::Internal::Convert
def internal_iterator
iter = ::FFI::MemoryPointer.new(:size_t, 1)
iter.write(:size_t, Google::Protobuf::FFI::Upb_Map_Begin)
while Google::Protobuf::FFI.map_next(@map_ptr, iter) do
iter_size_t = iter.read(:size_t)
yield iter_size_t
end
end
def each_msg_val &block
internal_iterator do |iterator|
key_message_value = Google::Protobuf::FFI.map_key(@map_ptr, iterator)
value_message_value = Google::Protobuf::FFI.map_value(@map_ptr, iterator)
yield key_message_value, value_message_value
end
end
def internal_dup
instance = self.class.send(:private_constructor, key_type, value_type, descriptor, arena: arena)
new_map_ptr = instance.send(:map_ptr)
each_msg_val do |key_message_value, value_message_value|
Google::Protobuf::FFI.map_set(new_map_ptr, key_message_value, value_message_value, arena)
end
instance
end
def internal_merge_into_self(other)
case other
when Hash
other.each do |key, value|
key_message_value = convert_ruby_to_upb(key, arena, key_type, nil)
value_message_value = convert_ruby_to_upb(value, arena, value_type, descriptor)
Google::Protobuf::FFI.map_set(@map_ptr, key_message_value, value_message_value, arena)
end
when Google::Protobuf::Map
unless key_type == other.send(:key_type) and value_type == other.send(:value_type) and descriptor == other.descriptor
raise ArgumentError.new "Attempt to merge Map with mismatching types" #TODO Improve error message by adding type information
end
arena.fuse(other.send(:arena))
iter = ::FFI::MemoryPointer.new(:size_t, 1)
iter.write(:size_t, Google::Protobuf::FFI::Upb_Map_Begin)
other.send(:each_msg_val) do |key_message_value, value_message_value|
Google::Protobuf::FFI.map_set(@map_ptr, key_message_value, value_message_value, arena)
end
else
raise ArgumentError.new "Unknown type merging into Map" #TODO improve this error message by including type information
end
self
end
def internal_merge(other)
internal_dup.internal_merge_into_self(other)
end
def initialize(key_type, value_type, value_type_class: nil, initial_values: nil, arena: nil, map: nil, descriptor: nil, name: nil)
@name = name || 'Map'
unless [:int32, :int64, :uint32, :uint64, :bool, :string, :bytes].include? key_type
raise ArgumentError.new "Invalid key type for map." #TODO improve error message to include what type was passed
end
@key_type = key_type
unless [:int32, :int64, :uint32, :uint64, :bool, :string, :bytes, :enum, :message].include? value_type
raise ArgumentError.new "Invalid value type for map." #TODO improve error message to include what type was passed
end
@value_type = value_type
if !descriptor.nil?
raise ArgumentError "Expected descriptor to be a Descriptor or EnumDescriptor" unless [EnumDescriptor, Descriptor].include? descriptor.class
@descriptor = descriptor
elsif [:message, :enum].include? value_type
raise ArgumentError.new "Expected at least 3 arguments for message/enum." if value_type_class.nil?
descriptor = value_type_class.respond_to?(:descriptor) ? value_type_class.descriptor : nil
raise ArgumentError.new "Type class #{value_type_class} has no descriptor. Please pass a class or enum as returned by the DescriptorPool." if descriptor.nil?
@descriptor = descriptor
else
@descriptor = nil
end
@arena = arena || Google::Protobuf::FFI.create_arena
@map_ptr = map || Google::Protobuf::FFI.create_map(@arena, @key_type, @value_type)
internal_merge_into_self(initial_values) unless initial_values.nil?
# Should always be the last expression of the initializer to avoid
# leaking references to this object before construction is complete.
OBJECT_CACHE.try_add(@map_ptr.address, self)
end
##
# Constructor that uses the type information from the given
# FieldDescriptor to configure the new Map instance.
# @param field [FieldDescriptor] Type information for the new Map
# @param arena [Arena] Owning message's arena
# @param value [Hash|Map] Initial value
# @param map [::FFI::Pointer] Existing upb_Map
def self.construct_for_field(field, arena: nil, value: nil, map: nil)
raise ArgumentError.new "Expected Hash object as initializer value for map field '#{field.name}' (given #{value.class})." unless value.nil? or value.is_a? Hash
instance = allocate
raise ArgumentError.new "Expected field with type :message, instead got #{field.class}" unless field.type == :message
message_descriptor = field.send(:subtype)
key_field_def = Google::Protobuf::FFI.get_field_by_number(message_descriptor, 1)
key_field_type = Google::Protobuf::FFI.get_type(key_field_def)
value_field_def = Google::Protobuf::FFI.get_field_by_number(message_descriptor, 2)
value_field_type = Google::Protobuf::FFI.get_type(value_field_def)
instance.send(:initialize, key_field_type, value_field_type, initial_values: value, name: field.name, arena: arena, map: map, descriptor: value_field_def.subtype)
instance
end
def self.private_constructor(key_type, value_type, descriptor, initial_values: nil, arena: nil)
instance = allocate
instance.send(:initialize, key_type, value_type, descriptor: descriptor, initial_values: initial_values, arena: arena)
instance
end
extend Google::Protobuf::Internal::Convert
def self.deep_copy(map)
instance = allocate
instance.send(:initialize, map.send(:key_type), map.send(:value_type), descriptor: map.send(:descriptor))
map.send(:each_msg_val) do |key_message_value, value_message_value|
Google::Protobuf::FFI.map_set(instance.send(:map_ptr), key_message_value, message_value_deep_copy(value_message_value, map.send(:value_type), map.send(:descriptor), instance.send(:arena)), instance.send(:arena))
end
instance
end
end
end
end
|