/* This file is part of Ingen. Copyright 2007-2012 David Robillard Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. Ingen 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 Affero General Public License for details. You should have received a copy of the GNU Affero General Public License along with Ingen. If not, see . */ #include "ingen/shared/AtomSink.hpp" #include "ingen/shared/AtomWriter.hpp" #include "ingen/shared/URIMap.hpp" #include "raul/Path.hpp" #include "serd/serd.h" namespace Ingen { namespace Shared { static LV2_Atom_Forge_Ref forge_sink(LV2_Atom_Forge_Sink_Handle handle, const void* buf, uint32_t size) { SerdChunk* chunk = (SerdChunk*)handle; const LV2_Atom_Forge_Ref ref = chunk->len + 1; serd_chunk_sink(buf, size, chunk); return ref; } static LV2_Atom* forge_deref(LV2_Atom_Forge_Sink_Handle handle, LV2_Atom_Forge_Ref ref) { SerdChunk* chunk = (SerdChunk*)handle; return (LV2_Atom*)(chunk->buf + ref - 1); } AtomWriter::AtomWriter(URIMap& map, URIs& uris, AtomSink& sink) : _map(map) , _uris(uris) , _sink(sink) , _id(1) { _out.buf = NULL; _out.len = 0; lv2_atom_forge_init(&_forge, &map.urid_map_feature()->urid_map); lv2_atom_forge_set_sink(&_forge, forge_sink, forge_deref, &_out); } void AtomWriter::finish_msg() { _sink.write((LV2_Atom*)_out.buf); _out.len = 0; } int32_t AtomWriter::next_id() { if (_id == -1) { return 0; } else { return ++_id; } } void AtomWriter::bundle_begin() { } void AtomWriter::bundle_end() { } void AtomWriter::forge_uri(const Raul::URI& uri) { if (serd_uri_string_has_scheme((const uint8_t*)uri.c_str())) { lv2_atom_forge_urid(&_forge, _map.map_uri(uri.c_str())); } else { lv2_atom_forge_uri(&_forge, uri.c_str(), uri.length()); } } void AtomWriter::forge_properties(const Resource::Properties& properties) { for (Resource::Properties::const_iterator i = properties.begin(); i != properties.end(); ++i) { lv2_atom_forge_property_head(&_forge, _map.map_uri(i->first.c_str()), 0); if (i->second.type() == _forge.URI) { forge_uri(i->second.get_uri()); } else { lv2_atom_forge_atom(&_forge, i->second.size(), i->second.type()); lv2_atom_forge_write(&_forge, i->second.get_body(), i->second.size()); } } } void AtomWriter::forge_edge(const Raul::URI& tail, const Raul::URI& head) { LV2_Atom_Forge_Frame edge; lv2_atom_forge_blank(&_forge, &edge, 0, _uris.ingen_Edge); lv2_atom_forge_property_head(&_forge, _uris.ingen_tail, 0); forge_uri(tail); lv2_atom_forge_property_head(&_forge, _uris.ingen_head, 0); forge_uri(head); lv2_atom_forge_pop(&_forge, &edge); } void AtomWriter::put(const Raul::URI& uri, const Resource::Properties& properties, Resource::Graph ctx) { LV2_Atom_Forge_Frame msg; lv2_atom_forge_blank(&_forge, &msg, next_id(), _uris.patch_Put); lv2_atom_forge_property_head(&_forge, _uris.patch_subject, 0); forge_uri(uri); lv2_atom_forge_property_head(&_forge, _uris.patch_body, 0); LV2_Atom_Forge_Frame body; lv2_atom_forge_blank(&_forge, &body, 0, 0); forge_properties(properties); lv2_atom_forge_pop(&_forge, &body); lv2_atom_forge_pop(&_forge, &msg); finish_msg(); } void AtomWriter::delta(const Raul::URI& uri, const Resource::Properties& remove, const Resource::Properties& add) { LV2_Atom_Forge_Frame msg; lv2_atom_forge_blank(&_forge, &msg, next_id(), _uris.patch_Patch); lv2_atom_forge_property_head(&_forge, _uris.patch_subject, 0); forge_uri(uri); lv2_atom_forge_property_head(&_forge, _uris.patch_remove, 0); LV2_Atom_Forge_Frame remove_obj; lv2_atom_forge_blank(&_forge, &remove_obj, 0, 0); forge_properties(remove); lv2_atom_forge_pop(&_forge, &remove_obj); lv2_atom_forge_property_head(&_forge, _uris.patch_add, 0); LV2_Atom_Forge_Frame add_obj; lv2_atom_forge_blank(&_forge, &add_obj, 0, 0); forge_properties(add); lv2_atom_forge_pop(&_forge, &add_obj); lv2_atom_forge_pop(&_forge, &msg); finish_msg(); } void AtomWriter::move(const Raul::Path& old_path, const Raul::Path& new_path) { LV2_Atom_Forge_Frame msg; lv2_atom_forge_blank(&_forge, &msg, next_id(), _uris.patch_Move); lv2_atom_forge_property_head(&_forge, _uris.patch_subject, 0); forge_uri(old_path); lv2_atom_forge_property_head(&_forge, _uris.patch_destination, 0); forge_uri(new_path); } void AtomWriter::del(const Raul::URI& uri) { LV2_Atom_Forge_Frame msg; lv2_atom_forge_blank(&_forge, &msg, next_id(), _uris.patch_Delete); lv2_atom_forge_property_head(&_forge, _uris.patch_subject, 0); forge_uri(uri); } void AtomWriter::connect(const Raul::Path& tail, const Raul::Path& head) { LV2_Atom_Forge_Frame msg; lv2_atom_forge_blank(&_forge, &msg, next_id(), _uris.patch_Put); lv2_atom_forge_property_head(&_forge, _uris.patch_subject, 0); forge_uri(Raul::Path::lca(tail, head)); lv2_atom_forge_property_head(&_forge, _uris.patch_body, 0); forge_edge(tail, head); lv2_atom_forge_pop(&_forge, &msg); finish_msg(); } void AtomWriter::disconnect(const Raul::Path& tail, const Raul::Path& head) { LV2_Atom_Forge_Frame msg; lv2_atom_forge_blank(&_forge, &msg, next_id(), _uris.patch_Delete); lv2_atom_forge_property_head(&_forge, _uris.patch_body, 0); forge_edge(tail, head); lv2_atom_forge_pop(&_forge, &msg); finish_msg(); } void AtomWriter::disconnect_all(const Raul::Path& parent_patch_path, const Raul::Path& path) { } void AtomWriter::set_property(const Raul::URI& subject, const Raul::URI& predicate, const Raul::Atom& value) { LV2_Atom_Forge_Frame msg; lv2_atom_forge_blank(&_forge, &msg, next_id(), _uris.patch_Set); lv2_atom_forge_property_head(&_forge, _uris.patch_subject, 0); forge_uri(subject); lv2_atom_forge_property_head(&_forge, _uris.patch_body, 0); LV2_Atom_Forge_Frame body; lv2_atom_forge_blank(&_forge, &body, 0, 0); lv2_atom_forge_property_head(&_forge, _map.map_uri(predicate.c_str()), 0); lv2_atom_forge_atom(&_forge, value.size(), value.type()); lv2_atom_forge_write(&_forge, value.get_body(), value.size()); lv2_atom_forge_pop(&_forge, &body); lv2_atom_forge_pop(&_forge, &msg); finish_msg(); } void AtomWriter::set_response_id(int32_t id) { } void AtomWriter::get(const Raul::URI& uri) { LV2_Atom_Forge_Frame msg; lv2_atom_forge_blank(&_forge, &msg, next_id(), _uris.patch_Get); lv2_atom_forge_property_head(&_forge, _uris.patch_subject, 0); forge_uri(uri); lv2_atom_forge_pop(&_forge, &msg); finish_msg(); } void AtomWriter::response(int32_t id, Status status) { if (id == -1) { return; } LV2_Atom_Forge_Frame msg; lv2_atom_forge_blank(&_forge, &msg, next_id(), _uris.patch_Response); lv2_atom_forge_property_head(&_forge, _uris.patch_request, 0); lv2_atom_forge_int(&_forge, id); lv2_atom_forge_property_head(&_forge, _uris.patch_body, 0); lv2_atom_forge_int(&_forge, status); lv2_atom_forge_pop(&_forge, &msg); finish_msg(); } void AtomWriter::error(const std::string& msg) { } } // namespace Shared } // namespace Ingen