Search in sources :

Example 16 with AsyncXMLInputFactory

use of com.fasterxml.aalto.AsyncXMLInputFactory in project aalto-xml by FasterXML.

the class TestCommentParsing method _testComments.

private void _testComments(final String spaces, final int chunkSize) throws Exception {
    final AsyncXMLInputFactory f = new InputFactoryImpl();
    // test for byte array
    AsyncXMLStreamReader<AsyncByteArrayFeeder> sr_array = null;
    try {
        sr_array = f.createAsyncForByteArray();
        final AsyncReaderWrapperForByteArray reader_array = new AsyncReaderWrapperForByteArray(sr_array, chunkSize, spaces + XML);
        _testComments(sr_array, reader_array);
    } finally {
        if (sr_array != null) {
            sr_array.close();
        }
    }
    // test for byte buffer
    AsyncXMLStreamReader<AsyncByteBufferFeeder> sr_buffer = null;
    try {
        sr_buffer = f.createAsyncForByteBuffer();
        final AsyncReaderWrapperForByteBuffer reader_buffer = new AsyncReaderWrapperForByteBuffer(sr_buffer, chunkSize, spaces + XML);
        _testComments(sr_buffer, reader_buffer);
    } finally {
        if (sr_buffer != null) {
            sr_buffer.close();
        }
    }
}
Also used : AsyncByteBufferFeeder(com.fasterxml.aalto.AsyncByteBufferFeeder) AsyncByteArrayFeeder(com.fasterxml.aalto.AsyncByteArrayFeeder) InputFactoryImpl(com.fasterxml.aalto.stax.InputFactoryImpl) AsyncXMLInputFactory(com.fasterxml.aalto.AsyncXMLInputFactory)

Example 17 with AsyncXMLInputFactory

use of com.fasterxml.aalto.AsyncXMLInputFactory in project aalto-xml by FasterXML.

the class TestElementParsing method testTrivial_array.

/**
 * Trivial test to verify basic operation with a full buffer.
 */
public void testTrivial_array() throws Exception {
    final AsyncXMLInputFactory f = new InputFactoryImpl();
    AsyncXMLStreamReader<AsyncByteArrayFeeder> sr = null;
    try {
        sr = f.createAsyncFor("<root>a</root>".getBytes("UTF-8"));
        assertTokenType(START_DOCUMENT, sr.next());
        assertTokenType(START_ELEMENT, sr.next());
        assertEquals("root", sr.getLocalName());
        assertTokenType(CHARACTERS, sr.next());
        assertEquals("a", sr.getText());
        assertTokenType(END_ELEMENT, sr.next());
        assertEquals("root", sr.getLocalName());
        // no input to see (could still get a PI, comment etc), so
        assertTokenType(AsyncXMLStreamReader.EVENT_INCOMPLETE, sr.next());
        sr.getInputFeeder().endOfInput();
        assertTokenType(END_DOCUMENT, sr.next());
    } finally {
        if (sr != null) {
            sr.close();
        }
    }
}
Also used : AsyncByteArrayFeeder(com.fasterxml.aalto.AsyncByteArrayFeeder) InputFactoryImpl(com.fasterxml.aalto.stax.InputFactoryImpl) AsyncXMLInputFactory(com.fasterxml.aalto.AsyncXMLInputFactory)

Example 18 with AsyncXMLInputFactory

use of com.fasterxml.aalto.AsyncXMLInputFactory in project aalto-xml by FasterXML.

the class TestXmlDeclaration method testStandAloneDeclaration2.

public void testStandAloneDeclaration2() throws Exception {
    final String XML = "<?xml version=\"1.0\" standalone='yes'?>\n<root/>";
    final AsyncXMLInputFactory f = new InputFactoryImpl();
    for (final int chunkSize : CHUNK_SIZES) {
        // test for byte array
        AsyncXMLStreamReader<AsyncByteArrayFeeder> sr_array = null;
        try {
            sr_array = f.createAsyncForByteArray();
            final AsyncReaderWrapperForByteArray reader_array = new AsyncReaderWrapperForByteArray(sr_array, chunkSize, XML);
            _testStandAloneDeclaration2(sr_array, reader_array);
        } finally {
            if (sr_array != null) {
                sr_array.close();
            }
        }
        // test for byte buffer
        AsyncXMLStreamReader<AsyncByteBufferFeeder> sr_buffer = null;
        try {
            sr_buffer = f.createAsyncForByteBuffer();
            final AsyncReaderWrapperForByteBuffer reader_buffer = new AsyncReaderWrapperForByteBuffer(sr_buffer, chunkSize, XML);
            _testStandAloneDeclaration2(sr_buffer, reader_buffer);
        } finally {
            if (sr_buffer != null) {
                sr_buffer.close();
            }
        }
    }
}
Also used : AsyncByteBufferFeeder(com.fasterxml.aalto.AsyncByteBufferFeeder) AsyncByteArrayFeeder(com.fasterxml.aalto.AsyncByteArrayFeeder) InputFactoryImpl(com.fasterxml.aalto.stax.InputFactoryImpl) AsyncXMLInputFactory(com.fasterxml.aalto.AsyncXMLInputFactory)

