RSDK-11037 Add geometries to sensor component#159
Open
Ale Paredes (ale7714) wants to merge 1 commit into
Open
Conversation
The sensor component was the only component with a GetGeometries RPC in the API that did not expose getGeometries through its RPC client and RPC service. Implement the client and server handlers following the existing pattern (e.g. movement sensor) and add unit tests.
Ethan (stuqdog)
approved these changes
Jun 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Part of the effort to expose
geometrieson every component that supports it (alongsideDoCommand).In the Java SDK, every component whose API defines a
GetGeometriesRPC already implementedgetGeometrieson both its RPC client and RPC service — exceptsensor, whoseSensorRPCClientandSensorRPCServicewere missing the override (the service file even had leftover, unused geometry imports from a copy of the movement sensor).This PR fills that gap so
sensoris consistent with the other components (arm, base, board, camera, encoder, gantry, generic, gripper, motor, movement sensor, pose tracker, servo, audio input, …).Changes
SensorRPCClient: implementgetGeometries(Optional<Struct> extra), calling theGetGeometriesRPC and returning the geometries list.SensorRPCService: implement thegetGeometriesserver handler, delegating to the resource (matchingMovementSensorRPCService).SensorRPCClientTestandSensorRPCServiceTest(the sensor component previously had no tests), coveringgetGeometries,getReadings, anddoCommand.Testing
./gradlew :core:viam-core-sdk:testpasses locally, including the new sensor tests.Key: RSDK-11037
Co-authored by Claude agent for Jira.