/* * citygml4j - The Open Source Java API for CityGML * https://github.com/citygml4j * * Copyright 2013-2017 Claus Nagel <claus.nagel@gmail.com> * * 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.citygml4j.builder.jaxb.marshal.citygml.waterbody; import javax.xml.bind.JAXBElement; import net.opengis.citygml.waterbody._2.AbstractWaterBoundarySurfaceType; import net.opengis.citygml.waterbody._2.AbstractWaterObjectType; import net.opengis.citygml.waterbody._2.BoundedByWaterSurfacePropertyType; import net.opengis.citygml.waterbody._2.ObjectFactory; import net.opengis.citygml.waterbody._2.WaterBodyType; import net.opengis.citygml.waterbody._2.WaterClosureSurfaceType; import net.opengis.citygml.waterbody._2.WaterGroundSurfaceType; import net.opengis.citygml.waterbody._2.WaterSurfaceType; import org.citygml4j.builder.jaxb.marshal.JAXBMarshaller; import org.citygml4j.builder.jaxb.marshal.citygml.CityGMLMarshaller; import org.citygml4j.model.citygml.ade.ADEComponent; import org.citygml4j.model.citygml.waterbody.AbstractWaterBoundarySurface; import org.citygml4j.model.citygml.waterbody.AbstractWaterObject; import org.citygml4j.model.citygml.waterbody.BoundedByWaterSurfaceProperty; import org.citygml4j.model.citygml.waterbody.WaterBody; import org.citygml4j.model.citygml.waterbody.WaterBodyModuleComponent; import org.citygml4j.model.citygml.waterbody.WaterClosureSurface; import org.citygml4j.model.citygml.waterbody.WaterGroundSurface; import org.citygml4j.model.citygml.waterbody.WaterSurface; import org.citygml4j.model.common.base.ModelObject; import org.citygml4j.model.gml.basicTypes.Code; import org.w3._1999.xlink.ActuateType; import org.w3._1999.xlink.ShowType; import org.w3._1999.xlink.TypeType; public class WaterBody200Marshaller { private final ObjectFactory wtr = new ObjectFactory(); private final JAXBMarshaller jaxb; private final CityGMLMarshaller citygml; public WaterBody200Marshaller(CityGMLMarshaller citygml) { this.citygml = citygml; jaxb = citygml.getJAXBMarshaller(); } public JAXBElement<?> marshalJAXBElement(Object src) { JAXBElement<?> dest = null; if (src instanceof WaterBodyModuleComponent) src = marshal((WaterBodyModuleComponent)src); if (src instanceof WaterBodyType) dest = wtr.createWaterBody((WaterBodyType)src); else if (src instanceof WaterClosureSurfaceType) dest = wtr.createWaterClosureSurface((WaterClosureSurfaceType)src); else if (src instanceof WaterGroundSurfaceType) dest = wtr.createWaterGroundSurface((WaterGroundSurfaceType)src); else if (src instanceof WaterSurfaceType) dest = wtr.createWaterSurface((WaterSurfaceType)src); return dest; } public Object marshal(ModelObject src) { Object dest = null; if (src instanceof BoundedByWaterSurfaceProperty) dest = marshalBoundedByWaterSurfaceProperty((BoundedByWaterSurfaceProperty)src); else if (src instanceof WaterBody) dest = marshalWaterBody((WaterBody)src); else if (src instanceof WaterClosureSurface) dest = marshalWaterClosureSurface((WaterClosureSurface)src); else if (src instanceof WaterGroundSurface) dest = marshalWaterGroundSurface((WaterGroundSurface)src); else if (src instanceof WaterSurface) dest = marshalWaterSurface((WaterSurface)src); return dest; } public void marshalAbstractWaterObject(AbstractWaterObject src, AbstractWaterObjectType dest) { citygml.getCore200Marshaller().marshalAbstractCityObject(src, dest); if (src.isSetGenericApplicationPropertyOfWaterObject()) { for (ADEComponent adeComponent :src.getGenericApplicationPropertyOfWaterObject()) if (adeComponent.isSetContent()) dest.get_GenericApplicationPropertyOfWaterObject().add(citygml.ade2jaxbElement(adeComponent)); } } public void marshalAbstractWaterBoundarySurface(AbstractWaterBoundarySurface src, AbstractWaterBoundarySurfaceType dest) { citygml.getCore200Marshaller().marshalAbstractCityObject(src, dest); if (src.isSetLod2Surface()) dest.setLod2Surface(jaxb.getGMLMarshaller().marshalSurfaceProperty(src.getLod2Surface())); if (src.isSetLod3Surface()) dest.setLod3Surface(jaxb.getGMLMarshaller().marshalSurfaceProperty(src.getLod3Surface())); if (src.isSetLod4Surface()) dest.setLod4Surface(jaxb.getGMLMarshaller().marshalSurfaceProperty(src.getLod4Surface())); if (src.isSetGenericApplicationPropertyOfWaterBoundarySurface()) { for (ADEComponent adeComponent :src.getGenericApplicationPropertyOfWaterBoundarySurface()) if (adeComponent.isSetContent()) dest.get_GenericApplicationPropertyOfWaterBoundarySurface().add(citygml.ade2jaxbElement(adeComponent)); } } @SuppressWarnings("unchecked") public BoundedByWaterSurfacePropertyType marshalBoundedByWaterSurfaceProperty(BoundedByWaterSurfaceProperty src) { BoundedByWaterSurfacePropertyType dest = wtr.createBoundedByWaterSurfacePropertyType(); if (src.isSetWaterBoundarySurface()) { JAXBElement<?> elem = jaxb.marshalJAXBElement(src.getWaterBoundarySurface()); if (elem != null && elem.getValue() instanceof AbstractWaterBoundarySurfaceType) dest.set_WaterBoundarySurface((JAXBElement<? extends AbstractWaterBoundarySurfaceType>)elem); } if (src.isSetGenericADEComponent() && src.getGenericADEComponent().isSetContent()) dest.set_ADEComponent(src.getGenericADEComponent().getContent()); if (src.isSetRemoteSchema()) dest.setRemoteSchema(src.getRemoteSchema()); if (src.isSetType()) dest.setType(TypeType.fromValue(src.getType().getValue())); if (src.isSetHref()) dest.setHref(src.getHref()); if (src.isSetRole()) dest.setRole(src.getRole()); if (src.isSetArcrole()) dest.setArcrole(src.getArcrole()); if (src.isSetTitle()) dest.setTitle(src.getTitle()); if (src.isSetShow()) dest.setShow(ShowType.fromValue(src.getShow().getValue())); if (src.isSetActuate()) dest.setActuate(ActuateType.fromValue(src.getActuate().getValue())); return dest; } public void marshalWaterBody(WaterBody src, WaterBodyType dest) { marshalAbstractWaterObject(src, dest); if (src.isSetClazz()) dest.setClazz(jaxb.getGMLMarshaller().marshalCode(src.getClazz())); if (src.isSetFunction()) { for (Code function : src.getFunction()) dest.getFunction().add(jaxb.getGMLMarshaller().marshalCode(function)); } if (src.isSetUsage()) { for (Code usage : src.getUsage()) dest.getUsage().add(jaxb.getGMLMarshaller().marshalCode(usage)); } if (src.isSetLod0MultiSurface()) dest.setLod0MultiSurface(jaxb.getGMLMarshaller().marshalMultiSurfaceProperty(src.getLod0MultiSurface())); if (src.isSetLod1MultiSurface()) dest.setLod1MultiSurface(jaxb.getGMLMarshaller().marshalMultiSurfaceProperty(src.getLod1MultiSurface())); if (src.isSetLod0MultiCurve()) dest.setLod0MultiCurve(jaxb.getGMLMarshaller().marshalMultiCurveProperty(src.getLod0MultiCurve())); if (src.isSetLod1MultiCurve()) dest.setLod1MultiCurve(jaxb.getGMLMarshaller().marshalMultiCurveProperty(src.getLod1MultiCurve())); if (src.isSetLod1Solid()) dest.setLod1Solid(jaxb.getGMLMarshaller().marshalSolidProperty(src.getLod1Solid())); if (src.isSetLod2Solid()) dest.setLod2Solid(jaxb.getGMLMarshaller().marshalSolidProperty(src.getLod2Solid())); if (src.isSetLod3Solid()) dest.setLod3Solid(jaxb.getGMLMarshaller().marshalSolidProperty(src.getLod3Solid())); if (src.isSetLod4Solid()) dest.setLod4Solid(jaxb.getGMLMarshaller().marshalSolidProperty(src.getLod4Solid())); if (src.isSetBoundedBySurface()) { for (BoundedByWaterSurfaceProperty boundedByWaterSurfaceProperty : src.getBoundedBySurface()) dest.getBoundedBySurface().add(marshalBoundedByWaterSurfaceProperty(boundedByWaterSurfaceProperty)); } if (src.isSetGenericApplicationPropertyOfWaterBody()) { for (ADEComponent adeComponent :src.getGenericApplicationPropertyOfWaterBody()) if (adeComponent.isSetContent()) dest.get_GenericApplicationPropertyOfWaterBody().add(citygml.ade2jaxbElement(adeComponent)); } } public WaterBodyType marshalWaterBody(WaterBody src) { WaterBodyType dest = wtr.createWaterBodyType(); marshalWaterBody(src, dest); return dest; } public void marshalWaterClosureSurface(WaterClosureSurface src, WaterClosureSurfaceType dest) { marshalAbstractWaterBoundarySurface(src, dest); if (src.isSetGenericApplicationPropertyOfWaterClosureSurface()) { for (ADEComponent adeComponent :src.getGenericApplicationPropertyOfWaterClosureSurface()) if (adeComponent.isSetContent()) dest.get_GenericApplicationPropertyOfWaterClosureSurface().add(citygml.ade2jaxbElement(adeComponent)); } } public WaterClosureSurfaceType marshalWaterClosureSurface(WaterClosureSurface src) { WaterClosureSurfaceType dest = wtr.createWaterClosureSurfaceType(); marshalWaterClosureSurface(src, dest); return dest; } public void marshalWaterGroundSurface(WaterGroundSurface src, WaterGroundSurfaceType dest) { marshalAbstractWaterBoundarySurface(src, dest); if (src.isSetGenericApplicationPropertyOfWaterGroundSurface()) { for (ADEComponent adeComponent :src.getGenericApplicationPropertyOfWaterGroundSurface()) if (adeComponent.isSetContent()) dest.get_GenericApplicationPropertyOfWaterGroundSurface().add(citygml.ade2jaxbElement(adeComponent)); } } public WaterGroundSurfaceType marshalWaterGroundSurface(WaterGroundSurface src) { WaterGroundSurfaceType dest = wtr.createWaterGroundSurfaceType(); marshalWaterGroundSurface(src, dest); return dest; } public void marshalWaterSurface(WaterSurface src, WaterSurfaceType dest) { marshalAbstractWaterBoundarySurface(src, dest); if (src.isSetWaterLevel()) dest.setWaterLevel(jaxb.getGMLMarshaller().marshalCode(src.getWaterLevel())); if (src.isSetGenericApplicationPropertyOfWaterSurface()) { for (ADEComponent adeComponent :src.getGenericApplicationPropertyOfWaterSurface()) if (adeComponent.isSetContent()) dest.get_GenericApplicationPropertyOfWaterSurface().add(citygml.ade2jaxbElement(adeComponent)); } } public WaterSurfaceType marshalWaterSurface(WaterSurface src) { WaterSurfaceType dest = wtr.createWaterSurfaceType(); marshalWaterSurface(src, dest); return dest; } }