Module: OpenHAB::Core::Items::Semantics
- Included in:
- GenericItem
- Defined in:
- lib/openhab/core/items/semantics.rb,
lib/openhab/core/items/semantics/provider.rb,
lib/openhab/core/items/semantics/semantic_tag.rb,
lib/openhab/core/items/semantics/tag_class_methods.rb
Overview
Module for implementing semantics helper methods on Item in order to easily navigate the Semantic Model in your scripts. This can be extremely useful to find related items in rules that are executed for any member of a group.
Wraps org.openhab.core.model.script.actions.Semantics as well as adding a few additional convenience methods. Also includes classes for each semantic tag.
Be warned that the Semantic model is stricter than can actually be described by tags and groups on an Item. It makes assumptions that any given item only belongs to one semantic type (Location, Equipment, Point).
#Enumerable helper methods
Enumerable helper methods are also provided to complement the semantic model. These methods can be chained together to find specific item(s) based on custom tags or group memberships that are outside the semantic model.
The Enumerable helper methods apply to:
- GroupItem#members and GroupItem#all_members. This includes semantic #location and #equipment because they are also group items. An exception is for Equipments that are an item (not a group)
- Array of items, such as the return value of Enumerable#equipments, Enumerable#locations, Enumerable#points, Enumerable#tagged, Enumerable#not_tagged, Enumerable#member_of, Enumerable#not_member_of, Enumerable#members methods, etc.
- items[] hash which contains all items in the system.
#Semantic Classes
Each Semantic Tag has a corresponding class within the org.openhab.core.semantics class hierarchy. These "semantic classes" are available as constants in the Semantics module with the corresponding name. The following table illustrates the semantic constants:
Semantic Constant | openHAB's Semantic Class |
---|---|
Semantics::LivingRoom |
org.openhab.core.semantics.model.location.LivingRoom |
Semantics::Lightbulb |
org.openhab.core.semantics.model.equipment.Lightbulb |
Semantics::Control |
org.openhab.core.semantics.model.point.Control |
Semantics::Switch |
org.openhab.core.semantics.model.point.Switch |
Semantics::Power |
org.openhab.core.semantics.model.property.Power |
... | ... |
These constants can be used as arguments to the #points, Enumerable#locations and Enumerable#equipments methods to filter their results. They can also be compared against the return value of #semantic_type, #location_type, #equipment_type, #point_type, and #property_type. They can even be used with DSL::Items::ItemBuilder#tag.
In openHAB 4.0, all of the tag objects implement SemanticTag.
In openHAB 3.4, the constants in the Semantics module are enhanced with TagClassMethods
to provide easy access to the tags' additional attributes: label,
synonyms, and description.
For example, to get the synonyms for Semantics::Lightbulb
in German:
Semantics::Lightbulb.synonyms(java.util.Locale::GERMAN)
#Adding Custom Semantic Tags
openHAB 4.0 supports adding custom semantic tags to augment the standard set of tags to better suit your particular requirements.
For more information, see Semantics.add
Defined Under Namespace
Modules: SemanticTag, TagClassMethods Classes: Provider
Constant Summary collapse
- Tag =
Deprecated.
Since openHAB 4.0, SemanticTag is the interface that all tags implement. Tags are simple instances, instead of another interface in a hierarchical structure.
This is a marker interface for all semantic tag classes.
- org.openhab.core.semantics.Tag
- Location =
This is the parent tag for all tags that represent a Location.
- SemanticTag
- Equipment =
This is the parent tag for all tags that represent an Equipment.
- SemanticTag
- Point =
This is the parent tag for all tags that represent a Point.
- SemanticTag
- Property =
This is the parent tag for all property tags.
- SemanticTag
Instance Attribute Summary collapse
-
#equipment ⇒ Item?
readonly
Gets the related Equipment Item of this Item.
-
#equipment_type ⇒ SemanticTag?
readonly
Returns the sub-tag of Equipment related to this Item.
-
#location ⇒ Item?
readonly
Gets the related Location Item of this Item.
-
#location_type ⇒ SemanticTag?
readonly
Returns the sub-tag of Location related to this Item.
-
#point_type ⇒ SemanticTag?
readonly
Returns the sub-tag of Point this Item is tagged with.
-
#property_type ⇒ SemanticTag?
readonly
Returns the sub-tag of Property this Item is tagged with.
-
#semantic_type ⇒ SemanticTag?
readonly
Returns the SemanticTag this Item is tagged with.
Class Method Summary collapse
-
.add(label: nil, synonyms: "", description: "", **tags) ⇒ Array<SemanticTag>
Adds custom semantic tags.
-
.lookup(id, locale = java.util.Locale.default) ⇒ SemanticTag, ...
Finds a semantic tag using its name, label, or synonyms.
-
.tags ⇒ Array<SemanticTag>
Returns all available Semantic tags.
Instance Method Summary collapse
-
#equipment? ⇒ true, false
Checks if this Item is an Equipment.
-
#location? ⇒ true, false
Checks if this Item is a Location.
-
#point? ⇒ true, false
Checks if this Item is a Point.
-
#points(*point_or_property_types) ⇒ Array<Item>
Return the related Point Items.
-
#semantic? ⇒ true, false
Checks if this Item has any semantic tags.
Instance Attribute Details
#equipment ⇒ Item? (readonly)
463 464 465 |
# File 'lib/openhab/core/items/semantics.rb', line 463 def equipment Actions::Semantics.get_equipment(self)&.then(&Proxy.method(:new)) end |
#equipment_type ⇒ SemanticTag? (readonly)
Returns the sub-tag of Equipment related to this Item.
In other words, the #semantic_type of this Item's Equipment.
476 477 478 |
# File 'lib/openhab/core/items/semantics.rb', line 476 def equipment_type translate_tag(Actions::Semantics.get_equipment_type(self)) end |
#location ⇒ Item? (readonly)
437 438 439 |
# File 'lib/openhab/core/items/semantics.rb', line 437 def location Actions::Semantics.get_location(self)&.then(&Proxy.method(:new)) end |
#location_type ⇒ SemanticTag? (readonly)
Returns the sub-tag of Location related to this Item.
In other words, the #semantic_type of this Item's Location.
450 451 452 |
# File 'lib/openhab/core/items/semantics.rb', line 450 def location_type translate_tag(Actions::Semantics.get_location_type(self)) end |
#point_type ⇒ SemanticTag? (readonly)
Returns the sub-tag of Point this Item is tagged with.
487 488 489 |
# File 'lib/openhab/core/items/semantics.rb', line 487 def point_type translate_tag(Actions::Semantics.get_point_type(self)) end |
#property_type ⇒ SemanticTag? (readonly)
Returns the sub-tag of Property this Item is tagged with.
498 499 500 |
# File 'lib/openhab/core/items/semantics.rb', line 498 def property_type translate_tag(Actions::Semantics.get_property_type(self)) end |
#semantic_type ⇒ SemanticTag? (readonly)
Returns the SemanticTag this Item is tagged with.
It will only return the first applicable Tag, preferring a sub-tag of Location, Equipment, or Point first, and if none of those are found, looks for a Property.
512 513 514 |
# File 'lib/openhab/core/items/semantics.rb', line 512 def semantic_type translate_tag(Actions::Semantics.get_semantic_type(self)) end |
Class Method Details
.add(**tags) ⇒ Array<SemanticTag> .add(label: nil, synonyms: "", description: "", **tags) ⇒ Array<SemanticTag>
Adds custom semantic tags.
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
# File 'lib/openhab/core/items/semantics.rb', line 305 def add(label: nil, synonyms: "", description: "", **tags) raise ArgumentError, "Tags must be specified" if tags.empty? if (tags.length > 1) && !(label.nil? && synonyms.empty? && description.empty?) raise ArgumentError, "Additional options can only be specified when creating one tag" end synonyms = Array.wrap(synonyms).map { |s| s.to_s.strip } tags.map do |name, parent| parent = lookup(parent) unless parent.is_a?(SemanticTag) next if lookup(name) next unless parent new_tag = org.openhab.core.semantics.SemanticTagImpl.new("#{parent.uid}_#{name}", label, description, synonyms) Provider.instance.add(new_tag) lookup(name) end.compact end |
.lookup(id, locale = java.util.Locale.default) ⇒ SemanticTag, ...
Finds a semantic tag using its name, label, or synonyms.
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 |
# File 'lib/openhab/core/items/semantics.rb', line 224 def lookup(id, locale = java.util.Locale.default) id = id.to_s # @deprecated OH3.4 - the Property tag had an ID of "MeasurementProperty" in OH3.4. # This was corrected in OH4. # Make sure we compare against pre-release versions if id == "Property" && Gem::Version.new(Core::VERSION) < Gem::Version.new("4.0.0.M1") id = "MeasurementProperty" end # @deprecated OH3.4 missing registry if Provider.registry tag_class = service.get_by_label_or_synonym(id, locale).first || Provider.registry.get_tag_class_by_id(id) return unless tag_class Provider.registry.get(Provider.registry.class.build_id(tag_class)) else tag = org.openhab.core.semantics.SemanticTags.get_by_label_or_synonym(id, locale).first || org.openhab.core.semantics.SemanticTags.get_by_id(id) return unless tag tag = tag.ruby_class tag.singleton_class.include(TagClassMethods) tag end end |
.tags ⇒ Array<SemanticTag>
Returns all available Semantic tags
200 201 202 203 204 205 206 207 208 209 210 211 212 |
# File 'lib/openhab/core/items/semantics.rb', line 200 def tags # @deprecated OH3.4 missing registry if Provider.registry Provider.registry.all.to_a else java.util.stream.Stream.of( org.openhab.core.semantics.model.point.Points.stream, org.openhab.core.semantics.model.property.Properties.stream, org.openhab.core.semantics.model.equipment.Equipments.stream, org.openhab.core.semantics.model.location.Locations.stream ).flat_map(&:itself).map(&:ruby_class).iterator.to_a end end |
Instance Method Details
#equipment? ⇒ true, false
Checks if this Item is an Equipment
This is implemented as checking if the item's #semantic_type is an Equipment. I.e. an Item has a single #semantic_type.
403 404 405 |
# File 'lib/openhab/core/items/semantics.rb', line 403 def equipment? Actions::Semantics.equipment?(self) end |
#location? ⇒ true, false
Checks if this Item is a Location
This is implemented as checking if the item's #semantic_type is a Location. I.e. an Item has a single #semantic_type.
391 392 393 |
# File 'lib/openhab/core/items/semantics.rb', line 391 def location? Actions::Semantics.location?(self) end |
#point? ⇒ true, false
Checks if this Item is a Point
This is implemented as checking if the item's #semantic_type is a Point. I.e. an Item has a single #semantic_type.
414 415 416 |
# File 'lib/openhab/core/items/semantics.rb', line 414 def point? Actions::Semantics.point?(self) end |
#points(*point_or_property_types) ⇒ Array<Item>
Return the related Point Items.
Searches this Equipment Item for Points that are tagged appropriately.
If called on a Point Item, it will automatically search for sibling Points (and remove itself if found).
543 544 545 546 547 548 549 550 |
# File 'lib/openhab/core/items/semantics.rb', line 543 def points(*point_or_property_types) return members.points(*point_or_property_types) if equipment? || location? # automatically search the parent equipment (or location?!) for sibling points result = (equipment || location)&.points(*point_or_property_types) || [] result.delete(self) result end |
#semantic? ⇒ true, false
Checks if this Item has any semantic tags
423 424 425 |
# File 'lib/openhab/core/items/semantics.rb', line 423 def semantic? !!semantic_type end |