linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Steven Rostedt <rostedt@goodmis.org>
To: "Yordan Karadzhov (VMware)" <y.karadz@gmail.com>
Cc: linux-trace-devel@vger.kernel.org
Subject: Re: [RFC PATCH] libtraceevent: Add tep_print_selected_fields()
Date: Mon, 2 Aug 2021 12:29:33 -0400	[thread overview]
Message-ID: <20210802122933.1873b6f8@oasis.local.home> (raw)
In-Reply-To: <20210802112714.67631-1-y.karadz@gmail.com>

On Mon,  2 Aug 2021 14:27:14 +0300
"Yordan Karadzhov (VMware)" <y.karadz@gmail.com> wrote:

> The new method can print only a subset of the unique data fields of
> the trace event. The print format is derived from the parsing tokens
> (tep_print_parse objects) of the event. As a byproduct of this change
> the existing method tep_print_fields() gets upgraded to use the
> formats provided by the tokens.

Why add a new API? Just fix tep_print_field().

> 
> Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com>
> ---
>  src/event-parse.c | 87 ++++++++++++++++++++++++++++++++++++++++++-----
>  src/event-parse.h |  3 ++
>  2 files changed, 81 insertions(+), 9 deletions(-)
> 
> diff --git a/src/event-parse.c b/src/event-parse.c
> index f42ae38..7302f3d 100644
> --- a/src/event-parse.c
> +++ b/src/event-parse.c
> @@ -3585,6 +3585,8 @@ tep_find_field(struct tep_event *event, const char *name)
>  	return format;
>  }
>  
> +
> +

Spurious newlines?

>  /**
>   * tep_find_any_field - find any field by name
>   * @event: handle for the event
> @@ -5333,6 +5335,19 @@ static int is_printable_array(char *p, unsigned int len)
>  	return 1;
>  }
>  
> +static void dynamic_offset(struct tep_handle *tep,
> +			   struct tep_format_field *field,
> +			   void *data,
> +			   unsigned int *offset,
> +			   unsigned int *len)
> +{
> +	unsigned long long val;
> +
> +	val = tep_read_number(tep, data + field->offset, field->size);
> +	*offset = val & SHRT_MAX;

Don't use SHRT_MAX. Although it is the same, there's no connection
of it being a short number (it only matches by coincidence), and I
don't want to add any assumptions that this is a short. It's 16 bits,
and that's all it is. The fact that a short is also 16 bits is just a
coincidence ;-)

> +	*len = val >> 16;

If anything, we should define:

#define TEP_OFFSET_MASK		0xffff
#define TEP_LEN_SHIFT		16

and then we can:

	*offset = val & TEP_OFFSET_MASK;
	*len = val >> TEP_LEN_SHIFT;

Which would make it much easier to read and document what it actually
is.

> +}
> +

Also, the above should be in a separate cleanup patch that that should
remove all the open coded conversions.

>  void tep_print_field(struct trace_seq *s, void *data,
>  		     struct tep_format_field *field)
>  {
> @@ -5343,12 +5358,9 @@ void tep_print_field(struct trace_seq *s, void *data,
>  	if (field->flags & TEP_FIELD_IS_ARRAY) {
>  		offset = field->offset;
>  		len = field->size;
> -		if (field->flags & TEP_FIELD_IS_DYNAMIC) {
> -			val = tep_read_number(tep, data + offset, len);
> -			offset = val;
> -			len = offset >> 16;
> -			offset &= 0xffff;
> -		}
> +		if (field->flags & TEP_FIELD_IS_DYNAMIC)
> +			dynamic_offset(tep, field, data, &offset, &len);
> +
>  		if (field->flags & TEP_FIELD_IS_STRING &&
>  		    is_printable_array(data + offset, len)) {
>  			trace_seq_printf(s, "%s", (char *)data + offset);
> @@ -5398,19 +5410,76 @@ void tep_print_field(struct trace_seq *s, void *data,
>  	}
>  }
>  

What I was talking about is to change tep_print_field() to do something like:

Take the current tep_print_field() and turn it into static _tep_print_field().

 [ Not even compiled tested ]

void tep_print_field(struct trace_seq *s, void *data,
		     struct tep_format_field *field)
{
	struct tep_event = field->event;
	struct tep_print_parse = event->print_fmt.print_cache;
	struct tep_handle *tep = event->tep;
	unsigned int offset, len;

	if (event->flags & TEP_EVENT_FL_FAILED)
		goto out;

	if (field->flags & TEP_FIELD_IS_DYNAMIC)
		dynamic_offset(tep, field, data, &offset, &len);

	for (;parse; parse = parse->next) {
		if (parse->type == PRINT_FMT_STRING)
			continue;
		if (parse->arg->type != TEP_PRINT_FIELD)
			continue;
		if (parse->arg->field.field->field != field)
			continue;

		print_parse_data(parse, s, data, size, event);
		return;
	}

 out:
	/* Not found */
	_tep_print_field(s, data, field);
}

That print_parse_data() would be extracted from print_event_cache()

