From: Pedro Alves <palves@redhat.com>
To: Philippe Waroquiers <philippe.waroquiers@skynet.be>,
gdb-patches@sourceware.org
Subject: Re: [RFAv2 4/6] Implement | (pipe) command.
Date: Fri, 03 May 2019 18:59:00 -0000 [thread overview]
Message-ID: <d03227b1-1b6f-1eb6-ae7e-e0511dce040f@redhat.com> (raw)
In-Reply-To: <20190426201108.7489-5-philippe.waroquiers@skynet.be>
On 4/26/19 9:11 PM, Philippe Waroquiers wrote:
> The pipe command allows to run a GDB command, and pipe its output
> to a shell command:
> (gdb) help pipe
> Send the output of a gdb command to a shell command.
> Usage: pipe [COMMAND] | SHELL_COMMAND
> Usage: | [COMMAND] | SHELL_COMMAND
> Usage: pipe -dX COMMAND X SHELL_COMMAND
> Usage: | -dX COMMAND X SHELL_COMMAND
> Executes COMMAND and sends its output to SHELL_COMMAND.
> If COMMAND contains a | character, the option -dX indicates
> to use the character X to separate COMMAND from SHELL_COMMAND.
> With no COMMAND, repeat the last executed command
> and send its output to SHELL_COMMAND.
> (gdb)
I think that making "-dX" a single character is a mistake. I'd rather
make that "-d STRING", so you can use use a string that is much less
likely to conflict. Like bash herestrings. So a user would be able
to do:
pipe -d XXXYYYXXX $command | $shell_command
I also think "-dX" without a space in between is very non-gdb-ish.
In gdb, you kind of either have "-OPT X", or "/OX", which is kind of
double "--" vs "-" with getopt, except with different leading
tokens.
>
> For example:
> (gdb) pipe print some_data_structure | grep -B3 -A3 something
>
> The pipe character is defined as an alias for pipe command, so that
> the above can be typed as:
> (gdb) | print some_data_structure | grep -B3 -A3 something
>
I get that "it makes sense", but do you see yourself using the "|" command
in preference to "pipe"? "pipe" can be typed as "pi", which is two
key strokes as well. Kind of wondering whether the character could be
saved for something else in the future. I don't have a use in mind,
just thinking out loud.
> If no GDB COMMAND is given, then the previous command is relaunched,
> and its output is sent to the given SHELL_COMMAND.
>
> + command = skip_spaces (command);
> + std::string gdb_cmd (command, shell_command - command);
> +
> + if (gdb_cmd.empty ())
> + {
> + repeat_previous ();
> + gdb_cmd = skip_spaces (get_saved_command_line ());
> + if (gdb_cmd.empty ())
> + error (_("No previous command to relaunch"));
> + }
> +
> + shell_command++; /* skip the separator. */
Uppercase "Skip".
> + shell_command = skip_spaces (shell_command);
> + if (*shell_command == 0)
if (*shell_command == '\0')
> + {
> + if (separator == '|')
I don't think this check is 100% right, considering that you could do:
(gdb) pipe -d| SHELL_COMMAND
I.e., what you want to check is whether a separate was explicitly specified.
> + error (_("Missing SHELL_COMMAND in \"| [COMMAND] | SHELL_COMMAND\""));
> + else
> + error (_("Missing SHELL_COMMAND in "
> + "\"| -d%c COMMAND %c SHELL_COMMAND\""),
> + separator, separator);
Or instead of making this dynamic, just print something like:
error (_("Missing SHELL_COMMAND.\n"
"Usage: \"| [-c SEP] [COMMAND] | SHELL_COMMAND\""));
> + }
> +
> + FILE *to_shell_command = popen (shell_command, "w");
> +
> + if (to_shell_command == NULL)
> + error (_("Error launching \"%s\""), shell_command);
> +
> + try
> + {
> + stdio_file pipe_file (to_shell_command);
> +
> + execute_command_to_ui_file (&pipe_file, gdb_cmd.c_str (), from_tty);
> + }
> + catch (const gdb_exception_error &ex)
> + {
> + pclose (to_shell_command);
> + throw;
> + }
> +
> + int shell_command_status = pclose (to_shell_command);
> +
> + if (shell_command_status < 0)
> + error (_("shell command \"%s\" errno %s"), shell_command,
> + safe_strerror (errno));
> + if (shell_command_status > 0)
> + {
> + if (WIFEXITED (shell_command_status))
> + warning (_("shell command \"%s\" exit status %d"), shell_command,
> + WEXITSTATUS (shell_command_status));
> + else if (WIFSIGNALED (shell_command_status))
> + warning (_("shell command \"%s\" exit with signal %d"), shell_command,
> + WTERMSIG (shell_command_status));
> + else
> + warning (_("shell command \"%s\" status %d"), shell_command,
> + shell_command_status);
> + }
Is there a reason this isn't using the pex routines?
Thanks,
Pedro Alves
next prev parent reply other threads:[~2019-05-03 18:59 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-26 20:11 [RFAv2 0/6] " Philippe Waroquiers
2019-04-26 20:11 ` [RFAv2 2/6] Improve process exit status macros on MinGW Philippe Waroquiers
2019-04-26 20:11 ` [RFAv2 6/6] NEWS and documentation for | (pipe) command Philippe Waroquiers
2019-04-27 7:08 ` Eli Zaretskii
2019-04-26 20:11 ` [RFAv2 5/6] Test the " Philippe Waroquiers
2019-04-26 20:11 ` [RFAv2 1/6] Add previous_saved_command_line to allow a command to repeat a previous command Philippe Waroquiers
2019-04-26 20:11 ` [RFAv2 3/6] Add function execute_command_to_ui_file Philippe Waroquiers
2019-04-26 20:11 ` [RFAv2 4/6] Implement | (pipe) command Philippe Waroquiers
2019-05-03 18:59 ` Pedro Alves [this message]
2019-05-04 6:24 ` Philippe Waroquiers
2019-05-27 13:12 ` Pedro Alves
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d03227b1-1b6f-1eb6-ae7e-e0511dce040f@redhat.com \
--to=palves@redhat.com \
--cc=gdb-patches@sourceware.org \
--cc=philippe.waroquiers@skynet.be \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).