/* 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 #include #include #include #include #include #include #include "ingen/Interface.hpp" #include "ingen/URIMap.hpp" #include "ingen/URIs.hpp" #include "ingen/World.hpp" #include "ingen/serialisation/Parser.hpp" #include "lv2/lv2plug.in/ns/ext/atom/atom.h" #include "raul/Atom.hpp" #include "raul/log.hpp" #include "serd/serd.h" #include "sord/sordmm.hpp" #include "sratom/sratom.h" #define LOG(s) (s("[Parser] ")) #define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#" #define NS_RDFS "http://www.w3.org/2000/01/rdf-schema#" using namespace std; using namespace Raul; typedef set RDFNodes; namespace Ingen { namespace Serialisation { static Glib::ustring relative_uri(Glib::ustring base, const Glib::ustring uri, bool leading_slash) { Glib::ustring ret; if (uri != base) { SerdURI base_uri; serd_uri_parse((const uint8_t*)base.c_str(), &base_uri); SerdURI normal_base_uri; SerdNode normal_base_uri_node = serd_node_new_uri_from_string( (const uint8_t*)".", &base_uri, &normal_base_uri); Glib::ustring normal_base_str((const char*)normal_base_uri_node.buf); ret = uri; if (uri.length() >= normal_base_str.length() && uri.substr(0, normal_base_str.length()) == normal_base_str) { ret = uri.substr(normal_base_str.length()); if (leading_slash && ret[0] != '/') ret = Glib::ustring("/") + ret; } serd_node_free(&normal_base_uri_node); } if (leading_slash && ret[0] != '/') { ret = Glib::ustring("/").append(ret); } return ret; } static std::string get_basename(const std::string& uri) { std::string ret = Glib::path_get_basename(uri); ret = ret.substr(0, ret.find_last_of('.')); return ret; } static bool skip_property(const Sord::Node& predicate) { return (predicate.to_string() == "http://drobilla.net/ns/ingen#node" || predicate.to_string() == "http://drobilla.net/ns/ingen#edge" || predicate.to_string() == LV2_CORE__port); } static Resource::Properties get_properties(Ingen::World* world, Sord::Model& model, const Sord::Node& subject) { SerdChunk out = { NULL, 0 }; LV2_URID_Map* map = &world->uri_map().urid_map_feature()->urid_map; LV2_URID_Unmap* unmap = &world->uri_map().urid_unmap_feature()->urid_unmap; Sratom* sratom = sratom_new(map); LV2_Atom_Forge forge; lv2_atom_forge_init(&forge, map); lv2_atom_forge_set_sink(&forge, sratom_forge_sink, sratom_forge_deref, &out); const Sord::Node nil; Resource::Properties props; for (Sord::Iter i = model.find(subject, nil, nil); !i.end(); ++i) { if (!skip_property(i.get_predicate())) { out.len = 0; sratom_read(sratom, &forge, world->rdf_world()->c_obj(), model.c_obj(), i.get_object().c_obj()); const LV2_Atom* atom = (const LV2_Atom*)out.buf; Atom atomm; // FIXME: Don't bloat out all URIs if (atom->type == forge.URID) { atomm = world->forge().alloc_uri( unmap->unmap(unmap->handle, ((const LV2_Atom_URID*)atom)->body)); } else { atomm = world->forge().alloc( atom->size, atom->type, LV2_ATOM_BODY_CONST(atom)); } props.insert(make_pair(i.get_predicate().to_string(), atomm)); } } free((uint8_t*)out.buf); sratom_free(sratom); return props; } typedef std::pair PortRecord; static boost::optional get_port(Ingen::World* world, Sord::Model& model, const Sord::Node& subject, const Raul::Path& parent, uint32_t& index) { const URIs& uris = world->uris(); // Get all properties Resource::Properties props = get_properties(world, model, subject); // Get index Resource::Properties::const_iterator i = props.find(uris.lv2_index); if (i == props.end() || i->second.type() != world->forge().Int || i->second.get_int32() < 0) { LOG(error) << "Port " << subject << " has no valid index" << endl; return boost::optional(); } index = i->second.get_int32(); // Get symbol Resource::Properties::const_iterator s = props.find(uris.lv2_symbol); if (s == props.end()) { LOG(error) << "Port " << subject << " has no symbol" << endl; return boost::optional(); } const Symbol port_sym(s->second.get_string()); const Path port_path = parent.child(port_sym); return make_pair(port_path, props); } static boost::optional parse( World* world, Interface* target, Sord::Model& model, Glib::ustring document_uri, Sord::Node& subject, boost::optional parent = boost::optional(), boost::optional symbol = boost::optional(), boost::optional data = boost::optional()); static boost::optional parse_patch( World* world, Interface* target, Sord::Model& model, const Sord::Node& subject, boost::optional parent = boost::optional(), boost::optional symbol = boost::optional(), boost::optional data = boost::optional()); static boost::optional parse_node( World* world, Interface* target, Sord::Model& model, const Sord::Node& subject, const Raul::Path& path, boost::optional data = boost::optional()); static bool parse_properties( World* world, Interface* target, Sord::Model& model, const Sord::Node& subject, const Raul::URI& uri, boost::optional data = boost::optional()); static bool parse_edges( World* world, Interface* target, Sord::Model& model, const Sord::Node& subject, const Raul::Path& patch); static boost::optional parse_node(Ingen::World* world, Ingen::Interface* target, Sord::Model& model, const Sord::Node& subject, const Raul::Path& path, boost::optional data) { const URIs& uris = world->uris(); const Sord::URI ingen_prototype(*world->rdf_world(), NS_INGEN "prototype"); const Sord::Node nil; Sord::Iter i = model.find(subject, ingen_prototype, nil); if (i.end() || i.get_object().type() != Sord::Node::URI) { LOG(error) << "Node missing mandatory ingen:prototype" << endl; return boost::optional(); } const std::string type_uri = relative_uri( model.base_uri().to_string(), i.get_object().to_string(), false); if (!serd_uri_string_has_scheme((const uint8_t*)type_uri.c_str())) { SerdURI base_uri; serd_uri_parse(model.base_uri().to_u_string(), &base_uri); SerdURI ignored; SerdNode sub_uri = serd_node_new_uri_from_string( i.get_object().to_u_string(), &base_uri, &ignored); const std::string sub_uri_str((const char*)sub_uri.buf); std::string basename = get_basename(sub_uri_str); const std::string sub_file = string((const char*)sub_uri.buf) + "/" + basename + ".ttl"; const SerdNode sub_base = serd_node_from_string( SERD_URI, (const uint8_t*)sub_file.c_str()); Sord::Model sub_model(*world->rdf_world(), sub_file); SerdEnv* env = serd_env_new(&sub_base); sub_model.load_file(env, SERD_TURTLE, sub_file); serd_env_free(env); Sord::URI sub_node(*world->rdf_world(), sub_file); parse_patch(world, target, sub_model, sub_node, path.parent(), Raul::Symbol(path.symbol())); parse_patch(world, target, model, subject, path.parent(), Raul::Symbol(path.symbol())); } else { Resource::Properties props = get_properties(world, model, subject); props.insert(make_pair(uris.rdf_type, uris.forge.alloc_uri(uris.ingen_Node))); target->put(GraphObject::path_to_uri(path), props); } return path; } static boost::optional parse_patch(Ingen::World* world, Ingen::Interface* target, Sord::Model& model, const Sord::Node& subject_node, boost::optional parent, boost::optional a_symbol, boost::optional data) { const Sord::URI ingen_node(*world->rdf_world(), NS_INGEN "node"); const Sord::URI ingen_polyphony(*world->rdf_world(), NS_INGEN "polyphony"); const Sord::URI lv2_port(*world->rdf_world(), LV2_CORE__port); const Sord::Node& patch = subject_node; const Sord::Node nil; const Glib::ustring base_uri = model.base_uri().to_string(); Raul::Symbol symbol("_"); if (a_symbol) { symbol = *a_symbol; } else { const std::string basename = get_basename(base_uri); } string patch_path_str = relative_uri(base_uri, subject_node.to_string(), true); if (parent && a_symbol) patch_path_str = parent->child(*a_symbol); if (!Path::is_valid(patch_path_str)) { LOG(error) << "Patch has invalid path: " << patch_path_str << endl; return boost::optional(); } // Create patch Path patch_path(patch_path_str); Resource::Properties props = get_properties(world, model, subject_node); target->put(GraphObject::path_to_uri(patch_path), props); // For each node in this patch for (Sord::Iter n = model.find(subject_node, ingen_node, nil); !n.end(); ++n) { Sord::Node node = n.get_object(); const Path node_path = patch_path.child( Raul::Symbol(get_basename(node.to_string()))); // Parse and create node parse_node(world, target, model, node, node_path, boost::optional()); // For each port on this node for (Sord::Iter p = model.find(node, lv2_port, nil); !p.end(); ++p) { Sord::Node port = p.get_object(); // Get all properties uint32_t index = 0; boost::optional port_record = get_port( world, model, port, node_path, index); if (!port_record) { LOG(error) << "Invalid port " << port << endl; return boost::optional(); } // Create port and/or set all port properties target->put(GraphObject::path_to_uri(port_record->first), port_record->second); } } // For each port on this patch typedef std::map PortRecords; PortRecords ports; for (Sord::Iter p = model.find(patch, lv2_port, nil); !p.end(); ++p) { Sord::Node port = p.get_object(); // Get all properties uint32_t index = 0; boost::optional port_record = get_port( world, model, port, patch_path, index); if (!port_record) { LOG(Raul::error) << "Invalid port " << port << endl; return boost::optional(); } // Store port information in ports map ports[index] = *port_record; } // Create ports in order by index for (PortRecords::const_iterator i = ports.begin(); i != ports.end(); ++i) { target->put(GraphObject::path_to_uri(i->second.first), i->second.second); } parse_edges(world, target, model, subject_node, patch_path); return patch_path; } static bool parse_edge(Ingen::World* world, Ingen::Interface* target, Sord::Model& model, const Sord::Node& subject, const Raul::Path& parent) { const Sord::URI ingen_tail(*world->rdf_world(), NS_INGEN "tail"); const Sord::URI ingen_head(*world->rdf_world(), NS_INGEN "head"); const Sord::Node nil; Sord::Iter t = model.find(subject, ingen_tail, nil); Sord::Iter h = model.find(subject, ingen_head, nil); const Glib::ustring& base_uri = model.base_uri().to_string(); if (t.end()) { LOG(error) << "Edge has no tail" << endl; return false; } else if (h.end()) { LOG(error) << "Edge has no head" << endl; return false; } const std::string tail_str = relative_uri( base_uri, t.get_object().to_string(), true); if (!Path::is_valid(tail_str)) { LOG(error) << "Edge tail has invalid URI" << endl; return false; } const std::string head_str = relative_uri( base_uri, h.get_object().to_string(), true); if (!Path::is_valid(head_str)) { LOG(error) << "Edge head has invalid URI" << endl; return false; } if (!(++t).end()) { LOG(error) << "Edge has multiple tails" << endl; return false; } else if (!(++h).end()) { LOG(error) << "Edge has multiple heads" << endl; return false; } target->connect(Path(tail_str), Path(head_str)); return true; } static bool parse_edges(Ingen::World* world, Ingen::Interface* target, Sord::Model& model, const Sord::Node& subject, const Raul::Path& parent) { const Sord::URI ingen_edge(*world->rdf_world(), NS_INGEN "edge"); const Sord::Node nil; for (Sord::Iter i = model.find(subject, ingen_edge, nil); !i.end(); ++i) { parse_edge(world, target, model, i.get_object(), parent); } return true; } static bool parse_properties(Ingen::World* world, Ingen::Interface* target, Sord::Model& model, const Sord::Node& subject, const Raul::URI& uri, boost::optional data) { Resource::Properties properties = get_properties(world, model, subject); target->put(uri, properties); // Set passed properties last to override any loaded values if (data) target->put(uri, data.get()); return true; } static boost::optional parse(Ingen::World* world, Ingen::Interface* target, Sord::Model& model, Glib::ustring document_uri, Sord::Node& subject, boost::optional parent, boost::optional symbol, boost::optional data) { const Sord::URI patch_class (*world->rdf_world(), NS_INGEN "Patch"); const Sord::URI node_class (*world->rdf_world(), NS_INGEN "Node"); const Sord::URI edge_class (*world->rdf_world(), NS_INGEN "Edge"); const Sord::URI internal_class(*world->rdf_world(), NS_INGEN "Internal"); const Sord::URI in_port_class (*world->rdf_world(), LV2_CORE__InputPort); const Sord::URI out_port_class(*world->rdf_world(), LV2_CORE__OutputPort); const Sord::URI lv2_class (*world->rdf_world(), LV2_CORE__Plugin); const Sord::URI rdf_type (*world->rdf_world(), NS_RDF "type"); const Sord::Node nil; // Parse explicit subject patch if (subject.is_valid()) { return parse_patch(world, target, model, subject, parent, symbol, data); } // Get all subjects and their types (?subject a ?type) typedef std::map< Sord::Node, std::set > Subjects; Subjects subjects; for (Sord::Iter i = model.find(subject, rdf_type, nil); !i.end(); ++i) { const Sord::Node& subject = i.get_subject(); const Sord::Node& rdf_class = i.get_object(); assert(rdf_class.is_uri()); Subjects::iterator s = subjects.find(subject); if (s == subjects.end()) { std::set types; types.insert(rdf_class); subjects.insert(make_pair(subject, types)); } else { s->second.insert(rdf_class); } } // Parse and create each subject for (Subjects::const_iterator i = subjects.begin(); i != subjects.end(); ++i) { const Sord::Node& s = i->first; const std::set& types = i->second; boost::optional ret; const Raul::Path path( relative_uri( model.base_uri().to_string(), s.to_string(), true)); if (types.find(patch_class) != types.end()) { ret = parse_patch(world, target, model, s, parent, symbol, data); } else if (types.find(node_class) != types.end()) { ret = parse_node(world, target, model, s, path, data); } else if (types.find(in_port_class) != types.end() || types.find(out_port_class) != types.end()) { parse_properties( world, target, model, s, GraphObject::path_to_uri(path), data); ret = path; } else if (types.find(edge_class) != types.end()) { Path parent_path(parent ? parent.get() : Path("/")); parse_edge(world, target, model, s, parent_path); } else { LOG(error) << "Subject has no known types" << endl; } if (!ret) { LOG(error) << "Failed to parse " << path << endl; LOG(error) << "Types:" << endl; for (std::set::const_iterator t = types.begin(); t != types.end(); ++t) { LOG(error) << " :: " << *t << endl; assert((*t).is_uri()); } } } return boost::optional(); } /** Parse a patch from RDF into a Interface (engine or client). * @return whether or not load was successful. */ bool Parser::parse_file(Ingen::World* world, Ingen::Interface* target, Glib::ustring path, boost::optional parent, boost::optional symbol, boost::optional data) { if (Glib::file_test(path, Glib::FILE_TEST_IS_DIR)) { // This is a bundle, append "/name.ttl" to get patch file path path = Glib::build_filename(path, get_basename(path) + ".ttl"); } if (!Glib::path_is_absolute(path)) { path = Glib::build_filename(Glib::get_current_dir(), path); } std::string uri; try { uri = Glib::filename_to_uri(path, ""); } catch (const Glib::ConvertError& e) { LOG(error) << "Path to URI conversion error: " << e.what() << endl; return false; } const uint8_t* uri_c_str = (const uint8_t*)uri.c_str(); SerdNode base_node = serd_node_from_string(SERD_URI, uri_c_str); SerdEnv* env = serd_env_new(&base_node); // Load patch file into model Sord::Model model(*world->rdf_world(), uri, SORD_SPO|SORD_PSO, false); model.load_file(env, SERD_TURTLE, uri); serd_env_free(env); LOG(Raul::info)(Raul::fmt("Parsing %1%\n") % path); if (parent) LOG(Raul::info)(Raul::fmt("Parent: %1%\n") % parent->c_str()); if (symbol) LOG(Raul::info)(Raul::fmt("Symbol: %1%\n") % symbol->c_str()); Sord::Node subject(*world->rdf_world(), Sord::Node::URI, uri); boost::optional parsed_path = parse(world, target, model, path, subject, parent, symbol, data); if (parsed_path) { target->set_property(GraphObject::path_to_uri(*parsed_path), Raul::URI("http://drobilla.net/ns/ingen#document"), world->forge().alloc_uri(uri)); } else { LOG(Raul::warn)("Document URI lost\n"); } return parsed_path; } bool Parser::parse_string(Ingen::World* world, Ingen::Interface* target, const Glib::ustring& str, const Glib::ustring& base_uri, boost::optional parent, boost::optional symbol, boost::optional data) { // Load string into model Sord::Model model(*world->rdf_world(), base_uri, SORD_SPO|SORD_PSO, false); const SerdNode base = serd_node_from_string( SERD_URI, (const uint8_t*)base_uri.c_str()); SerdEnv* env = serd_env_new(&base); model.load_string(env, SERD_TURTLE, str.c_str(), str.length(), base_uri); serd_env_free(env); LOG(Raul::info) << "Parsing string"; if (!base_uri.empty()) info << " (base " << base_uri << ")"; info << endl; Sord::Node subject; return parse(world, target, model, base_uri, subject, parent, symbol, data); } } // namespace Serialisation } // namespace Ingen