aboutsummaryrefslogtreecommitdiffstats
path: root/ext/files.lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-10-04 18:21:08 +0000
committerDavid Robillard <d@drobilla.net>2010-10-04 18:21:08 +0000
commitcef9811dac46a9d54dab0f0d82ce5c3ae032fc7c (patch)
tree632b911da25fc24b6b3d331d7ceffc22606b8e5b /ext/files.lv2
parent61842745ab15454ee66be54a6f3bcc148a75406f (diff)
downloadlv2-cef9811dac46a9d54dab0f0d82ce5c3ae032fc7c.tar.xz
Initial import of lv2plug.in universe.
Diffstat (limited to 'ext/files.lv2')
-rw-r--r--ext/files.lv2/files.h61
-rw-r--r--ext/files.lv2/files.ttl94
-rw-r--r--ext/files.lv2/manifest.ttl7
3 files changed, 162 insertions, 0 deletions
diff --git a/ext/files.lv2/files.h b/ext/files.lv2/files.h
new file mode 100644
index 0000000..4f0564f
--- /dev/null
+++ b/ext/files.lv2/files.h
@@ -0,0 +1,61 @@
+/* lv2_files.h - C header file for the LV2 Files extension.
+ * Copyright (C) 2010 Leonard Ritter <paniq@paniq.org>
+ *
+ * This header is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This header 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 Lesser General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this header; if not, write to the Free Software Foundation,
+ * Inc., 59 Temple Place, Suite 330, Boston, MA 01222-1307 USA
+ */
+
+/** @file
+ * C header for the LV2 Files extension <http://lv2plug.in/ns/ext/files>.
+ */
+
+#ifndef LV2_FILES_H
+#define LV2_FILES_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define LV2_FILES_URI "http://lv2plug.in/ns/ext/files"
+
+typedef void* LV2_Files_FileSupport_Data;
+
+/** Feature structure passed by host to instantiate with feature URI
+ * <http://lv2plug.in/ns/ext/files#fileSupport>.
+ */
+typedef struct {
+
+ LV2_Files_FileSupport_Data data;
+
+ /** Return the full path that should be used for a file owned by this
+ * plugin called @a name. The plugin can assume @a name belongs to a
+ * namespace dedicated to that plugin instance (i.e. hosts MUST ensure
+ * this, e.g. by giving each plugin its own directory for files, or
+ * mangling filenames somehow).
+ *
+ * @param data MUST be the @a data member of this struct.
+ * @param name The name of the file.
+ * @return A newly allocated path which the plugin may use to create a new
+ * file. The plugin is responsible for freeing the returned string.
+ */
+ char* new_file_path(LV2_Files_FileSupport_Data data,
+ const char* name);
+
+} LV2_Files_FileSupport;
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif /* LV2_FILES_H */
diff --git a/ext/files.lv2/files.ttl b/ext/files.lv2/files.ttl
new file mode 100644
index 0000000..a83889d
--- /dev/null
+++ b/ext/files.lv2/files.ttl
@@ -0,0 +1,94 @@
+# LV2 Files Extension
+# Copyright (C) 2010 Leonard Ritter <paniq@paniq.org>
+# Copyright (C) 2010 David Robillard <d@drobilla.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+# OTHER DEALINGS IN THE SOFTWARE.
+
+@prefix files: <http://lv2plug.in/ns/ext/files#> .
+@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema> .
+
+<http://lv2plug.in/ns/ext/files>
+ a lv2:Specification ;
+ doap:name "LV2 Files" ;
+ doap:maintainer [
+ a foaf:Person ;
+ foaf:name "David Robillard" ;
+ foaf:homepage <http://drobilla.net/> ;
+ rdfs:seeAlso <http://drobilla.net/drobilla.rdf>
+ ] ;
+ rdfs:comment """
+This extension provides a mechanism for plugins to create new files for
+storing arbitrary data (e.g. waveforms), which can be persisted using
+the <a href="http://lv2plug.in/ns/ext/persist">LV2 Persist</a> extension.
+This allows plugins to work with potentially very large data via files,
+and save/restore these files.
+
+The motivating idea behind this extension is that all details of file
+management must be handled by the host in whatever way is most appropriate for
+that host. Plugins MUST NOT make any assumption about filesystem locations
+beyond what is explicitly guaranteed by this extension.
+
+To create a new file, plugins request a filename from the host. This way,
+the host is aware of files used by the plugin and can use an appropriate
+location for them that the plugin alone could not know (e.g. using an
+appropriate disk volume for recording).
+
+Plugins may also use pre-existing files from elsewhere on the filesystem.
+Using the LV2 Persist extension, the host can save both these types of files
+in an appropriate way (by e.g. storing a link, or copying the file to export
+or archive a project).
+
+""" .
+
+files:fileSupport a lv2:Feature ;
+ rdfs:label "Support for plugin-created files" ;
+ rdfs:comment """
+This feature allows plugins to use pre-existing or newly created files,
+and files them (e.g. across project saves and restores). If a host supports
+this feature it passes a LV2_Files_FileSupport structure to the plugins
+instantiate method as a feature (with URI
+http://lv2plug.in/ns/ext/files#FileSupport). This structure provides
+a function the plugin can use to create new file names. If and only if the
+host supports this feature, the plugin MAY files and restore values of
+type LV2_FILES_FILENAME.
+
+A plugin SHOULD use this facility to create any new files it may need
+(e.g. samples, waveforms for recording). Plugins MUST NOT expect their
+state to be correctly restored if they do not use this mechanism to
+create new files.
+""" .
+
+files:FilePath a atom:AtomType ;
+ rdfs:label "File Path" ;
+ rdfs:comment """
+The full path to a file on the local filesystem. The format of a
+files:filePath is a C string (escaped or otherwise restricted in whatever way
+necessary for the system). This URI (http://lv2plug.in/ns/ext/files#FilePath),
+mapped to an integer, should be used as the <code>type</code> parameter with
+the LV2 Persist extension to persist a file. When persisting a files:FilePath,
+the plugin MUST NOT assume that the same path will be restored (i.e. the
+host MAY choose to store the file elsewhere). The plugin may, of course,
+assume that the actual contents of the file are equivalent when restored.
+""" .
diff --git a/ext/files.lv2/manifest.ttl b/ext/files.lv2/manifest.ttl
new file mode 100644
index 0000000..7f572d9
--- /dev/null
+++ b/ext/files.lv2/manifest.ttl
@@ -0,0 +1,7 @@
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<http://lv2plug.in/ns/ext/files>
+ a lv2:Specification ;
+ rdfs:seeAlso <files.ttl> .
+