-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Error code framework #17719
base: master
Are you sure you want to change the base?
Error code framework #17719
Conversation
I like the approach, but I think it should be better defined. The defined error codes should be tied to specific functions. Can So if the error codes were tied to specific functions, the frontend wouldn't even have to do the whole setting to 0 and checking of the error code for calls that don't have error codes defined for them. And the usage would be more clear. I like that thought is being put into passing an error code the other way (from the frontend to the core) but it seems a bit vague. I assume there would need to be a In my mind it should just be a simple list of error codes, each strictly tied to one or more functions that either the core or the frontend does into the other side. That means it can be one of the
With that being said, I don't think a frontend or core should be allowed to add its own error codes like proposed here. What if the next libretro.h defines a new error code that just happens to match one some frontend or core ended up using on its own? It would be much easier to not allow that. A frontend can very well keep its own custom error states in its own data. And if we think this should be an option for custom cores interacting with specific custom frontends, then maybe that is where a fixed range could be used instead, i.e. a promise that libretro.h will never define codes in that range. |
Thanks for the thoughts!
This is reasonable, but would introduce more complexity. I was considering reserving part of the error code to indicate the function that was being invoked, but then considered it unnecessary, as frontend knows already what was invoked. But, there is a catch: the core is not required to call the environment callback from the same thread that was invoked. So the code could set this environment variable any time, if some threads were spawned. (Which also means that zeroing the error code before calling is potentially losing data, hmm.) The clean solution would be a return value in all cases, but that is an API breakage.
Uhh, I think I was unclear on that. The starting point was: https://youtu.be/yhlncKDNBeg?list=PLE-F1WiiFWN_l4JqehPtr7FG3sl2Sk4cY&t=1543 (I did not comment the slide deck in detail, some technical aspects of RA / libretro are not quite like as in the presentation.)
It makes the code range a bit more fragmented, but maybe it can be formulated like that. If I had to guess, >50% of error situations happens in retro_init (which I may have omitted from this PR...) or load_content, a good deal more in retro_run, and <10% for all others (serialize, unserialize, cheats...)
Core specific parts are the lower 32 bits, and it is entirely up to the core, not coordinated. Good point about different frontends, probably frontend specific ranges could also be reserved in addition to common ones. |
Gotcha, sorry about my misunderstanding where I thought that this is also supposed to be for a core to learn about errors in the frontend. Just core to frontend makes more sense.
As far as I'm aware the libretro API gives near zero warranties towards using any API anywhere but on the main thread, so I don't think this needs much consideration for this API now.
This proposal is starting to loose my support 😅 Who the heck likes to get error codes thrown at their face? If you're a user, anything is better than an error code. I'd take a crude abbreviation or text in a language I can't even read over a numbered code any day! I thought the plan for this was to present nice error messages in a case where a core doesn't want to go the extra mile to use
What if there was a way for the core to pass both a code (which should be from a pre-defined list) and a text message, then the frontend could show the localized generic error message for that code and a "[ More Info ]" button which would show the text message. Or the frontend could FIFO buffer the last few log messages and present them to the user. I really think the focus should be on providing information where a user ends up in the best position to help themselves. This isn't some big corporation software with a well staffed support team or some consumer product too scared of showing any technical details. |
Good thoughts, exactly why I wanted to open a discussion. I think having a list of code ranges and associated frontend explanations is possible, it does not need to be restricted to a pure numerical value. But it will not cover each case, and a code is searchable, giving a better opportunity for self-support (via a favorite search engine) and that information could be more detailed and more up-to-date than what we can hardcode. (It can also be completely wrong, ofc.) Providing extra text along with the error code: hmm, probably doable (not localized, though). But the error presentation that is achievable with little effort, would be similar to the menu help screen, which is currently limited to 512 characters or thereabouts, so it would not be that much more information. |
6e1a0b0
to
02a7574
Compare
Updated a bit, message can be added now, and all core calls should have the code check, luckily it is all through An example is implemented in Remote Retropad which can be triggered by setting input device type.
|
Alright, so in the current format it can actually do something meaningful. A few more parts added to Remote Retropad, more codes can be tested by either enabling the code behind Leaving it in draft for 1-2 days, if no further comments, I plan to set it in ready and from my point of view it can go forward. |
As one of the feedbacks from the RetroArch UI Improvements series put together by Nic Watt, the ways RetroArch (or any other frontend) could indicate errors about the cores, is quite limited. The Libretro API functions provide little feedback opportunity for the cores to indicate problems. By introducing a new environment call, the possibility will be available for the cores to indicate errors at any point, using a code that contains a defined part and a core specific part, as well as a short textual message. RetroArch will display such errors as on-screen messages (widgets), with the appropriate message class. Localized explanation of the error codes can be maintained. Example for the core side added to Remote Retropad, can be seen by trying to change input device type.
Rebased and updated first comment, from my side it is ready. |
Description
As one of the feedbacks from the RetroArch UI Improvements series put together by Nic Watt, the ways RetroArch (or any other frontend) could indicate errors about the cores, is quite limited. The Libretro API functions provide little feedback opportunity for the cores to indicate problems.
By introducing a new environment call, the possibility will be available across the board.
Error codes and messages
Error code is a 32-bit uint. Upper 16 bits are for the frontend, lower 16 bits are reserved for the core. Core codes are not planned to be standardized.
The error code enum list is definitely not complete, and not even mandatory, but by defining a few error categories, the way is open for a textual feedback to be given, even localized. In the future, frontend could also use error codes for purposes not related to cores.
Specific error codes have associated messages. Displayed message priority in the current implementation:
Environment call
The environment call is not special in any way. It stores one (and only one) error code and a message, that is zeroed before each Libretro API call going to the core. If the error code is set during any such call (run, serialize, reset...), it will be logged and displayed as a widget, according to the severity:
If there are multiple codes set during one API call, the last one will be reported.
Core side
Example is added to Remote Retropad, can be triggered by trying to set input device type.
Possible future improvements