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

Refactor tools/replay: Eliminate Qt Dependency #33813

Open
1 of 6 tasks
deanlee opened this issue Oct 18, 2024 · 0 comments · May be fixed by #33812
Open
1 of 6 tasks

Refactor tools/replay: Eliminate Qt Dependency #33813

deanlee opened this issue Oct 18, 2024 · 0 comments · May be fixed by #33812

Comments

@deanlee
Copy link
Contributor

deanlee commented Oct 18, 2024

Refactors the tools/replay to eliminate its dependency on the Qt framework, making the tool lighter and more portable.

  • replay: replace QCommandLineParser with getopt for command-line argument parsing. #33812
  • Replace HttpRequest with a libcurl implementation to load route info from https://api.commadotai.com/.
  • Remove the use of Qt's signal/slot mechanism and replace it with standard C++ function callbacks.
  • Replace QThread with std::thread to manage threading in a platform-independent way.
  • Replace Qt-specific data types (QString, QVector, etc.) with standard C++ data types (std::string, std::vector, etc.).
  • Update Cabana to use callback functions from Replay instead of relying on Replay's signals.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant