Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.impl / src / main / java / org / gvsig / fmap / dal / feature / impl / DefaultEditableFeatureType.java @ 43074

History | View | Annotate | Download (13.5 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or modify it under
7
 * the terms of the GNU General Public License as published by the Free Software
8
 * Foundation; either version 3 of the License, or (at your option) any later
9
 * version.
10
 *
11
 * This program is distributed in the hope that it will be useful, but WITHOUT
12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14
 * details.
15
 *
16
 * You should have received a copy of the GNU General Public License along with
17
 * this program; if not, write to the Free Software Foundation, Inc., 51
18
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us at info AT
21
 * gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.fmap.dal.feature.impl;
24

    
25
import java.text.MessageFormat;
26

    
27
import java.util.Iterator;
28
import java.util.zip.CRC32;
29

    
30
import org.gvsig.fmap.dal.DataTypes;
31
import org.gvsig.fmap.dal.exception.DataListException;
32
import org.gvsig.fmap.dal.feature.EditableFeatureAttributeDescriptor;
33
import org.gvsig.fmap.dal.feature.EditableFeatureType;
34
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
35
import org.gvsig.fmap.dal.feature.FeatureAttributeEmulator;
36
import org.gvsig.fmap.dal.feature.FeatureType;
37
import org.gvsig.fmap.dal.feature.exception.FeatureTypeIntegrityException;
38
import org.gvsig.fmap.dal.feature.exception.UnsupportedDataTypeException;
39
import org.gvsig.tools.ToolsLocator;
40
import org.gvsig.tools.evaluator.Evaluator;
41

    
42
public class DefaultEditableFeatureType extends DefaultFeatureType implements
43
        EditableFeatureType {
44

    
45
    /**
46
     *
47
     */
48
    private static final long serialVersionUID = -713976880396024389L;
49

    
50
    private boolean hasStrongChanges;
51
    private DefaultFeatureType source;
52

    
53
    public DefaultEditableFeatureType() {
54
        super();
55
        this.hasStrongChanges = false;
56
        this.source = null;
57
    }
58

    
59
    public DefaultEditableFeatureType(String id) {
60
        super(id);
61
        this.hasStrongChanges = false;
62
        this.source = null;
63
    }
64

    
65
    protected DefaultEditableFeatureType(DefaultEditableFeatureType other) {
66
        super(other);
67
        this.source = (DefaultFeatureType) other.getSource();
68
    }
69

    
70
    protected DefaultEditableFeatureType(DefaultFeatureType other) {
71
        super(other);
72
        this.source = other;
73
    }
74

    
75
    protected void intitalizeAddAttibute(DefaultFeatureAttributeDescriptor attr) {
76
        super.add(new DefaultEditableFeatureAttributeDescriptor(attr));
77
    }
78

    
79
    public boolean hasStrongChanges() {
80
        if (hasStrongChanges) {
81
            return true;
82
        }
83
        Iterator iter = this.iterator();
84
        DefaultEditableFeatureAttributeDescriptor attr;
85
        while (iter.hasNext()) {
86
            attr = (DefaultEditableFeatureAttributeDescriptor) iter.next();
87
            if (attr.hasStrongChanges()) {
88
                return true;
89
            }
90
        }
91
        return false;
92
    }
93

    
94
    public FeatureType getCopy() {
95
        return new DefaultEditableFeatureType(this);
96
    }
97

    
98
    public EditableFeatureType getEditable() {
99
        throw new UnsupportedOperationException();
100
    }
101

    
102
    public boolean addAll(DefaultFeatureType other) {
103
        Iterator iter = other.iterator();
104
        DefaultFeatureAttributeDescriptor attr;
105
        DefaultEditableFeatureAttributeDescriptor editableAttr;
106
        while (iter.hasNext()) {
107
            attr = (DefaultFeatureAttributeDescriptor) iter.next();
108
            if (attr instanceof DefaultEditableFeatureAttributeDescriptor) {
109
                editableAttr = new DefaultEditableFeatureAttributeDescriptor(
110
                        attr);
111
            } else {
112
                editableAttr = new DefaultEditableFeatureAttributeDescriptor(
113
                        attr);
114
            }
115
            super.add(editableAttr);
116
        }
117
        this.pk = null;
118
        this.fixAll();
119
        return true;
120
    }
121

    
122
    public EditableFeatureAttributeDescriptor addLike(
123
            FeatureAttributeDescriptor other) {
124
        DefaultEditableFeatureAttributeDescriptor editableAttr;
125
        if (other instanceof DefaultEditableFeatureAttributeDescriptor) {
126
            editableAttr = new DefaultEditableFeatureAttributeDescriptor(
127
                    (DefaultFeatureAttributeDescriptor) other);
128
        } else {
129
            editableAttr = new DefaultEditableFeatureAttributeDescriptor(
130
                    (DefaultFeatureAttributeDescriptor) other);
131
        }
132
        super.add(editableAttr);
133
        this.fixAll();
134
        return editableAttr;
135

    
136
    }
137

    
138
    public FeatureType getSource() {
139
        return source;
140
    }
141

    
142
    private long getCRC() {
143
        StringBuffer buffer = new StringBuffer();
144
        for (int i = 0; i < this.size(); i++) {
145
            FeatureAttributeDescriptor x = this.getAttributeDescriptor(i);
146
            buffer.append(x.getName());
147
            buffer.append(x.getDataTypeName());
148
            buffer.append(x.getSize());
149
        }
150
        CRC32 crc = new CRC32();
151
        byte[] data = buffer.toString().getBytes();
152
        crc.update(data);
153
        return crc.getValue();
154
    }
155

    
156
    public FeatureType getNotEditableCopy() {
157
        this.fixAll();
158
        DefaultFeatureType copy = new DefaultFeatureType(this, false);
159
        Iterator iter = this.iterator();
160
        DefaultFeatureAttributeDescriptor attr;
161
        while (iter.hasNext()) {
162
            attr = (DefaultFeatureAttributeDescriptor) iter.next();
163
            copy.add(new DefaultFeatureAttributeDescriptor(attr));
164
        }
165
        return copy;
166
    }
167

    
168
    public EditableFeatureAttributeDescriptor add(String name, int type) {
169
        return this.add(name, type, true);
170
    }
171

    
172
    private EditableFeatureAttributeDescriptor add(String name, int type, boolean updateHasStrongChanges) {
173
        DefaultEditableFeatureAttributeDescriptor attr = new DefaultEditableFeatureAttributeDescriptor();
174
        Iterator iter = this.iterator();
175
        while (iter.hasNext()) {
176
            EditableFeatureAttributeDescriptor descriptor = (EditableFeatureAttributeDescriptor) iter.next();
177
            if (descriptor.getName().equalsIgnoreCase(name)) {
178
                throw new RuntimeException(
179
                        MessageFormat.format("Name descriptor {0} duplicated.", new String[]{name})
180
                );
181
            }
182

    
183
        }
184
        attr.setName(name);
185
        switch (type) {
186
            case DataTypes.BOOLEAN:
187
            case DataTypes.BYTE:
188
            case DataTypes.BYTEARRAY:
189
            case DataTypes.CHAR:
190
            case DataTypes.DATE:
191
            case DataTypes.DOUBLE:
192
            case DataTypes.FLOAT:
193
            case DataTypes.GEOMETRY:
194
            case DataTypes.INT:
195
            case DataTypes.LONG:
196
            case DataTypes.OBJECT:
197
            case DataTypes.STRING:
198
            case DataTypes.TIME:
199
            case DataTypes.TIMESTAMP:
200
                break;
201

    
202
            default:
203
                throw new UnsupportedDataTypeException(name, type);
204
        }
205
        attr.setDataType(type);
206
        attr.setIndex(this.size());
207
        super.add(attr);
208
        if (!hasStrongChanges && updateHasStrongChanges) {
209
            hasStrongChanges = true;
210
        }
211
        this.pk = null;
212
        return attr;
213
    }
214

    
215
    public EditableFeatureAttributeDescriptor add(String name, int type,
216
            int size) {
217
        return this.add(name, type, true).setSize(size);
218
    }
219

    
220
    public EditableFeatureAttributeDescriptor add(String name, int type,
221
            Evaluator evaluator) {
222
        if (evaluator == null) {
223
            throw new IllegalArgumentException();
224
        }
225
        return this.add(name, type, false).setEvaluator(evaluator);
226
    }
227

    
228
    public EditableFeatureAttributeDescriptor add(String name, int type,
229
            FeatureAttributeEmulator emulator) {
230
        if (emulator == null) {
231
            throw new IllegalArgumentException();
232
        }
233
        return this.add(name, type, false).setFeatureAttributeEmulator(emulator);
234
    }
235
    
236
    public EditableFeatureAttributeDescriptor add(String name, String type) {
237
        return this.add(name,ToolsLocator.getDataTypesManager().getType(type));
238
    }
239

    
240
    public EditableFeatureAttributeDescriptor add(String name, String type, int size) {
241
        return this.add(name,ToolsLocator.getDataTypesManager().getType(type), size);
242
    }
243
    
244
    public Object remove(String name) {
245
        DefaultFeatureAttributeDescriptor attr = (DefaultFeatureAttributeDescriptor) this
246
                .get(name);
247
        if (attr == null) {
248
            return null;
249
        }
250
        if (attr.getEvaluator() == null) {
251
            hasStrongChanges = true;
252
        }
253
        super.remove(attr);
254
        this.pk = null;
255
        this.fixAll();
256
        return attr;
257
    }
258

    
259
    protected void fixAll() {
260
        int i = 0;
261
        Iterator iter = super.iterator();
262
        DefaultFeatureAttributeDescriptor attr;
263

    
264
        while (iter.hasNext()) {
265
            attr = (DefaultFeatureAttributeDescriptor) iter
266
                    .next();
267
            attr.setIndex(i++);
268
            if (attr instanceof DefaultEditableFeatureAttributeDescriptor) {
269
                ((DefaultEditableFeatureAttributeDescriptor) attr).fixAll();
270
            }
271
            if (attr.getEvaluator() != null) {
272
                this.hasEvaluators = true;
273
            }
274
            if (attr.getFeatureAttributeEmulator() != null) {
275
                this.hasEmulators = true;
276
            }
277
            if (this.defaultGeometryAttributeName == null && attr.getType() == DataTypes.GEOMETRY) {
278
                this.defaultGeometryAttributeName = attr.getName();
279
            }
280
        }
281
        if (this.defaultGeometryAttributeName != null) {
282
            this.defaultGeometryAttributeIndex = this.getIndex(this.defaultGeometryAttributeName);
283
        }
284
        this.internalID = Long.toHexString(this.getCRC());
285
    }
286

    
287
    public void checkIntegrity() throws DataListException {
288
        Iterator iter = super.iterator();
289
        FeatureTypeIntegrityException ex = null;
290

    
291
        while (iter.hasNext()) {
292
            DefaultEditableFeatureAttributeDescriptor attr = (DefaultEditableFeatureAttributeDescriptor) iter
293
                    .next();
294
            try {
295
                attr.checkIntegrity();
296
            } catch (Exception e) {
297
                if (ex == null) {
298
                    ex = new FeatureTypeIntegrityException(this.getId());
299
                }
300
                ex.add(e);
301
            }
302
        }
303
        if (ex != null) {
304
            throw ex;
305
        }
306
    }
307

    
308
    public boolean remove(EditableFeatureAttributeDescriptor attribute) {
309
        if (attribute.getEvaluator() != null) {
310
            hasStrongChanges = true;
311
        }
312
        if (!super.remove(attribute)) {
313
            return false;
314
        }
315
        this.fixAll();
316
        return true;
317
    }
318

    
319
    @Override
320
    public void setDefaultGeometryType(int type, int subType) {
321
        DefaultEditableFeatureType descr = (DefaultEditableFeatureType)this.getDefaultGeometryAttribute();
322
        if( descr == null ) {
323
            throw new IllegalStateException("Default geometry attribute not set.");
324
        }
325
        descr.setDefaultGeometryType(type, subType);
326
    }
327

    
328
    public void setDefaultGeometryAttributeName(String name) {
329
        if (name == null || name.length() == 0) {
330
            this.defaultGeometryAttributeName = null;
331
            this.defaultGeometryAttributeIndex = -1;
332
            return;
333
        }
334
        DefaultFeatureAttributeDescriptor attr = (DefaultFeatureAttributeDescriptor) this
335
                .get(name);
336
        if (attr == null) {
337
            throw new IllegalArgumentException("Attribute '" + name
338
                    + "' not found.");
339
        }
340
        if (attr.getType() != DataTypes.GEOMETRY) {
341
            throw new IllegalArgumentException("Attribute '" + name
342
                    + "' is not a geometry.");
343
        }
344
        this.defaultGeometryAttributeName = name;
345
        this.defaultGeometryAttributeIndex = attr.getIndex();
346
    }
347

    
348
    public void setHasOID(boolean hasOID) {
349
        this.hasOID = hasOID;
350
    }
351

    
352
    protected Iterator getIterator(Iterator iter) {
353
        return new EditableDelegatedIterator(iter, this);
354
    }
355

    
356
    public EditableFeatureAttributeDescriptor getEditableAttributeDescriptor(String name) {
357
        return (EditableFeatureAttributeDescriptor) this.getAttributeDescriptor(name);
358
    }
359

    
360
    public EditableFeatureAttributeDescriptor getEditableAttributeDescriptor(int index) {
361
        return (EditableFeatureAttributeDescriptor) this.getAttributeDescriptor(index);
362
    }
363

    
364
    protected class EditableDelegatedIterator extends DelegatedIterator {
365

    
366
        private DefaultEditableFeatureType fType;
367

    
368
        public EditableDelegatedIterator(Iterator iter,
369
                DefaultEditableFeatureType fType) {
370
            super(iter);
371
            this.fType = fType;
372
        }
373

    
374
        public void remove() {
375
            this.iterator.remove();
376
            this.fType.fixAll();
377
        }
378

    
379
    }
380

    
381
    protected void setAllowAutomaticValues(boolean value) {
382
        this.allowAtomaticValues = value;
383
    }
384

    
385
    public void setDefaultTimeAttributeName(String name) {
386
        if (name == null || name.length() == 0) {
387
            this.defaultTimeAttributeIndex = -1;
388
            return;
389
        }
390
        DefaultFeatureAttributeDescriptor attr = (DefaultFeatureAttributeDescriptor) this
391
                .get(name);
392
        if (attr == null) {
393
            throw new IllegalArgumentException("Attribute '" + name
394
                    + "' not found.");
395
        }
396

    
397
        this.defaultTimeAttributeIndex = attr.getIndex();
398
    }
399
}