Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
Admin message
The migration is almost done, at least the rest should happen in the background. There are still a few technical difference between the old cluster and the new ones, and they are summarized in this issue. Please pay attention to the TL:DR at the end of the comment.
The main reason for omitting that function is because I dislike it and it should IMHO be deprecated :)
GstMessageType once was a flags type but that changed in 1.4 (see GST_MESSAGE_EXTENDED). For all new message types this function simply does not work, and I don't intend exposing GstMessageType as a flags type in the Rust bindings (because it's none anymore). I'd be fine with exposing it as an enum though.
Together with that you could implement Bus::pop() and the like as an iterator if you wanted, and do something like:
The function works just fine for extended types, just that you have to use GST_MESSAGE_EXTENDED in the flag mask rather than the specific type, and then you can switch/case/match on the specific type afterwards.
I don't think it's a good idea to expose this function in a different way in the bindings than it is in the C API, that's just confusing. Also, it's not useful with just a single enum and would inevitably lead to it being used wrongly.
The function works just fine for extended types, just that you have to use GST_MESSAGE_EXTENDED in the flag mask rather than the specific type, and then you can switch/case/match on the specific type afterwards.
Sure but that kind of defeats the point of filtering :)
I don't think it's a good idea to expose this function in a different way in the bindings than it is in the C API, that's just confusing.
That's also not what I'm proposing above. I wouldn't expose this function at all and let filtering (if wanted) be done with standard Rust tools: filtering an iterator (to be written) or a simple match statement.
Also, it's not useful with just a single enum and would inevitably lead to it being used wrongly.
Sure but that kind of defeats the point of filtering :)
Not really, because the way you use this function is in simple tests or command line applications where you check for EOS | ERROR or ASYNC_DONE | ERROR or somesuch. Anything non-trivial you use a message handler and a main loop anyway.
What do you mean?
It would encourage people to use it to check for EOS instead of EOS | ERROR, for example.
Not really, because the way you use this function is in simple tests or command line applications where you check for EOS | ERROR or ASYNC_DONE | ERROR or somesuch. Anything non-trivial you use a message handler and a main loop anyway.
or one could add a filtered variant that instead works on an array of types.
The main problem really is that we don't have a proper flags type anymore.
It would encourage people to use it to check for EOS instead of EOS | ERROR, for example.
Yeah I wouldn't add a function that only takes a single enum value. But considering your above concern, anything working with an array of types makes it even less likely to do this wrong. EOS would be a single value, just like EOS | ERROR, but with an array you would have to provide [Eos, Error] and it would be more obvious here that you probably want (and that you actually can) provide multiple values.