on session-load: skip output-change-handler until IOs are restored
[ardour.git] / libs / ardour / ardour / uri_map.h
index 3fb8560022f71d6479063a9cbcfe69e7ba7012fa..18008f0df204a7ecd6f92b0b90cf889c4260e206 100644 (file)
 
 namespace ARDOUR {
 
-
 /** Implementation of the LV2 uri-map and urid extensions.
+ *
+ * This just uses a pair of std::map and is not so great in the space overhead
+ * department, but it's fast enough and not really performance critical anyway.
  */
 class URIMap : public boost::noncopyable {
 public:
@@ -41,38 +43,27 @@ public:
        LV2_Feature* urid_map_feature()   { return &_urid_map_feature; }
        LV2_Feature* urid_unmap_feature() { return &_urid_unmap_feature; }
 
-       uint32_t uri_to_id(const char* map,
-                          const char* uri);
+       LV2_URID_Map*   urid_map()   { return &_urid_map_feature_data; }
+       LV2_URID_Unmap* urid_unmap() { return &_urid_unmap_feature_data; }
 
-       const char* id_to_uri(const char* map,
-                             uint32_t    id);
+       uint32_t    uri_to_id(const char* uri);
+       const char* id_to_uri(uint32_t id) const;
 
 private:
-       static uint32_t uri_map_uri_to_id(LV2_URI_Map_Callback_Data callback_data,
-                                         const char*               map,
-                                         const char*               uri);
-
-       static LV2_URID urid_map(LV2_URID_Map_Handle handle,
-                                const char*         uri);
-
-       static const char* urid_unmap(LV2_URID_Unmap_Handle handle,
-                                     LV2_URID              urid);
-
-       typedef std::map<uint16_t, uint32_t> EventToGlobal;
-       typedef std::map<uint32_t, uint16_t> GlobalToEvent;
-
-       EventToGlobal _event_to_global;
-       GlobalToEvent _global_to_event;
-
-       LV2_Feature           _uri_map_feature;
-       LV2_URI_Map_Feature   _uri_map_feature_data;
-       LV2_Feature           _urid_map_feature;
-       LV2_URID_Map          _urid_map_feature_data;
-       LV2_Feature           _urid_unmap_feature;
-       LV2_URID_Unmap        _urid_unmap_feature_data;
+       typedef std::map<const std::string, uint32_t> Map;
+       typedef std::map<uint32_t, const std::string> Unmap;
+
+       Map   _map;
+       Unmap _unmap;
+
+       LV2_Feature         _uri_map_feature;
+       LV2_URI_Map_Feature _uri_map_feature_data;
+       LV2_Feature         _urid_map_feature;
+       LV2_URID_Map        _urid_map_feature_data;
+       LV2_Feature         _urid_unmap_feature;
+       LV2_URID_Unmap      _urid_unmap_feature_data;
 };
 
-
 } // namespace ARDOUR
 
 #endif // __ardour_uri_map_h__