openhab-scripting 5.35.0 → 5.35.1

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: 34c9100f2748e1c7736131f0a3144c1f2cd997a7e6757bc1c18f6785973cbee0
4
- data.tar.gz: f9582b65775c086ad9124e0d726b2f39a4376976c6191a5140fee61db18889fc
3
+ metadata.gz: b21b40668410811b84a0ffeb8e4e8f1538d9fe8ba546dbdc8c9a4e4b70a0f245
4
+ data.tar.gz: d521f1f642bd2d96e9dea0fab156f3120eadb4004579770d4d49d3d6ca5f700b
5
5
  SHA512:
6
- metadata.gz: 03e8a9dc657a8524dc9dd15b681e538f8b4cb970f18735dd0b91ee6331d57672507975abad1c59169e7f4670c850c3dad178401c31ac1f620f057edefbf61ec9
7
- data.tar.gz: 7b108943f0e1c09b00d101f99adaed0689b27213426251d273bff517554f122095bffaaba733d1589cf43e30597b53fa7622a05e198b39d74e471413d79ee98d
6
+ metadata.gz: 48a66dcc913693a3e00cbed821168c4c3ee5d2404775d9bc939f7e79026056714db6abbb049bbf361b1afbac9539eaaab2bc9d5ba000a7ccfc3ee9ab61b00443
7
+ data.tar.gz: cdb4a5702f8e8b7f39768e0c0718781cda73a5849e86171860b2906e1c46bc7792ba0ebd7245dcf24b50e317606382e54e62aa54d676fb8c2ef359f83cdef5cb
@@ -120,7 +120,7 @@ module OpenHAB
120
120
  # @return [String]
121
121
  def inspect
122
122
  r = "#<OpenHAB::Core::Items::GroupItems::Members #{name}"
123
- r += " #{map(&:name).inspect}>" unless @group.__getobj__.nil?
123
+ r += " #{map(&:name).inspect}" unless @group.__getobj__.nil?
124
124
  "#{r}>"
125
125
  end
126
126
  alias_method :to_s, :inspect
@@ -51,7 +51,7 @@ module OpenHAB
51
51
  # @raise [FrozenError] if `update` is true but the existing item with the same name
52
52
  # wasn't created by the current provider.
53
53
  #
54
- # @see DSL::Items::Builder
54
+ # @see DSL::Items::Builder DSL::Items::Builder for more details and examples
55
55
  #
56
56
  def build(preferred_provider = nil, update: true, &block)
57
57
  DSL::Items::BaseBuilderDSL.new(preferred_provider, update: update)
@@ -86,7 +86,7 @@ module OpenHAB
86
86
 
87
87
  # @return [String]
88
88
  def inspect
89
- parent = "(#{parent_uid})" unless parent_uid.empty?
89
+ parent = " (#{parent_uid})" unless parent_uid.empty?
90
90
  "#<OpenHAB::Core::Items::Semantics::#{name}#{parent} " \
91
91
  "label=#{label.inspect} " \
92
92
  "description=#{description.inspect} " \
@@ -19,21 +19,8 @@ module OpenHAB
19
19
  #
20
20
  def provider_for(key)
21
21
  elementReadLock.lock
22
- if key.is_a?(org.openhab.core.common.registry.Identifiable)
23
- return unless (provider = elementToProvider[key])
24
-
25
- # The HashMap lookup above uses java's hashCode() which has been overridden
26
- # by GenericItem and ThingImpl to return object's uid, e.g. item's name, thing uid
27
- # so it will return a provider even for an unmanaged object having the same uid
28
- # as an existing managed object.
29
-
30
- # So take an extra step to verify that the provider really holds the given instance.
31
- # by using equal? to compare the object's identity.
32
- # Only ManagedProviders have a #get method to look up the object by uid.
33
- provider if !provider.is_a?(ManagedProvider) || provider.get(key.uid).equal?(key)
34
- elsif (element = identifierToElement[key])
35
- elementToProvider[element]
36
- end
22
+ element = key.is_a?(org.openhab.core.common.registry.Identifiable) ? key : identifierToElement[key]
23
+ elementToProvider[element] if element
37
24
  ensure
