summaryrefslogtreecommitdiffstats
path: root/utils/lv2_inspect.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-02-07 01:45:53 +0000
committerDavid Robillard <d@drobilla.net>2007-02-07 01:45:53 +0000
commit17ec1c5594772a89a5284449754b56ccb705ebe4 (patch)
treed3ee843acc698345b3760818b1a09f55a18517bb /utils/lv2_inspect.c
parent87e016baff11bd74d905b68e48577461b36b992c (diff)
downloadlilv-17ec1c5594772a89a5284449754b56ccb705ebe4.tar.gz
lilv-17ec1c5594772a89a5284449754b56ccb705ebe4.tar.bz2
lilv-17ec1c5594772a89a5284449754b56ccb705ebe4.zip
Added lv2.ttl installation, lv2.ttl added as source by default to queries.
Changed port API to work by referring to either index or symbol. Plugged some leaks. Added access to plugin/port hints/properties. Updated lv2.ttl. git-svn-id: http://svn.drobilla.net/lad/slv2@285 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'utils/lv2_inspect.c')
-rw-r--r--utils/lv2_inspect.c106
1 files changed, 106 insertions, 0 deletions
diff --git a/utils/lv2_inspect.c b/utils/lv2_inspect.c
new file mode 100644
index 0000000..c8ffd55
--- /dev/null
+++ b/utils/lv2_inspect.c
@@ -0,0 +1,106 @@
+/* lv2_inspect - Display information about an LV2 plugin.
+ * Copyright (C) 2007 Dave Robillard <drobilla.net>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
+ *
+ * This program 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 General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <slv2/slv2.h>
+
+
+void
+print_port(SLV2Plugin* p, uint32_t index)
+{
+ SLV2PortID id = slv2_port_by_index(index);
+
+ char* str = NULL;
+
+ printf("\n\tPort %d:\n", index);
+
+ str = slv2_port_get_symbol(p, id);
+ printf("\t\tSymbol: %s\n", str);
+ free(str);
+
+ str = slv2_port_get_name(p, id);
+ printf("\t\tName: %s\n", str);
+ free(str);
+}
+
+
+void
+print_plugin(SLV2Plugin* p)
+{
+ char* str = NULL;
+
+ printf("<%s>\n", slv2_plugin_get_uri(p));
+
+ printf("\tData URL: %s\n", slv2_plugin_get_data_url(p));
+ printf("\tLibrary URL: %s\n\n", slv2_plugin_get_library_url(p));
+
+ str = slv2_plugin_get_name(p);
+ printf("\tName: %s\n", str);
+ free(str);
+
+ if (slv2_plugin_has_latency(p))
+ printf("\tHas latency: yes\n");
+ else
+ printf("\tHas latency: no\n");
+
+ printf("\tProperties:\n");
+ SLV2Value v = slv2_plugin_get_properties(p);
+ for (size_t i=0; i < v->num_values; ++i)
+ printf("\t\t%s\n", v->values[i]);
+ slv2_value_free(v);
+
+ printf("\tHints:\n");
+ v = slv2_plugin_get_hints(p);
+ for (size_t i=0; i < v->num_values; ++i)
+ printf("\t\t%s\n", v->values[i]);
+ slv2_value_free(v);
+
+ uint32_t num_ports = slv2_plugin_get_num_ports(p);
+ for (uint32_t i=0; i < num_ports; ++i)
+ print_port(p, i);
+}
+
+
+
+int
+main(int argc, char** argv)
+{
+ slv2_init();
+
+ if (argc != 2) {
+ fprintf(stderr, "Usage: %s PLUGIN_URI\n", argv[0]);
+ return -1;
+ }
+
+ SLV2List plugins = slv2_list_new();
+ slv2_list_load_all(plugins);
+
+ SLV2Plugin* p = slv2_list_get_plugin_by_uri(plugins, argv[1]);
+
+ if (!p) {
+ fprintf(stderr, "Plugin not found.\n");
+ return -1;
+ }
+
+ print_plugin(p);
+
+ slv2_finish();
+
+ return 0;
+}