[gtk+/wip/otte/shader: 9/33] gtk: Add gtk-glsl binary
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/otte/shader: 9/33] gtk: Add gtk-glsl binary
- Date: Wed, 27 Sep 2017 01:44:45 +0000 (UTC)
commit 6ff1ccc34ed9ac454f5678d9ea8044761eb2e9fb
Author: Benjamin Otte <otte redhat com>
Date: Wed Sep 20 17:58:48 2017 +0200
gtk: Add gtk-glsl binary
That's supposed to become the command-line compiler.
So far all it does is parse and then dump as text again the provided
input file(s).
gsk/gskslnodeprivate.h | 3 +
gtk/glsl.c | 167 ++++++++++++++++++++++++++++++++++++++++++++++++
gtk/meson.build | 1 +
3 files changed, 171 insertions(+), 0 deletions(-)
---
diff --git a/gsk/gskslnodeprivate.h b/gsk/gskslnodeprivate.h
index e41b3a2..6df9bb6 100644
--- a/gsk/gskslnodeprivate.h
+++ b/gsk/gskslnodeprivate.h
@@ -41,12 +41,15 @@ struct _GskSlNodeClass {
gboolean (* is_constant) (GskSlNode *node);
};
+GDK_AVAILABLE_IN_3_92
GskSlNode * gsk_sl_node_new_program (GBytes *source,
GError **error);
GskSlNode * gsk_sl_node_ref (GskSlNode *node);
+GDK_AVAILABLE_IN_3_92
void gsk_sl_node_unref (GskSlNode *node);
+GDK_AVAILABLE_IN_3_92
void gsk_sl_node_print (GskSlNode *node,
GString *string);
GskSlType * gsk_sl_node_get_return_type (GskSlNode *node);
diff --git a/gtk/glsl.c b/gtk/glsl.c
new file mode 100644
index 0000000..8f8d6a0
--- /dev/null
+++ b/gtk/glsl.c
@@ -0,0 +1,167 @@
+/* GTK - The GIMP Toolkit
+ *
+ * Copyright © 2017 Benjamin Otte <otte gnome org>
+ *
+ * GTK+ is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * GLib is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GTK+; see the file COPYING. If not,
+ * see <http://www.gnu.org/licenses/>.
+ */
+
+#include "config.h"
+
+#include <gtk/gtk.h>
+#include <gio/gunixoutputstream.h>
+
+#include <unistd.h>
+
+#include "gsk/gskslnodeprivate.h"
+
+static GBytes *
+bytes_new_from_file (const char *filename,
+ GError **error)
+{
+ gchar *data;
+ gsize length;
+
+ if (!g_file_get_contents (filename,
+ &data, &length,
+ error))
+ return FALSE;
+
+ return g_bytes_new_take (data, length);
+}
+
+gboolean
+dump (GOutputStream *output,
+ const char *filename)
+{
+ GBytes *bytes;
+ GString *string;
+ GskSlNode *program;
+ GError *error = NULL;
+
+ bytes = bytes_new_from_file (filename, &error);
+ if (bytes == NULL)
+ {
+ g_print (error->message);
+ g_error_free (error);
+ return FALSE;
+ }
+
+ program = gsk_sl_node_new_program (bytes, NULL);
+ if (program == NULL)
+ return FALSE;
+
+ string = g_string_new (NULL);
+ gsk_sl_node_print (program, string);
+ if (!g_output_stream_write_all (output, string->str, string->len, NULL, NULL, &error))
+ {
+ g_print (error->message);
+ g_error_free (error);
+ g_string_free (string, TRUE);
+ gsk_sl_node_unref (program);
+ return FALSE;
+ }
+
+ g_string_free (string, TRUE);
+ gsk_sl_node_unref (program);
+
+ return TRUE;
+}
+
+static void
+usage (GOptionContext *ctx)
+{
+ char *help = g_option_context_get_help (ctx, TRUE, NULL);
+
+ g_print ("%s", help);
+ g_free (help);
+ exit (EXIT_FAILURE);
+}
+
+int
+main (int argc, char *argv[])
+{
+ GOptionContext *ctx;
+ char **filenames = NULL;
+ char *output_file = NULL;
+ const GOptionEntry entries[] = {
+ { "output", 'o', 0, G_OPTION_ARG_FILENAME, &output_file, "Output filename", "FILE" },
+ { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &filenames, "List of input files", "FILE
[FILE...]" },
+ { NULL, }
+ };
+ GError *error = NULL;
+ GOutputStream *output;
+ gboolean success = TRUE;
+ guint i;
+
+ g_set_prgname ("gtk-glsl");
+
+ gtk_init ();
+
+ ctx = g_option_context_new (NULL);
+ g_option_context_add_main_entries (ctx, entries, NULL);
+
+ if (!g_option_context_parse (ctx, &argc, &argv, &error))
+ {
+ g_printerr ("%s\n", error->message);
+ g_error_free (error);
+ exit (1);
+ }
+
+ if (filenames == NULL)
+ usage (ctx);
+
+ g_option_context_free (ctx);
+
+ if (output_file == NULL)
+ {
+ output = g_unix_output_stream_new (STDOUT_FILENO, FALSE);
+ }
+ else
+ {
+ GFile *file = g_file_new_for_path (output_file);
+ output = G_OUTPUT_STREAM (g_file_replace (file,
+ NULL, FALSE,
+ G_FILE_CREATE_REPLACE_DESTINATION,
+ NULL,
+ &error));
+ g_object_unref (file);
+ if (output == NULL)
+ {
+ g_printerr ("Error creating output file: %s\n", error->message);
+ g_error_free (error);
+ exit (1);
+ }
+ }
+
+ for (i = 0; filenames[i] != NULL; i++)
+ {
+ if (!dump (output, filenames[i]))
+ {
+ success = FALSE;
+ break;
+ }
+ }
+
+ if (!g_output_stream_close (output, NULL, &error))
+ {
+ g_printerr ("%s\n", error->message);
+ g_error_free (error);
+ success = FALSE;
+ }
+
+ g_strfreev (filenames);
+
+ return success ? EXIT_SUCCESS : EXIT_FAILURE;
+}
diff --git a/gtk/meson.build b/gtk/meson.build
index 5c31538..303c14a 100644
--- a/gtk/meson.build
+++ b/gtk/meson.build
@@ -1009,6 +1009,7 @@ gtk_tools = [
['gtk4-encode-symbolic-svg', ['encodesymbolic.c']],
['gtk4-launch', ['gtk-launch.c']],
['gtk4-query-immodules', ['queryimmodules.c', 'gtkutils.c']],
+ ['gtk4-glsl', ['glsl.c']],
]
foreach tool: gtk_tools
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]