Revision 4860

View differences:

org.gvsig.raster.multifile/tags/org.gvsig.raster.multifile-2.2.23/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<artifactId>org.gvsig.raster.multifile</artifactId>
5
	<packaging>pom</packaging>
6
	<version>2.2.23</version>
7
	<name>Raster multifile support for gvSIG</name>
8
	<description>Raster multifile support for gvSIG</description>
9
	<inceptionYear>2013</inceptionYear>
10
	<parent>
11
      <groupId>org.gvsig</groupId>
12
      <artifactId>org.gvsig.desktop</artifactId>
13
      <version>2.0.123</version>
14
  </parent>
15
        <properties>
16
            <!-- El plugin versions:use-latest-versions falla con scope import -->
17
            <!-- asi que toca usar el versions:update-properties que si que funciona -->
18
            <org.gvsig.raster.version>2.2.34</org.gvsig.raster.version>
19
        </properties>
20

  
21
    <repositories>
22
      <repository>
23
        <id>gvsig-public-http-repository</id>
24
        <name>gvSIG maven public HTTP repository</name>
25
        <url>http://devel.gvsig.org/m2repo/j2se</url>
26
        <releases>
27
          <enabled>true</enabled>
28
          <updatePolicy>daily</updatePolicy>
29
          <checksumPolicy>warn</checksumPolicy>
30
        </releases>
31
        <snapshots>
32
          <enabled>true</enabled>
33
          <updatePolicy>daily</updatePolicy>
34
          <checksumPolicy>warn</checksumPolicy>
35
        </snapshots>
36
      </repository>
37
    </repositories>
38

  
39
    <scm>
40
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-raster/org.gvsig.raster.multifile/tags/org.gvsig.raster.multifile-2.2.23</connection>
41
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-raster/org.gvsig.raster.multifile/tags/org.gvsig.raster.multifile-2.2.23</developerConnection>
42
        <url>https://devel.gvsig.org/redmine/projects/gvsig-raster/repository/show/org.gvsig.raster.multifile/tags/org.gvsig.raster.multifile-2.2.23</url>
43
    </scm>
44

  
45
	<developers>
46
		<developer>
47
			<id>nbrodin</id>
48
			<name>Nacho Brodin</name>
49
			<email>nachobrodin@gmail.com</email>
50
			<roles>
51
				<role>Architect</role>
52
				<role>Developer</role>
53
			</roles>
54
		</developer>
55
	</developers>
56

  
57
	<dependencyManagement>
58
    	<dependencies>
59
                        <dependency>
60
                                <groupId>org.gvsig</groupId>
61
                                <artifactId>org.gvsig.raster</artifactId>
62
                                <version>${org.gvsig.raster.version}</version>
63
                                <type>pom</type>
64
                                <scope>import</scope>
65
                        </dependency>
66

  
67
        <dependency>
68
          <groupId>org.gvsig</groupId>
69
          <artifactId>org.gvsig.raster.multifile.io</artifactId>
70
          <version>2.2.23</version>
71
        </dependency>
72

  
73
    	</dependencies>
74
    </dependencyManagement>
75
	<build>
76
        <plugins>
77
            <plugin>
78
                <groupId>org.apache.maven.plugins</groupId>
79
                <artifactId>maven-release-plugin</artifactId>
80
                <configuration>
81
                    <tagBase>https://devel.gvsig.org/svn/gvsig-raster/org.gvsig.raster.multifile/tags/</tagBase>
82
                    <goals>deploy</goals>
83
                </configuration>
84
            </plugin>
85
        </plugins>
86
    </build>
87

  
88
	<modules>
89
		<module>org.gvsig.raster.multifile.io</module>
90
		<module>org.gvsig.raster.multifile.app.multifileclient</module>
91
	</modules>
92

  
93
</project>
0 94

  
org.gvsig.raster.multifile/tags/org.gvsig.raster.multifile-2.2.23/org.gvsig.raster.multifile.io/src/main/java/org/gvsig/raster/multifile/io/DefaultMultiFileIOLibrary.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.multifile.io;
23

  
24
import org.gvsig.fmap.dal.DALFileLibrary;
25
import org.gvsig.fmap.dal.DALLibrary;
26
import org.gvsig.tools.ToolsLibrary;
27
import org.gvsig.tools.library.AbstractLibrary;
28
import org.gvsig.tools.library.Library;
29
import org.gvsig.tools.library.LibraryException;
30
/**
31
 *
32
 * @author Nacho Brodin (nachobrodin@gmail.com)
33
 */
34
public class DefaultMultiFileIOLibrary extends AbstractLibrary {	
35

  
36
	@SuppressWarnings("deprecation")
37
	public DefaultMultiFileIOLibrary() {
38
		super(DefaultMultiFileIOLibrary.class,Library.TYPE.IMPL);
39
		require(ToolsLibrary.class);
40
		require(DALLibrary.class);
41
		require(DALFileLibrary.class);
42
	}
43
	
44
	@Override
45
	protected void doInitialize() throws LibraryException {
46
	}
47

  
48
	@Override
49
	protected void doPostInitialize() throws LibraryException {
50
		MultiFileServerExplorerParameters.registerDynClass();
51
		MultiFileDataParametersImpl.registerDynClass();
52
		MultiFileProvider.register();
53
	}
54
}
0 55

  
org.gvsig.raster.multifile/tags/org.gvsig.raster.multifile-2.2.23/org.gvsig.raster.multifile.io/src/main/java/org/gvsig/raster/multifile/io/MultiFileFormatSerializer.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.multifile.io;
23

  
24
import java.io.File;
25
import java.io.FileWriter;
26
import java.io.IOException;
27
import java.io.Reader;
28
import java.io.StringReader;
29
import java.text.ParseException;
30

  
31
import org.gvsig.fmap.dal.coverage.exception.ParsingException;
32
import org.gvsig.raster.impl.store.rmf.ClassSerializer;
33
import org.gvsig.raster.impl.store.rmf.RmfBlocksManager;
34
import org.kxml2.io.KXmlParser;
35
import org.xmlpull.v1.XmlPullParserException;
36
/**
37
 * @author Nacho Brodin (nachobrodin@gmail.com)
38
 */