static int print_parse_data(struct tep_print_parse *parse, struct trace_seq *s,
			    void *data, int size, struct tep_event *event)
{
	if (parse->len_as_arg)
		len_arg = eval_num_arg(data, size, event, parse->len_as_arg);
	switch (parse->type) {
	case PRINT_FMT_ARG_DIGIT:
		print_arg_number(s, parse->format,
				parse->len_as_arg ? len_arg : -1, data,
				 size, parse->ls, event, parse->arg);
		break;
	case PRINT_FMT_ARG_POINTER:
		print_arg_pointer(s, parse->format,
				  parse->len_as_arg ? len_arg : 1,
				  data, size, event, parse->arg);
		break;
	case PRINT_FMT_ARG_STRING:
		print_arg_string(s, parse->format,
				 parse->len_as_arg ? len_arg : -1,
				 data, size, event, parse->arg);
		break;
	case PRINT_FMT_STRING:
	default:
		trace_seq_printf(s, "%s", parse->format);
		/* Return 1 on non field */
		return 1;
	}
	/* Return 0 on field being processed */
	return 0;
}


static void print_event_cache(struct tep_print_parse *parse, struct trace_seq *s,
			      void *data, int size, struct tep_event *event)
{
	int len_arg;

	while (parse) {
		parse = parse->next;
		parse_parse_data(parse, s, data, size, event);
	}
}


> -void tep_print_fields(struct trace_seq *s, void *data,
> -		      int size __maybe_unused, struct tep_event *event)
> +static struct tep_print_parse *parse_format_next(struct tep_print_parse *parse)
> +{
> +	while (parse) {
> +		if (strncmp(parse->format, "%", 1) == 0)
> +			break;
> +
> +		parse = parse->next;
> +	}
> +
> +	return parse;
> +}
> +
> +static void tep_print_fmt_field(struct trace_seq *s, void *data,
> +				const char *format,
> +				struct tep_format_field *field)
> +{
> +	struct tep_handle *tep = field->event->tep;
> +	unsigned int len, offset;
> +	unsigned long long val;
> +
> +	if (field->flags & TEP_FIELD_IS_DYNAMIC) {
> +		dynamic_offset(tep, field, data, &offset, &len);
> +		if (len)
> +			trace_seq_printf(s, format, (char *)data + offset);
> +		else
> +			trace_seq_printf(s, format, "(nil)");
> +	} else {
> +		val = tep_read_number(tep, data + field->offset, field->size);
> +		trace_seq_printf(s, format, val);
> +	}
> +}
> +
> +void tep_print_selected_fields(struct trace_seq *s, void *data,
> +			       struct tep_event *event,
> +			       int ignore_mask)
>  {
>  	struct tep_format_field *field;
> +	struct tep_print_parse *parse;
> +	unsigned int len;
> +	int field_mask = 1;
>  
> +	parse = event->print_fmt.print_cache;
>  	field = event->format.fields;
>  	while (field) {
> +		parse = parse_format_next(parse);
> +
> +		if (field_mask & ignore_mask)
> +			goto next;
> +
>  		trace_seq_printf(s, " %s=", field->name);
> -		tep_print_field(s, data, field);
> +
> +		len = strlen(parse->format);
> +		if (len > 0 && parse->format[len - 1] == 'x')
> +			trace_seq_printf(s, "0x");
> +
> +		tep_print_fmt_field(s, data, parse->format, field);
> +
> + next:
>  		field = field->next;
> +		parse = parse->next;
> +		field_mask *= 2;
>  	}
>  }
>  
> +void tep_print_fields(struct trace_seq *s, void *data,
> +		      int size __maybe_unused, struct tep_event *event)
> +{
> +	tep_print_selected_fields(s, data, event, 0);
> +}
> +
>  static int print_function(struct trace_seq *s, const char *format,
>  			  void *data, int size, struct tep_event *event,
>  			  struct tep_print_arg *arg)
> diff --git a/src/event-parse.h b/src/event-parse.h
> index d4a876f..fe0fbf4 100644
> --- a/src/event-parse.h
> +++ b/src/event-parse.h
> @@ -547,6 +547,9 @@ void tep_print_field(struct trace_seq *s, void *data,
>  		     struct tep_format_field *field);
>  void tep_print_fields(struct trace_seq *s, void *data,
>  		      int size __maybe_unused, struct tep_event *event);
> +void tep_print_selected_fields(struct trace_seq *s, void *data,
> +			       struct tep_event *event,
> +			       int ignore_mask);

Again, I'm not so big on the selected fields version. Just call
tep_print_field for each section, as it just adds to the trace_seq()
which was created for this purpose (to avoid having to enter a list).


-- Steve


>  int tep_strerror(struct tep_handle *tep, enum tep_errno errnum,
>  		 char *buf, size_t buflen);
>  


  parent reply	other threads:[~2021-08-02 16:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-02 11:27 [RFC PATCH] libtraceevent: Add tep_print_selected_fields() Yordan Karadzhov (VMware)
2021-08-02 11:39 ` Yordan Karadzhov
2021-08-02 16:30   ` Steven Rostedt
2021-08-02 16:29 ` Steven Rostedt [this message]
2021-08-03 12:42   ` Yordan Karadzhov
2021-08-03 13:48     ` Steven Rostedt

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=20210802122933.1873b6f8@oasis.local.home \
    --to=rostedt@goodmis.org \
    --cc=linux-trace-devel@vger.kernel.org \
    --cc=y.karadz@gmail.com \
    /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 NNTP newsgroup(s).