ruby-dbus 0.24.0 → 0.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46409560afa18cf728a8fdc0d5a488e69f04d3bf3c14cece10f8c14af8bc8a41
4
- data.tar.gz: f0432d7e9716f8e87ce5daaf7dc581b0cf5b89c66f5e5cc3da50bb38cae85fa3
3
+ metadata.gz: 48184aac3dc75bb3407fb52dff9f10628b2dc5e38208270d756212b1ae026931
4
+ data.tar.gz: c345834e8cbc03a55b34f7b8bb63151d3770749213bf7afa73be73ee6038dca6
5
5
  SHA512:
6
- metadata.gz: e98790e7cf81e2cb7bcaf3e2e39e530b99788483fd9fb583f209ce3f2a120ef381b59d3f0683c9affcef7d1475bf52f9d91e0f66004c1e78cb4fd363639698bf
7
- data.tar.gz: 2660d2bf3b6a511898c13048a5548c31d04674e6ad62e13aca567b1379fed0ce48b063435c5c74a680fba649427cc3a7c802c0883a6ff433a20040129604e07c
6
+ metadata.gz: c376083a3b761223d5b8f37b9fbb2f1383a874ac0f26c6c5ae92d2385fc936e8145aa20dfe4b327e1551a70030c4a1ffacfd289884e06e9bec2bc5ba9e9fb56c
7
+ data.tar.gz: 460a6e5bc96b6a2b0d4b227de8b8b34595102c67c40f62cf520947b4a394d3dc101af98e6147e5ced15143a0fb5ddf9aeec0764c4a74f9e83ee8b4730a12d544
data/NEWS.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## Ruby D-Bus 0.25.0 - 2025-04-03
6
+
7
+ Bug fixes:
8
+ * Mention qualified property name in Get or Set errors ([#147][]).
9
+ * Fix declaring logger and ostruct gems for Ruby 3.5
10
+
11
+ [#147]: https://github.com/mvidner/ruby-dbus/pull/147
12
+
5
13
  ## Ruby D-Bus 0.24.0 - 2025-01-02
6
14
 
7
15
  Bug fixes:
data/Rakefile CHANGED
@@ -4,7 +4,7 @@
4
4
  require "rake"
5
5
  require "fileutils"
6
6
  require "tmpdir"
7
- require "rspec/core/rake_task"
7
+ require "shellwords"
8
8
  begin
9
9
  require "rubocop/rake_task"
10
10
  rescue LoadError
@@ -34,13 +34,18 @@ desc "Default: run specs in the proper environment"
34
34
  task default: [:spec, :rubocop]
35
35
  task test: :spec
36
36
 
37
- RSpec::Core::RakeTask.new("bare:spec")
37
+ desc "Run RSpec code examples"
38
+ task "bare:spec", [:options] do |_t, args|
39
+ args.with_defaults(options: "")
40
+ sh "rspec #{args[:options]}"
41
+ end
38
42
 
39
43
  ["spec"].each do |tname|
40
44
  desc "Run bare:#{tname} in the proper environment"
41
- task tname do |_t|
45
+ task tname, [:options] do |_t, args|
46
+ args.with_defaults(options: "")
42
47
  cd "spec/tools" do
43
- sh "./test_env rake bare:#{tname}"
48
+ sh "./test_env rake bare:#{tname}[#{args[:options].shellescape}]"
44
49
  end
45
50
  end
46
51
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.24.0
1
+ 0.25.0
data/lib/dbus/logger.rb CHANGED
@@ -17,7 +17,7 @@ module DBus
17
17
  # The default one logs to STDERR,
18
18
  # with DEBUG if $DEBUG is set, otherwise INFO.
19
19
  def logger
20
- if @logger.nil?
20
+ if !defined?(@logger) || @logger.nil?
21
21
  debug = $DEBUG || ENV["RUBY_DBUS_DEBUG"]
22
22
  @logger = Logger.new($stderr)
23
23
  @logger.level = debug ? Logger::DEBUG : Logger::INFO
data/lib/dbus/marshall.rb CHANGED
@@ -180,7 +180,7 @@ module DBus
180
180
  case alignment
181
181
  when 1, 2, 4, 8
182
182
  bits = alignment - 1
183
- num + bits & ~bits
183
+ (num + bits) & ~bits
184
184
  else
185
185
  raise ArgumentError, "Unsupported alignment #{alignment}"
186
186
  end
data/lib/dbus/message.rb CHANGED
@@ -103,9 +103,9 @@ module DBus
103
103
 
104
104
  def to_s
105
105
  "#{message_type} sender=#{sender} -> dest=#{destination} " \
106
- "serial=#{serial} reply_serial=#{reply_serial} " \
107
- "path=#{path}; interface=#{interface}; member=#{member} " \
108
- "error_name=#{error_name}"
106
+ "serial=#{serial} reply_serial=#{reply_serial} " \
107
+ "path=#{path}; interface=#{interface}; member=#{member} " \
108
+ "error_name=#{error_name}"
109
109
  end
110
110
 
111
111
  # @return [String] name of message type, as used in match rules:
data/lib/dbus/object.rb CHANGED
@@ -116,7 +116,7 @@ module DBus
116
116
 
117
117
  # Forgetting to declare the interface for a method/signal/property
118
118
  # is a ScriptError.
119
- class UndefinedInterface < ScriptError # rubocop:disable Lint/InheritException
119
+ class UndefinedInterface < ScriptError
120
120
  def initialize(sym)
121
121
  super "No interface specified for #{sym}. Enclose it in dbus_interface."
122
122
  end
@@ -253,7 +253,7 @@ module DBus
253
253
  property = Property.new(dbus_name, type, :read, ruby_name: ruby_name)
254
254
  @@cur_intf.define(property)
255
255
 
256
- ruby_name_eq = "#{ruby_name}=".to_sym
256
+ ruby_name_eq = :"#{ruby_name}="
257
257
  return unless method_defined?(ruby_name_eq)
258
258
 
259
259
  dbus_watcher(ruby_name, dbus_name: dbus_name, emits_changed_signal: emits_changed_signal)
@@ -294,7 +294,7 @@ module DBus
294
294
  interface_name = @@cur_intf.name
295
295
 
296
296
  ruby_name = ruby_name.to_s.sub(/=$/, "").to_sym
297
- ruby_name_eq = "#{ruby_name}=".to_sym
297
+ ruby_name_eq = :"#{ruby_name}="
298
298
  original_ruby_name_eq = "_original_#{ruby_name_eq}"
299
299
 
300
300
  dbus_name = make_dbus_name(ruby_name, dbus_name: dbus_name)
@@ -455,11 +455,16 @@ module DBus
455
455
  property = dbus_lookup_property(interface_name, property_name)
456
456
 
457
457
  if property.readable?
458
- ruby_name = property.ruby_name
459
- value = public_send(ruby_name)
460
- # may raise, DBus.error or https://ruby-doc.com/core-3.1.0/TypeError.html
461
- typed_value = Data.make_typed(property.type, value)
462
- [typed_value]
458
+ begin
459
+ ruby_name = property.ruby_name
460
+ value = public_send(ruby_name)
461
+ # may raise, DBus.error or https://ruby-doc.com/core-3.1.0/TypeError.html
462
+ typed_value = Data.make_typed(property.type, value)
463
+ [typed_value]
464
+ rescue StandardError => e
465
+ msg = "When getting '#{interface_name}.#{property_name}': " + e.message
466
+ raise e.exception(msg)
467
+ end
463
468
  else
464
469
  raise DBus.error("org.freedesktop.DBus.Error.PropertyWriteOnly"),
465
470
  "Property '#{interface_name}.#{property_name}' (on object '#{@path}') is not readable"
@@ -470,11 +475,16 @@ module DBus
470
475
  property = dbus_lookup_property(interface_name, property_name)
471
476
 
472
477
  if property.writable?
473
- ruby_name_eq = "#{property.ruby_name}="
474
- # TODO: declare dbus_method :Set to take :exact argument
475
- # and type check it here before passing its :plain value
476
- # to the implementation
477
- public_send(ruby_name_eq, value)
478
+ begin
479
+ ruby_name_eq = "#{property.ruby_name}="
480
+ # TODO: declare dbus_method :Set to take :exact argument
481
+ # and type check it here before passing its :plain value
482
+ # to the implementation
483
+ public_send(ruby_name_eq, value)
484
+ rescue StandardError => e
485
+ msg = "When setting '#{interface_name}.#{property_name}': " + e.message
486
+ raise e.exception(msg)
487
+ end
478
488
  else
479
489
  raise DBus.error("org.freedesktop.DBus.Error.PropertyReadOnly"),
480
490
  "Property '#{interface_name}.#{property_name}' (on object '#{@path}') is not writable"
@@ -507,8 +517,8 @@ module DBus
507
517
  typed_value = Data.make_typed(property.type, value)
508
518
  p_hash[p_name.to_s] = typed_value
509
519
  rescue StandardError
510
- DBus.logger.debug "Property '#{interface_name}.#{p_name}' (on object '#{@path}')" \
511
- " has raised during GetAll, omitting it"
520
+ DBus.logger.debug "Property '#{interface_name}.#{p_name}' (on object '#{@path}') " \
521
+ "has raised during GetAll, omitting it"
512
522
  end
513
523
  end
514
524
 
@@ -129,7 +129,7 @@ module DBus
129
129
  # @return [void]
130
130
  def on_signal(name, &block)
131
131
  unless @default_iface && has_iface?(@default_iface)
132
- raise NoMethodError, "undefined signal #{OPEN_QUOTE}#{name}' for DBus interface "\
132
+ raise NoMethodError, "undefined signal #{OPEN_QUOTE}#{name}' for DBus interface " \
133
133
  "#{OPEN_QUOTE}#{@default_iface}' on object #{OPEN_QUOTE}#{@path}'"
134
134
  end
135
135
 
@@ -139,13 +139,6 @@ module DBus
139
139
  ####################################################
140
140
  private
141
141
 
142
- # rubocop:disable Lint/MissingSuper
143
- # as this should forward everything
144
- #
145
- # https://github.com/rubocop-hq/ruby-style-guide#no-method-missing
146
- # and http://blog.marc-andre.ca/2010/11/15/methodmissing-politely/
147
- # have a point to be investigated
148
-
149
142
  # Handles all unkown methods, mostly to route method calls to the
150
143
  # default interface.
151
144
  def method_missing(name, *args, &reply_handler)
@@ -154,7 +147,7 @@ module DBus
154
147
  # - di not specified
155
148
  # TODO
156
149
  # - di is specified but not found in introspection data
157
- raise NoMethodError, "undefined method #{OPEN_QUOTE}#{name}' for DBus interface "\
150
+ raise NoMethodError, "undefined method #{OPEN_QUOTE}#{name}' for DBus interface " \
158
151
  "#{OPEN_QUOTE}#{@default_iface}' on object #{OPEN_QUOTE}#{@path}'"
159
152
  end
160
153
 
@@ -166,16 +159,15 @@ module DBus
166
159
  raise unless e.to_s =~ /undefined method #{OPEN_QUOTE}#{name}'/
167
160
 
168
161
  # BTW e.exception("...") would preserve the class.
169
- raise NoMethodError, "undefined method #{OPEN_QUOTE}#{name}' for DBus interface "\
162
+ raise NoMethodError, "undefined method #{OPEN_QUOTE}#{name}' for DBus interface " \
170
163
  "#{OPEN_QUOTE}#{@default_iface}' on object #{OPEN_QUOTE}#{@path}'"
171
164
  end
172
165
  end
173
- # rubocop:enable Lint/MissingSuper
174
166
 
175
167
  def respond_to_missing?(name, _include_private = false)
176
- @default_iface &&
168
+ (@default_iface &&
177
169
  has_iface?(@default_iface) &&
178
- @interfaces[@default_iface].methods.key?(name) or super
170
+ @interfaces[@default_iface].methods.key?(name)) or super
179
171
  end
180
172
  end
181
173
  end
data/lib/dbus/type.rb CHANGED
@@ -163,7 +163,8 @@ module DBus
163
163
  if @sigtype == DICT_ENTRY
164
164
  case @members.size
165
165
  when 2
166
- raise SignatureException, "DICT_ENTRY must have 2 subtypes, found 3 or more in #{@signature}"
166
+ raise SignatureException,
167
+ "DICT_ENTRY must have 2 subtypes, found 3 or more: #{@members.inspect} << #{item.inspect}"
167
168
  when 0
168
169
  if [STRUCT, ARRAY, DICT_ENTRY, VARIANT].member?(item.sigtype)
169
170
  raise SignatureException, "DICT_ENTRY key must be basic (non-container)"
data/ruby-dbus.gemspec CHANGED
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # -*- ruby -*-
4
- require "rubygems"
5
4
 
6
5
  GEMSPEC = Gem::Specification.new do |s|
7
6
  s.name = "ruby-dbus"
@@ -22,6 +21,7 @@ GEMSPEC = Gem::Specification.new do |s|
22
21
 
23
22
  s.required_ruby_version = ">= 2.4.0"
24
23
 
24
+ s.add_runtime_dependency "logger"
25
25
  # Either of rexml and nokogiri is required
26
26
  # but AFAIK gemspec cannot express that.
27
27
  # Nokogiri is recommended as rexml is dead slow.
@@ -30,10 +30,10 @@ GEMSPEC = Gem::Specification.new do |s|
30
30
 
31
31
  # workaround: rubocop-1.0 needs base64 which is no longer in stdlib in newer rubies
32
32
  s.add_development_dependency "base64"
33
+ s.add_development_dependency "ostruct"
33
34
  s.add_development_dependency "packaging_rake_tasks"
34
35
  s.add_development_dependency "rake"
35
36
  s.add_development_dependency "rspec", "~> 3"
36
- s.add_development_dependency "rubocop", "= 1.0"
37
37
  s.add_development_dependency "simplecov"
38
38
  s.add_development_dependency "simplecov-lcov"
39
39
  end
data/spec/data_spec.rb CHANGED
@@ -223,43 +223,43 @@ describe DBus::Data do
223
223
 
224
224
  describe DBus::Data::Byte do
225
225
  include_examples "#== and #eql? work for basic types"
226
- include_examples "constructor accepts numeric range", 0, 2**8 - 1
226
+ include_examples "constructor accepts numeric range", 0, (2**8) - 1
227
227
  include_examples "constructor accepts plain or typed values", 42
228
228
  end
229
229
 
230
230
  describe DBus::Data::Int16 do
231
231
  include_examples "#== and #eql? work for basic types"
232
- include_examples "constructor accepts numeric range", -2**15, 2**15 - 1
232
+ include_examples "constructor accepts numeric range", -2**15, (2**15) - 1
233
233
  include_examples "constructor accepts plain or typed values", 42
234
234
  end
235
235
 
236
236
  describe DBus::Data::UInt16 do
237
237
  include_examples "#== and #eql? work for basic types"
238
- include_examples "constructor accepts numeric range", 0, 2**16 - 1
238
+ include_examples "constructor accepts numeric range", 0, (2**16) - 1
239
239
  include_examples "constructor accepts plain or typed values", 42
240
240
  end
241
241
 
242
242
  describe DBus::Data::Int32 do
243
243
  include_examples "#== and #eql? work for basic types"
244
- include_examples "constructor accepts numeric range", -2**31, 2**31 - 1
244
+ include_examples "constructor accepts numeric range", -2**31, (2**31) - 1
245
245
  include_examples "constructor accepts plain or typed values", 42
246
246
  end
247
247
 
248
248
  describe DBus::Data::UInt32 do
249
249
  include_examples "#== and #eql? work for basic types"
250
- include_examples "constructor accepts numeric range", 0, 2**32 - 1
250
+ include_examples "constructor accepts numeric range", 0, (2**32) - 1
251
251
  include_examples "constructor accepts plain or typed values", 42
252
252
  end
253
253
 
254
254
  describe DBus::Data::Int64 do
255
255
  include_examples "#== and #eql? work for basic types"
256
- include_examples "constructor accepts numeric range", -2**63, 2**63 - 1
256
+ include_examples "constructor accepts numeric range", -2**63, (2**63) - 1
257
257
  include_examples "constructor accepts plain or typed values", 42
258
258
  end
259
259
 
260
260
  describe DBus::Data::UInt64 do
261
261
  include_examples "#== and #eql? work for basic types"
262
- include_examples "constructor accepts numeric range", 0, 2**64 - 1
262
+ include_examples "constructor accepts numeric range", 0, (2**64) - 1
263
263
  include_examples "constructor accepts plain or typed values", 42
264
264
  end
265
265
 
@@ -122,6 +122,8 @@ class Test < DBus::Object
122
122
  dbus_attr_reader :read_me, "s"
123
123
 
124
124
  def write_me=(value)
125
+ raise "We don't talk about Bruno" if value =~ /Bruno/
126
+
125
127
  @read_me = value
126
128
  end
127
129
  dbus_writer :write_me, "s"
data/spec/node_spec.rb CHANGED
@@ -25,7 +25,7 @@ describe DBus::Node do
25
25
  let(:manager_path) { "/org/example/FooManager" }
26
26
  let(:child_paths) do
27
27
  [
28
- # note that "/org/example/FooManager/good"
28
+ # NOTE: "/org/example/FooManager/good"
29
29
  # is a path under a managed object but there is no object there
30
30
  "/org/example/FooManager/good/1",
31
31
  "/org/example/FooManager/good/2",
@@ -31,17 +31,36 @@ describe "PropertyTest" do
31
31
  expect(iface["ReadMe"]).to eq("READ ME")
32
32
  end
33
33
 
34
- it "gets an error when reading a property whose implementation raises" do
35
- expect { @iface["Explosive"] }.to raise_error(DBus::Error, /Something failed/)
34
+ context "when reading a property fails" do
35
+ it "gets an error, mentioning the qualified property name" do
36
+ expect { @iface["Explosive"] }
37
+ .to raise_error(DBus::Error, /getting.*SampleInterface.Explosive.*Something failed/)
38
+ end
36
39
  end
37
40
 
38
41
  it "tests property nonreading" do
39
42
  expect { @iface["WriteMe"] }.to raise_error(DBus::Error, /not readable/)
40
43
  end
41
44
 
42
- it "tests property writing" do
43
- @iface["ReadOrWriteMe"] = "VALUE"
44
- expect(@iface["ReadOrWriteMe"]).to eq("VALUE")
45
+ context "writing properties" do
46
+ it "tests property writing" do
47
+ @iface["ReadOrWriteMe"] = "VALUE"
48
+ expect(@iface["ReadOrWriteMe"]).to eq("VALUE")
49
+ end
50
+
51
+ context "when writing a read-only property" do
52
+ it "gets an error, mentioning the qualified property name" do
53
+ expect { @iface["ReadMe"] = "WROTE" }
54
+ .to raise_error(DBus::Error, /SampleInterface.ReadMe.*not writable/)
55
+ end
56
+ end
57
+
58
+ context "when writing a property fails" do
59
+ it "gets an error, mentioning the qualified property name" do
60
+ expect { @iface["WriteMe"] = "Bruno is a city in Czechia" }
61
+ .to raise_error(DBus::Error, /setting.*SampleInterface.WriteMe/)
62
+ end
63
+ end
45
64
  end
46
65
 
47
66
  # https://github.com/mvidner/ruby-dbus/pull/19
@@ -54,10 +73,6 @@ describe "PropertyTest" do
54
73
  expect(@iface["ReadOrWriteMe"]).to eq("VALUE")
55
74
  end
56
75
 
57
- it "tests property nonwriting" do
58
- expect { @iface["ReadMe"] = "WROTE" }.to raise_error(DBus::Error, /not writable/)
59
- end
60
-
61
76
  it "tests get all" do
62
77
  all = @iface.all_properties
63
78
  expect(all.keys.sort).to eq(["MyArray", "MyByte", "MyDict", "MyStruct", "MyVariant", "ReadMe", "ReadOrWriteMe"])
metadata CHANGED
@@ -1,14 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-dbus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ruby DBus Team
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
- date: 2025-01-02 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
11
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: logger
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
12
27
  - !ruby/object:Gem::Dependency
13
28
  name: rexml
14
29
  requirement: !ruby/object:Gem::Requirement
@@ -38,7 +53,7 @@ dependencies:
38
53
  - !ruby/object:Gem::Version
39
54
  version: '0'
40
55
  - !ruby/object:Gem::Dependency
41
- name: packaging_rake_tasks
56
+ name: ostruct
42
57
  requirement: !ruby/object:Gem::Requirement
43
58
  requirements:
44
59
  - - ">="
@@ -52,7 +67,7 @@ dependencies:
52
67
  - !ruby/object:Gem::Version
53
68
  version: '0'
54
69
  - !ruby/object:Gem::Dependency
55
- name: rake
70
+ name: packaging_rake_tasks
56
71
  requirement: !ruby/object:Gem::Requirement
57
72
  requirements:
58
73
  - - ">="
@@ -66,33 +81,33 @@ dependencies:
66
81
  - !ruby/object:Gem::Version
67
82
  version: '0'
68
83
  - !ruby/object:Gem::Dependency
69
- name: rspec
84
+ name: rake
70
85
  requirement: !ruby/object:Gem::Requirement
71
86
  requirements:
72
- - - "~>"
87
+ - - ">="
73
88
  - !ruby/object:Gem::Version
74
- version: '3'
89
+ version: '0'
75
90
  type: :development
76
91
  prerelease: false
77
92
  version_requirements: !ruby/object:Gem::Requirement
78
93
  requirements:
79
- - - "~>"
94
+ - - ">="
80
95
  - !ruby/object:Gem::Version
81
- version: '3'
96
+ version: '0'
82
97
  - !ruby/object:Gem::Dependency
83
- name: rubocop
98
+ name: rspec
84
99
  requirement: !ruby/object:Gem::Requirement
85
100
  requirements:
86
- - - '='
101
+ - - "~>"
87
102
  - !ruby/object:Gem::Version
88
- version: '1.0'
103
+ version: '3'
89
104
  type: :development
90
105
  prerelease: false
91
106
  version_requirements: !ruby/object:Gem::Requirement
92
107
  requirements:
93
- - - '='
108
+ - - "~>"
94
109
  - !ruby/object:Gem::Version
95
- version: '1.0'
110
+ version: '3'
96
111
  - !ruby/object:Gem::Dependency
97
112
  name: simplecov
98
113
  requirement: !ruby/object:Gem::Requirement
@@ -237,6 +252,7 @@ homepage: https://github.com/mvidner/ruby-dbus
237
252
  licenses:
238
253
  - LGPL-2.1-or-later
239
254
  metadata: {}
255
+ post_install_message:
240
256
  rdoc_options: []
241
257
  require_paths:
242
258
  - lib
@@ -251,7 +267,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
251
267
  - !ruby/object:Gem::Version
252
268
  version: '0'
253
269
  requirements: []
254
- rubygems_version: 3.6.2
270
+ rubygems_version: 3.2.33
271
+ signing_key:
255
272
  specification_version: 4
256
273
  summary: Ruby module for interaction with D-Bus
257
274
  test_files: []