org.geolatte.geom.codec.HANAWkbDecoder Maven / Gradle / Ivy
Show all versions of geolatte-geom Show documentation
/*
* This file is part of the GeoLatte project.
*
* GeoLatte is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GeoLatte 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with GeoLatte. If not, see .
*
* Copyright (C) 2010 - 2017 and Ownership of code is shared by:
* Qmino bvba - Romeinsestraat 18 - 3001 Heverlee (http://www.qmino.com)
* Geovise bvba - Generaal Eisenhowerlei 9 - 2140 Antwerpen (http://www.geovise.com)
*/
package org.geolatte.geom.codec;
import org.geolatte.geom.ByteBuffer;
import org.geolatte.geom.Geometry;
import org.geolatte.geom.Position;
import org.geolatte.geom.codec.support.GeometryBuilder;
import org.geolatte.geom.crs.CoordinateReferenceSystem;
import org.geolatte.geom.crs.CoordinateReferenceSystems;
import org.geolatte.geom.crs.CrsRegistry;
/**
* The HANA EWKB decoder is equivalent to the Postgis EWKB decoder and is there mostly for symmetry reasons.
*
* @author Jonathan Bregler, SAP
*/
public class HANAWkbDecoder implements WkbDecoder {
@Override
public Geometry
decode(ByteBuffer byteBuffer, CoordinateReferenceSystem
crs) {
byteBuffer.rewind();
BaseWkbParser
parser = new HANAWkbParser<>(byteBuffer, crs);
try {
return parser.parse();
} catch (WkbDecodeException e) {
throw e;
} catch (Throwable t) {
throw new WkbDecodeException(t);
}
}
}
class HANAWkbParser
extends BaseWkbParser
{
private boolean crsRead;
HANAWkbParser(ByteBuffer buffer, CoordinateReferenceSystem
crs) {
super(HANAWkbDialect.INSTANCE, buffer, crs);
}
@Override
protected GeometryBuilder parseWkbType() {
long tpe = buffer.getUInt();
gtype = dialect.parseType(tpe);
if (!crsRead) {
readCrs(buffer, (int) tpe);
crsRead = true;
}
return GeometryBuilder.create(gtype);
}
protected void readCrs(ByteBuffer byteBuffer, int typeCode) {
hasM = (typeCode & PostgisWkbTypeMasks.M_FLAG) == PostgisWkbTypeMasks.M_FLAG;
hasZ = (typeCode & PostgisWkbTypeMasks.Z_FLAG) == PostgisWkbTypeMasks.Z_FLAG;
if ( ( typeCode & 0xFFFF ) > 3000 ) {
hasM = true;
hasZ = true;
}
else if ( ( typeCode & 0xFFFF ) > 2000 ) {
hasM = true;
}
else if ( ( typeCode & 0xFFFF ) > 1000 ) {
hasZ = true;
}
int srid = 0;
if (hasSrid(typeCode)) {
srid = byteBuffer.getInt();
}
embeddedCRS = CrsRegistry.getCoordinateReferenceSystemForEPSG(srid, CoordinateReferenceSystems.PROJECTED_2D_METER);
}
protected boolean hasSrid(int typeCode) {
return (typeCode & PostgisWkbTypeMasks.SRID_FLAG) == PostgisWkbTypeMasks.SRID_FLAG;
}
}