-
Notifications
You must be signed in to change notification settings - Fork 62
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 network code #902
base: Orbiter2016
Are you sure you want to change the base?
Conversation
You're using WIN32 specific functions in your new class. Maybe it's an idea to make this a base class and subclass a WIN32 and (in the future) Linux network implementation? Then we pick a subclass based on the platform NASSP is compiled for. |
I try to stay away from OO garbage when possible. Inheritance in not required here since the choice would be known at compile time (I also did it "pimpl" style as a test but it was way overkill IMHO). I think I can still factorise some error handling but this is trivial. The important thing is the interface. |
Hum, interestingly I did a profiling run and with time acceleration, the accept call is one of the most time consuming (up to 30% at 100x). Adding a basic rate limiter seems to help a lot. Is it something worth investigating? |
accept() is for looking for new TCP connections and therefore should be called at a real-time-relative rate, not a simulation-time-relative rate.
Telemetry should be sent at simulation-time-relative rate though - If you change that, it will change the HBR/LBR data frame rate and break what I am working on now.
… On Feb 5, 2023, at 9:55 AM, TheGondos ***@***.***> wrote:
Hum, interestingly I did a profiling run and with time acceleration, the accept call is one of the most time consuming (up to 30% at 100x). Adding a basic rate limiter seems to help a lot. Is it something worth investigating?
—
Reply to this email directly, view it on GitHub <#902 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ADGYAVBPZJVPT5RJ2SEVUT3WV7EN3ANCNFSM6AAAAAAUI56GRU>.
You are receiving this because you are subscribed to this thread.
|
accept is called in perform_io (i.e. in sim-time) and so quite a lot when time acceleration is on. I will do some more profiling and see if it is worth the hassle. Edit :
Given the crazy oscillations I get at 100x, I don't think it will be a valid usecase for a while. I think I will leave it as-is for the time being. |
This commit moves all the platform specific network code inside two new source files "src_sys/socket.h" and "src_sys/socket.cpp".
It introduces two classes :
It is tailored to NASSP and provides only the bare minimum required for the current needs.
Tested using the LMTelemetryClient2 client to "download" telemetry from the LEM and uplink DSKY commands.
I'm not savvy enough with the MFDs to correctly validate the CSM side of things tough.