blob: 343c94d5aa26dfbc9948c7ceefadd4a0ba8aa894 [file] [log] [blame]
/**
* 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.xml.security.stax.impl.stax;
import org.apache.xml.security.stax.ext.stax.XMLSecStartDocument;
import javax.xml.stream.XMLStreamConstants;
import javax.xml.stream.XMLStreamException;
import java.io.IOException;
import java.io.Writer;
/**
*/
public class XMLSecStartDocumentImpl extends XMLSecEventBaseImpl implements XMLSecStartDocument {
private final String systemId;
private final String characterEncodingScheme;
private final Boolean isStandAlone;
private final String version;
public XMLSecStartDocumentImpl(String systemId, String characterEncodingScheme, Boolean standAlone, String version) {
this.systemId = systemId;
this.characterEncodingScheme = characterEncodingScheme;
isStandAlone = standAlone;
this.version = version != null ? version : "1.0";
}
@Override
public int getEventType() {
return XMLStreamConstants.START_DOCUMENT;
}
@Override
public String getSystemId() {
return systemId != null ? systemId : "";
}
@Override
public String getCharacterEncodingScheme() {
return characterEncodingScheme != null ? characterEncodingScheme : java.nio.charset.StandardCharsets.UTF_8.name();
}
@Override
public boolean encodingSet() {
return characterEncodingScheme != null;
}
@Override
public boolean isStandalone() {
return isStandAlone != null && isStandAlone;
}
@Override
public boolean standaloneSet() {
return isStandAlone != null;
}
@Override
public String getVersion() {
return version;
}
@Override
public boolean isStartDocument() {
return true;
}
@Override
public XMLSecStartDocument asStartDocument() {
return this;
}
@Override
public void writeAsEncodedUnicode(Writer writer) throws XMLStreamException {
try {
writer.write("<?xml version=\"");
if (getVersion() == null || getVersion().isEmpty()) {
writer.write("1.0");
} else {
writer.write(getVersion());
}
writer.write('"');
if (encodingSet()) {
writer.write(" encoding=\"");
writer.write(getCharacterEncodingScheme());
writer.write('"');
}
if (standaloneSet()) {
if (isStandalone()) {
writer.write(" standalone=\"yes\"");
} else {
writer.write(" standalone=\"no\"");
}
}
writer.write(" ?>");
} catch (IOException e) {
throw new XMLStreamException(e);
}
}
}