Revision 38659

View differences:

tags/v2_0_0_Build_2050/extensions/extDwg/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Thu Aug 09 12:36:04 CEST 2012
3
buildNumber=2058
tags/v2_0_0_Build_2050/extensions/extDwg/src-test/org/gvsig/dwg/fmap/dal/store/dwg/TestDWG2004.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.dwg.fmap.dal.store.dwg;
29

  
30
import java.io.File;
31

  
32
public class TestDWG2004 extends TestDWG {
33
	public static File file_prueba = new File(TestDWG.class.getResource(
34
			"data/V2004.dwg").getFile());
35
}
0 36

  
tags/v2_0_0_Build_2050/extensions/extDwg/src-test/org/gvsig/dwg/fmap/dal/store/dwg/TestDWG.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
* 2008 IVER T.I. S.A.   {{Task}}
26
*/
27

  
28
package org.gvsig.dwg.fmap.dal.store.dwg;
29

  
30
import java.io.File;
31

  
32
import org.gvsig.fmap.dal.DataStoreParameters;
33
import org.gvsig.fmap.dal.exception.DataException;
34
import org.gvsig.fmap.dal.feature.BaseTestFeatureStore;
35
import org.gvsig.fmap.dal.feature.FeatureStore;
36

  
37
public class TestDWG extends BaseTestFeatureStore {
38

  
39
	protected boolean testDXFInitialized = false;
40

  
41
	public static File file_prueba = new File(TestDWG.class.getResource(
42
			"data/V2000.dwg").getFile());
43

  
44
	/*
45
	 * (non-Javadoc)
46
	 *
47
	 * @see
48
	 * org.gvsig.fmap.dal.feature.BaseTestFeatureStore#getDefaultDataStoreParameters
49
	 * ()
50
	 */
51
	public DataStoreParameters getDefaultDataStoreParameters()
52
			throws DataException {
53
		DWGStoreParameters dwgParameters = null;
54

  
55
		dwgParameters = (DWGStoreParameters) dataManager
56
				.createStoreParameters(DWGStoreProvider.NAME);
57

  
58
		dwgParameters.setFile(file_prueba);
59
		dwgParameters.setCRS("EPSG:23030");
60
		return dwgParameters;
61
	}
62

  
63
	/*
64
	 * (non-Javadoc)
65
	 *
66
	 * @see org.gvsig.fmap.dal.feature.BaseTestFeatureStore#hasExplorer()
67
	 */
68
	public boolean hasExplorer() {
69
		// TODO Auto-generated method stub
70
		return false;
71
	}
72

  
73
	public boolean usesResources() {
74
		return true;
75
	}
76

  
77

  
78
	public void testLegendAndLabeling() throws Exception {
79
		DataStoreParameters params = getDefaultDataStoreParameters();
80
		FeatureStore store = (FeatureStore) dataManager.openStore(params
81
				.getDataStoreName(), params);
82

  
83
		assertNotNull(store.invokeDynMethod("getLegend", null));
84
		assertNotNull(store.invokeDynMethod("getLabeling", null));
85
		store.dispose();
86
	}
87
}
0 88

  
tags/v2_0_0_Build_2050/extensions/extDwg/config/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<libraries library-dir="lib">
4
	</libraries>
5
	<depends plugin-name="org.gvsig.app"/>
6
		<resourceBundle name="text"/>
7
	<extensions>
8
		<extension class-name="org.gvsig.dwg.DWGRegisterExtension"
9
			description="DWG Driver"
10
			active="true">
11
		</extension>
12

  
13
	</extensions>
14
</plugin-config>
0 15

  
tags/v2_0_0_Build_2050/extensions/extDwg/src/org/gvsig/dwg/DWGRegisterExtension.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.dwg;
23

  
24
import org.gvsig.andami.IconThemeHelper;
25
import org.gvsig.andami.plugins.Extension;
26
import org.gvsig.dwg.fmap.dal.store.dwg.DWGLibrary;
27
import org.gvsig.dwg.fmap.dal.store.dwg.DWGStoreProvider;
28
import org.gvsig.fmap.mapcontext.MapContextLocator;
29

  
30
/**
31
 * Dummy DWG extension, as all the registration happens in the
32
 * {@link DWGLibrary}.
33
 * 
34
 * @author gvSIG Team
35
 */
