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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
|
# frozen_string_literal: true
# This file is part of the ruby-dbus project
# Copyright (C) 2022 Martin Vidner
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License, version 2.1 as published by the Free Software Foundation.
# See the file "COPYING" for the exact licensing terms.
module DBus
# FIXME: in general, when an API gives me, a user, a choice,
# remember to make it easy for the case of:
# "I don't CARE, I don't WANT to care, WHY should I care?"
# Exact/explicit representation of D-Bus data types:
#
# - {Boolean}
# - {Byte}, {Int16}, {Int32}, {Int64}, {UInt16}, {UInt32}, {UInt64}
# - {Double}
# - {String}, {ObjectPath}, {Signature}
# - {Array}, {DictEntry}, {Struct}
# - {UnixFD}
# - {Variant}
#
# The common base type is {Base}.
#
# There are other intermediate classes in the inheritance hierarchy, using
# the names the specification uses, but they are an implementation detail:
#
# - A value is either {Basic} or a {Container}.
# - Basic values are either {Fixed}-size or {StringLike}.
module Data
# Given a plain Ruby *value* and wanting a D-Bus *type*,
# construct an appropriate {Data::Base} instance.
#
# @param type [SingleCompleteType,Type]
# @param value [::Object,Data::Base] a plain value; exact values also allowed
# @return [Data::Base]
# @raise TypeError
def make_typed(type, value)
type = DBus.type(type) unless type.is_a?(Type)
data_class = Data::BY_TYPE_CODE[type.sigtype]
# not nil because DBus.type validates
data_class.from_typed(value, type: type)
end
module_function :make_typed
# The base class for explicitly typed values.
#
# A value is either {Basic} or a {Container}.
# {Basic} values are either {Fixed}-size or {StringLike}.
class Base
# @!method self.basic?
# @return [Boolean]
# @!method self.fixed?
# @return [Boolean]
# @return [::Object] a valid value, plain-Ruby typed.
# @see Data::Container#exact_value
attr_reader :value
# @!method self.type_code
# @return [String] a single-character string, for example "a" for arrays
# @!method type
# @abstract
# Note that for Variants type=="v",
# for the specific see {Variant#member_type}
# @return [Type] the exact type of this value
# @!method self.from_typed(value, type:)
# @param value [::Object]
# @param type [Type]
# @return [Base]
# @api private
# Use {Data.make_typed} instead.
# Construct an instance of the specific subclass, with a type further
# specified in the *type* argument.
# Child classes must validate *value*.
def initialize(value)
@value = value
end
def ==(other)
@value == if other.is_a?(Base)
other.value
else
other
end
end
# Hash key equality
# See https://ruby-doc.org/core-3.0.0/Object.html#method-i-eql-3F
# Stricter than #== (RSpec: eq), 1==1.0 but 1.eql(1.0)->false
def eql?(other)
return false unless other.class == self.class
other.value.eql?(@value)
# TODO: this should work, now check derived classes, exact_value
end
# @param type [Type]
def self.assert_type_matches_class(type)
raise ArgumentError, "Expecting #{type_code.inspect} for class #{self}, got #{type.sigtype.inspect}" \
unless type.sigtype == type_code
end
end
# A value that is not a {Container}.
class Basic < Base
def self.basic?
true
end
# @return [Type]
def self.type
# memoize
@type ||= Type.new(type_code).freeze
end
def type
# The basic types can do this, unlike the containers
self.class.type
end
# @param value [::Object]
# @param type [Type]
# @return [Basic]
def self.from_typed(value, type:)
assert_type_matches_class(type)
new(value)
end
end
# A value that has a fixed size (unlike {StringLike}).
class Fixed < Basic
def self.fixed?
true
end
# most Fixed types are valid
# whatever bits from the wire are used to initialize them
# @param mode [:plain,:exact]
def self.from_raw(value, mode:)
return value if mode == :plain
new(value)
end
# @param endianness [:little,:big]
def marshall(endianness)
[value].pack(self.class.format[endianness])
end
end
# Format strings for String#unpack, both little- and big-endian.
Format = ::Struct.new(:little, :big)
# Represents integers
class Int < Fixed
# @!method self.range
# @return [Range] the full range of allowed values
# @param value [::Integer,DBus::Data::Int]
# @raise RangeError
def initialize(value)
value = value.value if value.is_a?(self.class)
r = self.class.range
raise RangeError, "#{value.inspect} is not a member of #{r}" unless r.member?(value)
super(value)
end
end
# Byte.
#
# TODO: a specialized ByteArray for `ay` may be useful,
# to save memory and for natural handling
class Byte < Int
def self.type_code
"y"
end
def self.alignment
1
end
FORMAT = Format.new("C", "C")
def self.format
FORMAT
end
def self.range
(0..255)
end
end
# Boolean: encoded as a {UInt32} but only 0 and 1 are valid.
class Boolean < Fixed
def self.type_code
"b"
end
def self.alignment
4
end
FORMAT = Format.new("L<", "L>")
def self.format
FORMAT
end
def self.validate_raw!(value)
return if [0, 1].member?(value)
raise InvalidPacketException, "BOOLEAN must be 0 or 1, found #{value}"
end
def self.from_raw(value, mode:)
validate_raw!(value)
value = value == 1
return value if mode == :plain
new(value)
end
# Accept any *value*, store its Ruby truth value
# (excepting another instance of this class, where use its {#value}).
#
# So new(0).value is true.
# @param value [::Object,DBus::Data::Boolean]
def initialize(value)
value = value.value if value.is_a?(self.class)
super(value ? true : false)
end
# @param endianness [:little,:big]
def marshall(endianness)
int = value ? 1 : 0
[int].pack(UInt32.format[endianness])
end
end
# Signed 16 bit integer.
class Int16 < Int
def self.type_code
"n"
end
def self.alignment
2
end
FORMAT = Format.new("s<", "s>")
def self.format
FORMAT
end
def self.range
(-32_768..32_767)
end
end
# Unsigned 16 bit integer.
class UInt16 < Int
def self.type_code
"q"
end
def self.alignment
2
end
FORMAT = Format.new("S<", "S>")
def self.format
FORMAT
end
def self.range
(0..65_535)
end
end
# Signed 32 bit integer.
class Int32 < Int
def self.type_code
"i"
end
def self.alignment
4
end
FORMAT = Format.new("l<", "l>")
def self.format
FORMAT
end
def self.range
(-2_147_483_648..2_147_483_647)
end
end
# Unsigned 32 bit integer.
class UInt32 < Int
def self.type_code
"u"
end
def self.alignment
4
end
FORMAT = Format.new("L<", "L>")
def self.format
FORMAT
end
def self.range
(0..4_294_967_295)
end
end
# Unix file descriptor, not implemented yet.
class UnixFD < UInt32
def self.type_code
"h"
end
end
# Signed 64 bit integer.
class Int64 < Int
def self.type_code
"x"
end
def self.alignment
8
end
FORMAT = Format.new("q<", "q>")
def self.format
FORMAT
end
def self.range
(-9_223_372_036_854_775_808..9_223_372_036_854_775_807)
end
end
# Unsigned 64 bit integer.
class UInt64 < Int
def self.type_code
"t"
end
def self.alignment
8
end
FORMAT = Format.new("Q<", "Q>")
def self.format
FORMAT
end
def self.range
(0..18_446_744_073_709_551_615)
end
end
# Double-precision floating point number.
class Double < Fixed
def self.type_code
"d"
end
def self.alignment
8
end
FORMAT = Format.new("E", "G")
def self.format
FORMAT
end
# @param value [#to_f,DBus::Data::Double]
# @raise TypeError,ArgumentError
def initialize(value)
value = value.value if value.is_a?(self.class)
value = Kernel.Float(value)
super(value)
end
end
# {DBus::Data::String}, {DBus::Data::ObjectPath}, or {DBus::Data::Signature}.
class StringLike < Basic
def self.fixed?
false
end
def initialize(value)
if value.is_a?(self.class)
value = value.value
else
self.class.validate_raw!(value)
end
super(value)
end
end
# UTF-8 encoded string.
class String < StringLike
def self.type_code
"s"
end
def self.alignment
4
end
def self.size_class
UInt32
end
def self.validate_raw!(value)
value.each_codepoint do |cp|
raise InvalidPacketException, "Invalid string, contains NUL" if cp.zero?
end
rescue ArgumentError
raise InvalidPacketException, "Invalid string, not in UTF-8"
end
def self.from_raw(value, mode:)
value.force_encoding(Encoding::UTF_8)
if mode == :plain
validate_raw!(value)
return value
end
new(value)
end
end
# See also {DBus::ObjectPath}
class ObjectPath < StringLike
def self.type_code
"o"
end
def self.alignment
4
end
def self.size_class
UInt32
end
# @raise InvalidPacketException
def self.validate_raw!(value)
DBus::ObjectPath.new(value)
rescue DBus::Error => e
raise InvalidPacketException, e.message
end
def self.from_raw(value, mode:)
if mode == :plain
validate_raw!(value)
return value
end
new(value)
end
end
# Signature string, zero or more single complete types.
# See also {DBus::Type}
class Signature < StringLike
def self.type_code
"g"
end
def self.alignment
1
end
def self.size_class
Byte
end
# @return [::Array<Type>]
def self.validate_raw!(value)
DBus.types(value)
rescue Type::SignatureException => e
raise InvalidPacketException, "Invalid signature: #{e.message}"
end
def self.from_raw(value, mode:)
if mode == :plain
_types = validate_raw!(value)
return value
end
new(value)
end
end
# Contains one or more other values.
class Container < Base
def self.basic?
false
end
def self.fixed?
false
end
# For containers, the type varies among instances
# @see Base#type
attr_reader :type
# @return something that is, or contains, {Data::Base}.
# Er, this docs kinda sucks.
def exact_value
@value
end
def value
@value.map(&:value)
end
# Hash key equality
# See https://ruby-doc.org/core-3.0.0/Object.html#method-i-eql-3F
# Stricter than #== (RSpec: eq), 1==1.0 but 1.eql(1.0)->false
def eql?(other)
return false unless other.class == self.class
other.exact_value.eql?(exact_value)
end
# def ==(other)
# eql?(other) || super
# end
end
# An Array, or a Dictionary (Hash).
class Array < Container
def self.type_code
"a"
end
def self.alignment
4
end
# TODO: check that Hash keys are basic types
# @param mode [:plain,:exact]
# @param type [Type]
# @param hash [Boolean] are we unmarshalling an ARRAY of DICT_ENTRY
# @return [Data::Array]
def self.from_items(value, mode:, type:, hash: false)
value = Hash[value] if hash
return value if mode == :plain
new(value, type: type)
end
# @param value [::Object]
# @param type [Type]
# @return [Data::Array]
def self.from_typed(value, type:)
new(value, type: type) # initialize(::Array<Data::Base>)
end
def value
v = super
if type.child.sigtype == Type::DICT_ENTRY
# BTW this makes a copy so mutating it is pointless
v.to_h
else
v
end
end
# FIXME: should Data::Array be mutable?
# if it is, is its type mutable too?
# TODO: specify type or guess type?
# Data is the exact type, so its constructor should be exact
# and guesswork should be clearly labeled
# @param value [Data::Array,Enumerable]
# @param type [SingleCompleteType,Type]
def initialize(value, type:)
type = Type::Factory.make_type(type)
self.class.assert_type_matches_class(type)
@type = type
typed_value = case value
when Data::Array
unless value.type == type
raise ArgumentError,
"Specified type is #{type.inspect} but value type is #{value.type.inspect}"
end
value.exact_value
else
# TODO: Dict??
value.map do |i|
Data.make_typed(type.child, i)
end
end
super(typed_value)
end
end
# A fixed size, heterogenerous tuple.
#
# (The item count is fixed, not the byte size.)
class Struct < Container
def self.type_code
"r"
end
def self.alignment
8
end
# @param value [::Array]
def self.from_items(value, mode:, type:)
value.freeze
return value if mode == :plain
new(value, type: type)
end
# @param value [::Object] (#size, #each)
# @param type [Type]
# @return [Struct]
def self.from_typed(value, type:)
new(value, type: type)
end
# @param value [Data::Struct,Enumerable]
# @param type [SingleCompleteType,Type]
def initialize(value, type:)
type = Type::Factory.make_type(type)
self.class.assert_type_matches_class(type)
@type = type
typed_value = case value
when self.class
unless value.type == type
raise ArgumentError,
"Specified type is #{type.inspect} but value type is #{value.type.inspect}"
end
value.exact_value
else
member_types = type.members
unless value.size == member_types.size
raise ArgumentError, "Specified type has #{member_types.size} members " \
"but value has #{value.size} members"
end
member_types.zip(value).map do |item_type, item|
Data.make_typed(item_type, item)
end
end
super(typed_value)
end
def ==(other)
case other
when ::Struct
@value.size == other.size &&
@value.zip(other.to_a).all? { |i, other_i| i == other_i }
else
super
end
end
end
# Dictionary/Hash entry.
# TODO: shouldn't instantiate?
class DictEntry < Struct
def self.type_code
"e"
end
# @param value [::Array]
def self.from_items(value, mode:, type:) # rubocop:disable Lint/UnusedMethodArgument
value.freeze
# DictEntry ignores the :exact mode
value
end
# @param value [::Object] (#size, #each)
# @param type [Type]
# @return [DictEntry]
def self.from_typed(value, type:)
new(value, type: type)
end
end
# A generic type.
#
# Implementation note: @value is a {Data::Base}.
class Variant < Container
def self.type_code
"v"
end
def self.alignment
1
end
def value
@value.value
end
# @param member_type [Type]
def self.from_items(value, mode:, member_type:)
return value if mode == :plain
new(value, member_type: member_type)
end
# @param value [::Object]
# @param type [Type]
# @return [Variant]
def self.from_typed(value, type:)
assert_type_matches_class(type)
# nil: decide on type of value
new(value, member_type: nil)
end
# @return [Type]
def self.type
# memoize
@type ||= Type.new(type_code).freeze
end
# Note that for Variants type.to_s=="v",
# for the specific see {Variant#member_type}
# @return [Type] the exact type of this value
def type
self.class.type
end
# @return [Type]
attr_reader :member_type
# Determine the type of *value*
# @param value [::Object]
# @return [Type]
# @api private
# See also {PacketMarshaller.make_variant}
def self.guess_type(value)
sct, = PacketMarshaller.make_variant(value)
DBus.type(sct)
end
# @param member_type [SingleCompleteType,Type,nil]
def initialize(value, member_type:)
member_type = Type::Factory.make_type(member_type) if member_type
# TODO: validate that the given *member_type* matches *value*
case value
when Data::Variant
# Copy the contained value instead of boxing it more
# TODO: except perhaps for round-tripping in exact mode?
@member_type = value.member_type
value = value.exact_value
when Data::Base
@member_type = member_type || value.type
raise ArgumentError, "Variant type #{@member_type} does not match value type #{value.type}" \
unless @member_type == value.type
else
@member_type = member_type || self.class.guess_type(value)
value = Data.make_typed(@member_type, value)
end
super(value)
end
# Internal helpers to keep the {DBus.variant} method working.
# Formerly it returned just a pair of [DBus.type(string_type), value]
# so let's provide [0], [1], .first, .last
def [](index)
case index
when 0
member_type
when 1
value
else
raise ArgumentError, "DBus.variant can only be indexed with 0 or 1, seen #{index.inspect}"
end
end
# @see #[]
def first
self[0]
end
# @see #[]
def last
self[1]
end
end
consts = constants.map { |c_sym| const_get(c_sym) }
classes = consts.find_all { |c| c.respond_to?(:type_code) }
by_type_code = classes.map { |cl| [cl.type_code, cl] }.to_h
# { "b" => Data::Boolean, "s" => Data::String, ...}
BY_TYPE_CODE = by_type_code
end
end
|