From: Ville Syrjala <ville.syrjala@linux.intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t 1/3] lib/vec: Add igt_vec
Date: Thu, 30 Jan 2020 17:12:27 +0200 [thread overview]
Message-ID: <20200130151229.984-1-ville.syrjala@linux.intel.com> (raw)
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Add a small std::vector lookalike which grows as needed.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/Makefile.sources | 2 ++
lib/igt_vec.c | 86 ++++++++++++++++++++++++++++++++++++++++++++
lib/igt_vec.h | 40 +++++++++++++++++++++
lib/meson.build | 1 +
4 files changed, 129 insertions(+)
create mode 100644 lib/igt_vec.c
create mode 100644 lib/igt_vec.h
diff --git a/lib/Makefile.sources b/lib/Makefile.sources
index 631d6714e5ce..3e573f267e15 100644
--- a/lib/Makefile.sources
+++ b/lib/Makefile.sources
@@ -62,6 +62,8 @@ lib_source_list = \
igt_sysrq.h \
igt_x86.h \
igt_x86.c \
+ igt_vec.c \
+ igt_vec.h \
igt_vgem.c \
igt_vgem.h \
instdone.c \
diff --git a/lib/igt_vec.c b/lib/igt_vec.c
new file mode 100644
index 000000000000..dc4a6172fc8d
--- /dev/null
+++ b/lib/igt_vec.c
@@ -0,0 +1,86 @@
+/*
+ * Copyright © 2020 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#include <stdlib.h>
+#include <string.h>
+
+#include "igt_core.h"
+#include "igt_vec.h"
+
+void igt_vec_init(struct igt_vec *vec, int elem_size)
+{
+ memset(vec, 0, sizeof(*vec));
+ vec->elem_size = elem_size;
+}
+
+void igt_vec_fini(struct igt_vec *vec)
+{
+ free(vec->elems);
+ memset(vec, 0, sizeof(*vec));
+}
+
+void *igt_vec_elem(const struct igt_vec *vec, int idx)
+{
+ igt_assert(idx < vec->len);
+
+ return vec->elems + idx * vec->elem_size;
+}
+
+void igt_vec_push(struct igt_vec *vec, void *elem)
+{
+ if (vec->len >= vec->size) {
+ vec->size = vec->size ? vec->size * 2 : 8;
+ vec->elems = realloc(vec->elems, vec->size * vec->elem_size);
+ igt_assert(vec->elems);
+ }
+
+ vec->len++;
+ memcpy(igt_vec_elem(vec, vec->len - 1), elem, vec->elem_size);
+}
+
+int igt_vec_length(const struct igt_vec *vec)
+{
+ return vec->len;
+}
+
+int igt_vec_index(const struct igt_vec *vec, void *elem)
+{
+ for (int i = 0; i < vec->len; i++) {
+ if (!memcmp(igt_vec_elem(vec, i), elem, vec->elem_size))
+ return i;
+ }
+
+ return -1;
+}
+
+void igt_vec_remove(struct igt_vec *vec, int idx)
+{
+ igt_assert(idx < vec->len);
+
+ if (idx < vec->len - 1)
+ memmove(igt_vec_elem(vec, idx),
+ igt_vec_elem(vec, idx + 1),
+ (vec->len - 1 - idx) * vec->elem_size);
+
+ vec->len--;
+}
diff --git a/lib/igt_vec.h b/lib/igt_vec.h
new file mode 100644
index 000000000000..de2549a45841
--- /dev/null
+++ b/lib/igt_vec.h
@@ -0,0 +1,40 @@
+/*
+ * Copyright © 2020 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#ifndef __IGT_VEC_H__
+#define __IGT_VEC_H__
+
+struct igt_vec {
+ void *elems;
+ int elem_size, size, len;
+};
+
+void igt_vec_init(struct igt_vec *vec, int elem_size);
+void igt_vec_fini(struct igt_vec *vec);
+void igt_vec_push(struct igt_vec *vec, void *elem);
+int igt_vec_length(const struct igt_vec *vec);
+void *igt_vec_elem(const struct igt_vec *vec, int idx);
+int igt_vec_index(const struct igt_vec *vec, void *elem);
+void igt_vec_remove(struct igt_vec *vec, int idx);
+
+#endif /* __IGT_VEC_H__ */
diff --git a/lib/meson.build b/lib/meson.build
index d87546185ade..e87e5803610f 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -24,6 +24,7 @@ lib_sources = [
'igt_syncobj.c',
'igt_sysfs.c',
'igt_sysrq.c',
+ 'igt_vec.c',
'igt_vgem.c',
'igt_x86.c',
'instdone.c',
--
2.24.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next reply other threads:[~2020-01-30 15:12 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-30 15:12 Ville Syrjala [this message]
2020-01-30 15:12 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_kms: Add igt_reduce_format() Ville Syrjala
2020-01-30 15:38 ` Chris Wilson
2020-02-03 16:35 ` [igt-dev] [PATCH i-g-t v2 " Ville Syrjala
2020-01-30 15:12 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane_scaling: Don't test every pixel format Ville Syrjala
2020-01-30 15:40 ` Chris Wilson
2020-01-30 15:57 ` Ville Syrjälä
2020-01-30 15:31 ` [igt-dev] [PATCH i-g-t 1/3] lib/vec: Add igt_vec Chris Wilson
2020-01-30 15:54 ` Ville Syrjälä
2020-01-30 16:00 ` Chris Wilson
2020-01-30 16:10 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] " Patchwork
2020-02-02 4:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-02-03 16:34 ` [igt-dev] [PATCH i-g-t v2 1/3] " Ville Syrjala
2020-02-04 12:36 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/3] lib/vec: Add igt_vec (rev3) Patchwork
2020-02-06 10:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
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=20200130151229.984-1-ville.syrjala@linux.intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=igt-dev@lists.freedesktop.org \
/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