All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jena.riot.adapters.RDFWriterRIOT Maven / Gradle / Ivy

There is a newer version: 5.1.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.jena.riot.adapters;

import java.io.OutputStream ;
import java.io.Writer ;
import java.util.HashMap ;
import java.util.Locale ;
import java.util.Map ;

import org.apache.jena.rdf.model.Model ;
import org.apache.jena.rdf.model.RDFErrorHandler ;
import org.apache.jena.rdf.model.RDFWriter ;
import org.apache.jena.rdf.model.impl.RDFDefaultErrorHandler ;
import org.apache.jena.riot.* ;
import org.apache.jena.sparql.util.Context ;
import org.apache.jena.sparql.util.Symbol ;

/**
 * This class is used for indirecting all model.write calls to RIOT. It
 * implements Jena core {@link RDFWriter} can calls {@link WriterGraphRIOT}.
 * 

* For RDF/XML, that {@link WriterGraphRIOT} is a {@link AdapterRDFWriter} that * calls the old style {@link RDFWriter} interface. *

* {@link AdapterRDFWriter} is a {@link WriterGraphRIOT} over a * {@link RDFWriter}. */ public class RDFWriterRIOT implements RDFWriter { // ---- Compatibility private final String basename ; private final String jenaName ; private Context context = new Context() ; private Map properties = new HashMap<>() ; private RDFErrorHandler errorHandler = new RDFDefaultErrorHandler(); public RDFWriterRIOT(String jenaName) { this.basename = "org.apache.jena.riot.writer." + jenaName.toLowerCase(Locale.ROOT); this.jenaName = jenaName; context.put(SysRIOT.sysRdfWriterProperties, properties); } protected RDFWriterBuilder writer() { if ( jenaName == null ) throw new IllegalArgumentException("Jena writer name is null"); // For writing via model.write(), use any old names for jena writers. (As of 2107-03 - there are none) RDFFormat format = RDFWriterRegistry.getFormatForJenaWriter(jenaName) ; RDFWriterBuilder builder = org.apache.jena.riot.RDFWriter.create(); if ( format != null ) return builder.format(format); Lang lang = RDFLanguages.nameToLang(jenaName); if ( lang != null ) return builder.lang(lang); throw new RiotException("No graph writer for '" + jenaName + "'"); } @SuppressWarnings("deprecation") @Override public void write(Model model, Writer out, String base) { if ( base != null && base.equals("") ) base = null; writer().source(model).context(context).base(base).build().output(out); } @Override public void write(Model model, OutputStream out, String base) { if ( base != null && base.equals("") ) base = null; writer().source(model).context(context).base(base).output(out); } @Override public Object setProperty(String propName, Object propValue) { Symbol sym = Symbol.create(basename + "#" + propName); Object oldObj = context.get(sym); context.set(sym, propValue); properties.put(propName, propValue) ; // These are added to any Jena RDFWriter (old-style, e.g. RDF/XML) in AdapterRDFWriter return oldObj; } @Override public RDFErrorHandler setErrorHandler(RDFErrorHandler errHandler) { RDFErrorHandler old = errorHandler; errorHandler = errHandler; return old; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy