NIFI-5113: Add XMLRecordSetWriter

This closes #2675.

Signed-off-by: Mark Payne <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/2c8c9374
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/2c8c9374
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/2c8c9374

Branch: refs/heads/master
Commit: 2c8c9374af7785fc92ec603669c6763a7d311d3b
Parents: 620d446
Author: JohannesDaniel <[email protected]>
Authored: Mon Apr 23 21:35:40 2018 +0200
Committer: Mark Payne <[email protected]>
Committed: Tue May 15 11:07:19 2018 -0400

----------------------------------------------------------------------
 .../nifi-record-serialization-services/pom.xml  |   18 +
 .../apache/nifi/json/JsonRecordSetWriter.java   |    1 +
 .../org/apache/nifi/json/NullSuppression.java   |   24 -
 .../org/apache/nifi/json/WriteJsonResult.java   |    1 +
 .../org/apache/nifi/record/NullSuppression.java |   24 +
 .../java/org/apache/nifi/xml/ArrayWrapping.java |   24 +
 .../org/apache/nifi/xml/WriteXMLResult.java     |  653 ++++++++
 .../org/apache/nifi/xml/XMLRecordSetWriter.java |  210 +++
 ...org.apache.nifi.controller.ControllerService |    3 +-
 .../additionalDetails.html                      |  211 +++
 .../apache/nifi/json/TestWriteJsonResult.java   |    1 +
 .../org/apache/nifi/xml/TestWriteXMLResult.java | 1399 ++++++++++++++++++
 .../nifi/xml/TestWriteXMLResultUtils.java       |  490 ++++++
 .../apache/nifi/xml/TestXMLRecordSetWriter.java |  194 +++
 .../xml/TestXMLRecordSetWriterProcessor.java    |  122 ++
 .../src/test/resources/xml/testschema3          |   12 +
 16 files changed, 3362 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/pom.xml
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/pom.xml
index 0db4217..1bb4878 100755
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/pom.xml
@@ -87,11 +87,28 @@
             <version>1.8.1</version>
         </dependency>
         <dependency>
+            <groupId>net.java.dev.stax-utils</groupId>
+            <artifactId>stax-utils</artifactId>
+            <version>20070216</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.bea.xml</groupId>
+                    <artifactId>jsr173-ri</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
             <groupId>org.apache.nifi</groupId>
             <artifactId>nifi-mock</artifactId>
             <version>1.7.0-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-matchers</artifactId>
+            <version>2.2.1</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <plugins>
@@ -148,6 +165,7 @@
                         <exclude>src/test/resources/xml/person.xml</exclude>
                         <exclude>src/test/resources/xml/testschema</exclude>
                         <exclude>src/test/resources/xml/testschema2</exclude>
+                        <exclude>src/test/resources/xml/testschema3</exclude>
                     </excludes>
                 </configuration>
             </plugin>

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/JsonRecordSetWriter.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/JsonRecordSetWriter.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/JsonRecordSetWriter.java
old mode 100644
new mode 100755
index 078a15d..e2b417d
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/JsonRecordSetWriter.java
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/JsonRecordSetWriter.java
@@ -23,6 +23,7 @@ import java.util.ArrayList;
 import java.util.Collection;
 import java.util.List;
 
+import org.apache.nifi.record.NullSuppression;
 import org.apache.nifi.annotation.documentation.CapabilityDescription;
 import org.apache.nifi.annotation.documentation.Tags;
 import org.apache.nifi.annotation.lifecycle.OnEnabled;

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/NullSuppression.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/NullSuppression.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/NullSuppression.java
deleted file mode 100644
index 494c72f..0000000
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/NullSuppression.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * 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.nifi.json;
-
-public enum NullSuppression {
-    ALWAYS_SUPPRESS,
-    NEVER_SUPPRESS,
-    SUPPRESS_MISSING
-}

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/WriteJsonResult.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/WriteJsonResult.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/WriteJsonResult.java
old mode 100644
new mode 100755
index c91768e..c596ae2
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/WriteJsonResult.java
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/json/WriteJsonResult.java
@@ -26,6 +26,7 @@ import java.util.Optional;
 import java.util.Set;
 import java.util.function.Supplier;
 
