Revision 5418

View differences:

org.gvsig.raster.tilecache/tags/org.gvsig.raster.tilecache-2.2.29/org.gvsig.raster.tilecache.io/package.info
1
#
2
#Thu Mar 07 10:25:56 CET 2013
3
owner=gvSIG Association
4
code=org.gvsig.raster.tilecache.io
5
java-version=j1_5
6
official=true
7
type=plugin
8
version=2.0.0-0
9
state=devel
10
operating-system=all
11
dependencies=
12
sources-url=https\://devel.gvsig.org/redmine/projects/gvsig-raster/repository/show/org.gvsig.raster.tilecache/tags/2.0.0/org.gvsig.raster.tilecache.io
13
web-url=http\://www.gvsig.com
14
architecture=all
15
model-version=1.0.1
16
categories=
17
description=cache service for gvSIG
18
buildNumber=0
19
gvSIG-version=2.0.0
20
name=org.gvsig.raster.tilecache.io
org.gvsig.raster.tilecache/tags/org.gvsig.raster.tilecache-2.2.29/org.gvsig.raster.tilecache.io/src/test/resources/TemplateRasterProvider.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
22
package org.gvsig.fmap.dal.coverage.dataset.io.netcdf;
23

  
24
import java.awt.geom.AffineTransform;
25

  
26
import org.gvsig.fmap.dal.DALFileLocator;
27
import org.gvsig.fmap.dal.DALLocator;
28
import org.gvsig.fmap.dal.DataStore;
29
import org.gvsig.fmap.dal.coverage.dataset.Buffer;
30
import org.gvsig.fmap.dal.coverage.dataset.io.tile.downloader.FileTileServer;
31
import org.gvsig.fmap.dal.coverage.datastruct.BandList;
32
import org.gvsig.fmap.dal.coverage.datastruct.Extent;
33
import org.gvsig.fmap.dal.coverage.exception.BandAccessException;
34
import org.gvsig.fmap.dal.coverage.exception.FileNotOpenException;
35
import org.gvsig.fmap.dal.coverage.exception.InvalidSetViewException;
36
import org.gvsig.fmap.dal.coverage.exception.NotSupportedExtensionException;
37
import org.gvsig.fmap.dal.coverage.exception.ParsingException;
38
import org.gvsig.fmap.dal.coverage.exception.ProcessInterruptedException;
39
import org.gvsig.fmap.dal.coverage.exception.RasterDriverException;
40
import org.gvsig.fmap.dal.coverage.store.RasterFileStoreParameters;
41
import org.gvsig.fmap.dal.spi.DataManagerProviderServices;
42
import org.gvsig.fmap.dal.spi.DataStoreProviderServices;
43
import org.gvsig.metadata.MetadataLocator;
44
import org.gvsig.raster.cache.tile.provider.TileListener;
45
import org.gvsig.raster.cache.tile.provider.TileServer;
46
import org.gvsig.raster.impl.datastruct.ExtentImpl;
47
import org.gvsig.raster.impl.provider.DefaultRasterProvider;
48
import org.gvsig.raster.impl.provider.RasterProvider;
49
import org.gvsig.raster.impl.store.AbstractRasterDataParameters;
50
import org.gvsig.raster.impl.store.AbstractRasterDataStore;
51
import org.gvsig.raster.impl.store.DefaultStoreFactory;
52
import org.gvsig.raster.impl.store.properties.DataStoreColorInterpretation;
53
import org.gvsig.raster.impl.store.properties.DataStoreMetadata;
54
import org.gvsig.raster.impl.store.properties.DataStoreTransparency;
55
import org.gvsig.tools.ToolsLocator;
56
import org.gvsig.tools.extensionpoint.ExtensionPoint;
57
import org.gvsig.tools.extensionpoint.ExtensionPointManager;
58
/**
59
 * Data provider for ...
60
 *
61
 * @author Nacho Brodin (nachobrodin@gmail.com)
62
 */
63
public class NetCDFProvider extends DefaultRasterProvider {
64
	public static String        NAME                     = "Template Store";
65
	public static String        DESCRIPTION              = "Template Raster file";
66
	public final String         METADATA_DEFINITION_NAME = "TemplateStore";
67
	
68
	private static String[]     formatList               = new String[]{"*"};
69

  
70
	private Extent              viewRequest              = null;
71
	private TileServer          tileServer               = null;
72
	private boolean             open                     = false;
73

  
74
	public static void register() {
75
		DataManagerProviderServices dataman = (DataManagerProviderServices) DALLocator.getDataManager();
76
		if (dataman != null && !dataman.getStoreProviders().contains(NAME)) {
77
			dataman.registerStoreProvider(NAME,
78
					NetCDFProvider.class, NetCDFDataParameters.class);
79
		}
80
		
81
		if(DALFileLocator.getFilesystemServerExplorerManager() != null)
82
			DALFileLocator.getFilesystemServerExplorerManager().registerProvider(
83
					NAME, DESCRIPTION,
84
					NetCDFFilesystemServerExplorer.class);
85
		
86
		dataman.registerStoreFactory(NAME, DefaultStoreFactory.class);
87
	}
88
	
89
	/**
90
	 * Returns true if the extension is supported and false if doesn't
91
	 * @param ext
92
	 * @return
93
	 */
94
	public static boolean isExtensionSupported(String ext) {
95
		for (int i = 0; i < formatList.length; i++) {
96
			if(formatList[i].compareTo(ext) == 0)
97
				return true;
98
		}
99
		return false;
100
	}
101
	
102
	/**
103
	 * Constructor. Abre el dataset.
104
	 * @param proj Proyecci?n
105
	 * @param fName Nombre del fichero
106
	 * @throws NotSupportedExtensionException
107
	 */
108
	public NetCDFProvider(String params) throws NotSupportedExtensionException {
109
		super(params);
110
		if(params instanceof String) {
111
			NetCDFDataParameters p = new NetCDFDataParameters();
112
			p.setURI((String)params);
113
			super.init(p, null, ToolsLocator.getDynObjectManager()
114
					.createDynObject(
115
							MetadataLocator.getMetadataManager().getDefinition(
116
									DataStore.METADATA_DEFINITION_NAME)));
117
			init(p, null);
118
		}
119
	}
120
	
121
	public NetCDFProvider (NetCDFDataParameters params,
122
			AbstractRasterDataStore storeServices) throws NotSupportedExtensionException {
123
		super(params, storeServices, ToolsLocator.getDynObjectManager()
124
				.createDynObject(
125
						MetadataLocator.getMetadataManager().getDefinition(
126
								DataStore.METADATA_DEFINITION_NAME)));
127
		init(params, storeServices);
128
	}
129

  
130
	/**
131
	 * Crea las referencias al fichero y carga
132
	 * las estructuras con la informaci?n y los metadatos.
133
	 * @param proj Proyecci?n
134
	 * @param param Parametros de carga
135
	 * @throws NotSupportedExtensionException
136
	 */
137
	public void init (AbstractRasterDataParameters params,
138
			DataStoreProviderServices storeServices) throws NotSupportedExtensionException {
139
		//TODO:
140
		
141
		if(((RasterFileStoreParameters)params).getFile().exists()) {
142
			setParam(params);
143
			colorTable = null;
144
			noData = 0;
145
			wktProjection = null;
146
			//CrsWkt crs = new CrsWkt(wktProjection);
147
			//IProjection proj = CRSFactory.getCRS("EPSG:23030");
148
			noDataEnabled = true;
149
			ownTransformation = null;
150
			externalTransformation = (AffineTransform)ownTransformation.clone();
151
			load();
152
		} else
153
			setParam(params);
154
		bandCount = 0;
155
		setDataType(null);
156
		super.init();
157

  
158
		try {
159
			loadFromRmf(getRmfBlocksManager());
160
		} catch (ParsingException e) {
161
			//No lee desde rmf
162
		}
163
	}
164
	
165
	/*
166
	 * (non-Javadoc)
167
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#load()
168
	 */
169
	public RasterProvider load() {
170
		return this;
171
	}
172
	
173
	/*
174
	 * (non-Javadoc)
175
	 * @see org.gvsig.raster.impl.provider.RasterProvider#isOpen()
176
	 */
177
	public boolean isOpen() {
178
		return open;
179
	}
180

  
181
	/*
182
	 * (non-Javadoc)
183
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#close()
184
	 */
185
	public void close() {
186
		//TODO:
187
	}
188

  
189
	/*
190
	 * (non-Javadoc)
191
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#translateFileName(java.lang.String)
192
	 */
193
	public String translateFileName(String fileName) {
194
		return fileName;
195
	}
196

  
197
	/**
198
	 * Asigna el extent de la vista actual. existe un fichero .rmf debemos hacer una transformaci?n
199
	 * de la vista asignada ya que la petici?n viene en coordenadas del fichero .rmf y la vista (v)
200
	 * ha de estar en coordenadas del fichero.
201
	 */
202
	public void setView(Extent e) {
203
		viewRequest = new ExtentImpl(e);
204
	}
205

  
206
	/*
207
	 * (non-Javadoc)
208
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getView()
209
	 */
210
	public Extent getView() {
211
		return viewRequest;
212
	}
213

  
214
	/*
215
	 * (non-Javadoc)
216
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getWidth()
217
	 */
218
	public double getWidth() {
219
		//TODO:
220
		return 0;
221
	}
222

  
223
	/*
224
	 * (non-Javadoc)
225
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getHeight()
226
	 */
227
	public double getHeight() {
228
		//TODO:
229
		return 0;
230
	}
231

  
232
	/**
233
	 * Read a line from the file
234
	 * @param line
235
	 * @param band
236
	 * @return
237
	 * @throws InvalidSetViewException
238
	 * @throws FileNotOpenException
239
	 * @throws RasterDriverException
240
	 * @Deprecated This operation is deprecated because is not useful and in the future
241
	 * it will not be maintained. The abstract operation has dissapear
242
	 */
243
	public Object readCompleteLine(int line, int band)throws InvalidSetViewException, FileNotOpenException, RasterDriverException {
244
		if(line > this.getHeight() || band > this.getBandCount())
245
			throw new InvalidSetViewException("Request out of grid");
246

  
247
		//TODO:
248
		return null;
249
	}
250

  
251
	/*
252
	 *  (non-Javadoc)
253
	 * @see org.gvsig.raster.dataset.RasterDataset#readBlock(int, int)
254
	 */
255
	public Object readBlock(int pos, int blockHeight)
256
		throws InvalidSetViewException, FileNotOpenException, RasterDriverException, ProcessInterruptedException {
257
		if(pos < 0)
258
			throw new InvalidSetViewException("Request out of grid");
259

  
260
		if((pos + blockHeight) > getHeight())
261
			blockHeight = Math.abs(((int)getHeight()) - pos);
262
		
263
		//TODO:
264
		return null;
265
	}
266

  
267
	/*
268
	 * (non-Javadoc)
269
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getData(int, int, int)
270
	 */
271
	public Object getData(int x, int y, int band)throws InvalidSetViewException, FileNotOpenException, RasterDriverException {
272
		if(x < 0 || y < 0 || x >= getWidth() || y >= getHeight())
273
			throw new InvalidSetViewException("Request out of grid");
274
		
275
		//TODO
276
		return null;
277
	}
278

  
279
	/*
280
	 * (non-Javadoc)
281
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getWindowRaster(double, double, double, double, int, int, org.gvsig.fmap.dal.coverage.datastruct.BandList, org.gvsig.raster.cache.tile.provider.TileListener)
282
	 */
283
	public void getWindow(Extent ex, int bufWidth, int bufHeight, 
284
			BandList bandList, TileListener listener) throws ProcessInterruptedException, RasterDriverException {
285
		//TODO
286
	}
287

  
288
	/*
289
	 * (non-Javadoc)
290
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getWindowRaster(org.gvsig.fmap.dal.coverage.datastruct.Extent, org.gvsig.fmap.dal.coverage.datastruct.BandList, org.gvsig.fmap.dal.coverage.dataset.Buffer)
291
	 */
292
	public Buffer getWindow(Extent ex, BandList bandList, Buffer rasterBuf) 
293
		throws ProcessInterruptedException, RasterDriverException {
294
		//TODO
295

  
296
		return rasterBuf;
297
	}
298

  
299
	/*
300
	 * (non-Javadoc)
301
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getWindowRaster(double, double, double, double, org.gvsig.fmap.dal.coverage.datastruct.BandList, org.gvsig.fmap.dal.coverage.dataset.Buffer, boolean)
302
	 */
303
	public Buffer getWindow(double ulx, double uly, double w, double h, 
304
			BandList bandList, Buffer rasterBuf, boolean adjustToExtent) throws ProcessInterruptedException, RasterDriverException {
305
		//TODO
306

  
307
		return rasterBuf;
308
	}
309

  
310
	/*
311
	 * (non-Javadoc)
312
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getWindowRaster(double, double, double, double, int, int, org.gvsig.fmap.dal.coverage.datastruct.BandList, org.gvsig.fmap.dal.coverage.dataset.Buffer, boolean)
313
	 */
314
	public Buffer getWindow(Extent extent, 
315
			int bufWidth, int bufHeight, BandList bandList, Buffer rasterBuf, boolean adjustToExtent) throws ProcessInterruptedException, RasterDriverException {
316
		//TODO
317
		
318
		return rasterBuf;
319
	}
320

  
321
	/*
322
	 * (non-Javadoc)
323
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getWindowRaster(int, int, int, int, org.gvsig.fmap.dal.coverage.datastruct.BandList, org.gvsig.fmap.dal.coverage.dataset.Buffer)
324
	 */
325
	public Buffer getWindow(int x, int y, int w, int h, 
326
			BandList bandList, Buffer rasterBuf) throws ProcessInterruptedException, RasterDriverException {
327
		//TODO
328
		
329
		return rasterBuf;
330
	}
331

  
332
	/*
333
	 * (non-Javadoc)
334
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getWindowRaster(int, int, int, int, int, int, org.gvsig.fmap.dal.coverage.datastruct.BandList, org.gvsig.fmap.dal.coverage.dataset.Buffer)
335
	 */
336
	public Buffer getWindow(int x, int y, int w, int h, 
337
			int bufWidth, int bufHeight, BandList bandList, Buffer rasterBuf) throws ProcessInterruptedException, RasterDriverException {
338
		//TODO
339
		
340
		return rasterBuf;
341
	}
342

  
343
	/*
344
	 * (non-Javadoc)
345
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getBlockSize()
346
	 */
347
	public int getBlockSize(){
348
		//TODO
349
		
350
		return 0;
351
	}
352

  
353
	/*
354
	 * (non-Javadoc)
355
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getMetadata()
356
	 */
357
	public DataStoreMetadata getMetadata() {
358
		//TODO
359
		
360
		return null;
361
	}
362

  
363
	/*
364
	 * (non-Javadoc)
365
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getColorInterpretation()
366
	 */
367
	public DataStoreColorInterpretation getColorInterpretation(){
368
		//TODO
369
		
370
		return null;
371
	}
372

  
373
	/*
374
	 * (non-Javadoc)
375
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#setColorInterpretation(org.gvsig.raster.impl.store.properties.DataStoreColorInterpretation)
376
	 */
377
	public void setColorInterpretation(DataStoreColorInterpretation colorInterpretation){
378
		//TODO
379
	}
380

  
381
	/*
382
	 * (non-Javadoc)
383
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getTransparency()
384
	 */
385
	public DataStoreTransparency getTransparency() {
386
		//TODO
387
		
388
		return null;
389
	}
390

  
391
	/*
392
	 * (non-Javadoc)
393
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#isGeoreferenced()
394
	 */
395
	public boolean isGeoreferenced() {
396
		//TODO
397
		
398
		return false;
399
	}
400

  
401
	/**
402
	 * Informa de si el driver ha supersampleado en el ?ltimo dibujado. Es el driver el que colocar?
403
	 * el valor de esta variable cada vez que dibuja.
404
	 * @return true si se ha supersampleado y false si no se ha hecho.
405
	 */
406
	public boolean isSupersampling() {
407
		//TODO
408
		
409
		return false;
410
	}
411

  
412
	/*
413
	 * (non-Javadoc)
414
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#setAffineTransform(java.awt.geom.AffineTransform)
415
	 */
416
	public void setAffineTransform(AffineTransform t){
417
		super.setAffineTransform(t);
418
	}
419

  
420
	/*
421
	 * (non-Javadoc)
422
	 * @see org.gvsig.raster.impl.provider.RasterProvider#getOverviewCount(int)
423
	 */
424
	public int getOverviewCount(int band) throws BandAccessException, RasterDriverException {
425
		if(band >= getBandCount())
426
			throw new BandAccessException("Wrong band");
427
		//TODO
428
		
429
		return 0;
430
	}
431

  
432
	/*
433
	 * (non-Javadoc)
434
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getOverviewWidth(int, int)
435
	 */
436
	public int getOverviewWidth(int band, int overview) throws BandAccessException, RasterDriverException {
437
		if (band >= getBandCount())
438
			throw new BandAccessException("Wrong band");
439
		//TODO
440
		
441
		return 0;
442
	}
443

  
444
	/*
445
	 * (non-Javadoc)
446
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#getOverviewHeight(int, int)
447
	 */
448
	public int getOverviewHeight(int band, int overview) throws BandAccessException, RasterDriverException {
449
		if (band >= getBandCount())
450
			throw new BandAccessException("Wrong band");
451
		//TODO
452
		
453
		return 0;
454
	}
455

  
456
	/*
457
	 * (non-Javadoc)
458
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#overviewsSupport()
459
	 */
460
	public boolean overviewsSupport() {
461
		return true;
462
	}
463

  
464
	/*
465
	 * (non-Javadoc)
466
	 * @see org.gvsig.raster.impl.provider.DefaultRasterProvider#isReproyectable()
467
	 */
468
	public boolean isReproyectable() {
469
		return true;
470
	}
471

  
472
	/*
473
	 * (non-Javadoc)
474
	 * @see org.gvsig.fmap.dal.spi.DataStoreProvider#getName()
475
	 */
476
	public String getName() {
477
		return NAME;
478
	}
479
	
480
	/*
481
	 * (non-Javadoc)
482
	 * @see org.gvsig.raster.impl.provider.RasterProvider#setStatus(org.gvsig.raster.impl.provider.RasterProvider)
483
	 */
484
	public void setStatus(RasterProvider provider) {
485
		if(provider instanceof NetCDFProvider) {
486
			//Not implemented yet
487
		}
488
	}
489
	
490
	/*
491
	 * (non-Javadoc)
492
	 * @see org.gvsig.raster.impl.provider.RasterProvider#getTileServer()
493
	 */
494
	public TileServer getTileServer() {
495
		if(tileServer == null)
496
			tileServer = new FileTileServer(this);
497
		return tileServer;
498
	}
499
}
0 500

  
org.gvsig.raster.tilecache/tags/org.gvsig.raster.tilecache-2.2.29/org.gvsig.raster.tilecache.io/src/test/resources/README.txt
1
Put into this folder the resources needed by your test classes.
2

  
3
This folder is added to the Tests classpath, so you can load any resources 
4
through the ClassLoader.
5

  
6
By default, in this folder you can find an example of log4j configuration,
7
prepared to log messages through the console, so logging works when you
8
run your tests classes.
0 9

  
org.gvsig.raster.tilecache/tags/org.gvsig.raster.tilecache-2.2.29/org.gvsig.raster.tilecache.io/src/test/resources/log4j.xml
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
2
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
3

  
4
<!-- 
5
Log4J configuration file for unit tests execution.
6
 -->
7
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
8

  
9
	<!-- Appender configuration to show logging messages through the console -->
10
	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
11
		<layout class="org.apache.log4j.PatternLayout">
12
			<param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{2}.%M()]\n  %m%n" />
13
		</layout>
14
	</appender>
15

  
16
	<!-- 
17
	Activate logging messages of DEBUG level of higher only for the
18
	org.gvsig.tools packages.
19
	You can put full classes names or packages instead, to configure
20
	logging for all the classes and subpackages of the package.
21
	-->
22
	<category name="org.gvsig.tools">
23
		<priority value="DEBUG" />
24
	</category>
25
	<category name="org.gvsig.raster">
26
		<priority value="DEBUG" />
27
	</category>
28

  
29
	<!-- 
30
	By default, show only logging messages of INFO level or higher, 
31
	through the previously configured CONSOLE appender. 
32
	-->
33
	<root>
34
		<priority value="INFO" />
35
		<appender-ref ref="CONSOLE" />
36
	</root>
37
</log4j:configuration>
0 38

  
org.gvsig.raster.tilecache/tags/org.gvsig.raster.tilecache-2.2.29/org.gvsig.raster.tilecache.io/src/main/resources/META-INF/services/org.gvsig.tools.library.Library
1
org.gvsig.raster.tilecache.io.DefaultCacheIOLibrary
org.gvsig.raster.tilecache/tags/org.gvsig.raster.tilecache-2.2.29/org.gvsig.raster.tilecache.io/src/main/java/org/gvsig/raster/tilecache/io/DefaultCacheIOLibrary.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
22
package org.gvsig.raster.tilecache.io;
23

  
24
import org.gvsig.raster.cache.tile.impl.TileCacheDefaultImplLibrary;
25
import org.gvsig.tools.library.AbstractLibrary;
26
import org.gvsig.tools.library.LibraryException;
27

  
28
/**
29
 *
30
 * @author Nacho Brodin (nachobrodin@gmail.com)
31
 */
32
public class DefaultCacheIOLibrary extends AbstractLibrary {	
33

  
34
	public DefaultCacheIOLibrary() {
35
		registerAsServiceOf(TileCacheDefaultImplLibrary.class);
36
	}
37
	
38
	@Override
39
	protected void doInitialize() throws LibraryException {
40
		//RasterLibrary.wakeUp();
41
	}
42

  
43
	@Override
44
	protected void doPostInitialize() throws LibraryException {
45
		TileDataParametersImpl.registerDynClass();
46
		TileProvider.register();
47
	}
48
}
0 49

  
org.gvsig.raster.tilecache/tags/org.gvsig.raster.tilecache-2.2.29/org.gvsig.raster.tilecache.io/src/main/java/org/gvsig/raster/tilecache/io/TileServerExplorer.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
*
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
*
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
*
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
* MA  02110-1301, USA.
20
*
21
*/
22

  
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2009 IVER T.I   {{Task}}
26
*/
27

  
28
package org.gvsig.raster.tilecache.io;
29

  
30
import java.io.File;
31
import java.io.FileInputStream;
32
import java.util.List;
33

  
34
import org.gvsig.fmap.dal.DALLocator;
35
import org.gvsig.fmap.dal.DataManager;
36
import org.gvsig.fmap.dal.DataServerExplorer;
37
import org.gvsig.fmap.dal.DataServerExplorerParameters;
38
import org.gvsig.fmap.dal.DataStoreParameters;
39
import org.gvsig.fmap.dal.NewDataStoreParameters;
40
import org.gvsig.fmap.dal.coverage.RasterLocator;
41
import org.gvsig.fmap.dal.exception.CreateException;
42
import org.gvsig.fmap.dal.exception.DataException;
43
import org.gvsig.fmap.dal.exception.InitializeException;
44
import org.gvsig.fmap.dal.exception.RemoveException;
45
import org.gvsig.fmap.dal.serverexplorer.filesystem.impl.AbstractFilesystemServerExplorerProvider;
46
import org.gvsig.fmap.dal.serverexplorer.filesystem.spi.FilesystemServerExplorerProviderServices;
47
import org.gvsig.fmap.dal.spi.DataServerExplorerProvider;
48
import org.gvsig.fmap.dal.spi.DataServerExplorerProviderServices;
49
import org.gvsig.raster.impl.store.AbstractRasterFileDataParameters;
50

  
51
public class TileServerExplorer extends AbstractFilesystemServerExplorerProvider implements DataServerExplorerProvider {
52
	public static final String               NAME                     = "TileServerExplorer";
53
	
54
	public TileServerExplorer() {
55
		
56
	}
57
	
58
	public TileServerExplorer(
59
			TileServerExplorerParameters parameters,
60
			DataServerExplorerProviderServices services)
61
			throws InitializeException {
62
	}
63
	
64
	public boolean canCreate() {
65
		return false;
66
	}
67

  
68
	public boolean canCreate(NewDataStoreParameters parameters) {
69
		return false;
70
	}
71

  
72
	public void create(NewDataStoreParameters parameters, boolean overwrite)
73
			throws CreateException {
74
		throw new UnsupportedOperationException();
75
	}
76

  
77
	public NewDataStoreParameters getCreateParameters() throws DataException {
78
		return null;
79
	}
80

  
81
	public void initialize(
82
			FilesystemServerExplorerProviderServices serverExplorer) {
83
	}
84
	
85
	public void remove(DataStoreParameters parameters) throws RemoveException {
86
		throw new UnsupportedOperationException();
87
	}
88

  
89
	public String getDataStoreProviderName() {
90
		return TileProvider.NAME;
91
	}
92

  
93
	/**
94
	 * When the source is a file then this method will check if exists a 
95
	 * provider that can manage it
96
	 */
97
	public boolean accept(File pathname) {
98
		if (pathname.getParentFile() != null && 
99
				pathname.getParentFile().getName().equals("cellhd")) {
100
			if (pathname.getName().endsWith(".rmf")
101
					|| pathname.getName().endsWith(".rmf~")) {
102
				return false;
103
			}
104
			return true;
105
		}
106

  
107
		// Comprobamos que no sea un rmf propio, osea, que contenga xml
108
		if (pathname.getName().toLowerCase().endsWith(".rmf")) {
109
			FileInputStream reader = null;
110
			try {
111
				reader = new FileInputStream(pathname);
112
				String xml = "";
113
				for (int i = 0; i < 6; i++) {
114
					xml += (char) reader.read();
115
				}
116
				if (xml.equals("<?xml ")) {
117
					return false;
118
				}
119
			} catch (Exception e) {
120
			} finally {
121
				try {
122
					reader.close();
123
				} catch (Exception e) {
124
				}
125
			}
126
		}
127

  
128
		//The formats will be registered if it hasn't been done yet
129
		RasterLocator.getManager().getProviderServices().registerTileProviderFormats(TileProvider.class);
130
		
131
		return RasterLocator.getManager().getProviderServices().isExtensionSupported(
132
				pathname.getName(), 
133
				TileProvider.class);
134
	}
135

  
136
	public String getDescription() {
137
		return TileProvider.DESCRIPTION;
138
	}
139

  
140
	public DataStoreParameters getParameters(File file) throws DataException {
141
		DataManager manager = DALLocator.getDataManager();
142
		AbstractRasterFileDataParameters params = (AbstractRasterFileDataParameters) manager
143
				.createStoreParameters(this.getDataStoreProviderName());
144
		params.setFile(file);
145
		return params;
146
	}
147
	
148
	public DataServerExplorerParameters getParameters() {
149
		return null;
150
	}
151
	
152
	public int getMode() {
153
		return DataServerExplorer.MODE_RASTER;
154
	}
155

  
156
	public DataServerExplorerProviderServices getServerExplorerProviderServices() {
157
		return null;
158
	}
159

  
160
	public boolean add(String provider, NewDataStoreParameters parameters,
161
			boolean overwrite) throws DataException {
162
		return false;
163
	}
164

  
165
	public boolean canAdd() {
166
		return false;
167
	}
168

  
169
	public boolean canAdd(String storeName) throws DataException {
170
		return false;
171
	}
172

  
173
	public NewDataStoreParameters getAddParameters(String storeName)
174
			throws DataException {
175
		return null;
176
	}
177

  
178
	@SuppressWarnings("unchecked")
179
	public List getDataStoreProviderNames() {
180
		return null;
181
	}
182

  
183
	public String getProviderName() {
184
		return null;
185
	}
186

  
187
	@SuppressWarnings("unchecked")
188
	public List list() throws DataException {
189
		return null;
190
	}
191

  
192
	@SuppressWarnings("unchecked")
193
	public List list(int mode) throws DataException {
194
		return null;
195
	}
196

  
197
	public void dispose() {
198
		
199
	}
200

  
201
}
0 202

  
org.gvsig.raster.tilecache/tags/org.gvsig.raster.tilecache-2.2.29/org.gvsig.raster.tilecache.io/src/main/java/org/gvsig/raster/tilecache/io/TileProvider.java
1
package org.gvsig.raster.tilecache.io;
2

  
3
import java.awt.Image;
4
import java.awt.geom.AffineTransform;
5
import java.awt.geom.NoninvertibleTransformException;
6
import java.awt.geom.Point2D;
7
import java.io.File;
8
import java.io.FileNotFoundException;
9
import java.io.IOException;
10
import java.lang.reflect.Constructor;
11
import java.lang.reflect.InvocationTargetException;
12
import java.net.URI;
13
import java.util.List;
14

  
15
import org.gvsig.compat.net.ICancellable;
16
import org.gvsig.fmap.dal.DALLocator;
17
import org.gvsig.fmap.dal.DataStore;
18
import org.gvsig.fmap.dal.DataStoreParameters;
19
import org.gvsig.fmap.dal.coverage.RasterLibrary;
20
import org.gvsig.fmap.dal.coverage.RasterLocator;
21
import org.gvsig.fmap.dal.coverage.dataset.Buffer;
22
import org.gvsig.fmap.dal.coverage.datastruct.BandList;
23
import org.gvsig.fmap.dal.coverage.datastruct.DatasetBand;
24
import org.gvsig.fmap.dal.coverage.datastruct.Extent;
25
import org.gvsig.fmap.dal.coverage.exception.BandAccessException;
26
import org.gvsig.fmap.dal.coverage.exception.BandNotFoundInListException;
27
import org.gvsig.fmap.dal.coverage.exception.FileNotOpenException;
28
import org.gvsig.fmap.dal.coverage.exception.FileNotSupportedException;
29
import org.gvsig.fmap.dal.coverage.exception.InfoByPointException;
30
import org.gvsig.fmap.dal.coverage.exception.InvalidSetViewException;
31
import org.gvsig.fmap.dal.coverage.exception.InvalidSourceException;
32
import org.gvsig.fmap.dal.coverage.exception.NotSupportedExtensionException;
33
import org.gvsig.fmap.dal.coverage.exception.ParsingException;
34
import org.gvsig.fmap.dal.coverage.exception.ProcessInterruptedException;
35
import org.gvsig.fmap.dal.coverage.exception.QueryException;
36
import org.gvsig.fmap.dal.coverage.exception.RasterDriverException;
37
import org.gvsig.fmap.dal.coverage.exception.RmfSerializerException;
38
import org.gvsig.fmap.dal.coverage.store.RasterQuery;
39
import org.gvsig.fmap.dal.coverage.store.parameter.MultiDimensionalStoreParameters;
40
import org.gvsig.fmap.dal.coverage.store.parameter.RasterDataParameters;
41
import org.gvsig.fmap.dal.coverage.store.parameter.RemoteStoreParameters;
42
import org.gvsig.fmap.dal.coverage.store.parameter.TileDataParameters;
43
import org.gvsig.fmap.dal.coverage.store.props.ColorInterpretation;
44
import org.gvsig.fmap.dal.coverage.store.props.ColorTable;
45
import org.gvsig.fmap.dal.coverage.util.MathUtils;
46
import org.gvsig.fmap.dal.exception.InitializeException;
47
import org.gvsig.fmap.dal.exception.ProviderNotRegisteredException;
48
import org.gvsig.fmap.dal.exception.ValidateDataParametersException;
49
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorer;
50
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorerParameters;
51
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemStoreParameters;
52
import org.gvsig.fmap.dal.spi.DataManagerProviderServices;
53
import org.gvsig.fmap.dal.spi.DataStoreProvider;
54
import org.gvsig.fmap.dal.spi.DataStoreProviderServices;
55
import org.gvsig.metadata.MetadataLocator;
56
import org.gvsig.raster.cache.tile.Tile;
57
import org.gvsig.raster.cache.tile.TileCache;
58
import org.gvsig.raster.cache.tile.TileCacheLibrary;
59
import org.gvsig.raster.cache.tile.TileCacheLocator;
60
import org.gvsig.raster.cache.tile.TileCacheManager;
61
import org.gvsig.raster.cache.tile.exception.TileBuildException;
62
import org.gvsig.raster.cache.tile.exception.TileGettingException;
63
import org.gvsig.raster.cache.tile.layer.TiledLayer;
64
import org.gvsig.raster.cache.tile.provider.CacheStruct;
65
import org.gvsig.raster.cache.tile.provider.TileServer;
66
import org.gvsig.raster.impl.buffer.SpiRasterQuery;
67
import org.gvsig.raster.impl.datastruct.BandListImpl;
68
import org.gvsig.raster.impl.datastruct.DatasetBandImpl;
69
import org.gvsig.raster.impl.datastruct.ExtentImpl;
70
import org.gvsig.raster.impl.provider.AbstractRasterProvider;
71
import org.gvsig.raster.impl.provider.MemoryTileMatrixBuffer;
72
import org.gvsig.raster.impl.provider.RasterProvider;
73
import org.gvsig.raster.impl.provider.RemoteRasterProvider;
74
import org.gvsig.raster.impl.provider.TiledRasterProvider;
75
import org.gvsig.raster.impl.store.DefaultRasterStore;
76
import org.gvsig.raster.impl.store.DefaultStoreFactory;
77
import org.gvsig.raster.impl.store.properties.DataStoreColorInterpretation;
78
import org.gvsig.raster.impl.store.properties.DataStoreTransparency;
79
import org.gvsig.raster.impl.store.properties.RemoteDataStoreStatistics;
80
import org.gvsig.tools.ToolsLocator;
81
import org.gvsig.tools.locator.LocatorException;
82

  
83
import org.slf4j.Logger;
84
import org.slf4j.LoggerFactory;
85

  
86
/**
87
 * Provider for WMTS service
88
 *
89
 * @author Nacho Brodin (nachobrodin@gmail.com)
90
 */