39
public class MultiFileFormatSerializer extends ClassSerializer {
40
	//TAGS
41
	public static final String MAIN_TAG          = "MultiFileFormat";
42
	public static final String URIS              = "URIs";
43
	public static final String URI               = "URI";
44
	public static final String NAME              = "Name";
45
	private MultiFileFormat   multiFileFormat    = null;
46
	
47
	public MultiFileFormatSerializer(MultiFileFormat timeSeriesFormat) {
48
		this.multiFileFormat = timeSeriesFormat;
49
	}
50
	
51
 	/**
52
	 * Parsers a date list
53
	 * @param tInfo
54
	 * @param parser
55
	 * @param xml
56
	 * @param tag
57
	 * @throws XmlPullParserException
58
	 * @throws IOException
59
	 * @throws ParsingException
60
	 * @throws NumberFormatException
61
	 * @throws ParseException 
62
	 */
63
	public void parseURIs(KXmlParser parser, String xml, String parseableTag) throws XmlPullParserException, IOException, NumberFormatException, ParsingException, ParseException  {
64
		boolean end = false;
65
		boolean init = false;
66
		boolean readFile = false;
67
		int tag = parser.next();
68
		while (!end) {
69
			switch (tag) {
70
				case KXmlParser.END_DOCUMENT:
71
					return;
72
				case KXmlParser.START_TAG:
73
					if (parser.getName().compareTo(parseableTag) == 0) {
74
						init = true;
75
					}
76
					if(init) {
77
						if (parser.getName().compareTo(URI) == 0) {
78
							readFile = true;
79
						}
80
					}
81
					break;
82
				case KXmlParser.END_TAG:
83
					if (parser.getName().compareTo(parseableTag) == 0)
84
						end = true;
85
					break;
86
				case KXmlParser.TEXT:
87
					if(readFile) {
88
						String file = parser.getText();
89
						multiFileFormat.addFile(new File(file));
90
						readFile = false;
91
					}
92
					break;
93
			}
94
			if (!end)
95
				tag = parser.next();
96
		}
97
	}
98

  
99
	/*
100
	 * (non-Javadoc)
101
	 * @see org.gvsig.raster.dataset.io.rmf.IRmfBlock#read(java.lang.String)
102
	 */
103
	public void read(String xml) throws ParsingException {
104
		if(multiFileFormat == null)
105
			multiFileFormat = new MultiFileFormat();
106
		else {
107
			multiFileFormat.clean();
108
		}
109
		boolean init = false;
110
		boolean end = false;
111

  
112
		KXmlParser parser = new KXmlParser();
113
		Reader reader = new StringReader(xml);
114
		try {
115
			parser.setInput(reader);
116
		} catch (XmlPullParserException e) {
117
			throw new ParsingException(xml);
118
		}
119
		try {
120
			int tag = parser.nextTag();
121

  
122
			if ( parser.getEventType() != KXmlParser.END_DOCUMENT ){
123
				parser.require(KXmlParser.START_TAG, null, MAIN_TAG);
124
				while(tag != KXmlParser.END_DOCUMENT) {
125
					switch(tag) {
126
						case KXmlParser.START_TAG:
127
							if (parser.getName().compareTo(MAIN_TAG) == 0)
128
								init = true;
129
							break;
130
						case KXmlParser.END_TAG:
131
							if(parser.getName().compareTo(MAIN_TAG) == 0)
132
								end = true;
133
							break;
134
						case KXmlParser.TEXT:
135
							if(init) {
136
								String name = parserString(parser, NAME, null);
137
								multiFileFormat.setName(name);
138
								parseURIs(parser, xml, URIS);
139
								init = false;
140
							}
141
							break;
142
					}
143
					if(end)
144
						break;
145
					tag = parser.next();
146
				}
147
			}
148

  
149
		} catch (XmlPullParserException e) {
150
			throw new ParsingException(xml);
151
		} catch (IOException e) {
152
			throw new ParsingException(xml);
153
		} catch (NumberFormatException e) {
154
			throw new ParsingException(xml);
155
		} catch (ParseException e) {
156
			throw new ParsingException(xml);
157
		}
158
	}
159

  
160
	/**
161
	 * Writes a MultiFileFormat to disk
162
	 * @param multiFileFormat
163
	 * @param file
164
	 * @throws IOException
165
	 */
166
	public static void write(MultiFileFormat multiFileFormat, String fileName) throws IOException {
167
		File file = new File(fileName);
168
		file.createNewFile();
169
		FileWriter writer = new FileWriter(file);
170
		MultiFileFormatSerializer serializer = new MultiFileFormatSerializer(multiFileFormat);
171
		writer.write(serializer.write());
172
		writer.close();
173
	}
174
	
175
	/**
176
	 * Reads a TimeSeriesFormat from disk
177
	 * @param timeSeriesFormat
178
	 * @param file
179
	 * @throws IOException
180
	 * @throws ParsingException 
181
	 */
182
	public static MultiFileFormat read(MultiFileFormat timeSeriesFormat, String file) throws IOException, ParsingException {
183
		RmfBlocksManager manager = new RmfBlocksManager(file);
184
		MultiFileFormatSerializer serializer = new MultiFileFormatSerializer(timeSeriesFormat);
185
		manager.addClient(serializer);
186
		manager.read(null);
187
		return timeSeriesFormat;
188
	}
189
	
190
	/*
191
	 * (non-Javadoc)
192
	 * @see org.gvsig.raster.dataset.io.rmf.IRmfBlock#write()
193
	 */
194
	public String write() {
195
		StringBuffer b = new StringBuffer();
196
		b.append("<?xml version=\"1.0\" encoding=\"ISO-8859-15\"?>\n");
197
		b.append("<" + MAIN_TAG + ">\n");
198
		putProperty(b, NAME, multiFileFormat.getName(), 2);
199
		
200
		b.append("\t\t<" + URIS + ">\n");
201
		for (int i = 0; i < multiFileFormat.getNumberOfFiles(); i++) {
202
			putProperty(b, URI, multiFileFormat.getPathToFile(i), 3);
203
		}
204
		b.append("\t\t</" + URIS + ">\n");
205
		b.append("</" + MAIN_TAG + ">\n");
206
		return b.toString();
207
	}
208

  
209
	/*
210
	 * (non-Javadoc)
211
	 * @see org.gvsig.raster.dataset.io.rmf.IRmfBlock#getResult()
212
	 */
213
	public Object getResult() {
214
		return multiFileFormat;
215
	}
216

  
217
	/*
218
	 *  (non-Javadoc)
219
	 * @see org.gvsig.raster.dataset.io.rmf.IRmfBlock#getMainTag()
220
	 */
221
	public String getMainTag() {
222
		return MAIN_TAG;
223
	}
224
}
0 225

  
org.gvsig.raster.multifile/tags/org.gvsig.raster.multifile-2.2.23/org.gvsig.raster.multifile.io/src/main/java/org/gvsig/raster/multifile/io/MultiFileServerExplorer.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.multifile.io;
29

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

  
33
import org.gvsig.fmap.dal.DALLocator;
34
import org.gvsig.fmap.dal.DataManager;
35
import org.gvsig.fmap.dal.DataServerExplorer;
36
import org.gvsig.fmap.dal.DataServerExplorerParameters;
37
import org.gvsig.fmap.dal.DataStoreParameters;
38
import org.gvsig.fmap.dal.NewDataStoreParameters;
39
import org.gvsig.fmap.dal.coverage.RasterLocator;
40
import org.gvsig.fmap.dal.exception.CreateException;
41
import org.gvsig.fmap.dal.exception.DataException;
42
import org.gvsig.fmap.dal.exception.InitializeException;
43
import org.gvsig.fmap.dal.exception.ProviderNotRegisteredException;
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
/**
52
 * Explorer for a Multifile 
53
 * @author Nacho Brodin (nachobrodin@gmail.com)
54
 */
