1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
/**********************************************************************
* $Id: WKBWriter.cpp 2025 2007-09-21 17:32:05Z csavage $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2005-2006 Refractions Research Inc.
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU Lesser General Public Licence as published
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************/
#include <geos/io/WKBWriter.h>
#include <geos/io/WKBReader.h>
#include <geos/io/WKBConstants.h>
#include <geos/io/ByteOrderValues.h>
#include <geos/util/IllegalArgumentException.h>
#include <geos/geom/Coordinate.h>
#include <geos/geom/Point.h>
#include <geos/geom/LinearRing.h>
#include <geos/geom/LineString.h>
#include <geos/geom/Polygon.h>
#include <geos/geom/MultiPoint.h>
#include <geos/geom/MultiLineString.h>
#include <geos/geom/MultiPolygon.h>
#include <geos/geom/CoordinateSequence.h>
#include <geos/geom/PrecisionModel.h>
#include <ostream>
#include <sstream>
#include <cassert>
#undef DEBUG_WKB_WRITER
using namespace std;
using namespace geos::geom;
namespace geos {
namespace io { // geos.io
WKBWriter::WKBWriter(int dims, int bo, bool srid):
outputDimension(dims), byteOrder(bo), includeSRID(srid), outStream(NULL)
{
if ( dims < 2 || dims > 3 )
throw util::IllegalArgumentException("WKB output dimension must be 2 or 3");
}
void
WKBWriter::writeHEX(const Geometry &g, ostream &os)
{
// setup input/output stream
stringstream stream;
// write the geometry in wkb format
this->write(g, stream);
// convert to HEX
WKBReader::printHEX(stream, os);
}
void
WKBWriter::write(const Geometry &g, ostream &os)
{
outStream = &os;
switch (g.getGeometryTypeId()) {
case GEOS_POINT:
return writePoint((Point &)g);
case GEOS_LINESTRING:
case GEOS_LINEARRING:
return writeLineString((LineString &)g);
case GEOS_POLYGON:
return writePolygon((Polygon &)g);
case GEOS_MULTIPOINT:
return writeGeometryCollection(
(GeometryCollection &)g,
WKBConstants::wkbMultiPoint);
case GEOS_MULTILINESTRING:
return writeGeometryCollection(
(GeometryCollection &)g,
WKBConstants::wkbMultiLineString);
case GEOS_MULTIPOLYGON:
return writeGeometryCollection(
(GeometryCollection &)g,
WKBConstants::wkbMultiPolygon);
case GEOS_GEOMETRYCOLLECTION:
return writeGeometryCollection(
(GeometryCollection &)g,
WKBConstants::wkbGeometryCollection);
default:
assert(0); // Unknown Geometry type
}
}
void
WKBWriter::writePoint(const Point &g)
{
if (g.isEmpty()) throw
util::IllegalArgumentException("Empty Points cannot be represented in WKB");
writeByteOrder();
writeGeometryType(WKBConstants::wkbPoint, g.getSRID());
writeSRID(g.getSRID());
const CoordinateSequence* cs=g.getCoordinatesRO();
assert(cs);
writeCoordinateSequence(*cs, false);
}
void
WKBWriter::writeLineString(const LineString &g)
{
writeByteOrder();
writeGeometryType(WKBConstants::wkbLineString, g.getSRID());
writeSRID(g.getSRID());
const CoordinateSequence* cs=g.getCoordinatesRO();
assert(cs);
writeCoordinateSequence(*cs, true);
}
void
WKBWriter::writePolygon(const Polygon &g)
{
writeByteOrder();
writeGeometryType(WKBConstants::wkbPolygon, g.getSRID());
writeSRID(g.getSRID());
int nholes = g.getNumInteriorRing();
writeInt(nholes+1);
const LineString* ls = g.getExteriorRing();
assert(ls);
const CoordinateSequence* cs=ls->getCoordinatesRO();
assert(cs);
writeCoordinateSequence(*cs, true);
for (int i=0; i<nholes; i++)
{
ls = g.getInteriorRingN(i);
assert(ls);
cs = ls->getCoordinatesRO();
assert(cs);
writeCoordinateSequence(*cs, true);
}
}
void
WKBWriter::writeGeometryCollection(const GeometryCollection &g,
int wkbtype)
{
writeByteOrder();
writeGeometryType(wkbtype, g.getSRID());
writeSRID(g.getSRID());
int ngeoms = g.getNumGeometries();
writeInt(ngeoms);
assert(outStream);
for (int i=0; i<ngeoms; i++)
{
const Geometry* elem = g.getGeometryN(i);
assert(elem);
write(*elem, *outStream);
}
}
void
WKBWriter::writeByteOrder()
{
if (byteOrder == ByteOrderValues::ENDIAN_LITTLE)
{
buf[0] = WKBConstants::wkbNDR;
}
else
{
buf[0] = WKBConstants::wkbXDR;
}
assert(outStream);
outStream->write(reinterpret_cast<char*>(buf), 1);
}
void
WKBWriter::writeGeometryType(int typeId, int SRID)
{
int flag3D = (outputDimension == 3) ? 0x80000000 : 0;
int typeInt = typeId | flag3D;
if (includeSRID && SRID != 0)
typeInt = typeInt | 0x20000000;
//writeInt(typeId);
writeInt(typeInt);
}
void
WKBWriter::writeSRID(int SRID)
{
if (includeSRID && SRID != 0)
writeInt(SRID);
}
void
WKBWriter::writeInt(int val)
{
ByteOrderValues::putInt(val, buf, byteOrder);
outStream->write(reinterpret_cast<char *>(buf), 4);
//outStream->write(reinterpret_cast<char *>(&val), 4);
}
void
WKBWriter::writeCoordinateSequence(const CoordinateSequence &cs,
bool sized)
{
int size = cs.getSize();
bool is3d=false;
if ( cs.getDimension() > 2 && outputDimension > 2) is3d = true;
if (sized) writeInt(size);
for (int i=0; i<size; i++) writeCoordinate(cs, i, is3d);
}
void
WKBWriter::writeCoordinate(const CoordinateSequence &cs, int idx,
bool is3d)
{
#if DEBUG_WKB_WRITER
cout<<"writeCoordinate: X:"<<cs.getX(idx)<<" Y:"<<cs.getY(idx)<<endl;
#endif
assert(outStream);
ByteOrderValues::putDouble(cs.getX(idx), buf, byteOrder);
outStream->write(reinterpret_cast<char *>(buf), 8);
ByteOrderValues::putDouble(cs.getY(idx), buf, byteOrder);
outStream->write(reinterpret_cast<char *>(buf), 8);
if ( is3d )
{
ByteOrderValues::putDouble(
cs.getOrdinate(idx, CoordinateSequence::X),
buf, byteOrder);
outStream->write(reinterpret_cast<char *>(buf), 8);
}
}
} // namespace geos.io
} // namespace geos
|