38
25
  elementReadLock.unlock
39
26
  end
@@ -116,6 +116,19 @@ module OpenHAB
116
116
 
117
117
  alias_method :|, :to_invertible_unit
118
118
 
119
+ #
120
+ # Check equality without unit inversion
121
+ #
122
+ # @return [true,false] if the same value is represented, without unit inversion
123
+ #
124
+ def eql?(other)
125
+ return false unless other.instance_of?(self.class)
126
+ # compare_to in OH5 will throw an IAE if the units are not compatible
127
+ return false unless unit.compatible?(other.unit)
128
+
129
+ super
130
+ end
131
+
119
132
  #
120
133
  # Comparison
121
134
  #
@@ -10,7 +10,7 @@ module OpenHAB
10
10
  # This can be useful either to create items as soon as the script loads,
11
11
  # or even later based on a rule executing.
12
12
  #
13
- # @example
13
+ # @example Create/update JRuby-provided items at runtime
14
14
  # items.build do
15
15
  # switch_item MySwitch, "My Switch"
16
16
  # switch_item NotAutoupdating, autoupdate: false, channel: "mqtt:topic:1#light"
@@ -30,6 +30,13 @@ module OpenHAB
30
30
  # number_item OutdoorBrightness, state: 10_000 | "lx"
31
31
  # end
32
32
  #
33
+ # @example Create/update persistent managed-items that are stored in the JSONDB and are editable in the MainUI
34
+ # items.build(:persistent) do
35
+ # switch_item MySwitch, "My Switch"
36
+ # end
37
+ #
38
+ # @see OpenHAB::Core::Items::Registry#build items.build for the arguments to this method
39
+ #
33
40
  module Builder
34
41
  include Core::EntityLookup
35
42
 
@@ -173,7 +180,6 @@ module OpenHAB
173
180
  provider.all.each do |link|
174
181
  provider.remove(link.uid) if link.item_name == item.name && !channel_uids.include?(link.linked_uid)
175
182
  end
176
-
177
183
  item
178
184
  end
179
185
  end
@@ -691,8 +697,8 @@ module OpenHAB
691
697
  # @!visibility private
692
698
  def build
693
699
  item = create_item
694
- item.label = label
695
- item.category = icon.to_s if icon
700
+ item.set_label(label) # Don't use item#label= because it triggers a provider.update
701
+ item.set_category(icon.to_s) if icon # ditto here
696
702
  groups.each do |group|
697
703
  group = group.name if group.respond_to?(:name)
698
704
  item.add_group_name(group.to_s)
@@ -4,6 +4,6 @@ module OpenHAB
4
4
  module DSL
5
5
  # Version of openHAB helper libraries
6
6
  # @return [String]
7
- VERSION = "5.35.0"
7
+ VERSION = "5.35.1"
8
8
  end
9
9
  end
@@ -79,7 +79,7 @@ module OpenHAB
79
79
  item_history.insert(insert_index, new_item)
80
80
  end
81
81
 
82
- def remove(filter)
82
+ def remove(filter, _alias = nil)
83
83
  query_internal(filter) do |item_history, index|
84
84
  historic_item = item_history.delete_at(index)
85
85
  @data.delete(historic_item.name) if item_history.empty?
@@ -87,7 +87,7 @@ module OpenHAB
87
87
  true
88
88
  end
89
89
 
90
- def query(filter)
90
+ def query(filter, _alias = nil)
91
91
  result = []
92
92
 
93
93
  query_internal(filter) do |item_history, index|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openhab-scripting
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.35.0
4
+ version: 5.35.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian O'Connell
@@ -9,7 +9,7 @@ authors:
9
9
  - Jimmy Tanagra
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-02-12 00:00:00.000000000 Z
12
+ date: 2025-02-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -487,7 +487,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
487
487
  - !ruby/object:Gem::Version
488
488
  version: '0'
489
489
  requirements: []
490
- rubygems_version: 3.6.3
490
+ rubygems_version: 3.6.5
491
491
  specification_version: 4
492
492
  summary: JRuby Helper Libraries for openHAB Scripting
493
493
  test_files: []