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 +4 -4
- data/lib/openhab/core/items/group_item.rb +1 -1
- data/lib/openhab/core/items/registry.rb +1 -1
- data/lib/openhab/core/items/semantics/semantic_tag.rb +1 -1
- data/lib/openhab/core/registry.rb +2 -15
- data/lib/openhab/core/types/quantity_type.rb +13 -0
- data/lib/openhab/dsl/items/builder.rb +10 -4
- data/lib/openhab/dsl/version.rb +1 -1
- data/lib/openhab/rspec/mocks/persistence_service.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b21b40668410811b84a0ffeb8e4e8f1538d9fe8ba546dbdc8c9a4e4b70a0f245
|
4
|
+
data.tar.gz: d521f1f642bd2d96e9dea0fab156f3120eadb4004579770d4d49d3d6ca5f700b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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}
|
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
|
-
|
23
|
-
|
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 =
|
695
|
-
item.
|
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)
|
data/lib/openhab/dsl/version.rb
CHANGED
@@ -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.
|
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
|
+
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.
|
490
|
+
rubygems_version: 3.6.5
|
491
491
|
specification_version: 4
|
492
492
|
summary: JRuby Helper Libraries for openHAB Scripting
|
493
493
|
test_files: []
|