55
public class MultiFileServerExplorer extends AbstractFilesystemServerExplorerProvider implements DataServerExplorerProvider  {
56
	
57
	public MultiFileServerExplorer() {
58
		
59
	}
60
	
61
	public MultiFileServerExplorer(
62
			MultiFileServerExplorerParameters parameters,
63
			DataServerExplorerProviderServices services)
64
			throws InitializeException {
65
		System.out.println();
66
	}
67
	
68
	public String getDataStoreProviderName() {
69
		return MultiFileProvider.NAME;
70
	}
71
	
72
	public String getDescription() {
73
		return MultiFileProvider.DESCRIPTION;
74
	}
75
	
76
	public DataStoreParameters getStoreParameters() {
77
		DataManager manager = DALLocator.getDataManager();
78
		try {
79
			return  manager.createStoreParameters(this.getDataStoreProviderName());
80
		} catch (InitializeException e) {
81
			e.printStackTrace();
82
		} catch (ProviderNotRegisteredException e) {
83
			e.printStackTrace();
84
		}
85
		return null;
86
	}
87

  
88
	public List<?> getDataStoreProviderNames() {
89
		return null;
90
	}
91

  
92
	public String getProviderName() {
93
		return MultiFileProvider.NAME;
94
	}
95

  
96
	public DataServerExplorerProviderServices getServerExplorerProviderServices() {
97
		return null;
98
	}
99

  
100
	public boolean canCreate() {
101
		return false;
102
	}
103

  
104
	public boolean canCreate(NewDataStoreParameters parameters) {
105
		return false;
106
	}
107

  
108
	public void create(NewDataStoreParameters parameters, boolean overwrite)
109
			throws CreateException {
110
		throw new UnsupportedOperationException();
111
	}
112

  
113
	public NewDataStoreParameters getCreateParameters() throws DataException {
114
		return null;
115
	}
116

  
117
	public void initialize(
118
			FilesystemServerExplorerProviderServices serverExplorer) {
119
	}
120

  
121
	public boolean accept(File pathname) {
122
		return RasterLocator.getManager().getProviderServices().isExtensionSupported(
123
				pathname.getAbsolutePath(), 
124
				MultiFileProvider.class);
125
	}
126

  
127
	public void remove(DataStoreParameters parameters) throws RemoveException {
128
		throw new UnsupportedOperationException();
129
	}
130

  
131
	public boolean add(String provider, NewDataStoreParameters parameters,
132
			boolean overwrite) throws DataException {
133
		return false;
134
	}
135

  
136
	public boolean canAdd() {
137
		return false;
138
	}
139

  
140
	public boolean canAdd(String storeName) throws DataException {
141
		return false;
142
	}
143

  
144
	public NewDataStoreParameters getAddParameters(String storeName)
145
			throws DataException {
146
		return null;
147
	}
148
	
149
	public DataStoreParameters getParameters(File file) throws DataException {
150
		DataManager manager = DALLocator.getDataManager();
151
		AbstractRasterFileDataParameters params = (AbstractRasterFileDataParameters) manager
152
				.createStoreParameters(this.getDataStoreProviderName());
153
		params.setFile(file);
154
		return params;
155
	}
156

  
157
	public DataServerExplorerParameters getParameters() {
158
		return null;
159
	}
160

  
161
	public List<?> list() throws DataException {
162
		return null;
163
	}
164

  
165
	public List<?> list(int mode) throws DataException {
166
		return null;
167
	}
168

  
169
	public void dispose() {
170
	}
171
	
172
	public int getMode() {
173
		return DataServerExplorer.MODE_RASTER;
174
	}
175

  
176
}
0 177

  
org.gvsig.raster.multifile/tags/org.gvsig.raster.multifile-2.2.23/org.gvsig.raster.multifile.io/src/main/java/org/gvsig/raster/multifile/io/MultiFileFormat.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.multifile.io;
23

  
24
import java.io.File;
25
import java.io.IOException;
26
import java.util.ArrayList;
27

  
28
/**
29
 * MultiFileFormat information
30
 * 
31
 * @author Nacho Brodin (nachobrodin@gmail.com)
32
 */
