All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.n52.svalbard.write.RelatedOfferingXmlStreamWriter Maven / Gradle / Ivy

/*
 * Copyright 2016-2017 52°North Initiative for Geospatial Open Source
 * Software GmbH
 *
 * Licensed 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.n52.svalbard.write;


import java.io.OutputStream;

import javax.xml.stream.XMLStreamException;

import org.n52.shetland.ogc.gml.GmlConstants;
import org.n52.shetland.ogc.gml.ReferenceType;
import org.n52.shetland.ogc.sos.ro.OfferingContext;
import org.n52.shetland.ogc.sos.ro.RelatedOfferingConstants;
import org.n52.shetland.ogc.sos.ro.RelatedOfferings;
import org.n52.shetland.w3c.W3CConstants;
import org.n52.svalbard.encode.EncodingContext;
import org.n52.svalbard.encode.exception.EncodingException;

/**
 * @author Carsten Hollmann
 * @since 1.0.0
 *
 */
public class RelatedOfferingXmlStreamWriter extends XmlStreamWriter {

    public RelatedOfferingXmlStreamWriter(EncodingContext context, OutputStream outputStream, RelatedOfferings element)
            throws XMLStreamException {
        super(context, outputStream, element);
    }

    @Override
    public void write() throws XMLStreamException, EncodingException {
        start();
        writeRelatedOfferingsDoc();
        end();
        finish();
    }

    private void writeRelatedOfferingsDoc() throws XMLStreamException {
        start(RelatedOfferingConstants.QN_RO_RELATED_OFFERINGS);
        namespace(W3CConstants.NS_XLINK_PREFIX, W3CConstants.NS_XLINK);
        namespace(RelatedOfferingConstants.NS_RO_PREFIX, RelatedOfferingConstants.NS_RO);
        namespace(GmlConstants.NS_GML_PREFIX, GmlConstants.NS_GML_32);
        addXlinkHrefAttr(RelatedOfferingConstants.RELATED_OFFERINGS);
        addXlinkTitleAttr(RelatedOfferingConstants.RELATED_OFFERINGS);
        for (OfferingContext offeringContext : getElement().getValue()) {
            start(RelatedOfferingConstants.QN_RO_RELATED_OFFERING);
            writeOfferingContext(offeringContext);
            end(RelatedOfferingConstants.QN_RO_RELATED_OFFERING);
        }
        end(RelatedOfferingConstants.QN_RO_RELATED_OFFERINGS);

    }

    private void writeOfferingContext(OfferingContext offeringContext) throws XMLStreamException {
        start(RelatedOfferingConstants.QN_RO_OFFERING_CONTEXT);
        writeRole(offeringContext.getRole());
        writeRelatedOffering(offeringContext.getRelatedOffering());
        end(RelatedOfferingConstants.QN_RO_OFFERING_CONTEXT);
    }

    private void writeRole(ReferenceType role) throws XMLStreamException {
        empty(RelatedOfferingConstants.QN_RO_ROLE);
        addXlinkHrefAttr(role.getHref());
    }

    private void writeRelatedOffering(ReferenceType relatedOffering) throws XMLStreamException {
        empty(RelatedOfferingConstants.QN_RO_RELATED_OFFERING);
        addXlinkHrefAttr(relatedOffering.getHref());
        if (relatedOffering.isSetTitle()) {
            addXlinkTitleAttr(relatedOffering.getTitle());
        } else {
            addXlinkTitleAttr(getTitleFromHref(relatedOffering.getHref()));
        }
    }

    private String getTitleFromHref(String href) {
        String title = href;
        if (title.startsWith("http")) {
            title = title.substring(title.lastIndexOf('/') + 1, title.length());
        } else if (title.startsWith("urn")) {
            title = title.substring(title.lastIndexOf(':') + 1, title.length());
        }
        if (title.contains("#")) {
            title = title.substring(title.lastIndexOf('#') + 1, title.length());
        }
        return title;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy