This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: cleanup mi error message handling


On Monday 31 March 2008 04:45:18 Nick Roberts wrote:
>  > The only thing from you I can find is:
>  > 
>  >   At other times duplicated error messages are desirable, e.g.,
>  > 
>  >   -exec-continue 
>  >   ^running
>  >   (gdb) 
>  >   &"The program is not being run.\n"
>  >   ^error,msg="The program is not being run."
>  > 
>  >   because the first goes to the console for the user to see, the second to
>  >   the frontend to be handled as appropriate.
>  > 
>  > You still did not say why showing the error message is console is desirable.
>  > If -exec-continue itself is now show in the console, the error message
>  > makes no sense. If -exec-continue is shown, then the error message is not
>  > necessary. Where the flaw in this logic.
> 
> I can't understand these sentences.  The command -exec-continue won't appear in
> the console but "The program is not being run." will.  

And what is the possible value of that message to the user? It does not correspond
to anything user has typed in, and it does not correspond to anything user sees.
It's just a message out of blue sky.

If we want the console to be truly useful, it should accept all commands from the user,
and print GDB responses, including errors, to those commands. Printing responses to
commands implicitly emitted by the frontend does not seem to be the purpose of
the console window.

> These `errors' and other 
> similar ones like "No stack." are reported through error () and are normal Gdb
> output for the user to see.  Currently the console can display such messages by
> reading LOG-STREAM-OUTPUT.
> 
> Other errors like:
> 
> (gdb) 
> -interpreter-exec
> ^error,msg="mi_cmd_interpreter_exec: Usage: -interpreter-exec interp command"
> (gdb)
> 
> would be due to a frontend error, so I think it would be probably be best to
> display them elsewhare, e.g., status bar.

No proposal to change the ^error is made.

> The only way for the frontend to distinguish between the two types of error is
> if the Gdb developer uses the appropriate mechanism, i.e. error () or
> mi_error_message in each case.
> 
> I wouldn't make any changes until a real problem is reported (not just Pedro
> tidying things up).

You make it sound as if code cleanup is something on N-th priority. I don't think
it's so, it's one of the most important things in current GDB, and it also allows
us to identify nonobvious behaviour, such as happened here.

> If a change has to be made I would suggest the one below. 
> However this would mean going through all the errors reported in MI to work out
> which ones need mi_error_message but currently use error (), e.g.,
> "mi_cmd_stack_list_locals: Usage: PRINT_VALUES".

> *** mi-main.c???31 Mar 2008 12:08:10 +1200??????1.110
> --- mi-main.c???31 Mar 2008 12:16:01 +1200??????
> *************** mi_execute_command (char *cmd, int from_
> *** 1260,1278 ****
> ? ?????? ?mi_parse_free (command);
> ? ?????? ?return;
> ? ??????}
> ! ? ? ? if (result.reason < 0)
> ! ??????{
> ! ?????? ?/* The command execution failed and error() was called
> ! ?????? ? ? somewhere. ?*/
> ! ?????? ?fputs_unfiltered (command->token, raw_stdout);
> ! ?????? ?fputs_unfiltered ("^error,msg=\"", raw_stdout);
> ! ?????? ?if (result.message == NULL)
> ! ?????? ? ?fputs_unfiltered ("unknown error", raw_stdout);
> ! ?????? ?else
> ! ?????? ? ? ?fputstr_unfiltered (result.message, '"', raw_stdout);
> ! ?????? ?fputs_unfiltered ("\"\n", raw_stdout);
> ! ?????? ?mi_out_rewind (uiout);
> ! ??????}
> ? ? ? ? mi_parse_free (command);
> ? ? ? }
> ?
> --- 1260,1266 ----
> ? ?????? ?mi_parse_free (command);
> ? ?????? ?return;
> ? ??????}
> !
> ? ? ? ? mi_parse_free (command);
> ? ? ? }
> Perhaps not quite this but with a ^done RESULT-RECORD too.

So, you are suggesting that if execution of MI command results in an call to 'error',
we respond with ^done? That does not appear right to me. Surely, an exception thrown
during processing of a command means we cannot finish that command, which should be
reported to the user.

- Volodya


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]