From: Steven Rostedt <rostedt@goodmis.org>
To: linux-trace-devel@vger.kernel.org
Cc: Ross Zwisler <zwisler@google.com>,
Stevie Alvarez <stevie.6strings@gmail.com>,
"Steven Rostedt (Google)" <rostedt@goodmis.org>
Subject: [PATCH v4 11/20] libtraceeval histogram: Label and check keys and values
Date: Thu, 17 Aug 2023 16:45:19 -0400 [thread overview]
Message-ID: <20230817204528.114577-12-rostedt@goodmis.org> (raw)
In-Reply-To: <20230817204528.114577-1-rostedt@goodmis.org>
From: "Steven Rostedt (Google)" <rostedt@goodmis.org>
When initializing the traceeval descriptor, mark each key and value as
their type via the flags (keys get TRACEEVAL_FL_KEY and values get
TRACEEVAL_FL_VALUE) as well as adding the index of that key/value type of
the key/value data it represents. This will be used by the iterators for
sorting. The iterator will point to the key/value type and use that
information to know which key/value data to sort with.
The keys and values passed in will also be updated to have their flags
match the proper key/value type as well as the index. This will be useful
for traceeval_stat() that will take the type as a parameter, and use it to
figure out fast where the data is that is to be looked up.
All pointer and dynamic types in keys must have both a cmp and hash
function defined, otherwise they cannot be indexed or hashed. Add a check
to make sure all key types of pointer and dynamic have those functions.
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
include/traceeval-hist.h | 11 +++++---
src/histograms.c | 60 ++++++++++++++++++++++++++++++++++++++--
2 files changed, 64 insertions(+), 7 deletions(-)
diff --git a/include/traceeval-hist.h b/include/traceeval-hist.h
index 1edda56a712f..f80d039baa61 100644
--- a/include/traceeval-hist.h
+++ b/include/traceeval-hist.h
@@ -32,8 +32,10 @@ enum traceeval_data_type {
/* Statistics specification flags */
enum traceeval_flags {
- TRACEEVAL_FL_SIGNED = (1 << 0),
- TRACEEVAL_FL_TIMESTAMP = (1 << 1),
+ TRACEEVAL_FL_KEY = (1 << 0),
+ TRACEEVAL_FL_VALUE = (1 << 1),
+ TRACEEVAL_FL_SIGNED = (1 << 2),
+ TRACEEVAL_FL_TIMESTAMP = (1 << 3),
};
/*
@@ -120,6 +122,7 @@ struct traceeval_type {
char *name;
enum traceeval_data_type type;
size_t flags;
+ size_t index;
size_t id;
traceeval_data_release_fn release;
traceeval_data_cmp_fn cmp;
@@ -142,8 +145,8 @@ struct traceeval;
/* Histogram interfaces */
-struct traceeval *traceeval_init(const struct traceeval_type *keys,
- const struct traceeval_type *vals);
+struct traceeval *traceeval_init(struct traceeval_type *keys,
+ struct traceeval_type *vals);
void traceeval_release(struct traceeval *teval);
diff --git a/src/histograms.c b/src/histograms.c
index b1c6bb4fc990..4b4b559964d1 100644
--- a/src/histograms.c
+++ b/src/histograms.c
@@ -202,6 +202,44 @@ fail:
return -1;
}
+static int check_keys(struct traceeval_type *keys)
+{
+ for (int i = 0; keys[i].type != TRACEEVAL_TYPE_NONE; i++) {
+ /* Define this as a key */
+ keys[i].flags |= TRACEEVAL_FL_KEY;
+ keys[i].flags &= ~TRACEEVAL_FL_VALUE;
+
+ keys[i].index = i;
+
+ switch (keys[i].type) {
+ case TRACEEVAL_TYPE_POINTER:
+ case TRACEEVAL_TYPE_DYNAMIC:
+ /*
+ * Key pointers and dynamic types must have a
+ * cmp and hash function
+ */
+ if (!keys[i].cmp || !keys[i].hash)
+ return -1;
+ break;
+ default:
+ break;
+ }
+ }
+ return 0;
+}
+
+static int check_vals(struct traceeval_type *vals)
+{
+ for (int i = 0; vals[i].type != TRACEEVAL_TYPE_NONE; i++) {
+ /* Define this as a value */
+ vals[i].flags |= TRACEEVAL_FL_VALUE;
+ vals[i].flags &= ~TRACEEVAL_FL_KEY;
+
+ vals[i].index = i;
+ }
+ return 0;
+}
+
/*
* traceeval_init - create a traceeval descriptor
* @keys: Defines the keys to differentiate traceeval entries
@@ -212,7 +250,12 @@ fail:
* the "histogram". Note, both the @keys and @vals array must end with:
* { .type = TRACEEVAL_TYPE_NONE }.
*
- * The @keys and @vals passed in are copied for internal use.
+ * The @keys and @vals passed in are copied for internal use, but they are
+ * still modified to add the flags to denote their type (key or value) as
+ * well as the index into the keys or vals array respectively. This is
+ * to help speed up other operations that may need to know the index of
+ * the given type, and remove the burden from the user to make sure they
+ * are added.
*
* For any member of @keys or @vals that isn't of type TRACEEVAL_TYPE_NONE,
* the name field must be a null-terminated string. Members of type
@@ -226,11 +269,12 @@ fail:
*
* Returns the descriptor on success, or NULL on error.
*/
-struct traceeval *traceeval_init(const struct traceeval_type *keys,
- const struct traceeval_type *vals)
+struct traceeval *traceeval_init(struct traceeval_type *keys,
+ struct traceeval_type *vals)
{
struct traceeval *teval;
char *err_msg;
+ int ret;
if (!keys)
return NULL;
@@ -247,6 +291,16 @@ struct traceeval *traceeval_init(const struct traceeval_type *keys,
goto fail;
}
+ ret = check_keys(keys);
+ if (ret < 0)
+ goto fail_release;
+
+ if (vals) {
+ ret = check_vals(vals);
+ if (ret < 0)
+ goto fail_release;
+ }
+
/* alloc key types */
teval->nr_key_types = type_alloc(keys, &teval->key_types);
if (teval->nr_key_types <= 0) {
--
2.40.1
next prev parent reply other threads:[~2023-08-17 20:46 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-17 20:45 [PATCH v4 00/20] libtraceeval histogram: Updates Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 01/20] libtraceeval histograms: Fix traceeval_results_release() error message Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 02/20] libtraceeval: Reverse params of copy_traceeval_data() Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 03/20] libtraceeval: Rename copy_traceeval_data_set() to dup_traceeval_data() Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 04/20] libtraceeval: Add sample task-eval program Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 05/20] libtraceeval hist: Add pointer and const string types Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 06/20] libtraceeval histogram: Have cmp and release functions be generic Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 07/20] libtraceeval histograms: Add traceeval struct to compare function Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 08/20] libtraceeval histogram: Remove comparing of traceeval and types Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 09/20] libtraceeval: Convert hist array into a hash table Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 10/20] libtraceeval histograms: Move hash functions into their own file Steven Rostedt
2023-08-17 20:45 ` Steven Rostedt [this message]
2023-08-17 20:45 ` [PATCH v4 12/20] libtraceeval histogram: Add updating of stats Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 13/20] libtraceeval histogram: Add iterator APIs Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 14/20] libtraceeval histogram: Add data copy callback Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 15/20] libtraceeval histogram: Do the release on updates Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 16/20] libtraceeval histogram: Use stack for old copy in update Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 17/20] libtraceeval histogram: Add traceeval_iterator_sort_custom() Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 18/20] libtraceeval histogram: Have traceeval_query() just give the pointer to results Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 19/20] libtraceeval samples: Update task-eval to use the histogram logic Steven Rostedt
2023-08-17 20:45 ` [PATCH v4 20/20] libtraceeval: Add traceeval_remove() Steven Rostedt
2023-08-17 20:48 ` [PATCH v4 00/20] libtraceeval histogram: Updates Steven Rostedt
2023-08-17 20:59 ` Ross Zwisler
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=20230817204528.114577-12-rostedt@goodmis.org \
--to=rostedt@goodmis.org \
--cc=linux-trace-devel@vger.kernel.org \
--cc=stevie.6strings@gmail.com \
--cc=zwisler@google.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).