Examples of SaxWriter


Examples of xbird.util.xml.SAXWriter

        if(DEBUG_LIGHT) {
            System.err.println(query);
        }
        XQueryModule mod = processor.parse(query, uri);
        StringWriter res_sw = new StringWriter();
        Serializer ser = new SAXSerializer(new SAXWriter(res_sw), res_sw);
        processor.execute(mod, ser);
        //Sequence<? extends Item> reseq = processor.execute(mod);
        //ser.emit(reseq);
        String result = res_sw.toString();
        return result;
View Full Code Here

Examples of xbird.util.xml.SAXWriter

        XQueryModule mod = processor.parse(new FileInputStream(queryFile), new File(DOC_BASE).toURI());
        processor.compile(mod);
        System.err.println(mod.getExpression().toString());
        Sequence result = processor.execute(mod);
        StringWriter res_sw = new StringWriter();
        Serializer ser = new SAXSerializer(new SAXWriter(res_sw), res_sw);
        ser.emit(result);
        String swresult = sw.toString();
        long used = SystemUtils.getHeapUsedMemory();
        stdbuf.append(", used(before GC): " + StringUtils.displayBytesSize(used));
        System.gc();
View Full Code Here

Examples of xbird.util.xml.SAXWriter

    public boolean instanceOf(XQItemType type) throws XQException {
        return false;
    }

    public void writeItem(OutputStream os, Properties props) throws XQException {
        final SAXWriter saxhdlr = new SAXWriter(os);
        writeItemToSAX(saxhdlr);
    }
View Full Code Here

Examples of xbird.util.xml.SAXWriter

        final SAXWriter saxhdlr = new SAXWriter(os);
        writeItemToSAX(saxhdlr);
    }

    public void writeItem(Writer ow, Properties props) throws XQException {
        final SAXWriter saxhdlr = new SAXWriter(ow);
        writeItemToSAX(saxhdlr);
    }
View Full Code Here

Examples of xbird.util.xml.SAXWriter

            }
        }
    }

    private SAXWriter prepareSAXWriter(Writer writer) {
        final SAXWriter saxwr = new SAXWriter(writer, _encoding);
        if(_prettyPrint) {
            saxwr.setPrettyPrint(true);
        }
        if(_wrap) {
            saxwr.setXMLDeclaration(false);
            try {
                writer.write("<root>\n");
            } catch (IOException e) {
                throw new IllegalStateException(e);
            }
View Full Code Here

Examples of xbird.util.xml.SAXWriter

            resultSeq = (Sequence<Item>) engine.execute(request);
        } catch (RemoteException e) {
            throw new XQueryException("failed to execute a query", e);
        }

        SAXWriter saxwr = prepareSAXWriter(writer);
        Serializer ser = new SAXSerializer(saxwr, writer);
        ser.emit(resultSeq);
        if(_wrap) {
            try {
                writer.write("\n</root>\n");
View Full Code Here

Examples of xbird.util.xml.SAXWriter

        }
    }

    public void executeWithPushMode(XQueryProcessor proc, XQueryModule module, Writer writer)
            throws XQueryException {
        SAXWriter saxwr = prepareSAXWriter(writer);
        Serializer ser = new SAXSerializer(saxwr, writer);
        proc.execute(module, ser);
        if(_wrap) {
            try {
                writer.write("\n</root>\n");
View Full Code Here

Examples of xbird.util.xml.SAXWriter

        }
    }

    public void executeWithPullMode(XQueryProcessor proc, XQueryModule module, Writer writer)
            throws XQueryException {
        SAXWriter saxwr = prepareSAXWriter(writer);
        Serializer ser = new SAXSerializer(saxwr, writer);
        Sequence<? extends Item> result = proc.execute(module);
        if(_timing) {
            final StopWatch sw = new StopWatch("print time");
            ser.emit(result);
View Full Code Here

Examples of xbird.util.xml.SAXWriter

        } catch (XQueryException e) {
            reportError("Execution failed: " + queryPath, e, out);
            return;
        }
        // serialize       
        SAXWriter writer = new SAXWriter(out);
        Serializer ser = new SAXSerializer(writer);
        try {
            ser.emit(result);
        } catch (XQueryException e) {
            reportError("Serialization failed: " + queryPath, e, out);
View Full Code Here

Examples of xbird.util.xml.SAXWriter

        XQEngine engine = new XQEngineClient(remoteEndpoint);
        String query = IOUtils.toString(new FileInputStream(fileName));
        QueryRequest request = new QueryRequest(query, ReturnType.ASYNC_REMOTE_SEQUENCE);
        Sequence<Item> resultSeq = (Sequence<Item>) engine.execute(request);
        Writer writer = new FastBufferedWriter(new OutputStreamWriter(System.out), 4096);
        SAXWriter saxwr = new SAXWriter(writer, "UTF-8");
        Serializer ser = new SAXSerializer(saxwr, writer);
        ser.emit(resultSeq);
        writer.flush();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.