33
public class MultiFileFormat {
34
	public ArrayList<File>   fileList                       = new ArrayList<File>();
35
	private String           name                           = null;
36

  
37
	/**
38
	 * Gets the name of this serial
39
	 * @return
40
	 */
41
	public String getName() {
42
		return name;
43
	}
44
	
45
	/**
46
	 * Sets the name of this serie
47
	 * @param name
48
	 */
49
	public void setName(String name) {
50
		this.name = name;
51
	}
52

  
53
	/**
54
	 * Gets the number of files of this serial
55
	 * @return
56
	 */
57
	public int getNumberOfFiles() {
58
		return fileList.size();
59
	}
60
	
61
	/**
62
	 * Gets the path of the file in the selected position
63
	 * @param file
64
	 * @return
65
	 */
66
	public String getPathToFile(int file) {
67
		return fileList.get(file).getAbsolutePath();
68
	}
69
	
70
	/**
71
	 * Adds a file to the list
72
	 * @param file
73
	 */
74
	public void addFile(File file) {
75
		fileList.add(file);
76
	}
77
	
78
	/**
79
	 * Cleans the list of files 
80
	 */
81
	public void clean() {
82
		fileList.clear();
83
		name = null;
84
	}
85
	
86
	public static String saveMultiFileFormat(String fileName, String path, ArrayList<File> uriList) throws IOException {
87
		path = path + File.separator + fileName + ".mff";
88
		
89
		MultiFileFormat format = new MultiFileFormat();
90
		for (int i = 0; i < uriList.size(); i++) {
91
			format.addFile(uriList.get(i));
92
		}
93
		format.setName(fileName);
94
		
95
		format.write(path);
96
		return path;
97
	}
98
	
99
	/**
100
	 * Writes a MultiFileFormat to disk
101
	 * @param file
102
	 * @throws IOException
103
	 */
104
	public void write(String fileName) throws IOException {
105
		MultiFileFormatSerializer.write(this, fileName);
106
	}
107
}
0 108

  
org.gvsig.raster.multifile/tags/org.gvsig.raster.multifile-2.2.23/org.gvsig.raster.multifile.io/src/main/java/org/gvsig/raster/multifile/io/MultiFileProvider.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.multifile.io;
23

  
24

  
25
import java.awt.geom.AffineTransform;
26
import java.awt.geom.Point2D;
27
import java.awt.geom.Rectangle2D;
28
import java.io.File;
29
import java.io.IOException;
30
import java.net.URI;
31
import java.net.URISyntaxException;
32
import java.util.List;
33

  
34
import org.slf4j.Logger;
35
import org.slf4j.LoggerFactory;
36

  
37
import org.gvsig.fmap.dal.DALFileLocator;
38
import org.gvsig.fmap.dal.DALLocator;
39
import org.gvsig.fmap.dal.DataStore;
40
import org.gvsig.fmap.dal.DataStoreParameters;
41
import org.gvsig.fmap.dal.coverage.RasterLocator;
42
import org.gvsig.fmap.dal.coverage.datastruct.BandList;
43
import org.gvsig.fmap.dal.coverage.datastruct.Extent;
44
import org.gvsig.fmap.dal.coverage.exception.BandAccessException;
45
import org.gvsig.fmap.dal.coverage.exception.BandNotFoundInListException;
46
import org.gvsig.fmap.dal.coverage.exception.FileNotOpenException;
47
import org.gvsig.fmap.dal.coverage.exception.FileNotSupportedException;
48
import org.gvsig.fmap.dal.coverage.exception.InvalidSetViewException;
49
import org.gvsig.fmap.dal.coverage.exception.InvalidSourceException;
50
import org.gvsig.fmap.dal.coverage.exception.NotSupportedExtensionException;
51
import org.gvsig.fmap.dal.coverage.exception.ParsingException;
52
import org.gvsig.fmap.dal.coverage.exception.ProcessInterruptedException;
53
import org.gvsig.fmap.dal.coverage.exception.RasterDriverException;
54
import org.gvsig.fmap.dal.coverage.store.parameter.RasterDataParameters;
55
import org.gvsig.fmap.dal.coverage.store.props.ColorInterpretation;
56
import org.gvsig.fmap.dal.coverage.store.props.ColorTable;
57
import org.gvsig.fmap.dal.coverage.store.props.HistogramComputer;
58
import org.gvsig.fmap.dal.coverage.store.props.Statistics;
59
import org.gvsig.fmap.dal.coverage.util.ProviderServices;
60
import org.gvsig.fmap.dal.exception.CloseException;
61
import org.gvsig.fmap.dal.exception.InitializeException;
62
import org.gvsig.fmap.dal.exception.OpenException;
63
import org.gvsig.fmap.dal.exception.ProviderNotRegisteredException;
64
import org.gvsig.fmap.dal.exception.ValidateDataParametersException;
65
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorer;
66
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorerParameters;
67
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemStoreParameters;
68
import org.gvsig.fmap.dal.spi.DataManagerProviderServices;
69
import org.gvsig.fmap.dal.spi.DataStoreProvider;
70
import org.gvsig.fmap.dal.spi.DataStoreProviderServices;
71
import org.gvsig.metadata.MetadataLocator;
72
import org.gvsig.raster.cache.tile.provider.TileServer;
73
import org.gvsig.raster.impl.buffer.SpiRasterQuery;
74
import org.gvsig.raster.impl.datastruct.BandListImpl;
75
import org.gvsig.raster.impl.datastruct.DatasetBandImpl;
76
import org.gvsig.raster.impl.datastruct.ExtentImpl;
77
import org.gvsig.raster.impl.provider.AbstractRasterProvider;
78
import org.gvsig.raster.impl.provider.RasterProvider;
79
import org.gvsig.raster.impl.provider.tile.FileTileServer;
80
import org.gvsig.raster.impl.store.DefaultRasterStore;
81
import org.gvsig.raster.impl.store.DefaultStoreFactory;
82
import org.gvsig.raster.impl.store.properties.DataStoreColorInterpretation;
83
import org.gvsig.raster.impl.store.properties.DataStoreTransparency;
84
import org.gvsig.raster.impl.store.properties.MultiProviderHistogramComputer;
85
import org.gvsig.raster.impl.store.properties.MultiProviderStatistics;
86
import org.gvsig.tools.ToolsLocator;
87
import org.gvsig.tools.locator.LocatorException;
88
/**
89
 * A data provider for a multiband image readed from different files
90
 *
91
 * @author Nacho Brodin (nachobrodin@gmail.com)
92
 */
