org.n52.svalbard.encode.GetObservationByIdResponseEncoder Maven / Gradle / Ivy
/*
* Copyright 2015-2020 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.encode;
import java.util.HashMap;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.Set;
import org.apache.xmlbeans.XmlObject;
import org.n52.shetland.ogc.gml.CodeWithAuthority;
import org.n52.shetland.ogc.om.ObservationStream;
import org.n52.shetland.ogc.om.OmObservation;
import org.n52.shetland.ogc.om.StreamingValue;
import org.n52.shetland.ogc.ows.exception.OwsExceptionReport;
import org.n52.shetland.ogc.sos.Sos2Constants;
import org.n52.shetland.ogc.sos.SosConstants;
import org.n52.shetland.ogc.sos.response.AbstractStreaming;
import org.n52.shetland.ogc.sos.response.GetObservationByIdResponse;
import org.n52.shetland.w3c.SchemaLocation;
import org.n52.svalbard.encode.exception.EncodingException;
import org.n52.svalbard.util.XmlHelper;
import com.google.common.collect.Lists;
import com.google.common.collect.Sets;
import net.opengis.sos.x20.GetObservationByIdResponseDocument;
import net.opengis.sos.x20.GetObservationByIdResponseType;
/**
* TODO JavaDoc
*
* @author Christian Autermann
*
* @since 1.0.0
*/
public class GetObservationByIdResponseEncoder
extends AbstractObservationResponseEncoder {
public static final String GML_ID = "sf_1";
public GetObservationByIdResponseEncoder() {
super(SosConstants.Operations.GetObservationById.name(), GetObservationByIdResponse.class);
}
@Override
protected XmlObject createResponse(ObservationEncoder encoder,
GetObservationByIdResponse response) throws EncodingException {
GetObservationByIdResponseDocument doc =
GetObservationByIdResponseDocument.Factory.newInstance(getXmlOptions());
GetObservationByIdResponseType xbResponse = doc.addNewGetObservationByIdResponse();
if (response.hasExtensions()) {
createExtension(xbResponse, response.getExtensions());
}
ObservationStream observations = getObservationsAndCheckForStreaming(response, encoder);
HashMap gmlID4sfIdentifier = new HashMap<>();
try {
while (observations.hasNext()) {
OmObservation observation = observations.next();
EncodingContext codingContext = EncodingContext.empty();
CodeWithAuthority foiId = observation.getObservationConstellation().getFeatureOfInterest()
.getIdentifierCodeWithAuthority();
if (gmlID4sfIdentifier.containsKey(foiId)) {
codingContext = codingContext.with(XmlBeansEncodingFlags.EXIST_FOI_IN_DOC, true);
} else {
gmlID4sfIdentifier.put(foiId, GML_ID);
codingContext = codingContext.with(XmlBeansEncodingFlags.EXIST_FOI_IN_DOC, false);
}
codingContext = codingContext.with(XmlBeansEncodingFlags.GMLID, gmlID4sfIdentifier.get(foiId));
xbResponse.addNewObservation().addNewOMObservation().set(encoder.encode(observation, codingContext));
}
} catch (OwsExceptionReport ex) {
throw new EncodingException(ex);
}
XmlHelper.makeGmlIdsUnique(xbResponse.getDomNode());
return doc;
}
private ObservationStream getObservationsAndCheckForStreaming(GetObservationByIdResponse response,
ObservationEncoder encoder)
throws NoSuchElementException, EncodingException {
try {
if (response.getObservationCollection() != null && response.getObservationCollection().hasNext()) {
if (encoder.shouldObservationsWithSameXBeMerged()) {
return response.getObservationCollection().merge();
} else {
List observations = Lists.newArrayList();
while (response.getObservationCollection().hasNext()) {
OmObservation observation = response.getObservationCollection().next();
if (observation.getValue() instanceof StreamingValue>) {
while (((AbstractStreaming) observation.getValue()).hasNext()) {
observations.add(((AbstractStreaming) observation.getValue()).next());
}
} else {
observations.add(observation);
}
}
return ObservationStream.of(observations);
}
}
return response.getObservationCollection();
} catch (OwsExceptionReport e) {
throw new EncodingException(e);
}
}
@Override
public Set getConcreteSchemaLocations() {
return Sets.newHashSet(Sos2Constants.SOS_GET_OBSERVATION_BY_ID_SCHEMA_LOCATION);
}
}