summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-06-26 10:16:36 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-06-26 10:35:38 +0100
commitbdcb5fec0f0ff39842a8e2bac8c45d3ae3beafe6 (patch)
tree8b07885e94cc351c09ac7e2dd21cecf50d9d82a2
parent00697e8529a1fa900d81a9bcc83f1625c2e5620e (diff)
examples: remove xml example build system bits and purge from tree
Fixes make distcheck.
-rw-r--r--Makefile.am3
-rw-r--r--configure.ac1
-rw-r--r--tests/examples/xml/.gitignore8
-rw-r--r--tests/examples/xml/Makefile.am7
-rw-r--r--tests/examples/xml/createxml.c91
-rw-r--r--tests/examples/xml/runxml.c102
6 files changed, 3 insertions, 209 deletions
diff --git a/Makefile.am b/Makefile.am
index 13aeccb64..6f20a2400 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -197,6 +197,9 @@ CRUFT_FILES = \
$(top_builddir)/common/m4/wint_t.m4 \
$(top_builddir)/common/m4/xsize.m4
+CRUFT_DIRS = \
+ $(top_builddir)/tests/examples/xml
+
include $(top_srcdir)/common/cruft.mak
all-local: gst-element-check-@GST_MAJORMINOR@.m4 check-cruft
diff --git a/configure.ac b/configure.ac
index bafa61086..5bf00f9c8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -711,7 +711,6 @@ tests/examples/metadata/Makefile
tests/examples/queue/Makefile
tests/examples/streams/Makefile
tests/examples/typefind/Makefile
-tests/examples/xml/Makefile
tools/Makefile
common/Makefile
common/m4/Makefile
diff --git a/tests/examples/xml/.gitignore b/tests/examples/xml/.gitignore
deleted file mode 100644
index da1174294..000000000
--- a/tests/examples/xml/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-createxml
-runxml
-xmlTest.gst
-*.bb
-*.bbg
-*.da
-createxml-createxml.gcno
-runxml-runxml.gcno
diff --git a/tests/examples/xml/Makefile.am b/tests/examples/xml/Makefile.am
deleted file mode 100644
index c203ec73c..000000000
--- a/tests/examples/xml/Makefile.am
+++ /dev/null
@@ -1,7 +0,0 @@
-noinst_PROGRAMS = createxml runxml
-
-createxml_LDADD = $(GST_OBJ_LIBS) $(XML_LIBS)
-createxml_CFLAGS = $(GST_OBJ_CFLAGS)
-runxml_LDADD = $(GST_OBJ_LIBS) $(XML_LIBS)
-runxml_CFLAGS = $(GST_OBJ_CFLAGS)
-
diff --git a/tests/examples/xml/createxml.c b/tests/examples/xml/createxml.c
deleted file mode 100644
index 96ce9770e..000000000
--- a/tests/examples/xml/createxml.c
+++ /dev/null
@@ -1,91 +0,0 @@
-#include <stdlib.h>
-#include <gst/gst.h>
-
-static void
-object_saved (GstObject * object, xmlNodePtr parent, gpointer data)
-{
- xmlNodePtr child;
- xmlNsPtr ns;
-
- /* first see if the namespace is already known */
- ns = xmlSearchNsByHref (parent->doc, parent,
- (xmlChar *) "http://gstreamer.net/gst-test/1.0/");
- if (ns == NULL) {
- xmlNodePtr root = xmlDocGetRootElement (parent->doc);
-
- /* add namespace to root node */
- ns = xmlNewNs (root, (xmlChar *) "http://gstreamer.net/gst-test/1.0/",
- (xmlChar *) "test");
- }
- child = xmlNewChild (parent, ns, (xmlChar *) "comment", NULL);
-
- xmlNewChild (child, NULL, (xmlChar *) "text", (xmlChar *) data);
-}
-
-int
-main (int argc, char *argv[])
-{
- GstElement *filesrc, *osssink, *queue, *queue2, *decode;
- GstElement *pipeline;
- GstElement *thread, *thread2;
-
- gst_init (&argc, &argv);
-
- if (argc != 2) {
- g_print ("usage: %s <filename>\n", argv[0]);
- exit (-1);
- }
-
- /* create new threads to hold the elements */
- thread = gst_element_factory_make ("thread", "thread");
- g_assert (thread != NULL);
- thread2 = gst_element_factory_make ("thread", "thread2");
- g_assert (thread2 != NULL);
-
- /* these signals will allow us to save custom tags with the gst xml output */
- g_signal_connect (G_OBJECT (thread), "object_saved",
- G_CALLBACK (object_saved), g_strdup ("decoder thread"));
- g_signal_connect (G_OBJECT (thread2), "object_saved",
- G_CALLBACK (object_saved), g_strdup ("render thread"));
-
- /* create a new bin to hold the elements */
- pipeline = gst_pipeline_new ("pipeline");
- g_assert (pipeline != NULL);
-
- /* create a disk reader */
- filesrc = gst_element_factory_make ("filesrc", "disk_source");
- g_assert (filesrc != NULL);
- g_object_set (G_OBJECT (filesrc), "location", argv[1], NULL);
-
- queue = gst_element_factory_make ("queue", "queue");
- queue2 = gst_element_factory_make ("queue", "queue2");
-
- /* and an audio sink */
- osssink = gst_element_factory_make ("osssink", "play_audio");
- g_assert (osssink != NULL);
-
- decode = gst_element_factory_make ("mad", "decode");
- g_assert (decode != NULL);
-
- /* add objects to the main pipeline */
- gst_bin_add (GST_BIN (pipeline), filesrc);
- gst_bin_add (GST_BIN (pipeline), queue);
-
- gst_bin_add (GST_BIN (thread), decode);
- gst_bin_add (GST_BIN (thread), queue2);
-
- gst_bin_add (GST_BIN (thread2), osssink);
-
- gst_element_link_many (filesrc, queue, decode, queue2, osssink, NULL);
-
- gst_bin_add (GST_BIN (pipeline), thread);
- gst_bin_add (GST_BIN (pipeline), thread2);
-
- /* write the bin to stdout */
- gst_xml_write_file (GST_ELEMENT (pipeline), stdout);
-
- /* write the bin to a file */
- gst_xml_write_file (GST_ELEMENT (pipeline), fopen ("xmlTest.gst", "w"));
-
- exit (0);
-}
diff --git a/tests/examples/xml/runxml.c b/tests/examples/xml/runxml.c
deleted file mode 100644
index b52307740..000000000
--- a/tests/examples/xml/runxml.c
+++ /dev/null
@@ -1,102 +0,0 @@
-#include <string.h>
-#include <stdlib.h>
-#include <gst/gst.h>
-
-G_GNUC_UNUSED static void
-xml_loaded (GstXML * xml, GstObject * object, xmlNodePtr self, gpointer data)
-{
- xmlNodePtr children = self->xmlChildrenNode;
-
- while (children) {
- if (!strcmp ((const char *) children->name, "comment")) {
- xmlNodePtr nodes = children->xmlChildrenNode;
-
- while (nodes) {
- if (!strcmp ((const char *) nodes->name, "text")) {
- gchar *name = g_strdup ((gchar *) xmlNodeGetContent (nodes));
- gchar *obj_name = gst_object_get_name (object);
-
- g_print ("object %s loaded with comment '%s'\n", obj_name, name);
-
- g_free (obj_name);
- g_free (name);
- }
- nodes = nodes->next;
- }
- }
- children = children->next;
- }
-}
-
-static void
-event_loop (GstElement * pipe)
-{
- GstBus *bus;
- GstMessage *message = NULL;
-
- bus = gst_element_get_bus (GST_ELEMENT (pipe));
-
- while (TRUE) {
- message = gst_bus_poll (bus, GST_MESSAGE_ANY, -1);
-
- g_assert (message != NULL);
-
- switch (message->type) {
- case GST_MESSAGE_EOS:
- gst_message_unref (message);
- return;
- case GST_MESSAGE_WARNING:
- case GST_MESSAGE_ERROR:{
- GError *gerror;
- gchar *debug;
-
- gst_message_parse_error (message, &gerror, &debug);
- gst_object_default_error (GST_MESSAGE_SRC (message), gerror, debug);
- gst_message_unref (message);
- g_error_free (gerror);
- g_free (debug);
- return;
- }
- default:
- gst_message_unref (message);
- break;
- }
- }
-}
-
-int
-main (int argc, char *argv[])
-{
- GstXML *xml;
- GstElement *bin;
- gboolean ret;
-
- gst_init (&argc, &argv);
-
- if (argc != 2) {
- g_print ("usage: %s <xml pipeline description>\n", argv[0]);
- exit (-1);
- }
-
- xml = gst_xml_new ();
-
-/* g_signal_connect (G_OBJECT (xml), "object_loaded", */
-/* G_CALLBACK (xml_loaded), xml); */
-
- ret = gst_xml_parse_file (xml, (xmlChar *) argv[1], NULL);
- g_assert (ret == TRUE);
-
- bin = gst_xml_get_element (xml, (xmlChar *) "pipeline");
- g_assert (bin != NULL);
-
- /* start playing */
- gst_element_set_state (bin, GST_STATE_PLAYING);
-
- /* Run event loop listening for bus messages until EOS or ERROR */
- event_loop (bin);
-
- /* stop the bin */
- gst_element_set_state (bin, GST_STATE_NULL);
-
- exit (0);
-}