/usr/include/slv2/world.h is in libslv2-dev 0.6.6+dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | /* SLV2
* Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
*
* This library 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 library 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.
*/
#ifndef __SLV2_WORLD_H__
#define __SLV2_WORLD_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <librdf.h>
#include "slv2/collections.h"
/** \defgroup slv2_world Global library state
*
* The "world" represents all library state, and the data found in bundles'
* manifest.ttl (ie it is an in-memory index of all things LV2 found).
* Plugins (and plugin extensions) and the LV2 specification (and LV2
* extensions) itself can be queried from the world for use.
*
* Normal hosts which just want to easily load plugins by URI are strongly
* recommended to simply call \ref slv2_world_load_all to find all installed
* data in the recommended way.
*
* Normal hosts should NOT have to refer to bundles directly under normal
* circumstances. However, functions are provided to load individual bundles
* explicitly, intended for hosts which depend on a specific bundle
* (which is shipped with the application).
*
* @{
*/
/** Initialize a new, empty world.
*
* If initialization fails, NULL is returned.
*/
SLV2World
slv2_world_new();
/** Initialize a new, empty world, using an existing Redland context.
*/
SLV2World
slv2_world_new_using_rdf_world(librdf_world* world);
/** Destroy the world, mwahaha.
*
* NB: Destroying the world will leave dangling references in any plugin lists,
* plugins, etc. Do not destroy the world until you are finished with all
* objects that came from it.
*/
void
slv2_world_free(SLV2World world);
/** Load all installed LV2 bundles on the system.
*
* This is the recommended way for hosts to load LV2 data. It does the most
* reasonable thing to find all installed plugins, extensions, etc. on the
* system. The environment variable LV2_PATH may be used to set the
* directories inside which this function will look for bundles. Otherwise
* a sensible, standard default will be used.
*
* Use of other functions for loading bundles is \em highly discouraged
* without a special reason to do so - use this one.
*
* Time = Query
*/
void
slv2_world_load_all(SLV2World world);
/** Load a specific bundle.
*
* \arg bundle_uri A fully qualified URI to the bundle directory,
* with the trailing slash, eg. file:///usr/lib/lv2/someBundle/
*
* Normal hosts should not use this function.
*
* Hosts should \b never attach any long-term significance to bundle paths
* as there are no guarantees they will remain consistent whatsoever.
* Plugins (and other things) are identified by URIs, \b not bundle or
* file names.
*
* This function should only be used by apps which ship with a special
* bundle (which it knows exists at some path because the bundle is
* shipped with the application).
*
* Time = Query
*/
void
slv2_world_load_bundle(SLV2World world,
SLV2Value bundle_uri);
/** Get the parent of all other plugin classes, lv2:Plugin.
*
* Time = O(1)
*/
SLV2PluginClass
slv2_world_get_plugin_class(SLV2World world);
/** Return a list of all found plugin classes.
*
* Returned list is owned by world and must not be freed by the caller.
*
* Time = O(1)
*/
SLV2PluginClasses
slv2_world_get_plugin_classes(SLV2World world);
/** Return a list of all found plugins.
*
* The returned list contains just enough references to query
* or instantiate plugins. The data for a particular plugin will not be
* loaded into memory until a call to an slv2_plugin_* function results in
* a query (at which time the data is cached with the SLV2Plugin so future
* queries are very fast).
*
* Returned list must be freed by user with slv2_plugins_free. The contained
* plugins are owned by \a world and must not be freed by caller.
*
* Time = O(1)
*/
SLV2Plugins
slv2_world_get_all_plugins(SLV2World world);
/** Return a list of found plugins filtered by a user-defined filter function.
*
* All plugins currently found in \a world that return true when passed to
* \a include (a pointer to a function which takes an SLV2Plugin and returns
* a bool) will be in the returned list.
*
* Returned list must be freed by user with slv2_plugins_free. The contained
* plugins are owned by \a world and must not be freed by caller.
*
* Time = O(n * Time(include))
*/
SLV2Plugins
slv2_world_get_plugins_by_filter(SLV2World world,
bool (*include)(SLV2Plugin));
#if 0
/** Return a list of found plugins in a given class.
*
* Returned list must be freed by user with slv2_plugins_free. The contained
* plugins are owned by \a world and must not be freed by caller.
*
* Time = O(n)
*/
SLV2Plugins
slv2_world_get_plugins_by_class(SLV2World world,
SLV2PluginClass plugin_class);
#endif
#if 0
/** Get plugins filtered by a user-defined SPARQL query.
*
* This is much faster than using slv2_world_get_plugins_by_filter with a
* filter function which calls the various slv2_plugin_* functions.
*
* \param query A valid SPARQL query which SELECTs a single variable, which
* should match the URI of plugins to be loaded.
*
* \b Example: Get all plugins with at least 1 audio input and output:
<tt> \verbatim
PREFIX : <http://lv2plug.in/ns/lv2core#>
SELECT DISTINCT ?plugin WHERE {
?plugin :port [ a :AudioPort; a :InputPort ] ;
:port [ a :AudioPort; a :OutputPort ] .
}
\endverbatim </tt>
*
* Returned plugins contain a reference to this world, world must not be
* destroyed until plugins are finished with.
*/
SLV2Plugins
slv2_world_get_plugins_by_query(SLV2World world,
const char* query);
#endif
/** @} */
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* __SLV2_WORLD_H__ */
|