
com.querydsl.apt.SpatialSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querydsl-apt Show documentation
Show all versions of querydsl-apt Show documentation
APT based Source code generation for Querydsl
/*
* Copyright 2015, The Querydsl Team (http://www.querydsl.com/team)
*
* 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 com.querydsl.apt;
import java.util.Map;
import java.util.Set;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import com.mysema.codegen.model.SimpleType;
import com.querydsl.codegen.AbstractModule;
import com.querydsl.codegen.CodegenModule;
import com.querydsl.codegen.TypeMappings;
final class SpatialSupport {
private static void registerTypes(TypeMappings typeMappings) {
Map additions = Maps.newHashMap();
additions.put("Geometry", "GeometryPath");
additions.put("GeometryCollection", "GeometryCollectionPath");
additions.put("LinearRing", "LinearRingPath");
additions.put("LineString", "LineStringPath");
additions.put("MultiLineString", "MultiLineStringPath");
additions.put("MultiPoint", "MultiPointPath");
additions.put("MultiPolygon", "MultiPolygonPath");
additions.put("Point", "PointPath");
additions.put("Polygon", "PolygonPath");
additions.put("PolyHedralSurface", "PolyhedralSurfacePath");
for (Map.Entry entry : additions.entrySet()) {
typeMappings.register(
new SimpleType("org.geolatte.geom." + entry.getKey()),
new SimpleType("com.querydsl.spatial." + entry.getValue()));
}
}
private static void registerJTSTypes(TypeMappings typeMappings) {
Map additions = Maps.newHashMap();
additions.put("Geometry", "JTSGeometryPath");
additions.put("GeometryCollection", "JTSGeometryCollectionPath");
additions.put("LinearRing", "JTSLinearRingPath");
additions.put("LineString", "JTSLineStringPath");
additions.put("MultiLineString", "JTSMultiLineStringPath");
additions.put("MultiPoint", "JTSMultiPointPath");
additions.put("MultiPolygon", "JTSMultiPolygonPath");
additions.put("Point", "JTSPointPath");
additions.put("Polygon", "JTSPolygonPath");
for (Map.Entry entry : additions.entrySet()) {
typeMappings.register(
new SimpleType("com.vividsolutions.jts.geom." + entry.getKey()),
new SimpleType("com.querydsl.spatial.jts." + entry.getValue()));
}
}
private static void addImports(AbstractModule module, String packageName) {
@SuppressWarnings("unchecked")
Set imports = module.get(Set.class, CodegenModule.IMPORTS);
if (imports.isEmpty()) {
imports = ImmutableSet.of(packageName);
} else {
Set old = imports;
imports = Sets.newHashSet();
imports.addAll(old);
imports.add(packageName);
}
module.bind(CodegenModule.IMPORTS, imports);
}
public static void addSupport(AbstractModule module) {
registerTypes(module.get(TypeMappings.class));
addImports(module,"com.querydsl.spatial.path");
registerJTSTypes(module.get(TypeMappings.class));
addImports(module,"com.querydsl.spatial.jts.path");
}
private SpatialSupport() { }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy