/[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

trunk/src/skrueger/geotools/StyledFS.java revision 169 by alfonx, Tue Jun 30 08:03:29 2009 UTC branches/1.0-gt2-2.6/src/skrueger/geotools/StyledFS.java revision 420 by alfonx, Thu Oct 1 20:22:48 2009 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.gui.swing.ExceptionMonitor;   * 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.styling.StylingUtil;   * along with this program; if not, write to the Free Software
23  import skrueger.AttributeMetaData;   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24  import skrueger.i8n.Translation;   * or try this link: http://www.gnu.org/licenses/lgpl.html
25     *
26  import com.vividsolutions.jts.geom.Envelope;   * Contributors:
27     *     Martin O. J. Schmitz - initial API and implementation
28  /**   *     Stefan A. Krüger - additional utility classes
29   * This class enables a non Atlas context to use the Atlas LayerPanel   ******************************************************************************/
30   * {@link JPanel} as a {@link MapContextManagerInterface}  package skrueger.geotools;
31   *  
32   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>  import java.io.File;
33   */  import java.io.FileNotFoundException;
34  public class StyledFS implements StyledFeatureSourceInterface {  import java.io.IOException;
35          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);  import java.net.URL;
36    import java.util.Date;
37          private final FeatureSource fs;  import java.util.HashMap;
38    import java.util.Random;
39          /**  
40           * A unique ID which identifies the Layer in the Atlas. It's more important  import javax.swing.ImageIcon;
41           * than it should be ;-)  import javax.swing.JPanel;
42           */  
43          private String id;  import org.apache.log4j.Logger;
44    import org.geotools.data.FeatureSource;
45          private Style style;  import org.geotools.feature.FeatureCollection;
46    import org.geotools.styling.Style;
47          private Translation title;  import org.opengis.feature.simple.SimpleFeature;
48    import org.opengis.feature.simple.SimpleFeatureType;
49          private Translation desc;  import org.opengis.feature.type.AttributeDescriptor;
50    import org.opengis.referencing.crs.CoordinateReferenceSystem;
51          private File sldFile;  
52    import schmitzm.geotools.styling.StylingUtil;
53          private HashMap<Integer, AttributeMetaData> map;  import skrueger.AttributeMetaData;
54    import skrueger.i8n.Translation;
55          /**  
56           * This class enables a non Atlas context to use the Atlas LayerPanel  import com.vividsolutions.jts.geom.Envelope;
57           * {@link JPanel} as a {@link MapContextManagerInterface}  
58           *  /**
59           * @param fs   * This class enables a non Atlas context to use the Atlas LayerPanel
60           *            {@link FeatureSource} that is beeing styled.   * {@link JPanel} as a {@link MapContextManagerInterface}
61           *   *
62           * @param sldFile   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>
63           *            may be <code>null</code>. Otherwise the SLD {@link File} to   */
64           *            import and associate with this {@link StyledFS}  public class StyledFS implements StyledFeatureSourceInterface {
65           */          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);
66          public StyledFS(FeatureSource fs, File sldFile) {  
67            private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;
68                  this.fs = fs;  
69                  id = StyledFS.class.getSimpleName()          /**
70                                  + new Random(new Date().getTime()).nextInt(10000000);           * A unique ID which identifies the Layer in the Atlas. It's more important
71             * than it should be ;-)
72                  this.sldFile = sldFile;           */
73            private String id;
74                  if ((sldFile != null) && (sldFile.exists())) {  
75                          try {          private Style style;
76                                  style = StylingUtil.loadSLD(sldFile)[0];  
77                          } catch (FileNotFoundException e) {          private Translation title;
78                                  LOGGER  
79                                                  .debug("The SLD file passed was empty. Leaving the Style untouched. (We are in the constructor.. so its null");          private Translation desc;
80                          } catch (Exception e) {  
81                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);          private File sldFile;
82                          }  
83                  }          private AttributeMetadataMap map;
84                  title = new Translation();  
85                  title.fromOneLine(sldFile.getName());          /**
86             * This class enables a non Atlas context to use the Atlas LayerPanel
87                  desc = new Translation();           * {@link JPanel} as a {@link MapContextManagerInterface}
88                  desc.fromOneLine(sldFile.getAbsolutePath());           *
89          }           * @param fs
90             *            {@link FeatureSource} that is beeing styled.
91          public void dispose() {           *
92          }           * @param sldFile
93             *            may be <code>null</code>. Otherwise the SLD {@link File} to
94          /**           *            import and associate with this {@link StyledFS}
95           * Returnes human readable {@link String} of the CRS natively used by this           */
96           * {@link DpLayer}          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs, File sldFile) {
97           *  
98           * If crs == null, it will call {@link #getGeoObject()}                  this.fs = fs;
99           *                  id = StyledFS.class.getSimpleName()
100           */                                  + new Random(new Date().getTime()).nextInt(10000000);
101          public String getCRSString() {  
102                  if (getCrs() == null)                  this.sldFile = sldFile;
103                          return "CRS?";  
104                    if (sldFile != null && sldFile.exists()) {
105                  return getCrs().getName().getCode();                          try {
106          }                                  style = StylingUtil.loadSLD(sldFile)[0];
107                            } catch (FileNotFoundException e) {
108          public CoordinateReferenceSystem getCrs() {                                  LOGGER
109                  return fs.getSchema().getDefaultGeometry().getCoordinateSystem();                                                  .debug("The SLD file passed was empty. Leaving the Style untouched. (We are in the constructor.. so its null");
110          }                          } catch (Exception e) {
111                                    LOGGER.warn("Reading SLD failed: " + sldFile, e);
112          public Translation getDesc() {                          }
113                  return desc;                  }
114          }                  title = new Translation();
115                    title.fromOneLine(sldFile.getName());
116          public Envelope getEnvelope() {  
117                  try {                  desc = new Translation();
118                          return fs.getBounds();                  desc.fromOneLine(sldFile.getAbsolutePath());
119                  } catch (IOException e) {          }
120                          e.printStackTrace();  
121                          return null;          public void dispose() {
122                  }          }
123          }  
124            /**
125          public FeatureSource getGeoObject() throws Exception {           * Returns human readable {@link String} of the CRS natively used by this
126                  return fs;           * {@link DpLayer}
127          }           *
128             * If CRS == null, it will call {@link #getGeoObject()}
129          public String getId() {           *
130                  return id;           */
131          }          public String getCRSString() {
132                    if (getCrs() == null)
133          public ImageIcon getImageIcon() {                          return "CRS?";
134                  return null;  
135          }                  return getCrs().getName().getCode();
136            }
137          public URL getInfoURL() {  
138                  return null;          public CoordinateReferenceSystem getCrs() {
139          }                  return fs.getSchema().getCoordinateReferenceSystem();
140            }
141          public Translation getKeywords() {  
142                  return null;          public Translation getDesc() {
143          }                  return desc;
144            }
145          public Style getStyle() {  
146                  return style;          public Envelope getEnvelope() {
147          }                  try {
148                            return fs.getBounds();
149          public Translation getTitle() {                  } catch (IOException e) {
150                  return title;                          e.printStackTrace();
151          }                          return null;
152                    }
153          public boolean isDisposed() {          }
154                  return false;  
155          }          public FeatureSource<SimpleFeatureType, SimpleFeature> getGeoObject() {
156                    return fs;
157          /**          }
158           * If true, this layer will not be shown in the legend. Default = false  
159           */          public String getId() {
160          /**                  return id;
161           *          }
162           * Killed by SK: 6. April 09: Ein Layer soll nicht generell auf  
163           * verstecken/nicht verstecken gestellt werden können. Das sind          public ImageIcon getImageIcon() {
164           * Eigenschaften der Karte/MapContext, ebenso wie die Reihenfolge der Layer.                  return null;
165           * Im Atlas verwaltet deshalb nun die Klasse skrueger.atlas.Map welche Layer          }
166           * nicht in der Legende auftauchen sollen. Meines Wissens hat keiner bisher  
167           * die Funktion genutzt.          public URL getInfoURL() {
168           *                  return null;
169           * // public boolean isHideInLegend() { // return false; // }          }
170           */  
171            public Translation getKeywords() {
172          public void setDesc(Translation dec) {                  return null;
173                  this.desc = dec;          }
174          }  
175            public Style getStyle() {
176          public void setImageIcon(ImageIcon icon) {                  return style;
177          }          }
178    
179          public void setKeywords(Translation keywords) {          public Translation getTitle() {
180          }                  return title;
181            }
182          public void setStyle(Style style) {  
183                  this.style = style;          public boolean isDisposed() {
184                    return false;
185          }          }
186    
187          public void setTitle(Translation title) {          /**
188                  this.title = title;           * If true, this layer will not be shown in the legend. Default = false
189             */
190          }          /**
191             *
192          public void uncache() {           * Killed by SK: 6. April 09: Ein Layer soll nicht generell auf
193          }           * verstecken/nicht verstecken gestellt werden können. Das sind
194             * Eigenschaften der Karte/MapContext, ebenso wie die Reihenfolge der Layer.
195          /**           * Im Atlas verwaltet deshalb nun die Klasse skrueger.atlas.Map welche Layer
196           *           * nicht in der Legende auftauchen sollen. Meines Wissens hat keiner bisher
197           */           * die Funktion genutzt.
198          public Map<Integer, AttributeMetaData> getAttributeMetaDataMap() {           *
199                  if (map == null) {           * // public boolean isHideInLegend() { // return false; // }
200             */
201                          map = new HashMap<Integer, AttributeMetaData>();  
202            public void setDesc(Translation dec) {
203                          // Leaving out the first one, it will be the_geom                  this.desc = dec;
204                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {          }
205                                  AttributeType att = fs.getSchema().getAttributeType(i);  
206            public void setImageIcon(ImageIcon icon) {
207                                  AttributeMetaData attMetaData = new AttributeMetaData(i, att          }
208                                                  .getLocalName());  
209                                  map.put(i, attMetaData);          public void setKeywords(Translation keywords) {
210                          }          }
211                  }  
212                  return map;          public void setStyle(Style style) {
213          }                  this.style = style;
214    
215          /**          }
216           * @return The {@link File} where the SLD was loaded from or  
217           *         <code>null</code> if there didn't exist a {@link File}. (It could          public void setTitle(Translation title) {
218           *         be a WFS or a PostGIS                  this.title = title;
219           *  
220           * @author <a href="mailto:[email protected]">Stefan Alfons          }
221           *         Kr&uuml;ger</a>  
222           */          public void uncache() {
223          public File getSldFile() {          }
224                  return sldFile;  
225          }          /**
226             *
227          public void setSldFile(File sldFile) {           */
228                  this.sldFile = sldFile;          public AttributeMetadataMap getAttributeMetaDataMap() {
229          }                  if (map == null) {
230    
231  }                          map = new AttributeMetadataMap();
232    
233                            // Leaving out the first one, it will be the_geom
234                            for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
235                                    AttributeDescriptor att = fs.getSchema().getDescriptor(i);
236    
237                                    AttributeMetaData attMetaData = new AttributeMetaData(i, att
238                                                    .getLocalName());
239                                    map.put(i, attMetaData);
240                            }
241                    }
242                    return map;
243            }
244    
245            /**
246             * @return The {@link File} where the SLD was loaded from or
247             *         <code>null</code> if there didn't exist a {@link File}.
248             *
249             * @author <a href="mailto:[email protected]">Stefan Alfons
250             *         Kr&uuml;ger</a>
251             */
252            public File getSldFile() {
253                    return sldFile;
254            }
255    
256            public void setSldFile(File sldFile) {
257                    this.sldFile = sldFile;
258            }
259    
260            /**
261             * Returns the features of the {@link FeatureSource}.
262             *
263             * @see {@link StyledFeaturesInterface}
264             */
265            @Override
266            public FeatureCollection getFeatureCollection() {
267                    FeatureCollection features;
268                    try {
269                            features = getGeoObject().getFeatures();
270                    } catch (IOException e) {
271                            throw new RuntimeException(
272                                            "Error getting the features of the  FeatureSource");
273                    }
274                    return features;
275            }
276    
277            /**
278             * Same as {@link #getGeoObject()} method, but complies to the
279             * {@link StyledFeaturesInterface}
280             *
281             * @see {@link StyledFeaturesInterface}
282             */
283            @Override
284            public FeatureSource getFeatureSource() {
285                    return getGeoObject();
286            }
287    
288    }

Legend:
Removed from v.169  
changed lines
  Added in v.420

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26