/** * Copyright (C) 2012-2017 52°North Initiative for Geospatial Open Source * Software GmbH * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation. * * If the program is linked with libraries which are licensed under one of * the following licenses, the combination of the program with the linked * library is not considered a "derivative work" of the program: * * - Apache License, version 2.0 * - Apache Software License, version 1.0 * - GNU Lesser General Public License, version 3 * - Mozilla Public License, versions 1.0, 1.1 and 2.0 * - Common Development and Distribution License (CDDL), version 1.0 * * Therefore the distribution of the program linked with libraries licensed * under the aforementioned licenses, is permitted by the copyright holders * if the distribution is compliant with both the GNU General Public * License version 2 and the aforementioned licenses. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * Public License for more details. */ package org.n52.sos.aqd; import java.util.Set; import org.n52.sos.config.SettingsManager; import org.n52.sos.config.annotation.Configurable; import org.n52.sos.config.annotation.Setting; import org.n52.sos.exception.ConfigurationException; import org.n52.sos.exception.ows.InvalidParameterValueException; import org.n52.sos.ogc.gml.AbstractFeature; import org.n52.sos.ogc.gml.CodeWithAuthority; import org.n52.sos.ogc.gml.time.TimeInstant; import org.n52.sos.ogc.gml.time.TimePeriod; import org.n52.sos.ogc.om.OmObservation; import org.n52.sos.ogc.om.features.FeatureCollection; import org.n52.sos.ogc.swe.simpleType.SweText; import org.n52.sos.ogc.swes.SwesExtension; import org.n52.sos.ogc.swes.SwesExtensions; import org.n52.sos.settings.EReportingSetting; import org.n52.sos.util.CollectionHelper; import org.n52.sos.util.Constants; import org.n52.sos.util.JavaHelper; import org.n52.sos.util.StringHelper; @Configurable public class AqdHelper { private static AqdHelper instance; private String namespace; private String observationPrefix; private Set<Integer> validityFlags; private Set<Integer> verificationFlags; /** * @return Returns a singleton instance of the AqdHelper. */ public static synchronized AqdHelper getInstance() { if (instance == null) { instance = new AqdHelper(); SettingsManager.getInstance().configure(instance); } return instance; } private AqdHelper() { } public boolean hasFlowExtension(SwesExtensions extensions) { if (extensions != null) { return extensions.containsExtension(AqdConstants.EXTENSION_FLOW); } return false; } public ReportObligationType getFlow(SwesExtensions extensions) throws InvalidParameterValueException { if (hasFlowExtension(extensions)) { SwesExtension<?> extension = extensions.getExtension(AqdConstants.EXTENSION_FLOW); if (extension.getValue() instanceof SweText) { try { return ReportObligationType.from(((SweText) extension.getValue()).getValue()); } catch (IllegalArgumentException iae) { throw new InvalidParameterValueException(AqdConstants.EXTENSION_FLOW, ((SweText) extension.getValue()).getValue()); } } } return ReportObligationType.E2A; } @Setting(EReportingSetting.EREPORTING_NAMESPACE) public void setEReportingNamespace(final String namespace) throws ConfigurationException { this.namespace = namespace; } public String getEReportingNamespace() { return namespace; } public boolean isSetEReportingNamespace() { return StringHelper.isNotEmpty(getEReportingNamespace()); } @Setting(EReportingSetting.EREPORTING_OBSERVATION_PREFIX) public void setEReportingObservationPrefix(final String observationPrefix) throws ConfigurationException { this.observationPrefix = observationPrefix; } public String getEReportingObservationPrefix() { return observationPrefix; } public boolean isSetEReportingObservationPrefix() { return StringHelper.isNotEmpty(getEReportingObservationPrefix()); } public void processObservation(OmObservation observation, TimePeriod timePeriod, TimeInstant resultTime, FeatureCollection featureCollection, AbstractEReportingHeader eReportingHeader, int counter) { processObservation(observation, resultTime, featureCollection, eReportingHeader, counter); if (observation.isSetPhenomenonTime()) { timePeriod.extendToContain(observation.getPhenomenonTime()); } } public void processObservation(OmObservation observation, TimeInstant resultTime, FeatureCollection featureCollection, AbstractEReportingHeader eReportingHeader, int counter) { observation.setGmlId(getObservationId(counter)); // add xlink:href to eReportingHeader.content eReportingHeader.addContent((AbstractFeature)new OmObservation().setIdentifier(new CodeWithAuthority(getObservationXlink(observation.getGmlId())))); observation.setResultTime(resultTime); featureCollection.addMember(observation); } public String getObservationXlink(String gmlId) { StringBuilder id = new StringBuilder(); if (isSetEReportingNamespace()) { id.append(getEReportingNamespace()); if (!getEReportingNamespace().endsWith(Constants.SLASH_STRING)) { id.append(Constants.SLASH_STRING); } } else { id.append(Constants.NUMBER_SIGN_STRING); } id.append(gmlId); return id.toString(); } public String getObservationId(int counter) { if (isSetEReportingObservationPrefix()) { return getEReportingObservationPrefix() + Integer.toString(counter); } return "o_" + Integer.toString(counter++); } /** * @return the validityFlags */ public Set<Integer> getValidityFlags() { return validityFlags; } /** * @param validityFlags the validityFlags to set */ @Setting(EReportingSetting.EREPORTING_VALIDITY_FLAGS) public void setValidityFlags(String validityFlags) { this.validityFlags = JavaHelper.getIntegerSetFromString(validityFlags); } public boolean isSetValidityFlags() { return CollectionHelper.isNotEmpty(getValidityFlags()); } /** * @return the verificationFlags */ public Set<Integer> getVerificationFlags() { return verificationFlags; } /** * @param verificationFlags the verificationFlags to set */ @Setting(EReportingSetting.EREPORTING_VERIFICATION_FLAGS) public void setVerificationFlags(String verificationFlags) { this.verificationFlags = JavaHelper.getIntegerSetFromString(verificationFlags); } public boolean isSetVerificationFlags() { return CollectionHelper.isNotEmpty(getVerificationFlags()); } }