+import org.apache.nifi.record.NullSuppression;
 import org.apache.nifi.logging.ComponentLog;
 import org.apache.nifi.schema.access.SchemaAccessWriter;
 import org.apache.nifi.serialization.AbstractRecordSetWriter;

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/record/NullSuppression.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/record/NullSuppression.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/record/NullSuppression.java
new file mode 100755
index 0000000..fed54a1
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/record/NullSuppression.java
@@ -0,0 +1,24 @@
+/*
+ * 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.nifi.record;
+
+public enum NullSuppression {
+    ALWAYS_SUPPRESS,
+    NEVER_SUPPRESS,
+    SUPPRESS_MISSING
+}

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/ArrayWrapping.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/ArrayWrapping.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/ArrayWrapping.java
new file mode 100755
index 0000000..90522e5
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/ArrayWrapping.java
@@ -0,0 +1,24 @@
+/*
+ * 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.nifi.xml;
+
+public enum ArrayWrapping {
+    USE_PROPERTY_AS_WRAPPER,
+    USE_PROPERTY_FOR_ELEMENTS,
+    NO_WRAPPING
+}

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/WriteXMLResult.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/WriteXMLResult.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/WriteXMLResult.java
new file mode 100755
index 0000000..baa3a13
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/WriteXMLResult.java
@@ -0,0 +1,653 @@
+/*
+ * 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.nifi.xml;
+
+import javanet.staxutils.IndentingXMLStreamWriter;
+import org.apache.nifi.record.NullSuppression;
+import org.apache.nifi.logging.ComponentLog;
+import org.apache.nifi.schema.access.SchemaAccessWriter;
+import org.apache.nifi.serialization.AbstractRecordSetWriter;
+import org.apache.nifi.serialization.RecordSetWriter;
+import org.apache.nifi.serialization.WriteResult;
+import org.apache.nifi.serialization.record.DataType;
+import org.apache.nifi.serialization.record.RawRecordWriter;
+import org.apache.nifi.serialization.record.Record;
+import org.apache.nifi.serialization.record.RecordField;
+import org.apache.nifi.serialization.record.RecordFieldType;
+import org.apache.nifi.serialization.record.RecordSchema;
+import org.apache.nifi.serialization.record.type.ArrayDataType;
+import org.apache.nifi.serialization.record.type.ChoiceDataType;
+import org.apache.nifi.serialization.record.type.MapDataType;
+import org.apache.nifi.serialization.record.type.RecordDataType;
+import org.apache.nifi.serialization.record.util.DataTypeUtils;
+
+import javax.xml.stream.XMLOutputFactory;
+import javax.xml.stream.XMLStreamException;
+import javax.xml.stream.XMLStreamWriter;
+import java.io.IOException;
+import java.io.OutputStream;
+import java.text.DateFormat;
+import java.util.ArrayDeque;
+import java.util.Deque;
+import java.util.Map;
+import java.util.Optional;
+import java.util.Set;
+import java.util.function.Supplier;
+
+import static org.apache.nifi.xml.XMLRecordSetWriter.RECORD_TAG_NAME;
+import static org.apache.nifi.xml.XMLRecordSetWriter.ROOT_TAG_NAME;
+
+
+public class WriteXMLResult extends AbstractRecordSetWriter implements 
RecordSetWriter, RawRecordWriter {
+
+    private final ComponentLog logger;
+    private final RecordSchema recordSchema;
+    private final SchemaAccessWriter schemaAccess;
+    private final XMLStreamWriter writer;
+    private final NullSuppression nullSuppression;
+    private final ArrayWrapping arrayWrapping;
+    private final String arrayTagName;
+    private final String recordTagName;
+    private final String rootTagName;
+    private final String charSet;
+    private final boolean allowWritingMultipleRecords;
+    private boolean hasWrittenRecord;
+
+    private final Supplier<DateFormat> LAZY_DATE_FORMAT;
+    private final Supplier<DateFormat> LAZY_TIME_FORMAT;
+    private final Supplier<DateFormat> LAZY_TIMESTAMP_FORMAT;
+
+    public WriteXMLResult(final ComponentLog logger, final RecordSchema 
recordSchema, final SchemaAccessWriter schemaAccess, final OutputStream out, 
final boolean prettyPrint,
+                          final NullSuppression nullSuppression, final 
ArrayWrapping arrayWrapping, final String arrayTagName, final String 
rootTagName, final String recordTagName,
+                          final String charSet, final String dateFormat, final 
String timeFormat, final String timestampFormat) throws IOException {
+
+        super(out);
+
+        this.logger = logger;
+        this.recordSchema = recordSchema;
+        this.schemaAccess = schemaAccess;
+        this.nullSuppression = nullSuppression;
+
+        this.arrayWrapping = arrayWrapping;
+        this.arrayTagName = arrayTagName;
+
+        this.rootTagName = rootTagName;
+
+        if (recordTagName != null) {
+            this.recordTagName = recordTagName;
+        } else {
+            Optional<String> recordTagNameOptional = 
recordSchema.getIdentifier().getName();
+            if (recordTagNameOptional.isPresent()) {
+                this.recordTagName = recordTagNameOptional.get();
+            } else {
+                StringBuilder message = new StringBuilder();
+                message.append("The property \'")
+                        .append(RECORD_TAG_NAME.getDisplayName())
+                        .append("\' has not been set and the writer does not 
find a record name in the schema.");
+                throw new IOException(message.toString());
+            }
+        }
+
+        this.allowWritingMultipleRecords = !(this.rootTagName == null);
+
+        this.charSet = charSet;
+
+        hasWrittenRecord = false;
+
+        final DateFormat df = dateFormat == null ? null : 
DataTypeUtils.getDateFormat(dateFormat);
+        final DateFormat tf = timeFormat == null ? null : 
DataTypeUtils.getDateFormat(timeFormat);
+        final DateFormat tsf = timestampFormat == null ? null : 
DataTypeUtils.getDateFormat(timestampFormat);
+
+        LAZY_DATE_FORMAT = () -> df;
+        LAZY_TIME_FORMAT = () -> tf;
+        LAZY_TIMESTAMP_FORMAT = () -> tsf;
+
+        try {
+            XMLOutputFactory factory = XMLOutputFactory.newInstance();
+
+            if (prettyPrint) {
+                writer = new 
IndentingXMLStreamWriter(factory.createXMLStreamWriter(out, charSet));
+            } else {
+                writer = factory.createXMLStreamWriter(out, charSet);
+            }
+
+        } catch (XMLStreamException e) {
+            throw new IOException(e.getMessage());
+        }
+    }
+
+    @Override
+    protected void onBeginRecordSet() throws IOException {
+
+        final OutputStream out = getOutputStream();
+        schemaAccess.writeHeader(recordSchema, out);
+
+        try {
+            writer.writeStartDocument();
+
+            if (allowWritingMultipleRecords) {
+                writer.writeStartElement(rootTagName);
+            }
+
+        } catch (XMLStreamException e) {
+            throw new IOException(e.getMessage());
+        }
+    }
+
+    @Override
+    protected Map<String, String> onFinishRecordSet() throws IOException {
+
+        try {
+            if (allowWritingMultipleRecords) {
+                writer.writeEndElement();
+            }
+
+            writer.writeEndDocument();
+        } catch (XMLStreamException e) {
+            throw new IOException(e.getMessage());
+        }
+        return schemaAccess.getAttributes(recordSchema);
+    }
+
+    @Override
+    public void close() throws IOException {
+
+        try {
+            writer.close();
+
+        } catch (XMLStreamException e) {
+            throw new IOException(e.getMessage());
+        }
+
+        super.close();
+    }
+
+    @Override
+    public void flush() throws IOException {
+
+        try {
+            writer.flush();
+
+        } catch (XMLStreamException e) {
+            throw new IOException(e.getMessage());
+        }
+    }
+
+    private void checkWritingMultipleRecords() throws IOException {
+        if (!allowWritingMultipleRecords && hasWrittenRecord) {
+            StringBuilder message = new StringBuilder();
+            message.append("The writer attempts to write multiple record 
although property \'")
+                    .append(ROOT_TAG_NAME.getDisplayName())
+                    .append("\' has not been set. If the XMLRecordSetWriter is 
supposed to write multiple records into one ")
+                    .append("FlowFile, this property is required to be 
configured.");
+            throw new IOException(message.toString()
+            );
+        }
+    }
+
+    @Override
+    protected Map<String, String> writeRecord(Record record) throws 
IOException {
+
+        if (!isActiveRecordSet()) {
+            schemaAccess.writeHeader(recordSchema, getOutputStream());
+        }
+
+        checkWritingMultipleRecords();
+
+        Deque<String> tagsToOpen = new ArrayDeque<>();
+
+        try {
+            tagsToOpen.addLast(recordTagName);
+
+            boolean closingTagRequired = 
iterateThroughRecordUsingSchema(tagsToOpen, record, recordSchema);
+            if (closingTagRequired) {
+                writer.writeEndElement();
+                hasWrittenRecord = true;
+            }
+
+        } catch (XMLStreamException e) {
+            throw new IOException(e.getMessage());
+        }
+        return schemaAccess.getAttributes(recordSchema);
+    }
+
+    private boolean iterateThroughRecordUsingSchema(Deque<String> tagsToOpen, 
Record record, RecordSchema schema) throws XMLStreamException {
+
+        boolean loopHasWritten = false;
+        for (RecordField field : schema.getFields()) {
+
+            String fieldName = field.getFieldName();
+            DataType dataType = field.getDataType();
+            Object value = record.getValue(field);
+
+            final DataType chosenDataType = dataType.getFieldType() == 
RecordFieldType.CHOICE ? DataTypeUtils.chooseDataType(value, (ChoiceDataType) 
dataType) : dataType;
+            final Object coercedValue = DataTypeUtils.convertType(value, 
chosenDataType, LAZY_DATE_FORMAT, LAZY_TIME_FORMAT, LAZY_TIMESTAMP_FORMAT, 
fieldName);
+
+            if (coercedValue != null) {
+                boolean hasWritten = writeFieldForType(tagsToOpen, 
coercedValue, chosenDataType, fieldName);
+                if (hasWritten) {
+                    loopHasWritten = true;
+                }
+
+            } else {
+                if (nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) || 
nullSuppression.equals(NullSuppression.SUPPRESS_MISSING) && 
recordHasField(field, record)) {
+                    writeAllTags(tagsToOpen, fieldName);
+                    writer.writeEndElement();
+                    loopHasWritten = true;
+                }
+            }
+        }
+
+        return loopHasWritten;
+    }
+
+    private boolean writeFieldForType(Deque<String> tagsToOpen, Object 
coercedValue, DataType dataType, String fieldName) throws XMLStreamException {
+        switch (dataType.getFieldType()) {
+            case BOOLEAN:
+            case BYTE:
+            case CHAR:
+            case DOUBLE:
+            case FLOAT:
+            case INT:
+            case LONG:
+            case SHORT:
+            case STRING: {
+                writeAllTags(tagsToOpen, fieldName);
+                writer.writeCharacters(coercedValue.toString());
+                writer.writeEndElement();
+                return true;
+            }
+            case DATE: {
+                writeAllTags(tagsToOpen, fieldName);
+                final String stringValue = 
DataTypeUtils.toString(coercedValue, LAZY_DATE_FORMAT);
+                writer.writeCharacters(stringValue);
+                writer.writeEndElement();
+                return true;
+            }
+            case TIME: {
+                writeAllTags(tagsToOpen, fieldName);
+                final String stringValue = 
DataTypeUtils.toString(coercedValue, LAZY_TIME_FORMAT);
+                writer.writeCharacters(stringValue);
+                writer.writeEndElement();
+                return true;
+            }
+            case TIMESTAMP: {
+                writeAllTags(tagsToOpen, fieldName);
+                final String stringValue = 
DataTypeUtils.toString(coercedValue, LAZY_TIMESTAMP_FORMAT);
+                writer.writeCharacters(stringValue);
+                writer.writeEndElement();
+                return true;
+            }
+            case RECORD: {
+                final Record record = (Record) coercedValue;
+                final RecordDataType recordDataType = (RecordDataType) 
dataType;
+                final RecordSchema childSchema = 
recordDataType.getChildSchema();
+                tagsToOpen.addLast(fieldName);
+
+                boolean hasWritten = 
iterateThroughRecordUsingSchema(tagsToOpen, record, childSchema);
+
+                if (hasWritten) {
+                    writer.writeEndElement();
+                    return true;
+                } else {
+
+                    if (nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) 
|| nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                        writeAllTags(tagsToOpen);
+                        writer.writeEndElement();
+                        return true;
+                    } else {
+                        tagsToOpen.removeLast();
+                        return false;
+                    }
+                }
+            }
+            case ARRAY: {
+                final Object[] arrayValues;
+                if (coercedValue instanceof Object[]) {
+                    arrayValues = (Object[]) coercedValue;
+                } else {
+                    arrayValues = new Object[]{coercedValue.toString()};
+                }
+
+                final ArrayDataType arrayDataType = (ArrayDataType) dataType;
+                final DataType elementType = arrayDataType.getElementType();
+
+                final String elementName;
+                final String wrapperName;
+                if 
(arrayWrapping.equals(ArrayWrapping.USE_PROPERTY_FOR_ELEMENTS)) {
+                    elementName = arrayTagName;
+                    wrapperName = fieldName;
+                } else if 
(arrayWrapping.equals(ArrayWrapping.USE_PROPERTY_AS_WRAPPER)) {
+                    elementName = fieldName;
+                    wrapperName = arrayTagName;
+                } else {
+                    elementName = fieldName;
+                    wrapperName = null;
+                }
+
+                if (wrapperName!= null) {
+                    tagsToOpen.addLast(wrapperName);
+                }
+
+                boolean loopHasWritten = false;
+                for (Object element : arrayValues) {
+
+                    final DataType chosenDataType = elementType.getFieldType() 
== RecordFieldType.CHOICE ? DataTypeUtils.chooseDataType(element, 
(ChoiceDataType) elementType) : elementType;
+                    final Object coercedElement = 
DataTypeUtils.convertType(element, chosenDataType, LAZY_DATE_FORMAT, 
LAZY_TIME_FORMAT, LAZY_TIMESTAMP_FORMAT, elementName);
+
+                    if (coercedElement != null) {
+                        boolean hasWritten = writeFieldForType(tagsToOpen, 
coercedElement, elementType, elementName);
+
+                        if (hasWritten) {
+                            loopHasWritten = true;
+                        }
+
+                    } else {
+                        if 
(nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) || 
nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                            writeAllTags(tagsToOpen, fieldName);
+                            writer.writeEndElement();
+                            loopHasWritten = true;
+                        }
+                    }
+                }
+
+                if (wrapperName!= null) {
+                    if (loopHasWritten) {
+                        writer.writeEndElement();
+                        return true;
+                    } else {
+                        if 
(nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) || 
nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                            writeAllTags(tagsToOpen);
+                            writer.writeEndElement();
+                            return true;
+                        } else {
+                            tagsToOpen.removeLast();
+                            return false;
+                        }
+                    }
+                } else {
+                    return loopHasWritten;
+                }
+            }
+            case MAP: {
+                final MapDataType mapDataType = (MapDataType) dataType;
+                final DataType valueDataType = mapDataType.getValueType();
+                final Map<String,?> map = (Map<String,?>) coercedValue;
+
+                tagsToOpen.addLast(fieldName);
+                boolean loopHasWritten = false;
+
+                for (Map.Entry<String,?> entry : map.entrySet()) {
+
+                    final String key = entry.getKey();
+
+                    final DataType chosenDataType = 
valueDataType.getFieldType() == RecordFieldType.CHOICE ? 
DataTypeUtils.chooseDataType(entry.getValue(),
+                            (ChoiceDataType) valueDataType) : valueDataType;
+                    final Object coercedElement = 
DataTypeUtils.convertType(entry.getValue(), chosenDataType, LAZY_DATE_FORMAT, 
LAZY_TIME_FORMAT, LAZY_TIMESTAMP_FORMAT, key);
+
+                    if (coercedElement != null) {
+                        boolean hasWritten = writeFieldForType(tagsToOpen, 
entry.getValue(), valueDataType, key);
+
+                        if (hasWritten) {
+                            loopHasWritten = true;
+                        }
+                    } else {
+                        if 
(nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) || 
nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                            writeAllTags(tagsToOpen, key);
+                            writer.writeEndElement();
+                            loopHasWritten = true;
+                        }
+                    }
+                }
+
+                if (loopHasWritten) {
+                    writer.writeEndElement();
+                    return true;
+                } else {
+                    if (nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) 
|| nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                        writeAllTags(tagsToOpen);
+                        writer.writeEndElement();
+                        return true;
+                    } else {
+                        tagsToOpen.removeLast();
+                        return false;
+                    }
+                }
+            }
+            case CHOICE:
+            default: {
+                return writeUnknownField(tagsToOpen, coercedValue, fieldName);
+            }
+        }
+    }
+
+    private void writeAllTags(Deque<String> tagsToOpen, String fieldName) 
throws XMLStreamException {
+        tagsToOpen.addLast(fieldName);
+        writeAllTags(tagsToOpen);
+    }
+
+    private void writeAllTags(Deque<String> tagsToOpen) throws 
XMLStreamException {
+        for (String tagName : tagsToOpen) {
+            writer.writeStartElement(tagName);
+        }
+        tagsToOpen.clear();
+    }
+
+    @Override
+    public WriteResult writeRawRecord(Record record) throws IOException {
+
+        if (!isActiveRecordSet()) {
+            schemaAccess.writeHeader(recordSchema, getOutputStream());
+        }
+
+        checkWritingMultipleRecords();
+
+        Deque<String> tagsToOpen = new ArrayDeque<>();
+
+        try {
+            tagsToOpen.addLast(recordTagName);
+
+            boolean closingTagRequired = 
iterateThroughRecordWithoutSchema(tagsToOpen, record);
+            if (closingTagRequired) {
+                writer.writeEndElement();
+                hasWrittenRecord = true;
+            }
+
+        } catch (XMLStreamException e) {
+            throw new IOException(e.getMessage());
+        }
+
+        final Map<String, String> attributes = 
schemaAccess.getAttributes(recordSchema);
+        return WriteResult.of(incrementRecordCount(), attributes);
+    }
+
+    private boolean iterateThroughRecordWithoutSchema(Deque<String> 
tagsToOpen, Record record) throws XMLStreamException {
+
+        boolean loopHasWritten = false;
+
+        for (String fieldName : record.getRawFieldNames()) {
+            Object value = record.getValue(fieldName);
+
+            if (value != null) {
+                boolean hasWritten = writeUnknownField(tagsToOpen, value, 
fieldName);
+
+                if (hasWritten) {
+                    loopHasWritten = true;
+                }
+            } else {
+                if (nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) || 
nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                    writeAllTags(tagsToOpen, fieldName);
+                    writer.writeEndElement();
+                    loopHasWritten = true;
+                }
+            }
+        }
+
+        return loopHasWritten;
+    }
+
+    private boolean writeUnknownField(Deque<String> tagsToOpen, Object value, 
String fieldName) throws XMLStreamException {
+
+        if (value instanceof Record) {
+            Record valueAsRecord = (Record) value;
+            tagsToOpen.addLast(fieldName);
+
+            boolean hasWritten = iterateThroughRecordWithoutSchema(tagsToOpen, 
valueAsRecord);
+
+            if (hasWritten) {
+                writer.writeEndElement();
+                return true;
+            } else {
+                if (nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) || 
nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                    writeAllTags(tagsToOpen);
+                    writer.writeEndElement();
+                    return true;
+                } else {
+                    tagsToOpen.removeLast();
+                    return false;
+                }
+            }
+        }
+
+        if (value instanceof Object[]) {
+            Object[] valueAsArray = (Object[]) value;
+
+            final String elementName;
+            final String wrapperName;
+            if (arrayWrapping.equals(ArrayWrapping.USE_PROPERTY_FOR_ELEMENTS)) 
{
+                elementName = arrayTagName;
+                wrapperName = fieldName;
+            } else if 
(arrayWrapping.equals(ArrayWrapping.USE_PROPERTY_AS_WRAPPER)) {
+                elementName = fieldName;
+                wrapperName = arrayTagName;
+            } else {
+                elementName = fieldName;
+                wrapperName = null;
+            }
+
+            if (wrapperName!= null) {
+                tagsToOpen.addLast(wrapperName);
+            }
+
+            boolean loopHasWritten = false;
+
+            for (Object element : valueAsArray) {
+                if (element != null) {
+                    boolean hasWritten = writeUnknownField(tagsToOpen, 
element, elementName);
+
+                    if (hasWritten) {
+                        loopHasWritten = true;
+                    }
+
+                } else {
+                    if (nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) 
|| nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                        writeAllTags(tagsToOpen, fieldName);
+                        writer.writeEndElement();
+                        loopHasWritten = true;
+                    }
+                }
+            }
+
+            if (wrapperName!= null) {
+                if (loopHasWritten) {
+                    writer.writeEndElement();
+                    return true;
+                } else {
+                    if (nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) 
|| nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                        writeAllTags(tagsToOpen);
+                        writer.writeEndElement();
+                        return true;
+                    } else {
+                        tagsToOpen.removeLast();
+                        return false;
+                    }
+                }
+            } else {
+                return loopHasWritten;
+            }
+        }
+
+        if (value instanceof Map) {
+            Map<String, ?> valueAsMap = (Map<String, ?>) value;
+
+            tagsToOpen.addLast(fieldName);
+            boolean loopHasWritten = false;
+
+            for (Map.Entry<String,?> entry : valueAsMap.entrySet()) {
+
+                final String key = entry.getKey();
+                final Object entryValue = entry.getValue();
+
+                if (entryValue != null) {
+                    boolean hasWritten = writeUnknownField(tagsToOpen, 
entry.getValue(), key);
+
+                    if (hasWritten) {
+                        loopHasWritten = true;
+                    }
+                } else {
+                    if (nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) 
|| nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                        writeAllTags(tagsToOpen, key);
+                        writer.writeEndElement();
+                        loopHasWritten = true;
+                    }
+                }
+
+            }
+
+            if (loopHasWritten) {
+                writer.writeEndElement();
+                return true;
+            } else {
+                if (nullSuppression.equals(NullSuppression.NEVER_SUPPRESS) || 
nullSuppression.equals(NullSuppression.SUPPRESS_MISSING)) {
+                    writeAllTags(tagsToOpen);
+                    writer.writeEndElement();
+                    return true;
+                } else {
+                    tagsToOpen.removeLast();
+                    return false;
+                }
+            }
+        }
+
+        writeAllTags(tagsToOpen, fieldName);
+        writer.writeCharacters(value.toString());
+        writer.writeEndElement();
+        return true;
+    }
+
+
+    @Override
+    public String getMimeType() {
+        return "application/xml";
+    }
+
+    private boolean recordHasField(RecordField field, Record record) {
+        Set<String> recordFieldNames = record.getRawFieldNames();
+        if (recordFieldNames.contains(field.getFieldName())) {
+            return true;
+        }
+
+        for (String alias : field.getAliases()) {
+            if (recordFieldNames.contains(alias)) {
+                return true;
+            }
+        }
+
+        return false;
+    }
+}

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/XMLRecordSetWriter.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/XMLRecordSetWriter.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/XMLRecordSetWriter.java
new file mode 100755
index 0000000..6867af0
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/xml/XMLRecordSetWriter.java
@@ -0,0 +1,210 @@
+/*
+ * 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.nifi.xml;
+
+import org.apache.nifi.record.NullSuppression;
+import org.apache.nifi.annotation.documentation.CapabilityDescription;
+import org.apache.nifi.annotation.documentation.Tags;
+import org.apache.nifi.components.AllowableValue;
+import org.apache.nifi.components.PropertyDescriptor;
+import org.apache.nifi.components.ValidationContext;
+import org.apache.nifi.components.ValidationResult;
+import org.apache.nifi.expression.ExpressionLanguageScope;
+import org.apache.nifi.logging.ComponentLog;
+import org.apache.nifi.processor.util.StandardValidators;
+import org.apache.nifi.schema.access.SchemaNotFoundException;
+import org.apache.nifi.serialization.DateTimeTextRecordSetWriter;
+import org.apache.nifi.serialization.RecordSetWriter;
+import org.apache.nifi.serialization.RecordSetWriterFactory;
+import org.apache.nifi.serialization.record.RecordSchema;
+
+import java.io.IOException;
+import java.io.OutputStream;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.List;
+
+@Tags({"xml", "resultset", "writer", "serialize", "record", "recordset", 
"row"})
+@CapabilityDescription("Writes a RecordSet to XML. The records are wrapped by 
a root tag.")
+public class XMLRecordSetWriter extends DateTimeTextRecordSetWriter implements 
RecordSetWriterFactory {
+
+    public static final AllowableValue ALWAYS_SUPPRESS = new 
AllowableValue("always-suppress", "Always Suppress",
+            "Fields that are missing (present in the schema but not in the 
record), or that have a value of null, will not be written out");
+    public static final AllowableValue NEVER_SUPPRESS = new 
AllowableValue("never-suppress", "Never Suppress",
+            "Fields that are missing (present in the schema but not in the 
record), or that have a value of null, will be written out as a null value");
+    public static final AllowableValue SUPPRESS_MISSING = new 
AllowableValue("suppress-missing", "Suppress Missing Values",
+            "When a field has a value of null, it will be written out. 
However, if a field is defined in the schema and not present in the record, the 
field will not be written out.");
+
+    public static final AllowableValue USE_PROPERTY_AS_WRAPPER = new 
AllowableValue("use-property-as-wrapper", "Use Property as Wrapper",
+            "The value of the property \"Array Tag Name\" will be used as the 
tag name to wrap elements of an array. The field name of the array field will 
be used for the tag name " +
+                    "of the elements.");
+    public static final AllowableValue USE_PROPERTY_FOR_ELEMENTS = new 
AllowableValue("use-property-for-elements", "Use Property for Elements",
+            "The value of the property \"Array Tag Name\" will be used for the 
tag name of the elements of an array. The field name of the array field will be 
used as the tag name " +
+                    "to wrap elements.");
+    public static final AllowableValue NO_WRAPPING = new 
AllowableValue("no-wrapping", "No Wrapping",
+            "The elements of an array will not be wrapped");
+
+    public static final PropertyDescriptor SUPPRESS_NULLS = new 
PropertyDescriptor.Builder()
+            .name("suppress_nulls")
+            .displayName("Suppress Null Values")
+            .description("Specifies how the writer should handle a null field")
+            .allowableValues(NEVER_SUPPRESS, ALWAYS_SUPPRESS, SUPPRESS_MISSING)
+            .defaultValue(NEVER_SUPPRESS.getValue())
+            .required(true)
+            .build();
+
+    public static final PropertyDescriptor PRETTY_PRINT_XML = new 
PropertyDescriptor.Builder()
+            .name("pretty_print_xml")
+            .displayName("Pretty Print XML")
+            .description("Specifies whether or not the XML should be pretty 
printed")
+            .expressionLanguageSupported(ExpressionLanguageScope.NONE)
+            .allowableValues("true", "false")
+            .defaultValue("false")
+            .required(true)
+            .build();
+
+    public static final PropertyDescriptor ROOT_TAG_NAME = new 
PropertyDescriptor.Builder()
+            .name("root_tag_name")
+            .displayName("Name of Root Tag")
+            .description("Specifies the name of the XML root tag wrapping the 
record set. This property has to be defined if " +
+                    "the writer is supposed to write multiple records in a 
single FlowFile.")
+            .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+            .expressionLanguageSupported(ExpressionLanguageScope.NONE)
+            .required(false)
+            .build();
+
+    public static final PropertyDescriptor RECORD_TAG_NAME = new 
PropertyDescriptor.Builder()
+            .name("record_tag_name")
+            .displayName("Name of Record Tag")
+            .description("Specifies the name of the XML record tag wrapping 
the record fields. If this is not set, the writer " +
+                    "will use the record name in the schema.")
+            .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+            .expressionLanguageSupported(ExpressionLanguageScope.NONE)
+            .required(false)
+            .build();
+
+    public static final PropertyDescriptor ARRAY_WRAPPING = new 
PropertyDescriptor.Builder()
+            .name("array_wrapping")
+            .displayName("Wrap Elements of Arrays")
+            .description("Specifies how the writer wraps elements of fields of 
type array")
+            .allowableValues(USE_PROPERTY_AS_WRAPPER, 
USE_PROPERTY_FOR_ELEMENTS, NO_WRAPPING)
+            .defaultValue(NO_WRAPPING.getValue())
+            .required(true)
+            .build();
+
+    public static final PropertyDescriptor ARRAY_TAG_NAME = new 
PropertyDescriptor.Builder()
+            .name("array_tag_name")
+            .displayName("Array Tag Name")
+            .description("Name of the tag used by property \"Wrap Elements of 
Arrays\" to write arrays")
+            .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+            .expressionLanguageSupported(ExpressionLanguageScope.NONE)
+            .required(false)
+            .build();
+
+    public static final PropertyDescriptor CHARACTER_SET = new 
PropertyDescriptor.Builder()
+            .name("Character Set")
+            .description("The Character set to use when writing the data to 
the FlowFile")
+            .addValidator(StandardValidators.CHARACTER_SET_VALIDATOR)
+            .defaultValue("UTF-8")
+            .expressionLanguageSupported(ExpressionLanguageScope.NONE)
+            .required(true)
+            .build();
+
+    @Override
+    protected List<PropertyDescriptor> getSupportedPropertyDescriptors() {
+        final List<PropertyDescriptor> properties = new 
ArrayList<>(super.getSupportedPropertyDescriptors());
+        properties.add(SUPPRESS_NULLS);
+        properties.add(PRETTY_PRINT_XML);
+        properties.add(ROOT_TAG_NAME);
+        properties.add(RECORD_TAG_NAME);
+        properties.add(ARRAY_WRAPPING);
+        properties.add(ARRAY_TAG_NAME);
+        properties.add(CHARACTER_SET);
+        return properties;
+    }
+
+    @Override
+    protected Collection<ValidationResult> customValidate(final 
ValidationContext validationContext) {
+        if 
(!validationContext.getProperty(ARRAY_WRAPPING).getValue().equals(NO_WRAPPING.getValue()))
 {
+            if (!validationContext.getProperty(ARRAY_TAG_NAME).isSet()) {
+                StringBuilder explanation = new StringBuilder()
+                        .append("if property \'")
+                        .append(ARRAY_WRAPPING.getName())
+                        .append("\' is defined as \'")
+                        .append(USE_PROPERTY_AS_WRAPPER.getDisplayName())
+                        .append("\' or \'")
+                        .append(USE_PROPERTY_FOR_ELEMENTS.getDisplayName())
+                        .append("\' the property \'")
+                        .append(ARRAY_TAG_NAME.getDisplayName())
+                        .append("\' has to be set.");
+
+                return Collections.singleton(new ValidationResult.Builder()
+                        .subject(ARRAY_TAG_NAME.getName())
+                        .valid(false)
+                        .explanation(explanation.toString())
+                        .build());
+            }
+        }
+        return Collections.emptyList();
+    }
+
+    @Override
+    public RecordSetWriter createWriter(final ComponentLog logger, final 
RecordSchema schema, final OutputStream out) throws SchemaNotFoundException, 
IOException {
+
+        final String nullSuppression = 
getConfigurationContext().getProperty(SUPPRESS_NULLS).getValue();
+        final NullSuppression nullSuppressionEnum;
+        if (nullSuppression.equals(ALWAYS_SUPPRESS.getValue())) {
+            nullSuppressionEnum = NullSuppression.ALWAYS_SUPPRESS;
+        } else if (nullSuppression.equals(NEVER_SUPPRESS.getValue())) {
+            nullSuppressionEnum = NullSuppression.NEVER_SUPPRESS;
+        } else {
+            nullSuppressionEnum = NullSuppression.SUPPRESS_MISSING;
+        }
+
+        final boolean prettyPrint = 
getConfigurationContext().getProperty(PRETTY_PRINT_XML).getValue().equals("true");
+
+        final String rootTagName = 
getConfigurationContext().getProperty(ROOT_TAG_NAME).isSet()
+                ? 
getConfigurationContext().getProperty(ROOT_TAG_NAME).getValue() : null;
+        final String recordTagName = 
getConfigurationContext().getProperty(RECORD_TAG_NAME).isSet()
+                ? 
getConfigurationContext().getProperty(RECORD_TAG_NAME).getValue() : null;
+
+        final String arrayWrapping = 
getConfigurationContext().getProperty(ARRAY_WRAPPING).getValue();
+        final ArrayWrapping arrayWrappingEnum;
+        if (arrayWrapping.equals(NO_WRAPPING.getValue())) {
+            arrayWrappingEnum = ArrayWrapping.NO_WRAPPING;
+        } else if (arrayWrapping.equals(USE_PROPERTY_AS_WRAPPER.getValue())) {
+            arrayWrappingEnum = ArrayWrapping.USE_PROPERTY_AS_WRAPPER;
+        } else {
+            arrayWrappingEnum = ArrayWrapping.USE_PROPERTY_FOR_ELEMENTS;
+        }
+
+        final String arrayTagName;
+        if (getConfigurationContext().getProperty(ARRAY_TAG_NAME).isSet()) {
+            arrayTagName = 
getConfigurationContext().getProperty(ARRAY_TAG_NAME).getValue();
+        } else {
+            arrayTagName = null;
+        }
+
+        final String charSet = 
getConfigurationContext().getProperty(CHARACTER_SET).getValue();
+
+        return new WriteXMLResult(logger, schema, 
getSchemaAccessWriter(schema),
+                out, prettyPrint, nullSuppressionEnum, arrayWrappingEnum, 
arrayTagName, rootTagName, recordTagName, charSet,
+                getDateFormat().orElse(null), getTimeFormat().orElse(null), 
getTimestampFormat().orElse(null));
+    }
+}

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/META-INF/services/org.apache.nifi.controller.ControllerService
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/META-INF/services/org.apache.nifi.controller.ControllerService
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/META-INF/services/org.apache.nifi.controller.ControllerService
index 76c89c2..3ece6c0 100755
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/META-INF/services/org.apache.nifi.controller.ControllerService
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/META-INF/services/org.apache.nifi.controller.ControllerService
@@ -27,4 +27,5 @@ org.apache.nifi.grok.GrokReader
 
 org.apache.nifi.text.FreeFormTextRecordSetWriter
 
-org.apache.nifi.xml.XMLReader
\ No newline at end of file
+org.apache.nifi.xml.XMLReader
+org.apache.nifi.xml.XMLRecordSetWriter
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/docs/org.apache.nifi.xml.XMLRecordSetWriter/additionalDetails.html
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/docs/org.apache.nifi.xml.XMLRecordSetWriter/additionalDetails.html
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/docs/org.apache.nifi.xml.XMLRecordSetWriter/additionalDetails.html
new file mode 100755
index 0000000..64c9ff5
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/resources/docs/org.apache.nifi.xml.XMLRecordSetWriter/additionalDetails.html
@@ -0,0 +1,211 @@
+<!DOCTYPE html>
+<html lang="en">
+    <!--
+      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.
+    -->
+    <head>
+        <meta charset="utf-8"/>
+        <title>XMLRecordSetWriter</title>
+        <link rel="stylesheet" href="../../../../../css/component-usage.css" 
type="text/css"/>
+    </head>
+
+    <body>
+    <p>
+        The XMLRecordSetWriter Controller Service writes record objects to 
XML. The Controller Service must be configured
+        with a schema that describes the structure of the record objects. 
Multiple records are wrapped by a root node.
+        The name of the root node can be configured via property. If no root 
node is configured, the writer expects
+        only one record for each FlowFile (that will not be wrapped). As Avro 
does not support defining attributes for
+        records, this writer currently does not support writing XML attributes.
+    </p>
+
+    <h2>
+        Example: Simple records
+    </h2>
+
+    <code>
+            <pre>
+                RecordSet (
+                  Record (
+                    Field "name1" = "value1",
+                    Field "name2" = 42
+                  ),
+                  Record (
+                    Field "name1" = "value2",
+                    Field "name2" = 84
+                  )
+                )
+            </pre>
+    </code>
+
+    <p>
+        This record can be described by the following schema:
+    </p>
+
+    <code>
+            <pre>
+                {
+                  "name": "test",
+                  "namespace": "nifi",
+                  "type": "record",
+                  "fields": [
+                    { "name": "name1", "type": "string" },
+                    { "name": "name2", "type": "int" }
+                  ]
+                }
+            </pre>
+    </code>
+
+    <p>
+        Assuming that "root_name" has been configured as the name for the root 
node and "record_name" has been configured
+        as the name for the record nodes, the writer will write the following 
XML:
+    </p>
+
+    <code>
+            <pre>
+                &lt;root_name&gt;
+                  &lt;record_name&gt;
+                    &lt;name1&gt;value1&lt;/name1&gt;
+                    &lt;name2&gt;42&lt;/name2&gt;
+                  &lt;/record_name&gt;
+                  &lt;record_name&gt;
+                    &lt;name1&gt;value2&lt;/name1&gt;
+                    &lt;name2&gt;84&lt;/name2&gt;
+                  &lt;/record_name&gt;
+                &lt;/root_name&gt;
+            </pre>
+    </code>
+
+    <p>
+        The writer furthermore can be configured how to treat null or missing 
values in records:
+    </p>
+
+    <code>
+            <pre>
+                RecordSet (
+                  Record (
+                    Field "name1" = "value1",
+                    Field "name2" = null
+                  ),
+                  Record (
+                    Field "name1" = "value2",
+                  )
+                )
+            </pre>
+    </code>
+
+    <p>
+        If the writer is configured always to suppress missing or null values, 
only the field of name "name1" will appear
+        in the XML. If the writer ist configured only to suppress missing 
values, the field of name "name2" will appear in
+        the XML as a node without content for the first record. If the writer 
is configured never to suppress anything,
+        the field of name "name2" will appear in the XML as a node without 
content for both records.
+    </p>
+
+    <h2>
+        Example: Arrays
+    </h2>
+
+    <p>
+        The writer furthermore can be configured how to write arrays:
+    </p>
+
+    <code>
+            <pre>
+                RecordSet (
+                  Record (
+                    Field "name1" = "value1",
+                    Field "array_field" = [ 1, 2, 3 ]
+                  )
+                )
+            </pre>
+    </code>
+
+    <p>
+        This record can be described by the following schema:
+    </p>
+
+    <code>
+            <pre>
+                {
+                  "name": "test",
+                  "namespace": "nifi",
+                  "type": "record",
+                  "fields": [
+                    { "name": "array_field", "type":
+                      { "type": "array", "items": int }
+                    },
+                    { "name": "name1", "type": "string" }
+                  ]
+                }
+            </pre>
+    </code>
+
+    <p>
+        If the writer is configured not to wrap arrays, it will transform the 
record to the following XML:
+    </p>
+
+    <code>
+            <pre>
+                &lt;root_name&gt;
+                  &lt;record_name&gt;
+                    &lt;name1&gt;value1&lt;/name1&gt;
+                    &lt;array_field&gt;1&lt;/array_field&gt;
+                    &lt;array_field&gt;2&lt;/array_field&gt;
+                    &lt;array_field&gt;3&lt;/array_field&gt;
+                  &lt;/record_name&gt;
+                &lt;/root_name&gt;
+            </pre>
+    </code>
+
+    <p>
+        If the writer is configured to wrap arrays using the field name as 
wrapper and "elem" as tag name for element nodes,
+        it will transform the record to the following XML:
+    </p>
+
+    <code>
+            <pre>
+                &lt;root_name&gt;
+                  &lt;record_name&gt;
+                    &lt;name1&gt;value1&lt;/field2&gt;
+                    &lt;array_field&gt;
+                      &lt;elem&gt;1&lt;/elem&gt;
+                      &lt;elem&gt;2&lt;/elem&gt;
+                      &lt;elem&gt;3&lt;/elem&gt;
+                    &lt;/array_field&gt;
+                  &lt;/record_name&gt;
+                &lt;/root_name&gt;
+            </pre>
+    </code>
+
+    <p>
+        If the writer is configured to wrap arrays using "wrap" as wrapper and 
the field name as tag name for element nodes,
+        it will transform the record to the following XML:
+    </p>
+
+    <code>
+            <pre>
+                &lt;root_name&gt;
+                  &lt;record_name&gt;
+                    &lt;name1&gt;value1&lt;/field2&gt;
+                    &lt;wrap&gt;
+                      &lt;array_field&gt;1&lt;/array_field&gt;
+                      &lt;array_field&gt;2&lt;/array_field&gt;
+                      &lt;array_field&gt;3&lt;/array_field&gt;
+                    &lt;/wrap&gt;
+                  &lt;/record_name&gt;
+                &lt;/root_name&gt;
+            </pre>
+    </code>
+
+    </body>
+</html>

http://git-wip-us.apache.org/repos/asf/nifi/blob/2c8c9374/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/test/java/org/apache/nifi/json/TestWriteJsonResult.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/test/java/org/apache/nifi/json/TestWriteJsonResult.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/test/java/org/apache/nifi/json/TestWriteJsonResult.java
old mode 100644
new mode 100755
index 88f3ed9..3d26e74
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/test/java/org/apache/nifi/json/TestWriteJsonResult.java
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/test/java/org/apache/nifi/json/TestWriteJsonResult.java
@@ -38,6 +38,7 @@ import java.util.List;
 import java.util.Map;
 import java.util.TimeZone;
 
+import org.apache.nifi.record.NullSuppression;
 import org.apache.nifi.logging.ComponentLog;
 import org.apache.nifi.schema.access.SchemaNameAsAttribute;
 import org.apache.nifi.serialization.SimpleRecordSchema;

Reply via email to