/* ----------------------------------------------------------------------------- Factory and utility functions for GEOS wrapper ----------------------------------------------------------------------------- Copyright 2010 Daniel Azuma All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder, nor the names of any other contributors to this software, may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----------------------------------------------------------------------------- */ #ifndef RGEO_GEOS_FACTORY_INCLUDED #define RGEO_GEOS_FACTORY_INCLUDED #include #include RGEO_BEGIN_C // Per-interpreter globals typedef struct { VALUE features_module; VALUE geos_module; } RGeo_Globals; // Wrapped structure for Factory objects. // A factory encapsulates the GEOS context, and GEOS serializer settings. // It also stores the SRID for all geometries created by this factory, // and the resolution for buffers created for this factory's geometries. // Finally, it provides easy access to the globals. typedef struct { RGeo_Globals* globals; GEOSContextHandle_t geos_context; GEOSWKTReader* wkt_reader; GEOSWKBReader* wkb_reader; GEOSWKTWriter* wkt_writer; GEOSWKBWriter* wkb_writer; int flags; int srid; int buffer_resolution; } RGeo_FactoryData; #define RGEO_FACTORYFLAGS_LENIENT_MULTIPOLYGON 1 #define RGEO_FACTORYFLAGS_SUPPORTS_Z 2 #define RGEO_FACTORYFLAGS_SUPPORTS_M 4 #define RGEO_FACTORYFLAGS_SUPPORTS_Z_OR_M 6 // Wrapped structure for Geometry objects. // Includes a handle to the underlying GEOS geometry itself (which could // be null for an uninitialized geometry). // It also provides a handle to the factory that created this geometry. // The klasses object is used by geometry collections. Its value is // generally an array of the ruby classes for the colletion's elements, // so that we can reproduce the exact class for those elements in cases // where the class cannot be inferred directly from the GEOS type (as // in Line objects, which have no GEOS type). Any array element, or the // array itself, could be Qnil, indicating fall back to the default // inferred from the GEOS type. typedef struct { GEOSGeometry* geom; VALUE factory; VALUE klasses; } RGeo_GeometryData; // Returns the RGeo_FactoryData* given a ruby Factory object #define RGEO_FACTORY_DATA_PTR(factory) ((RGeo_FactoryData*)DATA_PTR(factory)) // Returns the RGeo_GeometryData* given a ruby Geometry object #define RGEO_GEOMETRY_DATA_PTR(geometry) ((RGeo_GeometryData*)DATA_PTR(geometry)) // Returns a pointer to the globals given a ruby Factory object #define RGEO_GLOBALS_FROM_FACTORY(factory) (RGEO_FACTORY_DATA_PTR(factory)->globals) // Returns the GEOS context handle given a ruby Factory object #define RGEO_CONTEXT_FROM_FACTORY(factory) (RGEO_FACTORY_DATA_PTR(factory)->geos_context) // Returns the ruby Factory object given a ruby Geometry object #define RGEO_FACTORY_FROM_GEOMETRY(geometry) (RGEO_GEOMETRY_DATA_PTR(geometry)->factory) // Returns the klasses object given a ruby Geometry object #define RGEO_KLASSES_FROM_GEOMETRY(geometry) (RGEO_GEOMETRY_DATA_PTR(geometry)->klasses) // Returns the RGeo_FactoryData* given a ruby Geometry object #define RGEO_FACTORY_DATA_FROM_GEOMETRY(geometry) RGEO_FACTORY_DATA_PTR(RGEO_FACTORY_FROM_GEOMETRY(geometry)) // Returns the GEOS geometry handle given a ruby Geometry object #define RGEO_GET_GEOS_GEOMETRY(geometry) ((const GEOSGeometry*)(RGEO_GEOMETRY_DATA_PTR(geometry)->geom)) // Returns the GEOS context handle given a ruby Geometry object #define RGEO_CONTEXT_FROM_GEOMETRY(geometry) RGEO_CONTEXT_FROM_FACTORY(RGEO_FACTORY_FROM_GEOMETRY(geometry)) // Returns a pointer to the globals given a ruby Geometry object #define RGEO_GLOBALS_FROM_GEOMETRY(geometry) RGEO_GLOBALS_FROM_FACTORY(RGEO_FACTORY_FROM_GEOMETRY(geometry)) /* Initializes the factory module. This should be called first in the initialization process. */ RGeo_Globals* rgeo_init_geos_factory(); /* Given a GEOS geometry handle, wraps it in a ruby Geometry object of the given klass. The geometry is then owned by the ruby object, so make sure you clone the GEOS object first if something else thinks it owns it. You may pass Qnil for the klass to have the klass auto-detected. (But note that it cannot auto-detect the Line type because GEOS doesn't explicitly represent that type-- it will come out as LineString.) You may also pass a ruby Array for the klass if the geometry is a collection of some sort. In this case, the array elements should be the classes for the elements of the collection. Returns Qnil if the wrapping failed for any reason. */ VALUE rgeo_wrap_geos_geometry(VALUE factory, GEOSGeometry* geom, VALUE klass); /* Same as rgeo_wrap_geos_geometry except that it wraps a clone of the given geom, so the original geom doesn't change ownership. */ VALUE rgeo_wrap_geos_geometry_clone(VALUE factory, const GEOSGeometry* geom, VALUE klass); /* Gets the GEOS geometry for a given ruby Geometry object. If the given ruby object is not a GEOS geometry implementation, it is converted to a GEOS implementation first. You may also optionally cast it to a type, specified by an appropriate feature module. Passing Qnil for the type disables this auto-cast. The returned GEOS geometry is owned by rgeo, and you should not dispose it or take ownership of it yourself. */ const GEOSGeometry* rgeo_convert_to_geos_geometry(VALUE factory, VALUE obj, VALUE type); /* Gets a GEOS geometry for a given ruby Geometry object. You must provide a GEOS factory for the geometry; the object is cast to that factory if it is not already of it. You may also optionally cast it to a type, specified by an appropriate feature module. Passing Qnil for the type disables this auto-cast. The returned GEOS geometry is owned by the caller-- that is, if the original ruby object is already of the desired factory, the returned GEOS geometry is a clone of the original. If the klasses parameter is not NULL, its referent is set to the klasses saved in the original ruby Geometry object (if any), or else to the class of the converted GEOS object. This is so that you can use the result of this function to build a GEOS-backed clone of the original geometry, or to include the given geometry in a collection while keeping the klasses intact. */ GEOSGeometry* rgeo_convert_to_detached_geos_geometry(VALUE obj, VALUE factory, VALUE type, VALUE* klasses); /* Returns 1 if the given ruby object is a GEOS Geometry implementation, or 0 if not. */ char rgeo_is_geos_object(VALUE obj); /* Gets the underlying GEOS geometry for a given ruby object. Returns NULL if the given ruby object is not a GEOS geometry wrapper. */ const GEOSGeometry* rgeo_get_geos_geometry_safe(VALUE obj); /* Compares the coordinate sequences for two given GEOS geometries. The two given geometries MUST be of types backed directly by coordinate sequences-- i.e. points or line strings. Returns Qtrue if the two coordinate sequences are equal, Qfalse if they are inequal, or Qnil if an error occurs. */ VALUE rgeo_geos_coordseqs_eql(GEOSContextHandle_t context, const GEOSGeometry* geom1, const GEOSGeometry* geom2, char check_z); /* Compares the ruby classes and geometry factories of the two given ruby objects. Returns Qtrue if everything is equal (that is, the two objects are of the same type and factory), or Qfalse otherwise. */ VALUE rgeo_geos_klasses_and_factories_eql(VALUE obj1, VALUE obj2); RGEO_END_C #endif