Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / layers / VectorialFileAdapter.java @ 3959

History | View | Annotate | Download (6.67 KB)

1 1100 fjp
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41 214 fernando
package com.iver.cit.gvsig.fmap.layers;
42
43 1828 fernando
import java.io.File;
44
import java.io.IOException;
45 442 vcaballero
46 1828 fernando
import com.hardcode.driverManager.DriverLoadException;
47 408 fernando
import com.hardcode.gdbms.engine.data.DataSource;
48
import com.hardcode.gdbms.engine.data.DataSourceFactory;
49
import com.hardcode.gdbms.engine.data.NoSuchTableException;
50 1836 fernando
import com.hardcode.gdbms.engine.data.driver.DriverException;
51 1828 fernando
import com.hardcode.gdbms.engine.data.driver.ObjectDriver;
52 3248 fjp
import com.hardcode.gdbms.engine.values.Value;
53
import com.iver.cit.gvsig.fmap.core.DefaultFeature;
54
import com.iver.cit.gvsig.fmap.core.IFeature;
55 305 fjp
import com.iver.cit.gvsig.fmap.core.IGeometry;
56 214 fernando
import com.iver.cit.gvsig.fmap.drivers.DriverIOException;
57 504 fernando
import com.iver.cit.gvsig.fmap.drivers.ExternalData;
58 214 fernando
import com.iver.cit.gvsig.fmap.drivers.VectorialFileDriver;
59 229 vcaballero
60
61 214 fernando
/**
62 229 vcaballero
 * Adapta un driver de fichero vectorial a la interfaz vectorial, manteniendo
63
 * adem?s el estado necesario por una capa vectorial de fichero (el nombre del
64
 * fichero)
65 214 fernando
 */
66 3601 fjp
public class VectorialFileAdapter extends VectorialAdapter {
67 504 fernando
        private boolean driverInitialized = false;
68
        private File file;
69 3959 caballero
        private SelectableDataSource ds;
70 546 fernando
        private String dataSourceName;
71 3959 caballero
72 1327 fjp
        /**
73
         * <code>reference_count</code> lleva un contador de referencias a este
74 3959 caballero
         * adaptador, de forma que si la cuenta de referencias no es cero, no
75 1327 fjp
         * abrimos otra vez el adaptador porque se supone que est? abierto.
76
         */
77
        private int reference_count = 0;
78 229 vcaballero
79 504 fernando
        /**
80
         * Crea un nuevo VectorialFileAdapter.
81
         *
82 1034 vcaballero
         * @param file Fichero.
83 504 fernando
         */
84
        public VectorialFileAdapter(File file) {
85
                this.file = file;
86
        }
87 214 fernando
88 504 fernando
        /**
89 1034 vcaballero
         * Devuelve driver.
90 504 fernando
         *
91 1034 vcaballero
         * @return VectorialFileDriver.
92 504 fernando
         */
93 3936 fjp
        VectorialFileDriver getFileDriver() {
94 504 fernando
                return (VectorialFileDriver) getDriver();
95
        }
96 229 vcaballero
97 504 fernando
        /**
98
         * incrementa el contador de las veces que se ha abierto el fichero.
99
         * Solamente cuando el contador est? a cero pide al driver que abra el
100
         * fichero
101
         *
102
         * @throws DriverIOException
103
         */
104
        public void start() throws DriverIOException {
105
                try {
106 1327 fjp
                    if (reference_count == 0)
107
                    {
108
                                getFileDriver().open(file);
109 3959 caballero
110 1327 fjp
                                if (!driverInitialized) {
111
                                        getFileDriver().initialize();
112
                                        driverInitialized = true;
113
                                }
114
                    }
115
                        reference_count++;
116 229 vcaballero
117 504 fernando
                } catch (IOException e) {
118
                        throw new DriverIOException(e);
119
                }
120
        }
121 214 fernando
122 504 fernando
        /**
123
         * decrementa el contador de n?mero de aperturas y cuando llega a cero pide
124
         * al driver que cierre el fichero
125
         *
126
         * @throws DriverIOException
127
         */
128
        public void stop() throws DriverIOException {
129
                try {
130 1327 fjp
                    if (reference_count == 0)
131
                    {
132
                        getFileDriver().close();
133
                    }
134
                    else
135
                        if (reference_count < 0)
136 3959 caballero
                            throw new RuntimeException("Contador de referencias de driver ="
137 1327 fjp
                                    + reference_count + ". Demasiados stop().");
138
                    reference_count--;
139 504 fernando
                } catch (IOException e) {
140
                        throw new DriverIOException(e);
141
                }
142
        }
143 214 fernando
144 504 fernando
        /**
145
         * @see com.iver.cit.gvsig.fmap.layers.ReadableVectorial#getShape(int)
146
         */
147
        public IGeometry getShape(int index) throws DriverIOException {
148
                try {
149
                        return getFileDriver().getShape(index);
150
                } catch (IOException e) {
151
                        throw new DriverIOException(e);
152
                }
153
        }
154 214 fernando
155 504 fernando
        /**
156
         * @see com.iver.cit.gvsig.fmap.layers.ReadableVectorial#getShapeType()
157
         */
158
        public int getShapeType() throws DriverIOException {
159
                return getFileDriver().getShapeType();
160
        }
161 408 fernando
162 504 fernando
        /**
163
         * @see com.iver.cit.gvsig.fmap.layers.VectorialAdapter#getRecordset()
164
         */
165 3959 caballero
        public SelectableDataSource getRecordset() throws DriverLoadException {
166 508 fernando
                try {
167 1034 vcaballero
                        if (ds == null) {
168
                                VectorialFileDriver driver = (VectorialFileDriver) getDriver();
169 442 vcaballero
170 1034 vcaballero
                                if (driver instanceof ExternalData) {
171
                                        ExternalData ed = (ExternalData) driver;
172
                                        File dataFile = ed.getDataFile(file);
173
                                        String driverName = ed.getDataDriverName();
174 442 vcaballero
175 1828 fernando
                                        String name = LayerFactory.getDataSourceFactory().addFileDataSource(driverName,
176 2217 fernando
                                                dataFile.getAbsolutePath());
177 3959 caballero
                                        ds = new SelectableDataSource(LayerFactory.getDataSourceFactory().createRandomDataSource(name, DataSourceFactory.AUTOMATIC_OPENING));
178 1828 fernando
                                } else if (driver instanceof ObjectDriver) {
179 2217 fernando
                                        String name = LayerFactory.getDataSourceFactory().addDataSource((ObjectDriver)driver);
180 3959 caballero
                                        ds = new SelectableDataSource(LayerFactory.getDataSourceFactory().createRandomDataSource(name, DataSourceFactory.AUTOMATIC_OPENING));
181 1034 vcaballero
                                } else {
182
                                        return null;
183
                                }
184 463 fernando
                        }
185 504 fernando
                } catch (NoSuchTableException e) {
186
                        throw new RuntimeException(
187
                                "Error de implementaci?n, se ha a?adido una tabla y luego esa tabla no ha podido ser cargada");
188 1836 fernando
                } catch (DriverException e) {
189
                        throw new RuntimeException(e);
190 504 fernando
                }
191
192 508 fernando
                return ds;
193 504 fernando
        }
194 442 vcaballero
195 504 fernando
        /**
196 1034 vcaballero
         * Devuelve el fichero.
197 504 fernando
         *
198 1034 vcaballero
         * @return Fichero.
199 504 fernando
         */
200
        public File getFile() {
201
                return file;
202
        }
203 3959 caballero
204 3248 fjp
    public IFeature getFeature(int numReg) throws com.iver.cit.gvsig.fmap.DriverException
205
    {
206
        IGeometry geom;
207
        IFeature feat = null;
208
        try {
209
            geom = getShape(numReg);
210
            DataSource rs = getRecordset();
211
            Value[] regAtt = new Value[rs.getFieldCount()];
212
            for (int fieldId=0; fieldId < rs.getFieldCount(); fieldId++ )
213 3959 caballero
            {
214 3248 fjp
                regAtt[fieldId] =  rs.getFieldValue(numReg, fieldId);
215
            }
216 3959 caballero
217 3248 fjp
            feat = new DefaultFeature(geom, regAtt, "" + numReg);
218
        } catch (DriverIOException e) {
219
            throw new com.iver.cit.gvsig.fmap.DriverException(e);
220
        } catch (DriverLoadException e) {
221
            throw new com.iver.cit.gvsig.fmap.DriverException(e);
222
        } catch (com.hardcode.gdbms.engine.data.driver.DriverException e) {
223
            throw new com.iver.cit.gvsig.fmap.DriverException(e);
224
        }
225
        return feat;
226
    }
227 3959 caballero
228 214 fernando
}