/*
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
#include "ingen/shared/AtomReader.hpp"
#include "lv2/lv2plug.in/ns/ext/atom/util.h"
#include "raul/log.hpp"
namespace Ingen {
namespace Shared {
AtomReader::AtomReader(LV2URIMap& map, URIs& uris, Forge& forge, Interface& iface)
: _map(map)
, _uris(uris)
, _forge(forge)
, _iface(iface)
{
}
void
AtomReader::write(const LV2_Atom* msg)
{
if (msg->type != _uris.atom_Blank) {
Raul::warn << "Unknown message type " << msg->type << std::endl;
return;
}
const LV2_Atom_Object* obj = (const LV2_Atom_Object*)msg;
const LV2_Atom* subject = NULL;
lv2_object_get(obj, (LV2_URID)_uris.patch_subject, &subject, NULL);
const char* subject_uri = NULL;
if (subject && subject->type == _uris.atom_URI) {
subject_uri = (const char*)LV2_ATOM_BODY(subject);
} else if (subject && subject->type == _uris.atom_URID) {
subject_uri = _map.unmap_uri(((LV2_Atom_URID*)subject)->body);
}
if (obj->body.otype == _uris.patch_Get) {
_iface.set_response_id(obj->body.id);
_iface.get(subject_uri);
} else if (obj->body.otype == _uris.patch_Put) {
const LV2_Atom_Object* body = NULL;
lv2_object_get(obj, (LV2_URID)_uris.patch_body, &body, 0);
if (!body) {
Raul::warn << "Put message has no body" << std::endl;
return;
}
Ingen::Resource::Properties props;
LV2_OBJECT_FOREACH(body, i) {
LV2_Atom_Property_Body* p = lv2_object_iter_get(i);
Raul::Atom val;
if (p->value.type == _uris.atom_URID) {
const LV2_Atom_URID* urid = (const LV2_Atom_URID*)&p->value;
val = _forge.alloc_uri(_map.unmap_uri(urid->body));
} else {
val = _forge.alloc(p->value.size,
p->value.type,
LV2_ATOM_BODY(&p->value));
}
props.insert(std::make_pair(_map.unmap_uri(p->key), val));
}
if (subject_uri) {
_iface.set_response_id(obj->body.id);
_iface.put(subject_uri, props);
} else {
Raul::warn << "Put message has no subject, ignored" << std::endl;
}
} else {
Raul::warn << "Unknown object type " << obj->body.otype << std::endl;
}
}
} // namespace Shared
} // namespace Ingen