From 7b19bdc06b244844653eec56ec4f4589d71698b7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 23 Jan 2008 03:51:26 +0000 Subject: More LV2 extension work. Implement URI map extension in Ingen. git-svn-id: http://svn.drobilla.net/lad/ingen@1097 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/LV2Info.hpp | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) (limited to 'src/libs/engine/LV2Info.hpp') diff --git a/src/libs/engine/LV2Info.hpp b/src/libs/engine/LV2Info.hpp index 7a9ad1cc..ad314d77 100644 --- a/src/libs/engine/LV2Info.hpp +++ b/src/libs/engine/LV2Info.hpp @@ -23,35 +23,40 @@ #error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report." #endif -#include "module/global.hpp" +#include +#include #include +#include "module/global.hpp" +#include "lv2/uri_map/lv2_uri_map.h" namespace Ingen { +/** Stuff that may need to be passed to an LV2 plugin (i.e. LV2 features). + */ class LV2Info { public: - LV2Info(SLV2World world) - : input_class(slv2_value_new_uri(world, SLV2_PORT_CLASS_INPUT)) - , output_class(slv2_value_new_uri(world, SLV2_PORT_CLASS_OUTPUT)) - , control_class(slv2_value_new_uri(world, SLV2_PORT_CLASS_CONTROL)) - , audio_class(slv2_value_new_uri(world, SLV2_PORT_CLASS_AUDIO)) - , event_class(slv2_value_new_uri(world, SLV2_PORT_CLASS_EVENT)) - {} - - ~LV2Info() { - slv2_value_free(input_class); - slv2_value_free(output_class); - slv2_value_free(control_class); - slv2_value_free(audio_class); - slv2_value_free(event_class); - } + LV2Info(SLV2World world); + ~LV2Info(); SLV2Value input_class; SLV2Value output_class; SLV2Value control_class; SLV2Value audio_class; SLV2Value event_class; + + LV2_Feature uri_map_feature; + LV2_URI_Map_Feature uri_map_feature_data; + + typedef std::map URIMap; + URIMap uri_map; + uint32_t next_uri_id; + + static uint32_t uri_map_uri_to_id(LV2_URI_Map_Callback_Data callback_data, + const char* map, + const char* uri); + + LV2_Feature** lv2_features; }; -- cgit v1.2.1