36
public class DWGRegisterExtension extends Extension {
37

  
38
	public void execute(String actionCommand) {
39
		// Nothing to do
40
	}
41

  
42
	public void initialize() {
43
		IconThemeHelper.registerIcon("layer", "layer-icon-dwg", this);
44
	}
45

  
46
	public void postInitialize() {
47
		MapContextLocator.getMapContextManager().registerIconLayer(DWGStoreProvider.NAME, "layer-icon-dwg");
48
	}
49

  
50
	public boolean isEnabled() {
51
		// Nothing to do
52
		return false;
53
	}
54

  
55
	public boolean isVisible() {
56
		// Nothing to do
57
		return false;
58
	}
59

  
60
}
0 61

  
tags/v2_0_0_Build_2050/extensions/extDwg/src/org/gvsig/dwg/fmap/dal/store/dwg/DWGStoreProvider.java
1
package org.gvsig.dwg.fmap.dal.store.dwg;
2

  
3
import java.io.File;
4
import java.io.IOException;
5
import java.util.ArrayList;
6
import java.util.HashMap;
7
import java.util.Iterator;
8
import java.util.List;
9
import java.util.Map;
10

  
11
import org.cresques.cts.IProjection;
12
import org.gvsig.dwg.lib.DwgFile;
13
import org.gvsig.dwg.lib.DwgObject;
14
import org.gvsig.dwg.lib.DwgVersionNotSupportedException;
15
import org.gvsig.dwg.lib.IDwg2FMap;
16
import org.gvsig.dwg.lib.IDwg3DTestable;
17
import org.gvsig.dwg.lib.objects.DwgMText;
18
import org.gvsig.dwg.lib.objects.DwgText;
19
import org.gvsig.fmap.dal.DALLocator;
20
import org.gvsig.fmap.dal.DataManager;
21
import org.gvsig.fmap.dal.DataServerExplorer;
22
import org.gvsig.fmap.dal.DataStoreNotification;
23
import org.gvsig.fmap.dal.DataTypes;
24
import org.gvsig.fmap.dal.FileHelper;
25
import org.gvsig.fmap.dal.exception.DataException;
26
import org.gvsig.fmap.dal.exception.InitializeException;
27
import org.gvsig.fmap.dal.exception.OpenException;
28
import org.gvsig.fmap.dal.exception.ReadException;
29
import org.gvsig.fmap.dal.exception.ValidateDataParametersException;
30
import org.gvsig.fmap.dal.feature.EditableFeatureAttributeDescriptor;
31
import org.gvsig.fmap.dal.feature.EditableFeatureType;
32
import org.gvsig.fmap.dal.feature.FeatureType;
33
import org.gvsig.fmap.dal.feature.exception.CreateGeometryException;
34
import org.gvsig.fmap.dal.feature.exception.PerformEditingException;
35
import org.gvsig.fmap.dal.feature.spi.FeatureProvider;
36
import org.gvsig.fmap.dal.feature.spi.FeatureStoreProviderServices;
37
import org.gvsig.fmap.dal.feature.spi.memory.AbstractMemoryStoreProvider;
38
import org.gvsig.fmap.dal.resource.ResourceAction;
39
import org.gvsig.fmap.dal.resource.exception.AccessResourceException;
40
import org.gvsig.fmap.dal.resource.file.FileResource;
41
import org.gvsig.fmap.dal.resource.spi.ResourceConsumer;
42
import org.gvsig.fmap.dal.resource.spi.ResourceProvider;
43
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorer;
44
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorerParameters;
45
import org.gvsig.fmap.dal.spi.DataStoreProviderServices;
46
import org.gvsig.fmap.geom.Geometry;
47
import org.gvsig.fmap.geom.GeometryLocator;
48
import org.gvsig.fmap.geom.GeometryManager;
49
import org.gvsig.fmap.geom.Geometry.SUBTYPES;
50
import org.gvsig.fmap.geom.exception.CreateEnvelopeException;
51
import org.gvsig.fmap.geom.primitive.Envelope;
52
import org.gvsig.fmap.geom.primitive.Point;
53
import org.gvsig.tools.dynobject.exception.DynMethodException;
54
import org.gvsig.tools.exception.NotYetImplemented;
55
import org.gvsig.tools.persistence.PersistentState;
56
import org.gvsig.tools.persistence.exception.PersistenceException;
57
import org.slf4j.Logger;
58
import org.slf4j.LoggerFactory;
59

  
60
public class DWGStoreProvider extends AbstractMemoryStoreProvider implements
61
		ResourceConsumer {
62
	private static final Logger logger = LoggerFactory.getLogger(DWGStoreProvider.class);
63

  
64
	public static final String NAME = "DWG";
65
	public static final String DESCRIPTION = "DWG file";
66
	public static final String METADATA_DEFINITION_NAME = NAME;
67

  
68
	public static final String NAME_FIELD_ID = "ID";
69
	public static final String NAME_FIELD_GEOMETRY = "Geometry";
70
	public static final String NAME_FIELD_ENTITY = "Entity";
71
	public static final String NAME_FIELD_LAYER = "Layer";
72
	public static final String NAME_FIELD_COLOR = "Color";
73
	public static final String NAME_FIELD_ELEVATION = "Elevation";
74
	public static final String NAME_FIELD_THICKNESS = "Thickness";
75
	public static final String NAME_FIELD_TEXT = "Text";
76
	public static final String NAME_FIELD_HEIGHTTEXT = "HeightText";
77
	public static final String NAME_FIELD_ROTATIONTEXT = "Rotation";
78

  
79
	private int ID_FIELD_ID = 0;
80
	private int ID_FIELD_GEOMETRY = 1;
81
	private int ID_FIELD_ENTITY = 2;
82
	private int ID_FIELD_LAYER = 3;
83
	private int ID_FIELD_COLOR = 4;
84
	private int ID_FIELD_ELEVATION = 5;
85
	private int ID_FIELD_THICKNESS = 6;
86
	private int ID_FIELD_TEXT = 7;
87
	private int ID_FIELD_HEIGHTTEXT = 8;
88
	private int ID_FIELD_ROTATIONTEXT = 9;
89

  
90
	private IProjection projection;
91
	private ResourceProvider resource;
92
	private LegendBuilder legendBuilder;
93

  
94
	private long counterNewsOIDs = 0;
95
	protected GeometryManager geomManager = GeometryLocator.getGeometryManager();
96

  
97
	public DWGStoreProvider(DWGStoreParameters parameters,
98
			DataStoreProviderServices storeServices) throws InitializeException {
99
		super(parameters, storeServices, FileHelper
100
				.newMetadataContainer(METADATA_DEFINITION_NAME));
101

  
102
		counterNewsOIDs = 0;
103
		//		projection = CRSFactory.getCRS(getParameters().getSRSID());
104

  
105
		File file = getDWGParameters().getFile();
106
		resource = this.createResource(
107
				FileResource.NAME,
108
				new Object[] { file.getAbsolutePath() }
109
			);
110

  
111
		resource.addConsumer(this);
112

  
113
		this.projection = this.getDWGParameters().getCRS();
114

  
115

  
116
		try {
117
			legendBuilder = (LegendBuilder) this.invokeDynMethod(
118
					LegendBuilder.DYNMETHOD_BUILDER_NAME, null);
119
		} catch (DynMethodException e) {
120
			legendBuilder = null;
121
		} catch (Exception e) {
122
			throw new InitializeException(e);
123
		}
124

  
125
		this.initializeFeatureTypes();
126
	}
127

  
128
	private DWGStoreParameters getDWGParameters() {
129
		return (DWGStoreParameters) this.getParameters();
130
	}
131

  
132

  
133
	public String getProviderName() {
134
		return NAME;
135
	}
136

  
137
	public boolean allowWrite() {
138
		return false;
139
	}
140

  
141
	public Object getLegend() throws OpenException {
142
		this.open();
143
		if (legendBuilder == null) {
144
			return null;
145
		}
146
		return legendBuilder.getLegend();
147
	}
148

  
149
	public Object getLabeling() throws OpenException {
150
		this.open();
151
		if (legendBuilder == null) {
152
			return null;
153
		}
154
		return legendBuilder.getLabeling();
155
	}
156

  
157
	private class DWGData {
158
		public ArrayList data = null;
159
		public FeatureType defaultFType = null;
160
		public List fTypes = null;
161
		public Envelope envelope = null;
162
		public IProjection projection;
163
		public LegendBuilder legendBuilder = null;
164
		public Envelope getEnvelopeCopy() throws CreateEnvelopeException {
165
			if (envelope == null) {
166
				return null;
167
			}
168
			Envelope newEnvelope;
169
			if (envelope.getDimension() == 2) {
170
				newEnvelope = geomManager.createEnvelope(SUBTYPES.GEOM2D);
171
			} else {
172
				newEnvelope = geomManager.createEnvelope(SUBTYPES.GEOM3D);
173

  
174
			}
175
			newEnvelope.setLowerCorner(envelope.getLowerCorner());
176
			newEnvelope.setUpperCorner(envelope.getUpperCorner());
177
			return newEnvelope;
178
		}
179
	}
180

  
181
	private AbstractMemoryStoreProvider getStoreProvider() {
182
		return this;
183
	}
184

  
185
	public void open() throws OpenException {
186
		if (this.data != null) {
187
			return;
188
		}
189
		// try {
190
		// this.resource.begin();
191
		// } catch (ResourceExecuteException e2) {
192
		// try {
193
		// throw new OpenException(resource.getName(), e2);
194
		// } catch (AccessResourceException e1) {
195
		// throw new OpenException(this.getName(), e2);
196
		// }
197
		//
198
		// }
199
		try {
200
			getResource().execute(new ResourceAction() {
201
				public Object run() throws Exception {
202
					ResourceProvider resource = getResource();
203
					DWGData dwgData = null;
204
					FeatureStoreProviderServices store = getStoreServices();
205
					if (resource.getData() != null) {
206
						dwgData =
207
								(DWGData) ((Map) resource.getData()).get(projection.getAbrev());
208
						// OJO no es del todo correcto (puede llevar
209
						// reproyeccion)
210
					} else {
211
						resource.setData(new HashMap());
212
					}
213
					if (dwgData == null) {
214
						dwgData = new DWGData();
215
						dwgData.data = new ArrayList();
216
						data = dwgData.data;
217
						counterNewsOIDs = 0;
218
						Reader reader =
219
								new Reader().initialice(getStoreProvider(),
220
										(File)resource.get(),
221
										projection, legendBuilder);
222
						reader.begin(store);
223
						dwgData.defaultFType =
224
								reader.getDefaultType().getNotEditableCopy();
225
						ArrayList types = new ArrayList();
226
						Iterator it = reader.getTypes().iterator();
227
						EditableFeatureType fType;
228
						while (it.hasNext()) {
229
							fType = (EditableFeatureType) it.next();
230
							if (fType.getId().equals(
231
									dwgData.defaultFType.getId())) {
232
								types.add(dwgData.defaultFType);
233
							} else {
234
								types.add(fType.getNotEditableCopy());
235
							}
236
						}
237
						dwgData.fTypes = types;
238
						dwgData.legendBuilder = legendBuilder;
239

  
240
						resource.notifyOpen();
241
						store.setFeatureTypes(dwgData.fTypes,
242
								dwgData.defaultFType);
243
						reader.load();
244
						// this.envelope = reader.getEnvelope();
245

  
246
						dwgData.envelope = reader.getEnvelope();
247

  
248

  
249
						dwgData.projection = projection;
250

  
251
						reader.end();
252
						resource.notifyClose();
253
						((Map) resource.getData()).put(projection.getAbrev(),
254
								dwgData); // OJO la reproyeccion
255
					}
256

  
257
					data = dwgData.data;
258
					store.setFeatureTypes(dwgData.fTypes, dwgData.defaultFType);
259
					legendBuilder = dwgData.legendBuilder;
260
					setDynValue("Envelope", dwgData.getEnvelopeCopy());
261
					setDynValue("CRS", projection);
262
					counterNewsOIDs = data.size();
263
					return null;
264
				}
265
			});
266
		} catch (Exception e) {
267
			this.data = null;
268
			try {
269
				throw new OpenException(resource.getName(), e);
270
			} catch (AccessResourceException e1) {
271
				throw new OpenException(this.getProviderName(), e);
272
			}
273
			// } finally {
274
			// this.resource.end();
275
		}
276
	}
277

  
278

  
279
	public DataServerExplorer getExplorer() throws ReadException {
280
		DataManager manager = DALLocator.getDataManager();
281
		FilesystemServerExplorerParameters params;
282
		try {
283
			params = (FilesystemServerExplorerParameters) manager
284
				.createServerExplorerParameters(FilesystemServerExplorer.NAME);
285
			params.setRoot(this.getDWGParameters().getFile().getParent());
286
			return manager.createServerExplorer(params);
287
		} catch (DataException e) {
288
			throw new ReadException(this.getProviderName(), e);
289
		} catch (ValidateDataParametersException e) {
290
			throw new ReadException(this.getProviderName(), e);
291
		}
292

  
293
	}
294

  
295

  
296

  
297
	public void performChanges(Iterator deleteds, Iterator inserteds, Iterator updateds, Iterator originalFeatureTypesUpdated) throws PerformEditingException {
298
		// FIXME Exception
299
		throw new UnsupportedOperationException();
300
	}
301

  
302
	public class Reader {
303
		private File file;
304
		private String fileName;
305
		private IProjection projection;
306
		private List types;
307
		private LegendBuilder leyendBuilder;
308
		private AbstractMemoryStoreProvider store;
309
		private Envelope envelope;
310
		private DwgFile dwgFeatureFile;
311

  
312
		public Reader initialice(AbstractMemoryStoreProvider store, File file,
313
				IProjection projection,
314
				LegendBuilder leyendBuilder) {
315
			this.store = store;
316
			this.file = file;
317
			this.fileName = file.getAbsolutePath();
318
			this.projection = projection;
319
			this.leyendBuilder = leyendBuilder;
320
			if (leyendBuilder != null) {
321
				leyendBuilder.initialize(store);
322
			}
323
			return this;
324
		}
325

  
326
		public Envelope getEnvelope() {
327
			return this.envelope;
328
		}
329

  
330
		public void begin(FeatureStoreProviderServices store) throws UnsupportedDWGVersionException, ReadException {
331
		    dwgFeatureFile = new DwgFile(file.getAbsolutePath());
332

  
333
            try {
334
                dwgFeatureFile.read();
335
            } catch (DwgVersionNotSupportedException e1) {
336
                throw new UnsupportedDWGVersionException(file.getName(), e1);
337
            } catch (IOException e) {
338
                throw new ReadException(NAME, e);
339
            }
340

  
341
			EditableFeatureType featureType = store.createFeatureType();
342

  
343
			featureType.setHasOID(true);
344

  
345
			ID_FIELD_ID = featureType.add(NAME_FIELD_ID, DataTypes.INT)
346
					.setDefaultValue(Integer.valueOf(0))
347
				.getIndex();
348

  
349
			EditableFeatureAttributeDescriptor attr = featureType.add(
350
					NAME_FIELD_GEOMETRY, DataTypes.GEOMETRY);
351
			attr.setSRS(this.projection);
352
			attr.setGeometryType(Geometry.TYPES.GEOMETRY);
353
			boolean is3dFile = dwgFeatureFile.isDwg3DFile();
354
			if (is3dFile){
355
			    attr.setGeometrySubType(Geometry.SUBTYPES.GEOM3D);
356
			}else{
357
			    attr.setGeometrySubType(Geometry.SUBTYPES.GEOM2D);
358
			}
359
			ID_FIELD_GEOMETRY = attr.getIndex();
360

  
361
			featureType.setDefaultGeometryAttributeName(NAME_FIELD_GEOMETRY);
362

  
363
			// FIXME: Cual es el size y el valor por defecto para Entity ?
364
			ID_FIELD_ENTITY = featureType.add(NAME_FIELD_ENTITY,
365
					DataTypes.STRING, 100)
366
					.setDefaultValue("")
367
					.getIndex();
368

  
369
			// FIXME: Cual es el size de Layer ?
370
			ID_FIELD_LAYER = featureType.add(NAME_FIELD_LAYER,
371
					DataTypes.STRING, 100)
372
					.setDefaultValue(
373
					"default").getIndex();
374

  
375
			ID_FIELD_COLOR = featureType.add(NAME_FIELD_COLOR,
376
					DataTypes.INT)
377
					.setDefaultValue(
378
					Integer.valueOf(0)).getIndex();
379

  
380
			ID_FIELD_ELEVATION = featureType.add(NAME_FIELD_ELEVATION,
381
					DataTypes.DOUBLE)
382
					.setDefaultValue(
383
					Double.valueOf(0)).getIndex();
384

  
385
			ID_FIELD_THICKNESS = featureType.add(NAME_FIELD_THICKNESS,
386
					DataTypes.DOUBLE)
387
					.setDefaultValue(
388
					Double.valueOf(0)).getIndex();
389

  
390
			// FIXME: Cual es el size de Text ?
391
			ID_FIELD_TEXT = featureType.add(NAME_FIELD_TEXT,
392
					DataTypes.STRING, 100)
393
					.setDefaultValue("")
394
					.getIndex();
395

  
396
			ID_FIELD_HEIGHTTEXT = featureType.add(NAME_FIELD_HEIGHTTEXT,
397
					DataTypes.DOUBLE).setDefaultValue(
398
					Double.valueOf(10)).getIndex();
399

  
400
			ID_FIELD_ROTATIONTEXT = featureType.add(NAME_FIELD_ROTATIONTEXT,
401
					DataTypes.DOUBLE).setDefaultValue(
402
					Double.valueOf(0)).getIndex();
403

  
404

  
405

  
406
			// FIXME: Parece que el DXF puede tener mas atributos opcionales.
407
			// Habria que ver de pillarlos ?
408

  
409
			types = new ArrayList();
410
			types.add(featureType);
411

  
412
			if (leyendBuilder != null) {
413
				leyendBuilder.begin();
414
			}
415

  
416
		}
417

  
418
		public void end() {
419
			if (leyendBuilder != null) {
420
				leyendBuilder.end();
421
			}
422
		}
423

  
424
		public List getTypes() {
425
			return types;
426
		}
427

  
428
		public EditableFeatureType getDefaultType() {
429
			return (EditableFeatureType) types.get(0);
430
		}
431

  
432
		private Double toDouble(String value) {
433
			if (value == null) {
434
				return Double.valueOf(0);
435
			}
436
			return Double.valueOf(value);
437
		}
438

  
439
		public void load() throws DataException {
440

  
441
			this.envelope = null;
442

  
443
			
444
			dwgFeatureFile.calculateGisModelDwgPolylines();
445
			dwgFeatureFile.blockManagement2();
446
			List entities = dwgFeatureFile.getDwgObjects();
447

  
448
			int id = -1;
449
			try{
450
				int envelopeSubType = Geometry.SUBTYPES.GEOM2D;
451
				boolean is3dFile = dwgFeatureFile.isDwg3DFile();
452

  
453
				this.envelope = geomManager.createEnvelope(envelopeSubType);
454

  
455
				boolean updateEnvelope = true;
456

  
457
				double[] extMin = (double[]) dwgFeatureFile
458
						.getHeader("MSPACE_EXTMIN");
459
				double[] extMax = (double[]) dwgFeatureFile
460
						.getHeader("MSPACE_EXTMAX");
461
				if (extMin != null && extMax != null) {
462
					updateEnvelope = false;
463
					Point point = (Point) geomManager.create(
464
							Geometry.TYPES.POINT, envelopeSubType);
465
					point.setCoordinates(extMin);
466
					this.envelope.setLowerCorner(point);
467
					point = (Point) geomManager.create(Geometry.TYPES.POINT,
468
							envelopeSubType);
469
					point.setCoordinates(extMax);
470
					this.envelope.setUpperCorner(point);
471
				}
472

  
473

  
474
				Iterator iter = entities.iterator();
475

  
476
				FeatureProvider featureProvider;
477
				Envelope gEnvelope;
478

  
479
				while (iter.hasNext()) {
480
					id++;
481
					DwgObject entity = (DwgObject) iter.next();
482

  
483
					if (!(entity instanceof IDwg2FMap)) {
484
						logger
485
								.warn(
486
								"load: entity type {}(id:{}) not loadded",
487
														new Object[] { entity
488
																.getType() },
489
														id);
490

  
491
						continue;
492
					}
493

  
494
					IDwg2FMap dwgEnt = (IDwg2FMap) entity;
495
					Geometry geometry = dwgEnt.toFMapGeometry(is3dFile);
496
					if (geometry == null) { // || geometry.getGeneralPath() ==
497
						// null) {
498
						logger
499
								.warn(
500
								"load: entity {}(id:{}) with null geometry",
501
														new Object[] {
502
																entity
503
																		.getType(),
504
																id });
505

  
506
						continue;
507
					}
508
					// FIXME: Estas 6 lineas es por si la geometr??a no se ha
509
					// creado correctamente
510
					gEnvelope = null;
511
					try {
512
						gEnvelope = geometry.getEnvelope();
513
					} catch (Exception e) {
514
						gEnvelope = null;
515
					}
516
					if (gEnvelope == null) {
517
						logger
518
								.warn(
519
								"load: entity {}(id:{}) with null envelope",
520
								new Object[] { entity.getType(), id });
521

  
522
						continue;
523
					}
524
					// we check for Region of Interest of the CAD file
525
					if (!this.envelope.intersects(geometry.getEnvelope())) {
526
						logger
527
								.warn(
528
								"load: entity {}(id:{}) out of envelope",
529
								new Object[] { entity.getType(), id });
530
						continue;
531
					}
532
					featureProvider = store.createFeatureProvider(store
533
							.getStoreServices().getDefaultFeatureType());
534

  
535
					featureProvider.set(ID_FIELD_ID, id);
536

  
537
					featureProvider.set(ID_FIELD_ENTITY, dwgEnt.toString());
538

  
539
					featureProvider.set(ID_FIELD_LAYER, dwgFeatureFile
540
							.getLayerName(entity));
541

  
542
					int colorByLayer = dwgFeatureFile.getColorByLayer(entity);
543
					int color = entity.getColor();
544
					if (color < 0) {
545
						color = Math.abs(color);
546
					}
547
					if (color > 255) {
548
						color = colorByLayer;
549
					}
550

  
551
					featureProvider.set(ID_FIELD_COLOR, color);
552

  
553
					if (entity instanceof IDwg3DTestable) {
554
						featureProvider.set(ID_FIELD_ELEVATION,
555
								((IDwg3DTestable) entity).getZ());
556
					}
557

  
558
					featureProvider.set(ID_FIELD_THICKNESS, 0.0);
559
					featureProvider.set(ID_FIELD_HEIGHTTEXT, 0.0);
560
					featureProvider.set(ID_FIELD_ROTATIONTEXT, 0.0);
561
					featureProvider.set(ID_FIELD_TEXT, "");
562

  
563
					if (entity instanceof DwgMText) {
564
						DwgMText mtext = (DwgMText) entity;
565
						featureProvider.set(ID_FIELD_HEIGHTTEXT, mtext.getHeight());
566
						featureProvider.set(ID_FIELD_TEXT, mtext.getText());
567
					} else if (entity instanceof DwgText) {
568
						DwgText text = (DwgText) entity;
569
						featureProvider
570
								.set(ID_FIELD_THICKNESS, text.getThickness());
571
						featureProvider.set(ID_FIELD_HEIGHTTEXT, text.getHeight());
572
						featureProvider.set(ID_FIELD_ROTATIONTEXT, text
573
								.getRotationAngle());
574
						featureProvider.set(ID_FIELD_TEXT, text.getText());
575
					}// if-else
576

  
577
					featureProvider.setDefaultGeometry(geometry);
578

  
579
					store.addFeatureProvider(featureProvider);
580
					if (this.leyendBuilder != null) {
581
						this.leyendBuilder.process(featureProvider);
582
					}
583

  
584
				}
585

  
586
			} catch (org.gvsig.fmap.geom.exception.CreateGeometryException e) {
587
				throw new CreateGeometryException(e);
588
			} catch (org.gvsig.fmap.geom.exception.CreateEnvelopeException e) {
589
				throw new CreateGeometryException(e);
590
			}
591

  
592
		}
593

  
594
	}
595

  
596

  
597
	public boolean closeResourceRequested(ResourceProvider resource) {
598
		return true;
599
	}
600

  
601
	public int getOIDType() {
602
		return DataTypes.LONG;
603
	}
604

  
605
	public boolean supportsAppendMode() {
606
		return false;
607
	}
608

  
609
	public void append(FeatureProvider featureProvider) {
610
		// FIXME Exception
611
		throw new UnsupportedOperationException();
612
	}
613

  
614
	public void beginAppend() {
615
		// FIXME Exception
616
		throw new UnsupportedOperationException();
617

  
618
	}
619

  
620
	public void endAppend() {
621
		// FIXME Exception
622
		throw new UnsupportedOperationException();
623
	}
624

  
625
	public void saveToState(PersistentState state) throws PersistenceException {
626
		// TODO Auto-generated method stub
627
		throw new NotYetImplemented();
628
	}
629

  
630
	public void loadFromState(PersistentState state) throws PersistenceException {
631
		// TODO Auto-generated method stub
632
		throw new NotYetImplemented();
633
	}
634

  
635
	public Object createNewOID() {
636
		return new Long(counterNewsOIDs++);
637
	}
638

  
639
	protected void initializeFeatureTypes() throws InitializeException {
640
		try {
641
			this.open();
642
		} catch (OpenException e) {
643
			throw new InitializeException(this.getProviderName(), e);
644
		}
645
	}
646

  
647
	public Envelope getEnvelope() throws DataException {
648
		this.open();
649
		return (Envelope) this.getDynValue("Envelope");
650
	}
651

  
652

  
653
	/*
654
	 * (non-Javadoc)
655
	 *
656
	 * @see
657
	 * org.gvsig.fmap.dal.resource.spi.ResourceConsumer#resourceChanged(org.
658
	 * gvsig.fmap.dal.resource.spi.ResourceProvider)
659
	 */
660
	public void resourceChanged(ResourceProvider resource) {
661
		this.getStoreServices().notifyChange(
662
				DataStoreNotification.RESOURCE_CHANGED,
663
				resource);
664
	}
665

  
666
	public Object getSourceId() {
667
		return this.getDWGParameters().getFile();
668
	}
669

  
670

  
671
	public String getName() {
672
		String name = this.getDWGParameters().getFile().getName();
673
		int n = name.lastIndexOf(".");
674
		if( n<1 ) {
675
			return name;
676
		}
677
		return name.substring(0, n);
678
	}
679
	
680
	public String getFullName() {
681
		return this.getDWGParameters().getFile().getAbsolutePath();
682
	}
683
	
684

  
685
	
686
	public ResourceProvider getResource() {
687
		return resource;
688
	}
689

  
690
}
0 691

  
tags/v2_0_0_Build_2050/extensions/extDwg/src/org/gvsig/dwg/fmap/dal/store/dwg/legend/DWGGetLegendBuilder.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
* 2008 IVER T.I. S.A.   {{Task}}
26
*/
27

  
28
package org.gvsig.dwg.fmap.dal.store.dwg.legend;
29

  
30
import org.gvsig.dwg.fmap.dal.store.dwg.LegendBuilder;
31
import org.gvsig.tools.ToolsLocator;
32
import org.gvsig.tools.dynobject.DynClass;
33
import org.gvsig.tools.dynobject.DynMethod;
34
import org.gvsig.tools.dynobject.DynObject;
35
import org.gvsig.tools.dynobject.exception.DynMethodException;
36
import org.gvsig.tools.dynobject.exception.DynMethodNotSupportedException;
37

  
38
public class DWGGetLegendBuilder implements DynMethod {
39
	private static Integer code = null;
40

  
41
	static void register(DynClass dwgLegendDynClass) {
42
		if (code != null) {
43
			return;
44
		}
45
		code = new Integer(ToolsLocator.getDynObjectManager()
46
				.registerDynMethod(
47
						dwgLegendDynClass, new DWGGetLegendBuilder()));
48

  
49
	}
50
	public int getCode() throws DynMethodNotSupportedException {
51
		return code.intValue();
52
	}
53

  
54
	public String getDescription() {
55
		return "DWG LegendBuilder creator";
56
	}
57

  
58
	public String getName() {
59
		return LegendBuilder.DYNMETHOD_BUILDER_NAME;
60
	}
61

  
62
	public Object invoke(Object self, DynObject context)
63
			throws DynMethodException {
64
		return new DWGLegendBuilder();
65
	}
66

  
67
}
0 68

  
tags/v2_0_0_Build_2050/extensions/extDwg/src/org/gvsig/dwg/fmap/dal/store/dwg/legend/DWGLegendBuilder.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
* 2008 IVER T.I. S.A.   {{Task}}
26
*/
27

  
28
package org.gvsig.dwg.fmap.dal.store.dwg.legend;
29

  
30
import java.awt.Color;
31

  
32
import org.gvsig.dwg.fmap.dal.store.dwg.DWGStoreProvider;
33
import org.gvsig.dwg.fmap.dal.store.dwg.LegendBuilder;
34
import org.gvsig.dxf.px.dxf.AcadColor;
35
import org.gvsig.fmap.dal.DataTypes;
36
import org.gvsig.fmap.dal.feature.spi.FeatureProvider;
37
import org.gvsig.fmap.dal.feature.spi.FeatureStoreProvider;
38
import org.gvsig.fmap.geom.Geometry;
39
import org.gvsig.fmap.mapcontext.MapContextLocator;
40
import org.gvsig.fmap.mapcontext.rendering.legend.IVectorialUniqueValueLegend;
41
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
42
import org.gvsig.symbology.SymbologyLocator;
43
import org.gvsig.symbology.fmap.mapcontext.rendering.legend.styling.IAttrInTableLabelingStrategy;
44
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.fill.IFillSymbol;
45
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.line.ILineSymbol;
46

  
47
public class DWGLegendBuilder implements LegendBuilder {
48

  
49

  
50
	private IVectorialUniqueValueLegend defaultLegend = null;
51
    private IAttrInTableLabelingStrategy labelingStragegy = null;
52

  
53
	public void begin() {
54
		// Nothing to do
55
	}
56

  
57
	public void end() {
58
		// Nothing to do
59
	}
60

  
61
	public Object getLegend() {
62
		return defaultLegend;
63
	}
64

  
65
	public LegendBuilder initialize(FeatureStoreProvider store) {
66
		defaultLegend = (IVectorialUniqueValueLegend) MapContextLocator
67
				.getMapContextManager().createLegend(
68
						IVectorialUniqueValueLegend.LEGEND_NAME);
69
		defaultLegend.setShapeType(Geometry.TYPES.GEOMETRY);
70
		defaultLegend
71
				.setClassifyingFieldNames(new String[] { DWGStoreProvider.NAME_FIELD_COLOR });
72
		defaultLegend.setClassifyingFieldTypes(new int[] { DataTypes.INT });
73

  
74
		ISymbol myDefaultSymbol =
75
				MapContextLocator.getSymbolManager()
76
				.createSymbol(Geometry.TYPES.GEOMETRY, Color.BLACK);
77

  
78
		defaultLegend.setDefaultSymbol(myDefaultSymbol);
79

  
80

  
81
        labelingStragegy =
82
            SymbologyLocator.getSymbologyManager()
83
                .createAttrInTableLabelingStrategy();
84
		labelingStragegy.setTextField(DWGStoreProvider.NAME_FIELD_TEXT);
85
		labelingStragegy
86
				.setRotationField(DWGStoreProvider.NAME_FIELD_ROTATIONTEXT);
87
		labelingStragegy.setHeightField(DWGStoreProvider.NAME_FIELD_HEIGHTTEXT);
88
		labelingStragegy.setUnit(1); // MapContext.NAMES[1] (meters)
89
		return this;
90
	}
91

  
92
	public void process(FeatureProvider feature) {
93
		Integer clave = (Integer) feature.get("Color");
94
		if (clave == null) {
95
			return;
96
		}
97
		if (defaultLegend.getSymbolByValue(clave) == null) {
98
			ISymbol theSymbol;
99
			Color color = null;
100
			try {
101
				color = AcadColor.getColor(clave.intValue());
102
			} catch (ArrayIndexOutOfBoundsException e) {
103
				color = AcadColor.getColor(255);
104
			}
105
			// jaume, moved to ISymbol
106
			theSymbol =
107
					MapContextLocator.getSymbolManager().createSymbol(
108
					Geometry.TYPES.GEOMETRY, color);
109
			
110
			theSymbol.setDescription(clave.toString());
111
			// Asigna los colores de Autocad a los
112
			// bordes de los pol?gonos y pone el relleno transparente.
113
			if (theSymbol instanceof IFillSymbol) {
114
				((IFillSymbol) theSymbol).getOutline().setLineColor(color);
115
				Color fillColor = new Color(color.getRed(), color.getGreen(), color.getBlue(), 0);
116
				((IFillSymbol) theSymbol).setFillColor(fillColor);
117
			}
118
			// Asigna los colores de Autocad a las l?neas
119
			if (theSymbol instanceof ILineSymbol) {
120
				((ILineSymbol) theSymbol).setLineColor(color);
121
			}
122
			if (theSymbol != null) {
123
				defaultLegend.addSymbol(clave, theSymbol);
124
			}
125
		}
126

  
127
	}
128

  
129
	public Object getLabeling() {
130
		return labelingStragegy;
131
	}
132

  
133

  
134
}
0 135

  
tags/v2_0_0_Build_2050/extensions/extDwg/src/org/gvsig/dwg/fmap/dal/store/dwg/legend/DWGGetLabeling.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
* 2008 IVER T.I. S.A.   {{Task}}
26
*/
27

  
28
package org.gvsig.dwg.fmap.dal.store.dwg.legend;
29

  
30
import org.gvsig.dwg.fmap.dal.store.dwg.DWGStoreProvider;
31
import org.gvsig.dwg.fmap.dal.store.dwg.LegendBuilder;
32
import org.gvsig.fmap.dal.exception.OpenException;
33
import org.gvsig.tools.ToolsLocator;
34
import org.gvsig.tools.dynobject.DynClass;
35
import org.gvsig.tools.dynobject.DynMethod;
36
import org.gvsig.tools.dynobject.DynObject;
37
import org.gvsig.tools.dynobject.exception.DynMethodException;
38
import org.gvsig.tools.dynobject.exception.DynMethodNotSupportedException;
39

  
40
public class DWGGetLabeling implements DynMethod {
41
	private static Integer code = null;
42

  
43
	static void register(DynClass dwgLegendDynClass) {
44
		if (code != null) {
45
			return;
46
		}
47
		code = new Integer(ToolsLocator.getDynObjectManager()
48
				.registerDynMethod(dwgLegendDynClass, new DWGGetLabeling()));
49

  
50
	}
51
	public int getCode() throws DynMethodNotSupportedException {
52
		return code.intValue();
53
	}
54

  
55
	public String getDescription() {
56
		return "DWG Labeling";
57
	}
58

  
59
	public String getName() {
60
		return LegendBuilder.DYNMETHOD_GETLABELING_NAME;
61
	}
62

  
63
	public Object invoke(Object self, DynObject context)
64
			throws DynMethodException {
65
		try {
66
			return ((DWGStoreProvider) self).getLabeling();
67
		} catch (OpenException e) {
68
			//FIXME
69
			throw new RuntimeException(e);
70
		}
71
	}
72

  
73
}
0 74

  
tags/v2_0_0_Build_2050/extensions/extDwg/src/org/gvsig/dwg/fmap/dal/store/dwg/legend/DWGGetLegend.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
* 2008 IVER T.I. S.A.   {{Task}}
26
*/
27

  
28
package org.gvsig.dwg.fmap.dal.store.dwg.legend;
29

  
30
import org.gvsig.dwg.fmap.dal.store.dwg.DWGStoreProvider;
31
import org.gvsig.dwg.fmap.dal.store.dwg.LegendBuilder;
32
import org.gvsig.fmap.dal.exception.OpenException;
33
import org.gvsig.tools.ToolsLocator;
34
import org.gvsig.tools.dynobject.DynClass;
35
import org.gvsig.tools.dynobject.DynMethod;
36
import org.gvsig.tools.dynobject.DynObject;
37
import org.gvsig.tools.dynobject.exception.DynMethodException;
38
import org.gvsig.tools.dynobject.exception.DynMethodNotSupportedException;
39

  
40
public class DWGGetLegend implements DynMethod {
41
	private static Integer code = null;
42

  
43
	static void register(DynClass dwgLegendDynClass) {
44
		if (code != null) {
45
			return;
46
		}
47
		code = new Integer(ToolsLocator.getDynObjectManager()
48
				.registerDynMethod(dwgLegendDynClass, new DWGGetLegend()));
49

  
50
	}
51
	public int getCode() throws DynMethodNotSupportedException {
52
		return code.intValue();
53
	}
54

  
55
	public String getDescription() {
56
		return "DWG Legend";
57
	}
58

  
59
	public String getName() {
60
		return LegendBuilder.DYNMETHOD_GETLEGEND_NAME;
61
	}
62

  
63
	public Object invoke(Object self, DynObject context)
64
			throws DynMethodException {
65
		try {
66
			return ((DWGStoreProvider) self).getLegend();
67
		} catch (OpenException e) {
68
			//FIXME
69
			throw new RuntimeException(e);
70
		}
71
	}
72

  
73
}
0 74

  
tags/v2_0_0_Build_2050/extensions/extDwg/src/org/gvsig/dwg/fmap/dal/store/dwg/legend/DWGLegendLibrary.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
* 2008 IVER T.I. S.A.   {{Task}}
26
*/
27

  
28
/**
29
 *
30
 */