93
public class MultiFileProvider extends AbstractRasterProvider {
94
	public static String                     NAME                     = "Multifile Raster";
95
	public static String                     DESCRIPTION              = "Multifile Raster Support";
96
	public final String                      METADATA_DEFINITION_NAME = NAME;
97
	private Extent                           viewRequest              = null;
98
	private TileServer                       tileServer               = null;
99
	private boolean                          open                     = false;
100

  
101
    private DataStoreTransparency            fileTransparency         = null;
102
    private static final Logger              logger                   = LoggerFactory.getLogger(MultiFileProvider.class);
103
    protected static String[]                formatList               = null;
104

  
105
	public static void register() {
106
		DataManagerProviderServices dataman = (DataManagerProviderServices) DALLocator.getDataManager();
107
		registerFormats();
108

  
109
		if (dataman != null && !dataman.getStoreProviders().contains(NAME)) {
110
			dataman.registerStoreProvider(NAME,
111
					MultiFileProvider.class, MultiFileDataParametersImpl.class);
112
		}
113

  
114
		if(DALFileLocator.getFilesystemServerExplorerManager() != null)
115
			DALFileLocator.getFilesystemServerExplorerManager().registerProvider(
116
					NAME, DESCRIPTION,
117
					MultiFileServerExplorer.class);
118

  
119
		if (!dataman.getExplorerProviders().contains(NAME)) {
120
			dataman.registerExplorerProvider(NAME, MultiFileServerExplorer.class, MultiFileServerExplorerParameters.class);
121
		}
122

  
123
		dataman.registerStoreFactory(NAME, DefaultStoreFactory.class);
124
	}
125

  
126
	private static void registerFormats() {
127
		formatList      = new String[] {
128
				"mff"};
129
		for (int i = 0; i < formatList.length; i++)
130
			RasterLocator.getManager().getProviderServices().addFormat(
131
					formatList[i],
132
					MultiFileProvider.class);
133
	}
134

  
135
	public MultiFileProvider() {
136
	}
137

  
138
	/**
139
	 * Opens the dataset.
140
	 * @param proj Projection
141
	 * @param fName File name
142
	 * @throws NotSupportedExtensionException
143
     * @deprecated use {@link #MultiFileProvider(URI)}, this constructor will be removed in gvSIG 2.5
144
	 */
145
	public MultiFileProvider(String params) throws NotSupportedExtensionException, OpenException {
146
		super(params);
147
        logger.info("Deprecated use of MultiFileProvider constructor");
148
		if(params instanceof String) {
149
			MultiFileDataParameters p = new MultiFileDataParametersImpl();
150
			URI uriObj;
151
            try {
152
                uriObj = new URI((String)params);
153
            } catch (URISyntaxException e) {
154
                throw new OpenException("Can't create uri from "+(String)params, e);
155
            }
156
			p.setURI(uriObj);
157
			super.init(p, null, ToolsLocator.getDynObjectManager()
158
					.createDynObject(
159
							MetadataLocator.getMetadataManager().getDefinition(
160
									DataStore.METADATA_DEFINITION_NAME)));
161
			init(p, null);
162
		}
163
	}
164

  
165
	 /**
166
     * Opens the dataset.
167
     * @param proj Projection
168
     * @param fName File name
169
     * @throws NotSupportedExtensionException
170
     */
171
    public MultiFileProvider(URI uri) throws NotSupportedExtensionException, OpenException {
172
        super(uri);
173
        MultiFileDataParameters p = new MultiFileDataParametersImpl();
174
        p.setURI(uri);
175
        super.init(
176
            p,
177
            null,
178
            ToolsLocator.getDynObjectManager().createDynObject(
179
                MetadataLocator.getMetadataManager().getDefinition(DataStore.METADATA_DEFINITION_NAME)));
180
        init(p, null);
181
    }
182

  
183
    public MultiFileProvider(MultiFileDataParametersImpl params,
184
			DataStoreProviderServices storeServices) throws NotSupportedExtensionException, OpenException {
185
		super(params, storeServices, ToolsLocator.getDynObjectManager()
186
				.createDynObject(
187
						MetadataLocator.getMetadataManager().getDefinition(
188
								DataStore.METADATA_DEFINITION_NAME)));
189
		init(params, storeServices);
190
	}
191

  
192
	/**
193
	 * Build file references
194
	 * @param proj Projection
195
	 * @param param Load parameters
196
	 * @throws NotSupportedExtensionException
197
	 */
198
	public void init(MultiFileDataParameters params,
199
			DataStoreProviderServices storeServices) throws NotSupportedExtensionException, OpenException {
200

  
201
		openFromMff();
202

  
203
		uri = getParameters().getURI();
204
		setParam(storeServices, params);
205

  
206
		try {
207
			setFirstProviderToNotTiled();
208
		} catch (InvalidSourceException e1) {
209
			throw new OpenException(e1.getMessage(), e1);
210
		}
211

  
212
		super.init();
213

  
214
		try {
215
			loadFromRmf(getRmfBlocksManager());
216
		} catch (ParsingException e) {
217
			logger.debug("Problems reading from RMF", e);
218
		}
219

  
220
		open = true;
221
	}
222

  
223
	/**
224
	 * Open from a .mff file.
225
	 * This method loads all providers and adds these to the parameters
226
	 * @throws OpenException
227
	 */
228
	private void openFromMff() throws OpenException {
229
		URI uriParam = getParameters().getURI();
230
        if (uriParam != null) {
231
            File fileFromUriParam = new File(uriParam);
232
            if (fileFromUriParam.exists()) {
233
                boolean loadedProviders = true;
234
                if (getParameters().hasProviders()) {
235
                    // solo se considera que est?n todos los providers cargados
236
                    // si existen y est?n open,
237
                    // sino se leer?n de disco
238
                    for (int i = 0; i < getParameters().getProviders().size(); i++) {
239
                        if (!getParameters().getProviders().get(i).isOpen())
240
                            loadedProviders = false;
241
                    }
242
                } else
243
                    loadedProviders = false;
244

  
245
                if (loadedProviders)
246
                    return;
247

  
248
                try {
249
                    if (getParameters().hasProviders())
250
                        getParameters().removeAllProviders();
251
                    MultiFileFormat multiFileFormat = new MultiFileFormat();
252
                    multiFileFormat = MultiFileFormatSerializer.read(multiFileFormat, fileFromUriParam.getAbsolutePath());
253
                    for (int i = 0; i < multiFileFormat.getNumberOfFiles(); i++) {
254
                        try {
255
                            File file = new File(multiFileFormat.getPathToFile(i));
256
                            if (file.exists()) {
257
                                RasterProvider prov = loadProvider(multiFileFormat.getPathToFile(i), storeServices);
258
                                getParameters().addProvider(prov);
259
                            }
260
                        } catch (ProviderNotRegisteredException e) {
261
                            throw new OpenException("A provider can't be loaded", e);
262
                        } catch (InitializeException e) {
263
                            throw new OpenException("A provider can't be initialized", e);
264
                        }
265
                    }
266
                } catch (IOException e1) {
267
                    throw new OpenException("File .mff can't be read", e1);
268
                } catch (ParsingException e1) {
269
                    throw new OpenException("File .mff can't be parsed", e1);
270
                }
271
            }
272
        }
273
	}
274

  
275
	/**
276
	 * Loads the specific provider
277
	 * @param file
278
	 * @return
279
	 * @throws NotSupportedExtensionException
280
	 * @throws FileNotSupportedException
281
	 */
282
	@SuppressWarnings("unchecked")
283
	private RasterProvider loadProvider(String file, DataStoreProviderServices storeServices) throws ProviderNotRegisteredException, InitializeException {
284
		DataManagerProviderServices dataManager = (DataManagerProviderServices)DALLocator.getDataManager();
285
		DataStoreProvider prov = null;
286

  
287
		if(file != null) {
288
			//We have to locate a provider's name which manages the selected file
289
			//A FilesystemServerExplorer will give a getProviderNames service
290
			FilesystemServerExplorerParameters paramsExplorer = (FilesystemServerExplorerParameters)dataManager.createServerExplorerParameters(FilesystemServerExplorer.NAME);
291
			FilesystemServerExplorer serverExplorer = null;
292
			try {
293
				paramsExplorer.setRoot(File.separator);
294
				serverExplorer = (FilesystemServerExplorer)dataManager.openServerExplorer(FilesystemServerExplorer.NAME, paramsExplorer);
295
			} catch (ValidateDataParametersException e) {
296
				throw new InitializeException(e);
297
			}
298
			File f = new File(file);
299
			//Gets the list of provider's name to manage the file
300
			List<String> provName = serverExplorer.getProviderNameList(f);
301
			if(provName.size() > 0) {
302
				for (int i = 0; i < provName.size(); i++) {
303
					//Gets the first provider what is not a TileProvider
304
					if(provName.get(i).compareTo("Tile Store") != 0) {
305
						DataStoreParameters newparams = dataManager.createStoreParameters(provName.get(i));
306
						((FilesystemStoreParameters)newparams).setFile(f);
307
						prov = dataManager.createProvider(storeServices, newparams);
308
					}
309
				}
310
			}
311
		}
312

  
313
		if(prov != null && prov instanceof RasterProvider) {
314
			if(((RasterProvider)prov).isRotated())
315
				throw new InitializeException("Rotation not supported tiling files", new Throwable());
316

  
317
			return (RasterProvider)prov;
318
		}
319

  
320
		return null;
321
	}
322

  
323
	/**
324
	 * Checks if the new file is compatible with the old one
325
	 * @param file
326
	 * @return
327
	 * @throws LocatorException
328
	 * @throws NotSupportedExtensionException
329
	 * @throws RasterDriverException
330
	 * @throws CloseException
331
	 */
332
	private boolean checkNewProvider(RasterProvider p) {
333
		Rectangle2D extentOrigin = getExtent().toRectangle2D();
334

  
335
		Extent extentNewFile = p.getExtent();
336

  
337
		// Comprobamos que el extent y tama�o del fichero a�adido sea igual al
338
		// fichero original. Si no es as� no abrimos la capa y mostramos un aviso
339

  
340
		double widthNewFile = (extentNewFile.getMax().getX() - extentNewFile.getMin().getX());
341
		double heightNewFile = (extentNewFile.getMax().getY() - extentNewFile.getMin().getY());
342

  
343
		if ((widthNewFile - extentOrigin.getWidth()) > 1.0 || (widthNewFile - extentOrigin.getWidth()) < -1.0 || (heightNewFile - extentOrigin.getHeight()) > 1.0
344
				|| (heightNewFile - extentOrigin.getHeight()) < -1.0) {
345
			return false;
346
		}
347

  
348
		if ((extentNewFile.getMax().getX() - extentNewFile.getMin().getX()) != extentOrigin.getWidth()
349
				|| (extentNewFile.getMax().getY() - extentNewFile.getMin().getY()) != extentOrigin.getHeight()) {
350
			return false;
351
		}
352

  
353
		return true;
354
	}
355

  
356
	public MultiFileDataParameters getParameters() {
357
		try {
358
			return (MultiFileDataParameters)parameters;
359
		} catch (ClassCastException e) {
360
			return null;
361
		}
362
	}
363

  
364
	public RasterProvider load() {
365
		return this;
366
	}
367

  
368
	public int getBandCount() {
369
		List<RasterProvider> providerList = getParameters().getProviders();
370
		int bandCount = 0;
371
		for (int i = 0; i < providerList.size(); i++) {
372
			bandCount += providerList.get(i).getBandCount();
373
		}
374
		return bandCount;
375
	}
376

  
377
	public int[] getDataType() {
378
		List<RasterProvider> providerList = getParameters().getProviders();
379
		int[] datatypes = new int[getBandCount()];
380
		int k = 0;
381
		for (int i = 0; i < providerList.size(); i++) {
382
			int[] dtByProv = providerList.get(i).getDataType();
383
			for (int j = 0; j < dtByProv.length; j++) {
384
				datatypes[k] = dtByProv[j];
385
				k++;
386
			}
387
		}
388
		return datatypes;
389
	}
390

  
391
	public URI[] getURIByProvider() {
392
		List<RasterProvider> providerList = getParameters().getProviders();
393
		URI[] uris = new URI[providerList.size()];
394
		for (int i = 0; i < uris.length; i++) {
395
			uris[i] = providerList.get(i).getURIOfFirstProvider();
396
		}
397
		return uris;
398
	}
399

  
400
	public int getBandPositionByProvider(int band) {
401
		return getSubBandByBandNumber(band)[1];
402
	}
403

  
404
	public URI getURIOfFirstProvider() {
405
		List<RasterProvider> providerList = getParameters().getProviders();
406
		return providerList.get(0).getURIOfFirstProvider();
407
	}
408

  
409

  
410
	public Extent getExtent() {
411
		List<RasterProvider> providerList = getParameters().getProviders();
412
		if(providerList != null && providerList.size() > 0)
413
			return providerList.get(0).getExtent();
414
		return null;
415
	}
416

  
417
	public AffineTransform getAffineTransform() {
418
		List<RasterProvider> providerList = getParameters().getProviders();
419
		return providerList.get(0).getAffineTransform();
420
	}
421

  
422
	public void setAffineTransform(AffineTransform t) {
423
		List<RasterProvider> providerList = getParameters().getProviders();
424
		for (int i = 0; i < providerList.size(); i++) {
425
			providerList.get(i).setAffineTransform(t);
426
		}
427
	}
428

  
429
	public int getInternalProviderCount() {
430
		return getParameters().getProviders().size();
431
	}
432

  
433
	public RasterProvider getInternalProvider(int i) {
434
		return getParameters().getProviders().get(i);
435
	}
436

  
437
	public int[] getBandCountByProvider() {
438
		List<RasterProvider> providerList = getParameters().getProviders();
439
		int[] bc = new int[providerList.size()];
440
		for (int i = 0; i < bc.length; i++) {
441
			bc[i] = providerList.get(i).getBandCount();
442
		}
443
		return bc;
444
	}
445

  
446
	public long[] getFileSizeByProvider() {
447
		List<RasterProvider> providerList = getParameters().getProviders();
448
		long[] fs = new long[providerList.size()];
449
		for (int i = 0; i < fs.length; i++) {
450
			fs[i] = ((AbstractRasterProvider)providerList.get(i)).getFileSize();
451
		}
452
		return fs;
453
	}
454

  
455
	public Point2D rasterToWorld(Point2D pt) {
456
		List<RasterProvider> providerList = getParameters().getProviders();
457
		return providerList.get(0).rasterToWorld(pt);
458
	}
459

  
460
	public Point2D worldToRaster(Point2D pt) {
461
		List<RasterProvider> providerList = getParameters().getProviders();
462
		return providerList.get(0).worldToRaster(pt);
463
	}
464

  
465
	public boolean isInside(Point2D p){
466
		List<RasterProvider> providerList = getParameters().getProviders();
467
		return providerList.get(0).isInside(p);
468
	}
469

  
470
	public double getCellSize() {
471
		List<RasterProvider> providerList = getParameters().getProviders();
472
		return providerList.get(0).getCellSize();
473
	}
474

  
475
	public Statistics getStatistics() {
476
		if(stats == null || (stats instanceof MultiProviderStatistics &&
477
				((MultiProviderStatistics)stats).getNumberOfProviders() != getParameters().getProviders().size())) {
478
			List<RasterProvider> providerList = getParameters().getProviders();
479
			stats = new MultiProviderStatistics(providerList, this);
480
		}
481

  
482
		return stats;
483
	}
484

  
485
	public HistogramComputer getHistogramComputer() {
486
		if(histogram == null ||
487
			(histogram instanceof MultiProviderHistogramComputer &&
488
			((MultiProviderHistogramComputer)histogram).getNumberOfProviders() != getParameters().getProviders().size())) {
489
			histogram = new MultiProviderHistogramComputer(this);
490
		}
491

  
492
		return histogram;
493
	}
494

  
495
	/**
496
	 * A multiband provider doesn't have a color table because this will have
497
	 * more than one band.
498
	 */
499
	public ColorTable getColorTable() {
500
		return null;
501
	}
502

  
503
	public boolean isOpen() {
504
		return open;
505
	}
506

  
507
	public void close() {
508
	}
509

  
510
	public URI translateURI(URI uri) {
511
		return uri;
512
	}
513

  
514
	/**
515
	 * Asigna el extent de la vista actual. existe un fichero .rmf debemos hacer una transformaci�n
516
	 * de la vista asignada ya que la petici�n viene en coordenadas del fichero .rmf y la vista (v)
517
	 * ha de estar en coordenadas del fichero.
518
	 */
519
	public void setView(Extent e) {
520
		viewRequest = new ExtentImpl(e);
521
	}
522

  
523
	public Extent getView() {
524
		return viewRequest;
525
	}
526

  
527
	public double getWidth() {
528
		List<RasterProvider> providerList = getParameters().getProviders();
529
		if(providerList != null && providerList.size() > 0) {
530
			return providerList.get(0).getWidth();
531
		}
532
		return 0;
533
	}
534

  
535
	public double getHeight() {
536
		List<RasterProvider> providerList = getParameters().getProviders();
537
		if(providerList != null && providerList.size() > 0) {
538
			return providerList.get(0).getHeight();
539
		}
540
		return 0;
541

  
542
	}
543

  
544
	public Object readBlock(int pos, int blockHeight, double scale)
545
		throws InvalidSetViewException, FileNotOpenException, RasterDriverException, ProcessInterruptedException {
546
		return null;
547
	}
548

  
549
	/**
550
	 * Gets a number of provider and the band of this provider
551
	 * @param band
552
	 * @return
553
	 */
554
	private int[] getSubBandByBandNumber(int band) {
555
		List<RasterProvider> providerList = getParameters().getProviders();
556
		int[] res = new int[2];
557
		int acum = 0;
558
		for (int i = 0; i < providerList.size(); i++) {
559
			acum += providerList.get(i).getBandCount();
560
			if(acum > band) {
561
				res[0] = i;
562
				int aux = (acum - providerList.get(i).getBandCount());
563
				res[1] = band - aux;
564
				return res;
565
			}
566
		}
567
		return res;
568
	}
569

  
570
	@Override
571
	public void loadBuffer(SpiRasterQuery q)
572
			throws ProcessInterruptedException, RasterDriverException {
573
		List<RasterProvider> providerList = getParameters().getProviders();
574

  
575
		for (int i = 0; i < providerList.size(); i++) {
576
			SpiRasterQuery query = (SpiRasterQuery)q.clone();
577
			BandList bandListByFile = createBandListByProvider(q.getBandList(), providerList.get(i));
578
			query.setBandList(bandListByFile);
579
			providerList.get(i).getDataSet(q);
580
		}
581

  
582
		/*for (int i = 0; i < providerList.size(); i++) {
583
			DefaultRasterStore store = new DefaultRasterStore();
584
			store.setProvider(providerList.get(i));
585
			RasterQuery query = ((DefaultRasterQuery)q).clone();
586
			BandList bandListByFile = createBandListByProvider(q.getBandList(), providerList.get(i));
587
			query.set
588
			try {
589
				store.query((RasterQuery)q);
590
			} catch (QueryException e) {
591
				throw new RasterDriverException("Error in query to the provider " + i, e);
592
			}
593
		}*/
594
	}
595

  
596
	public Object getData(int x, int y, int band)throws InvalidSetViewException, FileNotOpenException, RasterDriverException {
597
		int[] sub = getSubBandByBandNumber(band);
598
		RasterProvider prov = getParameters().getProviders().get(sub[0]);
599
		return prov.getData(x, y, sub[1]);
600
	}
601

  
602

  
603
	/*public Buffer getWindow(Extent extent, BandList bandList, Buffer rasterBuf, TaskStatus status)
604
		throws ProcessInterruptedException, RasterDriverException {
605
		providerList = getParameters().getProviders();
606

  
607
		DefaultRasterQuery q = (DefaultRasterQuery)RasterLocator.getManager().createQuery();
608
		q.setAreaOfInterest(extent);
609
		q.setBandList(bandList);
610
		q.setBuffer(rasterBuf);
611

  
612
		for (int i = 0; i < providerList.size(); i++) {
613
			rasterBuf = ((DefaultRasterProvider)providerList.get(i)).getDataSet(q);
614
		}
615
		return rasterBuf;
616
	}*/
617

  
618
	/*public Buffer getWindow(double ulx, double uly, double w, double h,
619
			BandList bandList, Buffer rasterBuf, boolean adjustToExtent, TaskStatus status) throws ProcessInterruptedException, RasterDriverException {
620
		providerList = getParameters().getProviders();
621

  
622
		DefaultRasterQuery q = (DefaultRasterQuery)RasterLocator.getManager().createQuery();
623
		q.setAreaOfInterest(ulx, uly, w, h);
624
		q.setBandList(bandList);
625
		q.setBuffer(rasterBuf);
626
		q.setAdjustToExtent(adjustToExtent);
627

  
628
		for (int i = 0; i < providerList.size(); i++) {
629
			rasterBuf = ((DefaultRasterProvider)providerList.get(i)).getDataSet(q);
630
		}
631
		return rasterBuf;
632
	}*/
633

  
634
	/*public Buffer getWindow(Extent extent, int bufWidth, int bufHeight,
635
			BandList bandList, Buffer rasterBuf, boolean adjustToExtent, TaskStatus status) throws ProcessInterruptedException, RasterDriverException {
636
		providerList = getParameters().getProviders();
637

  
638
		DefaultRasterQuery q = (DefaultRasterQuery)RasterLocator.getManager().createQuery();
639
		q.setAreaOfInterest(extent, bufWidth, bufHeight);
640
		q.setBuffer(rasterBuf);
641
		q.setAdjustToExtent(adjustToExtent);
642

  
643
		for (int i = 0; i < providerList.size(); i++) {
644
			BandList bandListByFile = createBandListByProvider(bandList, providerList.get(i));
645
			if(bandListByFile != null) {
646
				q.setBandList(bandListByFile);
647
				rasterBuf = ((DefaultRasterProvider)providerList.get(i)).getDataSet(q);
648
			}
649
		}
650
		return rasterBuf;
651
	}*/
652

  
653
	/**
654
	 * Creates a <code>BandList</code> for each provider of this <code>MultiFileProvider</code>.
655
	 * When a request is made, the <code>BandList</code> is global for all files. A specific
656
	 * <code>BandList</code> has to be built for each provider.
657
	 * @param globalBandList
658
	 * @param provider
659
	 * @return
660
	 */
661
	private BandList createBandListByProvider(BandList globalBandList, RasterProvider provider) {
662
		if(provider.isTiled()) {
663
			//Si los proveedores que hay por debajo son tileados estos crear�n su propio buffer para escribir
664
			//cada tile. Por ello no usar� el buffer que viene del store. Esto quiere decir que el BandList ha
665
			//de ser distinto para que escriba bien en su buffer
666

  
667
			//TODO: De momento no se permiten MultiFiles con proveedores tileados. Esto es porque
668
			//los tiles crean su propio buffer y no escriben en el buffer creado en el Store
669

  
670
		} else {
671
			BandList bandListByFile = new BandListImpl();
672
			String pathUriProvider = new File(provider.getURI()).getAbsolutePath();
673
            for (int i = 0; i < provider.getBandCount(); i++) {
674
				try {
675
					bandListByFile.addBand(new DatasetBandImpl(pathUriProvider, i, provider.getDataType()[0], provider.getBandCount()));
676
				} catch (BandNotFoundInListException e1) {
677
				}
678
			}
679

  
680
			boolean areThereBandsToDraw = false;
681
			for (int i = 0; i < provider.getBandCount(); i++) {
682
				int[] bandsToDrawByProviderBand = globalBandList.getBufferBandToDraw(pathUriProvider, i);
683
				if(bandsToDrawByProviderBand != null) {
684
					areThereBandsToDraw = true;
685
					for (int j = 0; j < bandsToDrawByProviderBand.length; j++) {
686
						bandListByFile.getBand(i).addPositionToDrawInBuffer(bandsToDrawByProviderBand[j]);
687
					}
688
				}
689
			}
690

  
691
			if(areThereBandsToDraw)
692
				return bandListByFile;
693
		}
694
		return null;
695
	}
696

  
697
	/*public Buffer getWindow(int x, int y, int w, int h,
698
			BandList bandList, Buffer rasterBuf, TaskStatus status) throws ProcessInterruptedException, RasterDriverException {
699
		providerList = getParameters().getProviders();
700
		DefaultRasterQuery q = (DefaultRasterQuery)RasterLocator.getManager().createQuery();
701
		q.setAreaOfInterest(x, y, w, h);
702
		q.setBandList(bandList);
703
		q.setBuffer(rasterBuf);
704
		for (int i = 0; i < providerList.size(); i++) {
705
			rasterBuf = ((DefaultRasterProvider)providerList.get(i)).getDataSet(q);
706
		}
707
		return rasterBuf;
708
	}*/
709

  
710
	public int getBlockSize() {
711
		return 0;
712
	}
713

  
714
	public ColorInterpretation getColorInterpretation() {
715
		if(super.getColorInterpretation() == null) {
716
			String[] cis = new String[getBandCount()];
717
			for (int i = 0; i < cis.length; i++) {
718
				if(i == 0)
719
					cis[i] = ColorInterpretation.GRAY_BAND;
720
				else
721
					cis[i] = ColorInterpretation.UNDEF_BAND;
722
			}
723
			setColorInterpretation(new DataStoreColorInterpretation(cis));
724
		}
725
		return super.getColorInterpretation();
726
	}
727

  
728
	public DataStoreTransparency getTransparency() {
729
		if(fileTransparency == null)
730
			fileTransparency = new DataStoreTransparency(getColorInterpretation());
731
		return fileTransparency;
732
	}
733

  
734
	/**
735
	 * Informa de si el driver ha supersampleado en el �ltimo dibujado. Es el driver el que colocar�
736
	 * el valor de esta variable cada vez que dibuja.
737
	 * @return true si se ha supersampleado y false si no se ha hecho.
738
	 */
739
	public boolean isSupersampling() {
740
		return false;
741
	}
742

  
743
	public int getOverviewCount(int band) throws BandAccessException, RasterDriverException {
744
		if(band >= getBandCount())
745
			throw new BandAccessException("Wrong band");
746
		return 0;
747
	}
748

  
749
	public int getOverviewWidth(int band, int overview) throws BandAccessException, RasterDriverException {
750
		if (band >= getBandCount())
751
			throw new BandAccessException("Wrong band");
752
		return 0;
753
	}
754

  
755
	public int getOverviewHeight(int band, int overview) throws BandAccessException, RasterDriverException {
756
		if (band >= getBandCount())
757
			throw new BandAccessException("Wrong band");
758
		return 0;
759
	}
760

  
761
	public boolean isMultiFile() {
762
		return true;
763
	}
764

  
765
	public boolean isOverviewsSupported() {
766
		return true;
767
	}
768

  
769
	public boolean isReproyectable() {
770
		return true;
771
	}
772

  
773
	public String getProviderName() {
774
		return NAME;
775
	}
776

  
777
	public void setStatus(RasterProvider provider) {
778
		if(provider instanceof MultiFileProvider) {
779
			//Not implemented yet
780
		}
781
	}
782

  
783
	public boolean isTimeSupported() {
784
		return true;
785
	}
786

  
787
	public URI getURIByBand(int band) {
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff