|
@@ -3,13 +3,19 @@ import cn.com.taiji.cql.service.IECqlService;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.geotools.api.data.DataStore;
|
|
import org.geotools.api.data.DataStore;
|
|
import org.geotools.api.data.DataStoreFinder;
|
|
import org.geotools.api.data.DataStoreFinder;
|
|
|
|
+import org.geotools.api.data.Query;
|
|
import org.geotools.api.data.SimpleFeatureSource;
|
|
import org.geotools.api.data.SimpleFeatureSource;
|
|
import org.geotools.api.feature.simple.SimpleFeature;
|
|
import org.geotools.api.feature.simple.SimpleFeature;
|
|
import org.geotools.api.feature.simple.SimpleFeatureType;
|
|
import org.geotools.api.feature.simple.SimpleFeatureType;
|
|
import org.geotools.api.feature.type.AttributeDescriptor;
|
|
import org.geotools.api.feature.type.AttributeDescriptor;
|
|
import org.geotools.api.filter.Filter;
|
|
import org.geotools.api.filter.Filter;
|
|
|
|
+import org.geotools.api.filter.FilterFactory;
|
|
|
|
+import org.geotools.api.filter.sort.SortBy;
|
|
|
|
+import org.geotools.api.filter.sort.SortOrder;
|
|
import org.geotools.data.simple.SimpleFeatureCollection;
|
|
import org.geotools.data.simple.SimpleFeatureCollection;
|
|
import org.geotools.data.simple.SimpleFeatureIterator;
|
|
import org.geotools.data.simple.SimpleFeatureIterator;
|
|
|
|
+import org.geotools.filter.FilterFactoryImpl;
|
|
|
|
+import org.geotools.filter.SortByImpl;
|
|
import org.geotools.filter.text.ecql.ECQL;
|
|
import org.geotools.filter.text.ecql.ECQL;
|
|
import org.geotools.jdbc.JDBCDataStoreFactory;
|
|
import org.geotools.jdbc.JDBCDataStoreFactory;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
@@ -30,7 +36,7 @@ public class ECqlServiceImpl implements IECqlService{
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
- public List<Map<String, Object>> cqlQuery(Map<String, Object> mapParams, String cql) {
|
|
|
|
|
|
+ public List<Map<String, Object>> cqlQuery(Map<String, Object> mapParams, String cql,Map<String,Object> sortMaps) {
|
|
|
|
|
|
List<Map<String, Object>> dataList = new ArrayList<Map<String, Object>>();
|
|
List<Map<String, Object>> dataList = new ArrayList<Map<String, Object>>();
|
|
|
|
|
|
@@ -52,9 +58,47 @@ public class ECqlServiceImpl implements IECqlService{
|
|
//根据表名获取source
|
|
//根据表名获取source
|
|
SimpleFeatureSource fSource=dataStore.getFeatureSource(mapParams.get("tableName").toString());
|
|
SimpleFeatureSource fSource=dataStore.getFeatureSource(mapParams.get("tableName").toString());
|
|
|
|
|
|
|
|
+
|
|
|
|
+ FilterFactoryImpl filterFactory = new FilterFactoryImpl();
|
|
|
|
+
|
|
Filter filter = ECQL.toFilter(cql);
|
|
Filter filter = ECQL.toFilter(cql);
|
|
|
|
|
|
- SimpleFeatureCollection fCollection =fSource.getFeatures(filter);
|
|
|
|
|
|
+ Query query = new Query();
|
|
|
|
+ query.setFilter(filter);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if(sortMaps.keySet().size() >0){
|
|
|
|
+
|
|
|
|
+ List<SortByImpl> sortByList = new ArrayList<SortByImpl>();
|
|
|
|
+
|
|
|
|
+ for (String sortKey : sortMaps.keySet()) {
|
|
|
|
+
|
|
|
|
+ String sortValue = sortMaps.get(sortKey).toString();
|
|
|
|
+
|
|
|
|
+ if("asc".equals(sortValue.toLowerCase())){
|
|
|
|
+
|
|
|
|
+ SortByImpl sb = new SortByImpl(filterFactory.property(sortKey),SortOrder.ASCENDING);
|
|
|
|
+
|
|
|
|
+ sortByList.add(sb);
|
|
|
|
+ }else{
|
|
|
|
+
|
|
|
|
+ SortByImpl sb = new SortByImpl(filterFactory.property(sortKey),SortOrder.DESCENDING);
|
|
|
|
+
|
|
|
|
+ sortByList.add(sb);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ query.setSortBy(sortByList.toArray(new SortBy[sortByList.size()]));
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ SimpleFeatureCollection fCollection =fSource.getFeatures(query);
|
|
|
|
|
|
if(fCollection !=null){
|
|
if(fCollection !=null){
|
|
|
|
|