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

Legend:
Removed from v.243  
changed lines
  Added in v.244

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26