/[schmitzm]/branches/1.0-gt2-2.6/src/skrueger/geotools/labelsearch/LabelSearch.java
ViewVC logotype

Contents of /branches/1.0-gt2-2.6/src/skrueger/geotools/labelsearch/LabelSearch.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 574 - (show annotations)
Wed Nov 25 08:09:42 2009 UTC (15 years, 3 months ago) by alfonx
File MIME type: text/plain
File size: 7090 byte(s)
Moved helper methods for double labelling from ASUtil to StylingUtil
1 /*******************************************************************************
2 * Copyright (c) 2009 Martin O. J. Schmitz.
3 *
4 * This file is part of the SCHMITZM library - a collection of utility
5 * classes based on Java 1.6, focusing (not only) on Java Swing
6 * and the Geotools library.
7 *
8 * The SCHMITZM project is hosted at:
9 * http://wald.intevation.org/projects/schmitzm/
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 3
14 * of the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public License (license.txt)
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 * or try this link: http://www.gnu.org/licenses/lgpl.html
25 *
26 * Contributors:
27 * Martin O. J. Schmitz - initial API and implementation
28 * Stefan A. Krüger - additional utility classes
29 ******************************************************************************/
30 package skrueger.geotools.labelsearch;
31
32 import java.io.IOException;
33 import java.util.ArrayList;
34 import java.util.Collections;
35 import java.util.Iterator;
36 import java.util.List;
37 import java.util.Locale;
38
39 import org.apache.log4j.Logger;
40 import org.geotools.data.DefaultQuery;
41 import org.geotools.data.FeatureSource;
42 import org.geotools.feature.FeatureCollection;
43 import org.geotools.map.MapLayer;
44 import org.geotools.styling.Style;
45 import org.geotools.styling.TextSymbolizer;
46 import org.opengis.feature.simple.SimpleFeature;
47 import org.opengis.feature.simple.SimpleFeatureType;
48 import org.opengis.feature.type.AttributeDescriptor;
49 import org.opengis.filter.Filter;
50 import org.opengis.filter.expression.Expression;
51 import org.opengis.filter.expression.PropertyName;
52
53 import schmitzm.geotools.styling.StylingUtil;
54 import schmitzm.lang.LangUtil;
55 import schmitzm.lang.ResourceProvider;
56
57 /**
58 * This class allows to search for a {@link String} in a map. The algorithm will
59 * analyze the {@link Style} of every visible(?) layer and determine the label
60 * attribute. This field is then searched for every feature.
61 *
62 * @author Stefan A. Krüger
63 *
64 */
65 public class LabelSearch {
66 final static private Logger LOGGER = Logger.getLogger(LabelSearch.class);
67
68 public static ResourceProvider RESOURCE = new ResourceProvider(LangUtil
69 .extendPackagePath(LabelSearch.class, "labelsearch"),
70 Locale.ENGLISH);
71
72 public static String R(String key, Object... values) {
73 return RESOURCE.getString(key, values);
74 }
75
76 protected final schmitzm.geotools.gui.SelectableXMapPane mapPane;
77
78 public LabelSearch(final schmitzm.geotools.gui.SelectableXMapPane mapPane) {
79 this.mapPane = mapPane;
80 }
81
82 /**
83 * The Attribute that provides the labels for this text symbolizer.
84 */
85 private AttributeDescriptor getLabelAttribute(final TextSymbolizer ts,
86 final SimpleFeatureType schema) {
87 if (ts == null) {
88 // This layer has no labels
89 return null;
90 }
91
92 final Expression labelExp = ts.getLabel();
93 if (labelExp instanceof PropertyName) {
94 final PropertyName pn = (PropertyName) labelExp;
95 final String propertyName = pn.getPropertyName();
96 return schema.getDescriptor(propertyName);
97 } else {
98 return null;
99 }
100
101 }
102
103 public List<SearchResult> search(final String string) {
104
105 final String searchMe = string.toLowerCase();
106
107 final ArrayList<SearchResult> hits = new ArrayList<SearchResult>();
108
109 for (final MapLayer ml : mapPane.getMapContext().getLayers()) {
110 try {
111
112 // System.out.println("layer = "+ml.getTitle());
113
114 if (!ml.isVisible())
115 continue;
116
117 final List<TextSymbolizer> allTS = StylingUtil
118 .getVisibleTextSymbolizers(ml.getStyle());
119 if (allTS.size() == 0) {
120 // A layer without any TextSymbolizer doesn't have to be
121 // searched any more.
122 continue;
123 }
124
125 final FeatureSource<SimpleFeatureType, SimpleFeature> featureSource = (FeatureSource<SimpleFeatureType, SimpleFeature>) ml
126 .getFeatureSource();
127
128 final String typeName = featureSource.getSchema().getName()
129 .getLocalPart();
130
131 // Expression labelExp = ts.getLabel();
132 // ff.like(labelExp, "*"+searchMe+"*");
133 // FeatureCollection features =
134 // ml.getFeatureSource().getFeatures(
135 // new DefaultQuery(typeName, ff.like(labelExp,
136 // "*"+searchMe+"*"), properties));
137
138 final FeatureCollection<SimpleFeatureType, SimpleFeature> features = featureSource
139 .getFeatures(new DefaultQuery(typeName, Filter.INCLUDE));
140
141 // new MemoryDataStore().getFeatureSource(typeName)
142
143 /**
144 * We do the comparison NOT with a ff.like, because that doesn't
145 * support case insensitivity and i don't find a lower or UPPER
146 * function.
147 */
148 final Iterator<SimpleFeature> fi = features.iterator();
149 try {
150
151 while (fi.hasNext()) {
152 final SimpleFeature f = fi.next();
153
154 final TextSymbolizer ts = StylingUtil
155 .getTextSymbolizer(ml.getStyle(), f);
156 if (ts == null)
157 continue;
158
159 // TODO Evaluate the Rule that belongs to the
160 SimpleFeatureType schema = featureSource.getSchema();
161 PropertyName pn = StylingUtil.getFirstPropertyName(
162 schema, ts);
163 if (pn == null) continue;
164
165 final AttributeDescriptor labelAttribute = schema
166 .getDescriptor(pn.getPropertyName());
167
168 final Object value = f.getAttribute(labelAttribute
169 .getLocalName());
170
171 if (value == null) {
172 LOGGER
173 .info("Skipping f: getLocalName() is null for feature="
174 + f);
175 continue;
176 }
177
178 /**
179 * LabelString ist z.B. "IMPETUS pluviograph". Suchwort
180 * "plu" soll treffen. Also wird nach spaces zerlegt und
181 * dann gesucht
182 */
183 final String labelString = value.toString()
184 .toLowerCase();
185 if (labelString.startsWith(searchMe)) {
186 hits.add(createSearchResult(f, value.toString(), ml
187 .getTitle(), ml));
188 } else {
189 final String[] parts = labelString.trim()
190 .split(" ");
191 for (final String part : parts) {
192 if (part.startsWith(searchMe)) {
193 hits.add(createSearchResult(f, value
194 .toString(), ml.getTitle(), ml));
195 break;
196 }
197 }
198 }
199
200 }
201 } finally {
202 features.close(fi);
203 }
204
205 } catch (final IOException e) {
206 // Searching this layer failed
207 LOGGER.error(e);
208 }
209
210 } // next layer
211
212 // Hits from the top-most layer should appear first.
213 Collections.reverse(hits);
214
215 return hits;
216 }
217
218 protected SearchResult createSearchResult(final SimpleFeature f,
219 final String title, final String inTitle, MapLayer ml) {
220 return new SearchResultFeature(f, title, inTitle, mapPane, ml);
221 }
222
223 }

Properties

Name Value
svn:eol-style native
svn:keywords Id
svn:mime-type text/plain

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26