Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filter event markers with null timestamps or empty names #862

Merged
merged 4 commits into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions choreolib/py/choreo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import json

from choreo.trajectory import load_event_marker
from choreo.trajectory import EventMarker
from choreo.trajectory import DifferentialSample
from choreo.trajectory import DifferentialTrajectory
Expand Down Expand Up @@ -39,14 +40,15 @@ def load_differential_trajectory_string(
for sample in data["trajectory"]["samples"]
]
splits = [int(split) for split in data["trajectory"]["splits"]]
events = [
EventMarker(
float(event["from"]["offset"]["val"])
+ float(event["from"]["targetTimestamp"]),
event["name"],
# Add 0 as the first split index
if len(splits) == 0 or splits[0] != 0:
splits.insert(0, 0)
events = list(
filter(
lambda marker: marker is not None,
[load_event_marker(event) for event in data["events"]],
)
for event in data["events"]
]
)

return DifferentialTrajectory(data["name"], samples, splits, events)

Expand Down Expand Up @@ -97,14 +99,12 @@ def load_swerve_trajectory_string(trajectory_json_string: str) -> SwerveTrajecto
# Add 0 as the first split index
if len(splits) == 0 or splits[0] != 0:
splits.insert(0, 0)
events = [
EventMarker(
float(event["from"]["offset"]["val"])
+ float(event["from"]["targetTimestamp"]),
event["name"],
events = list(
filter(
lambda marker: marker is not None,
[load_event_marker(event) for event in data["events"]],
)
for event in data["events"]
]
)

return SwerveTrajectory(data["name"], samples, splits, events)

Expand Down
12 changes: 12 additions & 0 deletions choreolib/py/choreo/trajectory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ def __eq__(self, other: EventMarker) -> bool:
return self.timestamp == other.timestamp and self.event == other.event


def load_event_marker(event) -> EventMarker | None:
try:
offset = float(event["from"]["offset"]["val"])
target_timestamp = float(event["from"]["targetTimestamp"])
name = event["name"]
if target_timestamp + offset < 0 or len(name) == 0:
return None
return EventMarker(target_timestamp + offset, name)
except TypeError as e:
return None


class DifferentialSample:
def __init__(
self,
Expand Down
11 changes: 10 additions & 1 deletion choreolib/src/main/java/choreo/Choreo.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
Expand Down Expand Up @@ -162,7 +164,14 @@ static Trajectory<? extends TrajectorySample<?>> loadTrajectoryString(
throw new RuntimeException(
name + ".traj: Wrong version: " + version + ". Expected " + SPEC_VERSION);
}
EventMarker[] events = GSON.fromJson(wholeTrajectory.get("events"), EventMarker[].class);
// Filter out markers with negative timestamps or empty names
List<EventMarker> unfilteredEvents =
new ArrayList<EventMarker>(
Arrays.asList(GSON.fromJson(wholeTrajectory.get("events"), EventMarker[].class)));
unfilteredEvents.removeIf(marker -> marker.timestamp < 0 || marker.event.length() == 0);
EventMarker[] events = new EventMarker[unfilteredEvents.size()];
unfilteredEvents.toArray(events);

JsonObject trajectoryObj = wholeTrajectory.getAsJsonObject("trajectory");
Integer[] splits = GSON.fromJson(trajectoryObj.get("splits"), Integer[].class);
if (splits.length == 0 || splits[0] != 0) {
Expand Down
7 changes: 5 additions & 2 deletions choreolib/src/main/java/choreo/trajectory/EventMarker.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@ public EventMarker deserialize(
var event = json.getAsJsonObject().get("name").getAsString();

return new EventMarker(targetTimestamp + offset, event);
} catch (IllegalStateException e) {
return new EventMarker(0, "");
} catch (IllegalStateException
| UnsupportedOperationException
| NullPointerException
| NumberFormatException e) {
return new EventMarker(-1, "");
}
}
}
Expand Down
13 changes: 9 additions & 4 deletions choreolib/src/main/native/cpp/choreo/trajectory/EventMarker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@ void choreo::to_json(wpi::json& json, const EventMarker& event) {
}

void choreo::from_json(const wpi::json& json, EventMarker& event) {
event.timestamp =
units::second_t{json.at("from").at("offset").at("val").get<double>() +
json.at("from").at("targetTimestamp").get<double>()};
event.event = json.at("name").get<std::string>();
auto targetTimestamp = json.at("from").at("targetTimestamp");
if (!targetTimestamp.is_number()) {
event.timestamp = units::second_t{-1};
event.event = "";
} else {
event.timestamp = units::second_t{
json.at("from").at("offset").at("val").get<double>() + targetTimestamp.get<double>()};
event.event = json.at("name").get<std::string>();
}
}
16 changes: 14 additions & 2 deletions choreolib/src/main/native/cpp/choreo/trajectory/Trajectory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ void choreo::from_json(const wpi::json& json,
if (trajectory.splits.size() == 0 || trajectory.splits.at(0) != 0) {
trajectory.splits.insert(trajectory.splits.begin(), 0);
}
trajectory.events = json.at("events").get<std::vector<EventMarker>>();
auto events = json.at("events").get<std::vector<EventMarker>>();
trajectory.events.clear();
for (EventMarker event : events) {
if (event.timestamp >= units::second_t{0} || event.event.size() == 0) {
trajectory.events.push_back(event);
}
}
}

void choreo::to_json(wpi::json& json,
Expand All @@ -49,5 +55,11 @@ void choreo::from_json(const wpi::json& json,
if (trajectory.splits.size() == 0 || trajectory.splits.at(0) != 0) {
trajectory.splits.insert(trajectory.splits.begin(), 0);
}
trajectory.events = json.at("events").get<std::vector<EventMarker>>();
auto events = json.at("events").get<std::vector<EventMarker>>();
trajectory.events.clear();
for (EventMarker event : events) {
if (event.timestamp >= units::second_t{0} || event.event.size() == 0) {
trajectory.events.push_back(event);
}
}
}
Loading