-
Notifications
You must be signed in to change notification settings - Fork 78
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
Discussion: Improving the API #78
Comments
The interest in discussing this seems to be on a moderate level at best. I released some of the proposed changes in an independent crate on crates.io. I would still be happy to have this discussion though, as there are quite some big compromises on my crate due to some limitation of the mavlink library. |
Hi @wucke13, sorry for not being able to help much about this matter, but I was planning to create an actor based communication method over mspc, that appears the correct way to accomplish it. Don't you want to create a PR to add the async functionality in this repository ? |
Yeah, I'm still happy to merge my code. However, now that I released to an independent crate, I would like to use the opportunity to refine things more. I wan to add some convenience functions (like send message a, until the first message b arrives) for dealing with unreliable communications. My strongest desire which AFAIK can not be solved outside of this crate would be an implementation of
|
From what I know this is not possible directly and a generic tryfrom will need to be implemented, and I don't see a reason for this. |
Well, here is one: This is necessary to offer a sane API where the user receives filtered messages (e.g. only one message type). If I and a stream both now that said stream will only yield
Why is that? It's not possible in a generic way, because there is (IMHO major) problem in the I thought one way would be this:
Do you see a problem with this approach, implementation wise? I'm sure there is more elegant ways of doing it, but I did not think of any so far. Also, whats the point with channels when going the async route? I don't understand why you would be doing both. At least the discussion started now 😄 |
@patrickelectric Ping Also: if this helps, I'm open to hop on a virtual meeting to discuss this issue further. However that's just an idea. |
Hi @wucke13, sorry I'm in a complicate period in the last days, will try to catch-up with this discussion when possible. |
@patrickelectric As stated before, I'm open to any means of digital communication, at your choice. Until then: take your time and good luck! |
Hi, I would like to start a discussion about improving the MAVLink API. I frequently come across situations which are (at least with my knowledge) not easy to solve using this library.
Subscribing to a specific message
Often I want to receive a certain message somewhere in the code. This is a key feature in order to not have this one huge
match
statement where each and every message is processed. For this, it would be very nice to be able to subscribe to a message. I imagine an API like this:Obviously this would require that someone is calling spin regularly. Another less
no_std
friendly approach would beThis however bears a big problem. AFAIK there is no way to talk about the type of a mavlink message without creating an instance of it. This brings us to my next pain point:
Allow a message type to be specified, without an Instance of the message
Well there is the message id, but that is by no means type safe (and IMO nothing we should rely on in an API). And yes, there is
std::mem::discriminant
, however that does require one to construct a value. If I want to name the type ofMavMessage
, the best option so far seems to be this:Allow conversion of a
MavMessage
to one specific..._DATA
structI'm currently in the making of a nicer async API which operates on top of the
MavConnection
trait. AFAIK it is not possible to convert aMavMessage
into on specific data structure. This is not an issue if one doesn't know what message the nextrecv()
will yield. However, in my implementation I do know that. Consider the following example (which continues the last snippet):If I understand correctly, the issue is simple: There is no way of extracting data out of an enum instance without mentioning the variant which contains said data. Maybe its possible to add a method like this to
MavMessage
:Maybe it's also possible to exploitFor sure runtime reflections do work for this kind of stuff, but that would be a huge break in the API which will likely not pay off UX wise.Any
for the polymorphism needed in a generic receive function. A rough draft could be like this:Summary
I'm sure there is more room for improvement, but these are the points which have bitten me the most. My proposals are in no way ready and probably will even fail compilation, they solely are meant to be early drafts. Speaking of drafts, out of the need for my use cases I already implemented an
async
API wrapper forMavConnection
in the last couple of days. I would be very happy if it eventually find's it's way back in the this crate, behind a feature gate which is disabled per default maybe? Currently you can only have a look into it here. It isn't feature complete, but it already works!What do you think?
Is there a general desire to further refine the API?
Edit:
Some of my statements turned out to be questionable, thus I corrected them. Furthermore I added some more information and examples.
Edit 2:
I added some more information and again refine the examples.
The text was updated successfully, but these errors were encountered: