Skip to content

Commit b71a40b

Browse files
authored
Merge pull request #160 from yfre/mark_primary_service
mark primary service
2 parents 7dc243b + b8fb0f9 commit b71a40b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/io/github/hapjava/accessories/HomekitAccessory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ default Collection<Service> getServices() {
8686
* @return primary service
8787
*/
8888
default Service getPrimaryService() {
89-
return getServices().iterator().next();
89+
return getServices().isEmpty() ? null : getServices().iterator().next();
9090
};
9191
}

src/main/java/io/github/hapjava/server/impl/json/AccessoryController.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public HttpResponse listing() throws Exception {
4242
iidLookup.putAll(swapKeyAndValue(registry.getCharacteristics(accessory.getId())));
4343

4444
for (Service service : servicesByInterfaceId.values()) {
45-
serviceFutures.add(toJson(service, iidLookup));
45+
serviceFutures.add(toJson(service, iidLookup, accessory.getPrimaryService() == service));
4646
}
4747

4848
accessoryServiceFutures.put(accessory.getId(), serviceFutures);
@@ -72,8 +72,8 @@ public HttpResponse listing() throws Exception {
7272
}
7373
}
7474

75-
private CompletableFuture<JsonObject> toJson(Service service, Map<Object, Integer> iidLookup)
76-
throws Exception {
75+
private CompletableFuture<JsonObject> toJson(
76+
Service service, Map<Object, Integer> iidLookup, boolean isPrimary) throws Exception {
7777
String shortType =
7878
service.getType().replaceAll("^0*([0-9a-fA-F]+)-0000-1000-8000-0026BB765291$", "$1");
7979
JsonObjectBuilder builder =
@@ -103,7 +103,7 @@ private CompletableFuture<JsonObject> toJson(Service service, Map<Object, Intege
103103
.forEach(jsonLinkedServices::add);
104104
builder.add("linked", jsonLinkedServices);
105105
}
106-
106+
builder.add("primary", isPrimary);
107107
return builder.build();
108108
});
109109
}

0 commit comments

Comments
 (0)