Changeset 9538 in osm for applications/viewer


Ignore:
Timestamp:
2008-08-07T15:41:48+02:00 (16 years ago)
Author:
stotz
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/OsmFileCacheTileLoader.java

    r9494 r9538  
    1313import java.net.URL;
    1414import java.net.URLConnection;
    15 import java.util.Date;
    1615
    1716import javax.imageio.ImageIO;
    1817
    19 import org.openstreetmap.gui.jmapviewer.interfaces.Job;
    2018import org.openstreetmap.gui.jmapviewer.interfaces.TileCache;
    2119import org.openstreetmap.gui.jmapviewer.interfaces.TileLoader;
     
    3735        protected String tileCacheDir;
    3836
    39         protected long maxFileAge = 0;// FILE_AGE_ONE_DAY;//
    40 
    41         // FILE_AGE_ONE_WEEK;
     37        protected long maxFileAge = FILE_AGE_ONE_WEEK;
    4238
    4339        public OsmFileCacheTileLoader(JMapViewer map, String baseUrl) {
     
    6662        }
    6763
    68         protected class FileLoadJob implements Job {
     64        protected class FileLoadJob implements Runnable {
    6965                InputStream input = null;
    7066
     
    104100                                                return;
    105101                                        }
    106                                         System.out.println("Cache hit for " + tile + " but file age is high: "
    107                                                         + new Date(fileAge));
     102                                        // System.out.println("Cache hit for " + tile +
     103                                        // " but file age is high: "
     104                                        // + new Date(fileAge));
    108105                                        map.repaint();
    109106                                        // if (!isOsmTileNewer(tile, fileAge)) {
     
    121118                                }
    122119                                // Thread.sleep(500);
    123                                 System.out.println("Loading tile from OSM: " + tile);
     120                                // System.out.println("Loading tile from OSM: " + tile);
    124121                                HttpURLConnection urlConn = loadTileFromOsm(tile);
    125                                 if (fileAge > 0)
    126                                         urlConn.setIfModifiedSince(fileAge);
    127 
    128                                 if (urlConn.getResponseCode() == 304) {
    129                                         System.out.println("Local version is up to date");
    130                                         tile.setLoaded(true);
    131                                         return;
    132                                 }
     122                                // if (fileAge > 0)
     123                                // urlConn.setIfModifiedSince(fileAge);
     124                                //
     125                                // if (urlConn.getResponseCode() == 304) {
     126                                // System.out.println("Local version is up to date");
     127                                // tile.setLoaded(true);
     128                                // return;
     129                                // }
    133130                                byte[] buffer = loadTileInBuffer(urlConn);
    134131                                tile.setImage(ImageIO.read(new ByteArrayInputStream(buffer)));
     
    161158                }
    162159
     160                /**
     161                 * Performs a <code>HEAD</code> request for retrieving the
     162                 * <code>LastModified</code> header value.
     163                 *
     164                 * Note: This does only work with servers providing the
     165                 * <code>LastModified</code> header:
     166                 * <ul>
     167                 * <li>{@link OsmTileLoader#MAP_OSMA} - supported</li>
     168                 * <li>{@link OsmTileLoader#MAP_MAPNIK} - not supported</li>
     169                 * </ul>
     170                 *
     171                 * @param tile
     172                 * @param fileAge
     173                 * @return <code>true</code> if the tile on the server is newer than the
     174                 *         file
     175                 * @throws IOException
     176                 */
    163177                protected boolean isOsmTileNewer(Tile tile, long fileAge) throws IOException {
    164178                        URL url;
     
    167181                        urlConn.setRequestMethod("HEAD");
    168182                        urlConn.setReadTimeout(30000); // 30 seconds read
    169                         System.out.println("Tile age: " + new Date(urlConn.getLastModified()) + " / "
    170                                         + new Date(fileAge));
     183                        // System.out.println("Tile age: " + new
     184                        // Date(urlConn.getLastModified()) + " / "
     185                        // + new Date(fileAge));
    171186                        long lastModified = urlConn.getLastModified();
    172187                        if (lastModified == 0)
     
    192207                        }
    193208                }
    194 
    195                 /**
    196                  * Terminating all transfers that are currently in progress
    197                  */
    198                 public void stop() {
    199 
    200                         try {
    201                                 // if (input != null)
    202                                 // input.stop();
    203                         } catch (Exception e) {
    204                         }
    205                 }
    206         }
    207 
     209        }
     210
     211        public long getMaxFileAge() {
     212                return maxFileAge;
     213        }
     214
     215        /**
     216         * Sets the maximum age of the local cached tile in the file system.
     217         *
     218         * @param maxFileAge
     219         *            maximum age in milliseconds
     220         * @see #FILE_AGE_ONE_DAY
     221         * @see #FILE_AGE_ONE_WEEK
     222         */
     223        public void setMaxFileAge(long maxFileAge) {
     224                this.maxFileAge = maxFileAge;
     225        }
     226
     227        public String getTileCacheDir() {
     228                return tileCacheDir;
     229        }
     230
     231        public void setTileCacheDir(String tileCacheDir) {
     232                this.tileCacheDir = tileCacheDir;
     233        }
     234
     235       
    208236}
Note: See TracChangeset for help on using the changeset viewer.