31
package org.gvsig.dwg.fmap.dal.store.dwg.legend;
32

  
33
import org.gvsig.dwg.fmap.dal.store.dwg.DWGLibrary;
34
import org.gvsig.dwg.fmap.dal.store.dwg.DWGStoreProvider;
35
import org.gvsig.fmap.dal.DALLibrary;
36
import org.gvsig.metadata.MetadataLibrary;
37
import org.gvsig.metadata.MetadataLocator;
38
import org.gvsig.tools.dynobject.DynClass;
39
import org.gvsig.tools.library.AbstractLibrary;
40
import org.gvsig.tools.library.LibraryException;
41

  
42
/**
43
 * @author jmvivo
44
 *
45
 */
46
public class DWGLegendLibrary extends AbstractLibrary {
47

  
48
    @Override
49
    public void doRegistration() {
50
        registerAsImplementationOf(DWGLegendLibrary.class);
51
        require(MetadataLibrary.class);
52
        require(DWGLibrary.class);
53
        require(DALLibrary.class);
54
    }
55

  
56
	@Override
57
	protected void doInitialize() throws LibraryException {
58
	}
59

  
60
	@Override
61
	protected void doPostInitialize() throws LibraryException {
62
		DynClass dynClass = (DynClass) MetadataLocator.getMetadataManager()
63
				.getDefinition(DWGStoreProvider.METADATA_DEFINITION_NAME);
64

  
65
		DWGGetLegendBuilder.register(dynClass);
66
		DWGGetLegend.register(dynClass);
67
		DWGGetLabeling.register(dynClass);
68
	}
69
}
0 70

  
tags/v2_0_0_Build_2050/extensions/extDwg/src/org/gvsig/dwg/fmap/dal/store/dwg/UnsupportedDWGVersionException.java
1
package org.gvsig.dwg.fmap.dal.store.dwg;
2

  
3
import org.gvsig.dwg.lib.DwgVersionNotSupportedException;
4
import org.gvsig.fmap.dal.exception.DataException;
5

  
6
public class UnsupportedDWGVersionException extends DataException {
7

  
8
	/**
9
	 *
10
	 */
11
	private static final long serialVersionUID = -7335241420683266251L;
12
	private final static String MESSAGE_FORMAT = "Unssuported version of DWG of file '%(file)'. Try to convert using Autodesk convertor from '%(autodeskurl)'";
13
	private final static String MESSAGE_KEY = "_UnsupportedDWGVersionException";
14

  
15
	public final static String AUTODESK_URL = "http://usa.autodesk.com/adsk/servlet/item?siteID=123112&id=7024151";
16

  
17
	public UnsupportedDWGVersionException(String file,
18
			DwgVersionNotSupportedException cause) {
19
		super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
20
		setValue("file", file);
21
		setValue("autodeskurl", AUTODESK_URL);
22
	}
23
}
0 24

  
tags/v2_0_0_Build_2050/extensions/extDwg/src/org/gvsig/dwg/fmap/dal/store/dwg/DWGStoreParameters.java
1
package org.gvsig.dwg.fmap.dal.store.dwg;
2

  
3
import java.io.File;
4

  
5
import org.cresques.cts.IProjection;
6
import org.gvsig.fmap.dal.DataStoreParameters;
7
import org.gvsig.fmap.dal.FileHelper;
8
import org.gvsig.fmap.dal.feature.EditableFeatureType;
9
import org.gvsig.fmap.dal.feature.FeatureType;
10
import org.gvsig.fmap.dal.feature.NewFeatureStoreParameters;
11
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemStoreParameters;
12
import org.gvsig.fmap.dal.spi.AbstractDataParameters;
13
import org.gvsig.fmap.dal.spi.DataStoreProviderServices;
14
import org.gvsig.tools.dynobject.DelegatedDynObject;
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff