Search in sources :

Example 6 with RDFWriter

use of org.apache.jena.rdf.model.RDFWriter in project jena by apache.

the class AdapterRDFWriter method write.

@Override
public void write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context) {
    RDFWriter w = create();
    setProperties(w, context);
    w.write(ModelFactory.createModelForGraph(graph), out, baseURI);
}
Also used : RDFWriter(org.apache.jena.rdf.model.RDFWriter)

Example 7 with RDFWriter

use of org.apache.jena.rdf.model.RDFWriter in project jena by apache.

the class AdapterRDFWriter method write.

@Override
public void write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context) {
    RDFWriter w = create();
    setProperties(w, context);
    w.write(ModelFactory.createModelForGraph(graph), out, baseURI);
}
Also used : RDFWriter(org.apache.jena.rdf.model.RDFWriter)

Example 8 with RDFWriter

use of org.apache.jena.rdf.model.RDFWriter in project jena by apache.

the class RDFWriterFImpl method setBaseWriterClassName.

/**
     * Use RIOT to add custom RDF parsers. See
     * {@code RDFWriterRegistry.registerLang}
     * 
     * @deprecated Register with RIOT.
     */
@Deprecated
public static String setBaseWriterClassName(String lang, String className) {
    if (rewiredAlternative != null)
        Log.error(RDFWriterFImpl.class, "Rewired RDFWriterFImpl2 - configuration changes have no effect on writing");
    String oldClassName = currentEntry(lang);
    try {
        @SuppressWarnings("unchecked") Class<? extends RDFWriter> newClass = (Class<? extends RDFWriter>) Class.forName(className, false, Thread.currentThread().getContextClassLoader());
        custom.put(lang, newClass);
        return oldClassName;
    } catch (ClassNotFoundException e) {
        throw new ConfigException("Reader not found on classpath", e);
    } catch (Exception e) {
        throw new JenaException(e);
    }
}
Also used : JenaException(org.apache.jena.shared.JenaException) RDFWriter(org.apache.jena.rdf.model.RDFWriter) ConfigException(org.apache.jena.shared.ConfigException) NoWriterForLangException(org.apache.jena.shared.NoWriterForLangException) JenaException(org.apache.jena.shared.JenaException) ConfigException(org.apache.jena.shared.ConfigException)

Example 9 with RDFWriter

use of org.apache.jena.rdf.model.RDFWriter in project jena by apache.

the class TestXMLFeatures method checkPropURI.

public void checkPropURI(String s, String p, Object val, int behaviour) throws IOException {
    // create triple and graph.
    // BaseXMLWriter.dbg = true;
    // SystemOutAndErr.block();
    // TestLogger tl = new TestLogger(BaseXMLWriter.class);
    blockLogger();
    Node blank = NodeFactory.createBlankNode();
    Node prop = NodeFactory.createURI(s);
    Graph g = Factory.createGraphMem();
    g.add(Triple.create(blank, prop, blank));
    // create Model
    Model m = ModelFactory.createModelForGraph(g);
    // serialize
    RDFWriter rw = m.getWriter(lang);
    if (p != null)
        rw.setProperty(p, val);
    try (StringWriter w = new StringWriter()) {
        rw.write(m, w, "http://example.org/");
        String f = w.toString();
        switch(behaviour) {
            case BadPropURI:
                fail("Bad property URI <" + s + "> was not detected.");
                return;
            case BadURI:
                fail("Bad URI <" + s + "> was not detected.");
                return;
        }
        // read back in
        Model m2 = createMemModel();
        RDFReader rdr = m2.getReader("RDF/XML");
        rdr.setProperty("error-mode", "lax");
        try (StringReader sr = new StringReader(f)) {
            rdr.read(m2, sr, "http://example.org/");
        }
        // check
        switch(behaviour) {
            case ExtraTriples:
                assertTrue("Expecting Brickley behaviour.", m2.size() == 3);
                break;
            case NoError:
                assertTrue("Comparing Model written out and read in.", m.isIsomorphicWith(m2));
                break;
        }
    } catch (BadURIException e) {
        if (behaviour == BadURI)
            return;
        throw e;
    } catch (InvalidPropertyURIException je) {
        if (behaviour == BadPropURI)
            return;
        throw je;
    } catch (JenaException e) {
        throw e;
    } finally {
        // BaseXMLWriter.dbg = false;
        // tl.end();
        unblockLogger();
    // SystemOutAndErr.unblock();
    }
}
Also used : BadURIException(org.apache.jena.shared.BadURIException) JenaException(org.apache.jena.shared.JenaException) Model(org.apache.jena.rdf.model.Model) RDFWriter(org.apache.jena.rdf.model.RDFWriter) InvalidPropertyURIException(org.apache.jena.shared.InvalidPropertyURIException) RDFReader(org.apache.jena.rdf.model.RDFReader)

Aggregations

RDFWriter (org.apache.jena.rdf.model.RDFWriter)9 Model (org.apache.jena.rdf.model.Model)4 StringWriter (java.io.StringWriter)2 JenaException (org.apache.jena.shared.JenaException)2 IOException (java.io.IOException)1 StringReader (java.io.StringReader)1 Properties (java.util.Properties)1 RDFReader (org.apache.jena.rdf.model.RDFReader)1 BaseXMLWriter (org.apache.jena.rdfxml.xmloutput.impl.BaseXMLWriter)1 BadURIException (org.apache.jena.shared.BadURIException)1 ConfigException (org.apache.jena.shared.ConfigException)1 InvalidPropertyURIException (org.apache.jena.shared.InvalidPropertyURIException)1 NoWriterForLangException (org.apache.jena.shared.NoWriterForLangException)1 Test (org.junit.Test)1