Example 19 with AsyncXMLInputFactory

use of com.fasterxml.aalto.AsyncXMLInputFactory in project aalto-xml by FasterXML.

the class TestXmlDeclaration method testEncodingDeclaration.

public void testEncodingDeclaration() throws Exception {
    final String XML = "<?xml version= \"1.0\"   encoding='UTF-8' ?><root/>";
    final AsyncXMLInputFactory f = new InputFactoryImpl();
    for (final int chunkSize : CHUNK_SIZES) {
        // test for byte array
        AsyncXMLStreamReader<AsyncByteArrayFeeder> sr_array = null;
        try {
            sr_array = f.createAsyncForByteArray();
            final AsyncReaderWrapperForByteArray reader_array = new AsyncReaderWrapperForByteArray(sr_array, chunkSize, XML);
            _testEncodingDeclaration(sr_array, reader_array);
        } finally {
            if (sr_array != null) {
                sr_array.close();
            }
        }
        // test for byte buffer
        AsyncXMLStreamReader<AsyncByteBufferFeeder> sr_buffer = null;
        try {
            sr_buffer = f.createAsyncForByteBuffer();
            final AsyncReaderWrapperForByteBuffer reader_buffer = new AsyncReaderWrapperForByteBuffer(sr_buffer, chunkSize, XML);
            _testEncodingDeclaration(sr_buffer, reader_buffer);
        } finally {
            if (sr_buffer != null) {
                sr_buffer.close();
            }
        }
    }
}
Also used : AsyncByteBufferFeeder(com.fasterxml.aalto.AsyncByteBufferFeeder) AsyncByteArrayFeeder(com.fasterxml.aalto.AsyncByteArrayFeeder) InputFactoryImpl(com.fasterxml.aalto.stax.InputFactoryImpl) AsyncXMLInputFactory(com.fasterxml.aalto.AsyncXMLInputFactory)

Example 20 with AsyncXMLInputFactory

use of com.fasterxml.aalto.AsyncXMLInputFactory in project aalto-xml by FasterXML.

the class TestXmlDeclaration method testVersionOnlyDeclaration.

public void testVersionOnlyDeclaration() throws Exception {
    final String XML = "<?xml version='1.0' ?><root />";
    final AsyncXMLInputFactory f = new InputFactoryImpl();
    for (final int chunkSize : CHUNK_SIZES) {
        // test for byte array
        AsyncXMLStreamReader<AsyncByteArrayFeeder> sr_array = null;
        try {
            sr_array = f.createAsyncForByteArray();
            final AsyncReaderWrapperForByteArray reader_array = new AsyncReaderWrapperForByteArray(sr_array, chunkSize, XML);
            _testVersionOnlyDeclaration(sr_array, reader_array);
        } finally {
            if (sr_array != null) {
                sr_array.close();
            }
        }
        // test for byte buffer
        AsyncXMLStreamReader<AsyncByteBufferFeeder> sr_buffer = null;
        try {
            sr_buffer = f.createAsyncForByteBuffer();
            final AsyncReaderWrapperForByteBuffer reader_buffer = new AsyncReaderWrapperForByteBuffer(sr_buffer, chunkSize, XML);
            _testVersionOnlyDeclaration(sr_buffer, reader_buffer);
        } finally {
            if (sr_buffer != null) {
                sr_buffer.close();
            }
        }
    }
}
Also used : AsyncByteBufferFeeder(com.fasterxml.aalto.AsyncByteBufferFeeder) AsyncByteArrayFeeder(com.fasterxml.aalto.AsyncByteArrayFeeder) InputFactoryImpl(com.fasterxml.aalto.stax.InputFactoryImpl) AsyncXMLInputFactory(com.fasterxml.aalto.AsyncXMLInputFactory)

Aggregations

AsyncXMLInputFactory (com.fasterxml.aalto.AsyncXMLInputFactory)25 AsyncByteArrayFeeder (com.fasterxml.aalto.AsyncByteArrayFeeder)24 InputFactoryImpl (com.fasterxml.aalto.stax.InputFactoryImpl)24 AsyncByteBufferFeeder (com.fasterxml.aalto.AsyncByteBufferFeeder)22 Result (io.georocket.input.Splitter.Result)1 XMLChunkMeta (io.georocket.storage.XMLChunkMeta)1 Window (io.georocket.util.Window)1 XMLStreamEvent (io.georocket.util.XMLStreamEvent)1 ArrayList (java.util.ArrayList)1 XMLStreamException (javax.xml.stream.XMLStreamException)1