diff options
Diffstat (limited to 'src/engine/events')
-rw-r--r-- | src/engine/events/SetMetadataEvent.cpp | 23 | ||||
-rw-r--r-- | src/engine/events/SetMetadataEvent.hpp | 33 |
2 files changed, 23 insertions, 33 deletions
diff --git a/src/engine/events/SetMetadataEvent.cpp b/src/engine/events/SetMetadataEvent.cpp index a88490d6..e04b9cea 100644 --- a/src/engine/events/SetMetadataEvent.cpp +++ b/src/engine/events/SetMetadataEvent.cpp @@ -34,29 +34,6 @@ namespace Ingen { SetMetadataEvent::SetMetadataEvent( - Engine& engine, - SharedPtr<Responder> responder, - SampleCount timestamp, - bool meta, - const URI& subject, - const URI& key, - const Atom& value) - : QueuedEvent(engine, responder, timestamp) - , _error(NO_ERROR) - , _subject(subject) - , _object(NULL) - , _patch(NULL) - , _compiled_patch(NULL) - , _is_meta(meta) - , _success(false) -{ - cerr << "SET " << subject << " : " << key << " = " << value << endl; - assert(value.type() != Atom::URI || strcmp(value.get_uri(), "lv2:ControlPort")); - _properties.insert(make_pair(key, value)); -} - - -SetMetadataEvent::SetMetadataEvent( Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, diff --git a/src/engine/events/SetMetadataEvent.hpp b/src/engine/events/SetMetadataEvent.hpp index e43b1e9f..92b540ff 100644 --- a/src/engine/events/SetMetadataEvent.hpp +++ b/src/engine/events/SetMetadataEvent.hpp @@ -30,24 +30,37 @@ class GraphObjectImpl; class PatchImpl; class CompiledPatch; +/** \page methods + * <h2>POST</h2> + * As per HTTP (RFC2616 S9.5). + * + * Append properties to a graph object. + * + * An object can have several properties with a single predicate. + * POST appends properties without modifying or removing existing properties. + */ -/** An event to set a piece of variable for an GraphObjectImpl. +/** \page methods + * <h2>PUT</h2> + * As per HTTP (RFC2616 S9.6). + * + * Set properties of a graph object, or create an object. * + * An object can have several properties with a single predicate. + * \li If the object does not yet exist, the message must contain sufficient + * information to create the object (e.g. known rdf:type properties, etc.) + * \li If the object does exist, a PUT removes all existing object properties + * with predicates that match any property in the message, then adds all + * properties from the message. + */ + +/** Set properties of a graph object. * \ingroup engine */ class SetMetadataEvent : public QueuedEvent { public: SetMetadataEvent( - Engine& engine, - SharedPtr<Responder> responder, - SampleCount timestamp, - bool meta, - const Raul::URI& subject, - const Raul::URI& key, - const Raul::Atom& value); - - SetMetadataEvent( Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, |