91
public class TileProvider extends AbstractRasterProvider implements TiledRasterProvider {
92
	public static String                NAME                     = "Tile Store";
93
	public static String                DESCRIPTION              = "Raster Tiled Source";
94
	public static final String          METADATA_DEFINITION_NAME = "TileStore";
95
	private static final Logger         logger                   = LoggerFactory.getLogger(TileProvider.class);
96
	private RasterProvider              provider                 = null;
97
	private boolean                     open                     = false;
98
	private Extent                      viewRequest              = null;
99
	private TiledLayer                  tiledLayer               = null;
100
	private MathUtils                   math                     = RasterLocator.getManager().getMathUtils();
101
	private TileServer                  secondLevelTileServer    = null;
102

  
103
	public static void register() {
104
		DataManagerProviderServices dataman = (DataManagerProviderServices) DALLocator.getDataManager();
105
		if (dataman != null && !dataman.getStoreProviders().contains(NAME)) {
106
			dataman.registerStoreProvider(NAME,
107
					TileProvider.class, TileDataParametersImpl.class);
108
		}
109

  
110
		/*if(DALFileLocator.getFilesystemServerExplorerManager() != null)
111
			DALFileLocator.getFilesystemServerExplorerManager().registerProvider(
112
					NAME, DESCRIPTION,
113
					TileServerExplorer.class);*/
114

  
115
		if (!dataman.getExplorerProviders().contains(TileServerExplorer.NAME)) {
116
			dataman.registerExplorerProvider(TileServerExplorer.NAME, TileServerExplorer.class, TileServerExplorerParameters.class);
117
		}
118
		dataman.registerStoreFactory(NAME, DefaultStoreFactory.class);
119
	}
120

  
121
	/**
122
	 * Loads the specific provider to download data
123
	 * @param file
124
	 * @return
125
	 * @throws NotSupportedExtensionException
126
	 * @throws FileNotSupportedException
127
	 */
128
	@SuppressWarnings("unchecked")
129
	private RasterProvider loadProvider(TileDataParametersImpl params, DataStoreProviderServices storeServices) throws ProviderNotRegisteredException, InitializeException {
130
		Object obj = params.getDataParameters();
131
		DataManagerProviderServices dataManager = (DataManagerProviderServices)DALLocator.getDataManager();
132
		DataStoreProvider prov = null;
133

  
134
		if(obj != null && obj instanceof DataStoreParameters) //Remote
135
			prov = dataManager.createProvider(storeServices, (DataStoreParameters)obj);
136
		else { //File
137
			if(params.getFile() != null) {
138
				//We have to locate a provider's name which manages the selected file
139
				//A FilesystemServerExplorer will give a getProviderNames service
140
				FilesystemServerExplorerParameters paramsExplorer = (FilesystemServerExplorerParameters)dataManager.createServerExplorerParameters(FilesystemServerExplorer.NAME);
141
				FilesystemServerExplorer serverExplorer = null;
142
				try {
143
					paramsExplorer.setRoot(File.separator);
144
					serverExplorer = (FilesystemServerExplorer)dataManager.openServerExplorer(FilesystemServerExplorer.NAME, paramsExplorer);
145
				} catch (ValidateDataParametersException e) {
146
					throw new InitializeException(e);
147
				}
148

  
149
				//Gets the list of provider's name to manage the file
150
				List<String> provName = serverExplorer.getProviderNameList(params.getFile());
151
				if(provName.size() > 0) {
152
					for (int i = 0; i < provName.size(); i++) {
153
						//Gets the first provider what is not a TileProvider
154
						if(provName.get(i).compareTo(NAME) != 0) {
155
							DataStoreParameters newparams = dataManager.createStoreParameters(provName.get(i));
156
							((FilesystemStoreParameters)newparams).setFile(params.getFile());
157
							prov = dataManager.createProvider(storeServices, newparams);
158
						}
159
					}
160
				}
161
			}
162
		}
163

  
164
		if(prov != null && prov instanceof RasterProvider) {
165
			if(((RasterProvider)prov).isRotated())
166
				throw new InitializeException("Rotation not supported tiling files", new Throwable());
167

  
168
			return (RasterProvider)prov;
169
		}
170

  
171
		return null;
172
	}
173

  
174
	/**
175
	 * Gets the internal provider used to feed the TileProvider
176
	 * @return
177
	 */
178
	public RasterProvider getInternalProvider() {
179
		return provider;
180
	}
181

  
182
	public Image getImageLegend() {
183
		return provider.getImageLegend();
184
	}
185

  
186
	public ColorInterpretation getColorInterpretation() {
187
		return provider.getColorInterpretation();
188
	}
189

  
190
	public String getFileSuffix() {
191
		try {
192
            return provider.getFileSuffix();
193
		} catch(Throwable e) {
194
			return "tif";
195
		}
196
	}
197

  
198
	public File getRMFFile() {
199
		TileCacheManager  manager = TileCacheLocator.getManager();
200
		TileCache tileCache = manager.getTileCache(RasterLibrary.pathTileCache);
201

  
202
		String metadataDir = tiledLayer.getBaseLayerDirectory().substring(0, tiledLayer.getBaseLayerDirectory().lastIndexOf(File.separator) + 1) +
203
				  			tileCache.getConfigurationDirectory();
204

  
205
		File metadaDirFile = new File(metadataDir);
206
		if(!metadaDirFile.exists())
207
			metadaDirFile.mkdir();
208

  
209
		String path = metadataDir + File.separator + tiledLayer.getID() + ".rmf";
210

  
211
		try {
212
            if (!new File(path).exists() && provider != null && provider.getRMFFile() != null
213
                && provider.getRMFFile().exists()) {
214
                RasterLocator.getManager().getFileUtils().copyFile(provider.getRMFFile().getAbsolutePath(), path);
215
            }
216

  
217
			if(provider != null && provider.getColorTable() != null) {
218
				ColorTable colorTable = provider.getColorTable();
219
				RasterLocator.getManager().getProviderServices().saveObjectToRmfFile(path, ColorTable.class, colorTable);
220
			}
221
		} catch (LocatorException e) {
222
			logger.info("No se ha podido copiar el fichero RMF a la capa tileada", e);
223
		} catch (FileNotFoundException e) {
224
			logger.info("No se ha podido copiar el fichero RMF a la capa tileada", e);
225
		} catch (IOException e) {
226
			logger.info("No se ha podido copiar el fichero RMF a la capa tileada", e);
227
		} catch (RmfSerializerException e) {
228
			logger.info("No se ha podido copiar la tabla de color a la capa tileada", e);
229
		}
230
		return new File(path);
231
	}
232

  
233
	public TileProvider() throws NotSupportedExtensionException {
234
		super();
235
	}
236

  
237
	public void registerTileProviderFormats(Class<RasterProvider> c) {
238

  
239
	}
240

  
241
	/**
242
	 * Assigns the provider associated to this tile server
243
	 * @param prov
244
	 * @throws NotSupportedExtensionException
245
	 */
246
	public void setProvider(RasterProvider prov) throws InitializeException  {
247
		this.provider = prov;
248
		init(getDataStoreParameters(), getStoreServices());
249
	}
250

  
251
	public TileProvider(TileDataParametersImpl params,
252
			DataStoreProviderServices storeServices) throws InitializeException {
253
		super(params, storeServices, ToolsLocator.getDynObjectManager()
254
				.createDynObject(
255
						MetadataLocator.getMetadataManager().getDefinition(
256
								DataStore.METADATA_DEFINITION_NAME)));
257
		if(!params.isSecondLevelCache()) {
258
			try {
259
				provider = loadProvider(params, storeServices);
260
			} catch (ProviderNotRegisteredException e) {
261
				throw new InitializeException("Provider not registered", e);
262
			}
263
			init(params, storeServices);
264
			if(provider.getFileSizeByProvider() != null && provider.getFileSizeByProvider().length > 0)
265
				fileSize = provider.getFileSizeByProvider()[0];
266
		}
267
	}
268

  
269
	/**
270
	 * Creates the second level cache if the client has set a <code>TileServer</code> and the
271
	 * <code>CacheStruct</code> is different that the old one.
272
	 * <UL>
273
	 * <LI>First level cache without TileServer from the client: do nothing</LI>
274
	 * <LI>First level cache with TileServer from the client and the structure is
275
	 * different to the old one: Builds a second level TileProvider</LI>
276
	 * <LI>First level cache with TileServer from the client and the structure is
277
	 * equal to the old one: do nothing</LI>
278
	 * <LI>Second level cache: sets the TileServer</LI>
279
	 * </UL>
280
	 * @param params
281
	 * @param storeServices
282
	 * @throws NotSupportedExtensionException
283
	 */
284
	/*private void createsSecondLevelCache(TileDataParametersImpl params) throws NotSupportedExtensionException {
285
		//Se obtiene el TileServer que haya pasado el cliente en los par?metros si ha pasado alguno.
286
		TileServer tileServer = params.getTileServer();
287
		//Se obtiene el CacheStruct y se compara con el del provider
288
		CacheStruct cacheStruct = null;
289
		if(tileServer != null)
290
			cacheStruct = tileServer.getStruct();
291

  
292
		if(params.isSecondLevelCache()) { //Cache de segundo nivel
293
			this.secondLevelTileServer = tileServer;
294
		} else if(cacheStruct != null && !provider.getTileServer().getStruct().compare(cacheStruct)) { //Cache de primer nivel
295
			//Si son distintos habr? que crear una cach? de segundo nivel por lo que creamos un nuevo TileProvider
296
			//que tenga como par?metro el provider viejo
297
			TileDataParametersImpl par = new TileDataParametersImpl();
298
			par.setDataParameters(provider.getDataParameters());
299
			par.setTileServer(tileServer);
300
			par.setSecondLevelCache(true);
301
			TileProvider newProvider = new TileProvider(par, null);
302
			newProvider.setProvider(this.provider);
303
			//Al TileProvider actual se le asigna como provider el TileProvider creado
304
			this.provider = newProvider;
305
		}
306
	}*/
307

  
308
	/**
309
	 * Crea las referencias al fichero y carga
310
	 * las estructuras con la informaci?n y los metadatos.
311
	 * @param proj Proyecci?n
312
	 * @param param Parametros de carga
313
	 * @throws NotSupportedExtensionException
314
	 */
315
	public void init (DataStoreParameters params,
316
			DataStoreProviderServices storeServices) throws InitializeException  {
317
		setParam(storeServices, params);
318
		open = true;
319
		calculateDataType();
320
		calculateBandCount();
321
		calculateColorInterpretation();
322
		calculateTransparency();
323
		setColorTable(provider.getColorTable());
324
		noData = provider.getNoDataValue();
325
		uri = provider.getURIOfFirstProvider();
326
		proj = provider.getProjection();
327
		ownTransformation = provider.getAffineTransform();
328
		externalTransformation = (AffineTransform)ownTransformation.clone();
329

  
330
		createTiledLayer();
331

  
332
		//Force to deletes the layer if the flag is to true
333
		if(tiledLayer != null) {
334
			if(param instanceof TileDataParameters) {
335
				if(((TileDataParameters)param).isDeletingCache()) {
336
					TileCacheManager  manager = TileCacheLocator.getManager();
337
					TileCache tileCache = manager.getTileCache(RasterLibrary.pathTileCache);
338
					tileCache.removeLayer(tiledLayer);
339
					((TileDataParameters)param).deleteCache(false);
340
				}
341
			}
342
		}
343

  
344
		if(provider instanceof RemoteRasterProvider)
345
			stats = new RemoteDataStoreStatistics(provider);
346
	}
347

  
348
	/**
349
	 * Calculates the data type of this provider
350
	 * @return
351
	 */
352
	public void calculateDataType() {
353
		int[] datatype = null;
354
		if(provider.getDataType()[0] == Buffer.TYPE_BYTE && provider.getBandCount() == 3)
355
			datatype = new int[provider.getBandCount() + 1];
356
		else
357
			datatype = new int[provider.getBandCount()];
358
		for (int i = 0; i < provider.getDataType().length; i++) {
359
			datatype[i] = provider.getDataType()[i];
360
		}
361
		if(provider.getDataType()[0] == Buffer.TYPE_BYTE && provider.getBandCount() == 3)
362
			datatype[datatype.length - 1] = Buffer.TYPE_BYTE;
363
		setDataType(datatype);
364
	}
365

  
366
	/**
367
	 * Calculates the number of bands
368
	 */
369
	public void calculateBandCount() {
370
		bandCount = provider.getBandCount();
371
		if(provider.getDataType()[0] == Buffer.TYPE_BYTE && provider.getBandCount() == 3)
372
			bandCount ++;
373
	}
374

  
375
	/**
376
	 * Calculates the color interpretation
377
	 */
378
	public void calculateColorInterpretation() {
379
		ColorInterpretation ci = provider.getColorInterpretation();
380
		if(ci != null) {
381
			if(ci.isRGB() || ci.isBGR()) {
382
				ci = DataStoreColorInterpretation.createRGBAInterpretation();
383
			} else
384
				ci = ci.cloneColorInterpretation();
385
		} else {
386
			if(provider.getDataType()[0] == Buffer.TYPE_BYTE) {
387
				if(provider.getBandCount() == 3)
388
					ci = DataStoreColorInterpretation.createRGBAInterpretation();
389
				else
390
					ci = DataStoreColorInterpretation.createDefaultInterpretation(getBandCount());
391
			} else {
392
				if(getBandCount() == 1)
393
					ci = DataStoreColorInterpretation.createGrayInterpretation();
394
				else
395
					ci = DataStoreColorInterpretation.createDefaultInterpretation(getBandCount());
396
			}
397
		}
398

  
399
		super.setColorInterpretation(ci);
400
	}
401

  
402

  
403
	public void calculateTransparency() {
404
		if(provider.getTransparency() != null)
405
			transparency = provider.getTransparency().cloneTransparency();
406
		else
407
			transparency = new DataStoreTransparency(getColorInterpretation());
408
		if(getColorInterpretation() != null) {
409
			transparency.setColorInterpretation(getColorInterpretation());
410
			transparency.setTransparencyBand(getColorInterpretation().getAlphaBand());
411
			transparency.activeTransparency();
412
		}
413
	}
414

  
415
	/**
416
	 * Creates a new tiled layer if this hasn't been created yet or the ID has changed.
417
	 * An ID could changed because the file type has changed when the user uses WMTS properties.
418
	 */
419
	private void createTiledLayer() {
420
		TileCacheManager  manager = TileCacheLocator.getManager();
421
		TileCache tileCache = manager.getTileCache(RasterLibrary.pathTileCache);
422
		TiledLayer newLayer = tileCache.createLayer(provider.getTileServer(), TileCacheLibrary.DEFAULT_STRUCTURE);
423
		if(tiledLayer == null || newLayer.getID().compareTo(tiledLayer.getID()) != 0)
424
			tiledLayer = newLayer;
425
	}
426

  
427
	public void reload() {
428
		try {
429
			loadFromRmf(getRmfBlocksManager());
430
			calculateColorInterpretation();
431
			calculateTransparency();
432
		} catch (ParsingException e) {
433
			logger.debug("No se ha podido leer el RMF", e);
434
		}
435
	}
436

  
437
	public int getZoomLevels() {
438
		if(provider.getTileServer() != null)
439
			return provider.getTileServer().getStruct().getNumberOfLevels();
440
		return 0;
441
	}
442

  
443
	public int getNearestLevel(double pixelSize) {
444
		double[] pixelSizes = getPixelSizeByLevel();
445
		for (int i = 0; i < pixelSizes.length - 1; i++) {
446
			if(pixelSize <= pixelSizes[i] && pixelSize > pixelSizes[i + 1]) {
447
				return i;
448
			}
449
		}
450
		if(pixelSize < pixelSizes[getZoomLevels() - 1])
451
			return getZoomLevels() - 1;
452
		return 0;
453
	}
454

  
455
	/**
456
	 * Returns a list of pixel sizes by level
457
	 * @return
458
	 */
459
	public double[] getPixelSizeByLevel() {
460
		double[] list = new double[getZoomLevels()];
461
		CacheStruct struct = provider.getTileServer().getStruct();
462
		for (int i = 0; i < struct.getNumberOfLevels(); i++) {
463
			list[i] = math.adjustDouble(struct.getPixelSizeByLevel(i));
464
		}
465
		return list;
466
	}
467

  
468
	public Extent getCoordsInTheNearestLevel(Extent extent, int w, int h) {
469
		double[] pixelSizes = getPixelSizeByLevel();
470
		double currentPixelSize = extent.width() / (double)w;
471

  
472
		int level = 0;
473
		for (int i = 0; i < (pixelSizes.length - 1); i++) {
474
			if(currentPixelSize < pixelSizes[i] && currentPixelSize >= pixelSizes[i + 1]) {
475
				level = i + 1;
476
				break;
477
			}
478
		}
479

  
480
		return getZoomLevelCoordinates(level, extent, w, h);
481
	}
482

  
483
	public Extent getCoordsInLevel(Point2D viewCenter, int level, int w, int h) {
484
		level = adjustLevel(level);
485
		double pixelSize = provider.getTileServer().getStruct().getPixelSizeByLevel(level);
486

  
487
		/*Rectangle2D worldExtent = provider.getTileServer().getStruct().getWorldExtent();
488
		int nTiles = provider.getTileServer().getStruct().getLayerWidthOfTileMatrixByLevel(level);
489
		int[] nPixelsByTile = provider.getTileServer().getStruct().getTileSizeByLevel(level);
490

  
491
		double sizeWCByTile = worldExtent.getWidth() / (double)nTiles;
492
		double pixelSize = sizeWCByTile / (double)nPixelsByTile[0];*/
493

  
494
		double ulx = viewCenter.getX() - ((w / 2) * pixelSize);
495
		double uly = viewCenter.getY() - ((h / 2) * pixelSize);
496
		double lrx = ulx + (w * pixelSize);
497
		double lry = uly + (h * pixelSize);
498
		return new ExtentImpl(ulx, uly, lrx, lry);
499
	}
500

  
501
	/**
502
	 * Adjust de level to the range
503
	 * @param level
504
	 * @return
505
	 */
506
	private int adjustLevel(int level) {
507
		if(level < 0)
508
			level = 0;
509
		if(level > getZoomLevels())
510
			level = getZoomLevels();
511
		return level;
512
	}
513

  
514
	public AffineTransform getAffineTransform() {
515
		return provider.getAffineTransform();
516
	}
517

  
518
	/**
519
	 * Gets the bounding box in world coordinates. If the layer has grid subsets (TileMatrixLimits) then
520
	 * this will have a only extent but if the layer doesn't have grid subsets then this will have a different
521
	 * extent in each level resolution. In this case we need to know the extent for each level.
522
	 * @return Extent
523
	 */
524
	public Extent getExtent() {
525
		return provider.getExtent();
526
	}
527

  
528
	public RasterProvider load() {
529
		return this;
530
	}
531

  
532
	public boolean isOpen() {
533
		return open;
534
	}
535

  
536
	public boolean isTiled() {
537
		return true;
538
	}
539

  
540
	public void close() {
541
		open = false;
542
		if(provider != null)
543
			provider.close();
544
	}
545

  
546
	public URI translateURI(URI uri) {
547
		return uri;
548
	}
549

  
550
	public void setView(Extent e) {
551
		viewRequest = e;
552
	}
553

  
554
	public Extent getView() {
555
		return viewRequest;
556
	}
557

  
558
	public double getWidth() {
559
		return provider.getWidth();
560
	}
561

  
562
	public double getHeight() {
563
		return provider.getHeight();
564
	}
565

  
566
	public Object readCompleteLine(int line, int band)
567
		throws InvalidSetViewException, FileNotOpenException, RasterDriverException {
568
		return null;
569
	}
570

  
571
	public File getFileLayer() throws RasterDriverException {
572
		return null;
573
	}
574

  
575
	@SuppressWarnings("deprecation")
576
	public Object readBlock(int pos, int blockHeight, double scale)
577
	throws InvalidSetViewException, FileNotOpenException, RasterDriverException, ProcessInterruptedException {
578
		//TODO: temporal hasta que haya un generador de estad?sticas parciales para realce.
579
		//Pongo este m?todo deprecated porque el objetivo es eliminarlo de los proveedores.
580
		if(provider.getBandCount() < getBandCount()) {
581
			switch (getDataType()[0]) {
582
			case Buffer.TYPE_BYTE:
583
				byte[][][] buf1 = (byte[][][])provider.readBlock(pos, blockHeight, scale);
584
				byte[][][] b1 = new byte[buf1.length + 1][][];
585
				for (int i = 0; i < buf1.length; i++) {
586
					b1[i] = buf1[i];
587
				}
588
				b1[b1.length - 1] = new byte[buf1[0].length][buf1[0][0].length];
589
				return b1;
590
			case Buffer.TYPE_SHORT:
591
				short[][][] buf2 = (short[][][])provider.readBlock(pos, blockHeight, scale);
592
				short[][][] b2 = new short[buf2.length + 1][][];
593
				for (int i = 0; i < buf2.length; i++) {
594
					b2[i] = buf2[i];
595
				}
596
				b2[b2.length - 1] = new short[buf2[0].length][buf2[0][0].length];
597
				return b2;
598
			case Buffer.TYPE_FLOAT:
599
				float[][][] buf3 = (float[][][])provider.readBlock(pos, blockHeight, scale);
600
				float[][][] b3 = new float[buf3.length + 1][][];
601
				for (int i = 0; i < buf3.length; i++) {
602
					b3[i] = buf3[i];
603
				}
604
				b3[b3.length - 1] = new float[buf3[0].length][buf3[0][0].length];
605
				return b3;
606
			case Buffer.TYPE_DOUBLE:
607
				double[][][] buf4 = (double[][][])provider.readBlock(pos, blockHeight, scale);
608
				double[][][] b4 = new double[buf4.length + 1][][];
609
				for (int i = 0; i < buf4.length; i++) {
610
					b4[i] = buf4[i];
611
				}
612
				b4[b4.length - 1] = new double[buf4[0].length][buf4[0][0].length];
613
				return b4;
614
			case Buffer.TYPE_INT:
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff