/[schmitzm]/trunk/src/skrueger/geotools/StyledFS.java
ViewVC logotype

Diff of /trunk/src/skrueger/geotools/StyledFS.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 221 by alfonx, Tue Jul 14 14:40:52 2009 UTC revision 1159 by alfonx, Fri Oct 22 17:56:28 2010 UTC
# Line 1  Line 1 
1  package skrueger.geotools;  /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3  import java.io.File;   *
4  import java.io.FileNotFoundException;   * This file is part of the SCHMITZM library - a collection of utility
5  import java.io.IOException;   * classes based on Java 1.6, focusing (not only) on Java Swing
6  import java.net.URL;   * and the Geotools library.
7  import java.util.Date;   *
8  import java.util.HashMap;   * The SCHMITZM project is hosted at:
9  import java.util.Map;   * http://wald.intevation.org/projects/schmitzm/
10  import java.util.Random;   *
11     * This program is free software; you can redistribute it and/or
12  import javax.swing.ImageIcon;   * modify it under the terms of the GNU Lesser General Public License
13  import javax.swing.JPanel;   * as published by the Free Software Foundation; either version 3
14     * of the License, or (at your option) any later version.
15  import org.apache.log4j.Logger;   *
16  import org.geotools.data.FeatureSource;   * This program is distributed in the hope that it will be useful,
17  import org.geotools.feature.AttributeType;   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  import org.geotools.feature.FeatureCollection;   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  import org.geotools.styling.Style;   * GNU General Public License for more details.
20  import org.opengis.referencing.crs.CoordinateReferenceSystem;   *
21     * You should have received a copy of the GNU Lesser General Public License (license.txt)
22  import schmitzm.geotools.feature.FeatureOperationTreeFilter;   * along with this program; if not, write to the Free Software
23  import schmitzm.geotools.styling.StylingUtil;   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24  import skrueger.AttributeMetaData;   * or try this link: http://www.gnu.org/licenses/lgpl.html
25  import skrueger.i8n.Translation;   *
26     * Contributors:
27  import com.vividsolutions.jts.geom.Envelope;   *     Martin O. J. Schmitz - initial API and implementation
28     *     Stefan A. Tzeggai - additional utility classes
29  /**   ******************************************************************************/
30   * This class enables a non Atlas context to use the Atlas LayerPanel  package skrueger.geotools;
31   * {@link JPanel} as a {@link MapContextManagerInterface}  
32   *  import java.io.File;
33   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>  import java.io.IOException;
34   */  import java.net.URL;
35  public class StyledFS implements StyledFeatureSourceInterface {  import java.util.Date;
36          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);  import java.util.Random;
37    
38          private final FeatureSource fs;  import javax.swing.ImageIcon;
39    import javax.swing.JPanel;
40          /**  
41           * A unique ID which identifies the Layer in the Atlas. It's more important  import org.apache.log4j.Logger;
42           * than it should be ;-)  import org.geotools.data.FeatureSource;
43           */  import org.geotools.feature.FeatureCollection;
44          private String id;  import org.geotools.feature.NameImpl;
45    import org.geotools.styling.Style;
46          private Style style;  import org.opengis.feature.simple.SimpleFeature;
47    import org.opengis.feature.simple.SimpleFeatureType;
48          private Translation title;  import org.opengis.feature.type.AttributeDescriptor;
49    import org.opengis.filter.Filter;
50          private Translation desc;  import org.opengis.referencing.crs.CoordinateReferenceSystem;
51    
52          private File sldFile;  import schmitzm.geotools.io.GeoImportUtil;
53    import schmitzm.geotools.styling.StylingUtil;
54          private HashMap<Integer, AttributeMetaData> map;  import skrueger.AttributeMetadataImpl;
55    import skrueger.i8n.Translation;
56          /**  
57           * This class enables a non Atlas context to use the Atlas LayerPanel  import com.vividsolutions.jts.geom.Envelope;
58           * {@link JPanel} as a {@link MapContextManagerInterface}  
59           *  /**
60           * @param fs   * This class enables a non Atlas context to use the Atlas LayerPanel
61           *            {@link FeatureSource} that is beeing styled.   * {@link JPanel} as a {@link MapContextManagerInterface}
62           *   *
63           * @param sldFile   * @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a>
64           *            may be <code>null</code>. Otherwise the SLD {@link File} to   *
65           *            import and associate with this {@link StyledFS}   *         TODO Rename to StyledShapefile
66           */   */
67          public StyledFS(FeatureSource fs, File sldFile) {  public class StyledFS implements StyledFeatureSourceInterface {
68            private static final Logger LOGGER = Logger.getLogger(StyledFS.class);
69                  this.fs = fs;  
70                  id = StyledFS.class.getSimpleName()          private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;
71                                  + new Random(new Date().getTime()).nextInt(10000000);  
72            /** Caching the CRS of the layer **/
73                  this.sldFile = sldFile;          CoordinateReferenceSystem crs = null;
74    
75                  if ((sldFile != null) && (sldFile.exists())) {          /**
76                          try {           * A unique ID which identifies the Layer in the Atlas. It's more important
77                                  style = StylingUtil.loadSLD(sldFile)[0];           * than it should be ;-)
78                          } catch (FileNotFoundException e) {           */
79                                  LOGGER          final private String id;
80                                                  .debug("The SLD file passed was empty. Leaving the Style untouched. (We are in the constructor.. so its null");  
81                          } catch (Exception e) {          private Style style;
82                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);  
83                          }          private Translation title;
84                  }  
85                  title = new Translation();          private Translation desc;
86                  title.fromOneLine(sldFile.getName());  
87            private File sldFile;
88                  desc = new Translation();  
89                  desc.fromOneLine(sldFile.getAbsolutePath());          /** A map of simple attribute names to their meta-data **/
90          }          private AttributeMetadataMap<AttributeMetadataImpl> map;
91    
92          public void dispose() {          private Filter filter = Filter.INCLUDE;
93          }  
94            /**
95          /**           * This class enables a non Atlas context to use the Atlas LayerPanel
96           * Returnes human readable {@link String} of the CRS natively used by this           * {@link JPanel} as a {@link MapContextManagerInterface}
97           * {@link DpLayer}           *
98           *           * @param fs
99           * If crs == null, it will call {@link #getGeoObject()}           *            {@link FeatureSource} that is beeing styled.
100           *           *
101           */           * @param sldFile
102          public String getCRSString() {           *            may be <code>null</code>. Otherwise the SLD {@link File} to
103                  if (getCrs() == null)           *            import and associate with this {@link StyledFS}
104                          return "CRS?";           *
105             * @param id
106                  return getCrs().getName().getCode();           *            <code>null</code> is allowed and will autogenerate an id
107          }           */
108            public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
109          public CoordinateReferenceSystem getCrs() {                          File sldFile, String id) {
110                  return fs.getSchema().getDefaultGeometry().getCoordinateSystem();  
111          }                  this.fs = fs;
112    
113          public Translation getDesc() {                  if (id == null) {
114                  return desc;                          this.id = StyledFS.class.getSimpleName()
115          }                                          + new Random(new Date().getTime()).nextInt(10000000);
116                    } else {
117          public Envelope getEnvelope() {                          this.id = id;
118                  try {                  }
119                          return fs.getBounds();  
120                  } catch (IOException e) {                  this.sldFile = sldFile;
121                          e.printStackTrace();  
122                          return null;                  // datei existiert, dann lesen
123                  }                  if (sldFile != null && sldFile.exists()) {
124          }                          try {
125                                    style = StylingUtil.loadSLD(sldFile)[0];
126          public FeatureSource getGeoObject() {                          } catch (Exception e) {
127                  return fs;                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);
128          }                                  style = null;
129                            }
130          public String getId() {                  }
131                  return id;  
132          }                  title = new Translation();
133                    desc = new Translation();
134          public ImageIcon getImageIcon() {  
135                  return null;                  if (sldFile != null) {
136          }                          title.fromOneLine(sldFile.getName());
137                            desc.fromOneLine(sldFile.getAbsolutePath());
138          public URL getInfoURL() {                  }
139                  return null;  
140          }          }
141    
142          public Translation getKeywords() {          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs) {
143                  return null;                  this(fs, (File) null, null);
144          }          }
145    
146          public Style getStyle() {          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
147                  return style;                          String id) {
148          }                  this(fs, null, id);
149            }
150          public Translation getTitle() {  
151                  return title;          public void dispose() {
152          }          }
153    
154          public boolean isDisposed() {          /**
155                  return false;           * Returns human readable {@link String} of the CRS natively used by this
156          }           * {@link DpLayer}
157             *
158          /**           * If CRS == null, it will call {@link #getGeoObject()}
159           * If true, this layer will not be shown in the legend. Default = false           *
160           */           */
161          /**          public String getCRSString() {
162           *                  if (getCrs() == null)
163           * Killed by SK: 6. April 09: Ein Layer soll nicht generell auf                          return "CRS?";
164           * verstecken/nicht verstecken gestellt werden können. Das sind  
165           * Eigenschaften der Karte/MapContext, ebenso wie die Reihenfolge der Layer.                  return getCrs().getName().getCode();
166           * Im Atlas verwaltet deshalb nun die Klasse skrueger.atlas.Map welche Layer          }
167           * nicht in der Legende auftauchen sollen. Meines Wissens hat keiner bisher  
168           * die Funktion genutzt.          public CoordinateReferenceSystem getCrs() {
169           *                  if (crs == null) {
170           * // public boolean isHideInLegend() { // return false; // }                          crs = fs.getSchema().getCoordinateReferenceSystem();
171           */                          if (crs == null) {
172    
173          public void setDesc(Translation dec) {                                  crs = fs.getSchema().getGeometryDescriptor()
174                  this.desc = dec;                                                  .getCoordinateReferenceSystem();
175          }  
176                                    if (crs == null) {
177          public void setImageIcon(ImageIcon icon) {                                          LOGGER.warn("Could not determine the CRS of " + getTitle()
178          }                                                          + ". Using default "
179                                                            + GeoImportUtil.getDefaultCRS());
180          public void setKeywords(Translation keywords) {                                          crs = GeoImportUtil.getDefaultCRS();
181          }                                  }
182                            }
183          public void setStyle(Style style) {                  }
184                  this.style = style;                  return crs;
185            }
186          }  
187            public Translation getDesc() {
188          public void setTitle(Translation title) {                  return desc;
189                  this.title = title;          }
190    
191          }          public Envelope getEnvelope() {
192                    try {
193          public void uncache() {                          return fs.getBounds();
194          }                  } catch (IOException e) {
195                            e.printStackTrace();
196          /**                          return null;
197           *                  }
198           */          }
199          public Map<Integer, AttributeMetaData> getAttributeMetaDataMap() {  
200                  if (map == null) {          public FeatureSource<SimpleFeatureType, SimpleFeature> getGeoObject() {
201                    return fs;
202                          map = new HashMap<Integer, AttributeMetaData>();          }
203    
204                          // Leaving out the first one, it will be the_geom          public String getId() {
205                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {                  return id;
206                                  AttributeType att = fs.getSchema().getAttributeType(i);          }
207    
208                                  AttributeMetaData attMetaData = new AttributeMetaData(i, att          public ImageIcon getImageIcon() {
209                                                  .getLocalName());                  return null;
210                                  map.put(i, attMetaData);          }
211                          }  
212                  }          public URL getInfoURL() {
213                  return map;                  return null;
214          }          }
215    
216          /**          public Translation getKeywords() {
217           * @return The {@link File} where the SLD was loaded from or                  return null;
218           *         <code>null</code> if there didn't exist a {@link File}. (It could          }
219           *         be a WFS or a PostGIS  
220           *          public Style getStyle() {
221           * @author <a href="mailto:[email protected]">Stefan Alfons                  return style;
222           *         Kr&uuml;ger</a>          }
223           */  
224          public File getSldFile() {          public Translation getTitle() {
225                  return sldFile;                  return title;
226          }          }
227    
228          public void setSldFile(File sldFile) {          public boolean isDisposed() {
229                  this.sldFile = sldFile;                  return false;
230          }          }
231    
232          /**          /**
233           * Returns the features of the {@link FeatureSource}.           * If true, this layer will not be shown in the legend. Default = false
234           *           */
235           * @see {@link StyledFeatureInterface}          /**
236           */           *
237          @Override           * Killed by SK: 6. April 09: Ein Layer soll nicht generell auf
238          public FeatureCollection getFeatureCollection() {           * verstecken/nicht verstecken gestellt werden können. Das sind
239                  FeatureCollection features;           * Eigenschaften der Karte/MapContext, ebenso wie die Reihenfolge der Layer.
240                  try {           * Im Atlas verwaltet deshalb nun die Klasse skrueger.atlas.Map welche Layer
241                          features = getGeoObject().getFeatures();           * nicht in der Legende auftauchen sollen. Meines Wissens hat keiner bisher
242                  } catch (IOException e) {           * die Funktion genutzt.
243                          throw new RuntimeException(           *
244                                          "Error getting the features of the  FeatureSource");           * // public boolean isHideInLegend() { // return false; // }
245                  }           */
246                  return features;  
247          }          public void setDesc(Translation dec) {
248                    this.desc = dec;
249          /**          }
250           * Same as {@link #getGeoObject()} method, but complies to the  
251           * {@link StyledFeatureInterface}          public void setImageIcon(ImageIcon icon) {
252           *          }
253           * @see {@link StyledFeatureInterface}  
254           */          public void setKeywords(Translation keywords) {
255          @Override          }
256          public FeatureSource getFeatureSource() {  
257                  return getGeoObject();          public void setStyle(Style style) {
258          }                  this.style = style;
259    
260  }          }
261    
262            public void setTitle(Translation title) {
263                    this.title = title;
264    
265            }
266    
267            public void uncache() {
268            }
269    
270            /**
271             *
272             */
273            public AttributeMetadataMap<AttributeMetadataImpl> getAttributeMetaDataMap() {
274                    if (map == null) {
275    
276                            map = new AttributeMetadataImplMap();
277    
278                            // // Leaving out the first one, it will be the_geom
279                            // for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
280                            // AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);
281                            //
282                            // AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(
283                            // new NameImpl(attDesc
284                            // .getName().getNamespaceURI(), attDesc
285                            // .getName().getLocalPart()), map.getLanguages());
286                            // map.put(attDesc.getName(), attMetaData);
287                            // }
288    
289                            // Leaving out the first one, it will be the_geom
290                            for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
291                                    AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);
292    
293                                    // TODO AttributeMetadataAS would be nicer, which would not work
294                                    // with Translations ;-)
295                                    AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(
296                                                    new NameImpl(attDesc.getName().getNamespaceURI(),
297                                                                    attDesc.getName().getLocalPart()),
298                                                    map.getLanguages());
299                                    if (String.class.isAssignableFrom(attDesc.getType()
300                                                    .getBinding())) {
301                                            // For Strings we add the "" as NODATA values
302                                            attMetaData.addNodataValue("");
303                                    }
304                                    map.put(attDesc.getName(), attMetaData);
305                            }
306                    }
307                    return map;
308            }
309    
310            /**
311             * @return The {@link File} where the SLD was loaded from or
312             *         <code>null</code> if there didn't exist a {@link File}.
313             *
314             * @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a>
315             */
316            public File getSldFile() {
317                    return sldFile;
318            }
319    
320            public void setSldFile(File sldFile) {
321                    this.sldFile = sldFile;
322            }
323    
324            /**
325             * Returns the features of the {@link FeatureSource}.
326             *
327             * @see {@link StyledFeaturesInterface}
328             */
329            @Override
330            public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollection() {
331                    FeatureCollection<SimpleFeatureType, SimpleFeature> features;
332                    try {
333                            features = getGeoObject().getFeatures();
334                    } catch (IOException e) {
335                            throw new RuntimeException(
336                                            "Error getting the features of the  FeatureSource");
337                    }
338                    return features;
339            }
340    
341            /**
342             * Same as {@link #getGeoObject()} method, but complies to the
343             * {@link StyledFeaturesInterface}
344             *
345             * @see {@link StyledFeaturesInterface}
346             */
347            @Override
348            public FeatureSource<SimpleFeatureType, SimpleFeature> getFeatureSource() {
349                    return getGeoObject();
350            }
351    
352            @Override
353            public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollectionFiltered() {
354                    // final FeatureCollection<SimpleFeatureType, SimpleFeature> fc =
355                    // getFeatureCollection();
356                    // if (filter == Filter.EXCLUDE)
357                    // return new EmptyFeatureCollection(fc.getSchema());
358                    // if (filter == Filter.INCLUDE)
359                    // return fc;
360                    // return fc.subCollection(filter);
361    
362                    try {
363                            if (filter != Filter.INCLUDE)
364                                    return getFeatureSource().getFeatures(filter);
365                            else
366                                    return getFeatureSource().getFeatures();
367                    } catch (IOException e) {
368                            throw new RuntimeException(e);
369                    }
370            }
371    
372            @Override
373            public Filter getFilter() {
374                    return filter;
375            }
376    
377            @Override
378            public void setFilter(Filter filter) {
379                    this.filter = filter;
380            }
381    
382            @Override
383            public SimpleFeatureType getSchema() {
384                    return getGeoObject().getSchema();
385            }
386    
387            /**
388             * Tries to load a style from the file denoted in {@link #getSldFile()}. If
389             * the file doesn't exits, return <code>null</code>;
390             *
391             * @return <code>true</code> is style was loaded
392             */
393            public boolean loadStyle() {
394                    if (getSldFile() == null)
395                            return false;
396    
397                    try {
398                            Style[] loadSLD = StylingUtil.loadSLD(getSldFile());
399                            setStyle(loadSLD[0]);
400                            return true;
401                    } catch (Exception e) {
402                            return false;
403                    }
404    
405            }
406    
407            public void setTitle(String title) {
408                    setTitle(new Translation(title));
409            }
410    
411            public void setDesc(String desc) {
412                    setDesc(new Translation(desc));
413            }
414    
415    }

Legend:
Removed from v.221  
changed lines
  Added in v.1159

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26