Skip to content

Commit

Permalink
[OmniLink] Use for each loop in getChildThing() (#9963)
Browse files Browse the repository at this point in the history
* Use for each loop in getChildThing()

Signed-off-by: Ethan Dye <[email protected]>

* Further refine getChildThing() using stream map

Signed-off-by: Ethan Dye <[email protected]>

* Fix spotless errors

Signed-off-by: Ethan Dye <[email protected]>
  • Loading branch information
ecdye authored Jan 26, 2021
1 parent a49b348 commit e8ba8ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,4 +185,6 @@ public class OmnilinkBindingConstants {
THING_TYPE_BUTTON, THING_TYPE_UNIT_UPB, THING_TYPE_THERMOSTAT, THING_TYPE_CONSOLE, THING_TYPE_AUDIO_ZONE,
THING_TYPE_AUDIO_SOURCE, THING_TYPE_TEMP_SENSOR, THING_TYPE_HUMIDITY_SENSOR, THING_TYPE_LOCK,
THING_TYPE_OUTPUT, THING_TYPE_UNIT, THING_TYPE_DIMMABLE);
public static final Set<ThingTypeUID> SUPPORTED_UNIT_TYPES_UIDS = Set.of(THING_TYPE_UNIT_UPB, THING_TYPE_ROOM,
THING_TYPE_FLAG, THING_TYPE_OUTPUT, THING_TYPE_DIMMABLE, THING_TYPE_UNIT);
}
Original file line number Diff line number Diff line change
Expand Up @@ -568,24 +568,8 @@ private Optional<Thing> getChildThing(ThingTypeUID type, int number) {
}

private Optional<Thing> getUnitThing(int unitId) {
Optional<Thing> theThing = getChildThing(THING_TYPE_UNIT_UPB, unitId);
if (!(theThing.isPresent())) {
theThing = getChildThing(THING_TYPE_ROOM, unitId);
}
if (!(theThing.isPresent())) {
theThing = getChildThing(THING_TYPE_FLAG, unitId);
}
if (!(theThing.isPresent())) {
theThing = getChildThing(THING_TYPE_OUTPUT, unitId);
}
if (!(theThing.isPresent())) {
theThing = getChildThing(THING_TYPE_DIMMABLE, unitId);
}
if (!(theThing.isPresent())) {
theThing = getChildThing(THING_TYPE_UNIT, unitId);
}

return theThing;
return SUPPORTED_UNIT_TYPES_UIDS.stream().map(uid -> getChildThing(uid, unitId)).flatMap(Optional::stream)
.findFirst();
}

public Optional<AudioPlayer> getAudioPlayer() {
Expand Down

0 comments on commit e8ba8ec

Please sign in to comment.