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 @ 42293

History | View | Annotate | Download (13.1 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
    public void setDefaultGeometryAttributeName(String name) {
320
        if (name == null || name.length() == 0) {
321
            this.defaultGeometryAttributeName = null;
322
            this.defaultGeometryAttributeIndex = -1;
323
            return;
324
        }
325
        DefaultFeatureAttributeDescriptor attr = (DefaultFeatureAttributeDescriptor) this
326
                .get(name);
327
        if (attr == null) {
328
            throw new IllegalArgumentException("Attribute '" + name
329
                    + "' not found.");
330
        }
331
        if (attr.getType() != DataTypes.GEOMETRY) {
332
            throw new IllegalArgumentException("Attribute '" + name
333
                    + "' is not a geometry.");
334
        }
335
        this.defaultGeometryAttributeName = name;
336
        this.defaultGeometryAttributeIndex = attr.getIndex();
337
    }
338

    
339
    public void setHasOID(boolean hasOID) {
340
        this.hasOID = hasOID;
341
    }
342

    
343
    protected Iterator getIterator(Iterator iter) {
344
        return new EditableDelegatedIterator(iter, this);
345
    }
346

    
347
    public EditableFeatureAttributeDescriptor getEditableAttributeDescriptor(String name) {
348
        return (EditableFeatureAttributeDescriptor) this.getAttributeDescriptor(name);
349
    }
350

    
351
    public EditableFeatureAttributeDescriptor getEditableAttributeDescriptor(int index) {
352
        return (EditableFeatureAttributeDescriptor) this.getAttributeDescriptor(index);
353
    }
354

    
355
    protected class EditableDelegatedIterator extends DelegatedIterator {
356

    
357
        private DefaultEditableFeatureType fType;
358

    
359
        public EditableDelegatedIterator(Iterator iter,
360
                DefaultEditableFeatureType fType) {
361
            super(iter);
362
            this.fType = fType;
363
        }
364

    
365
        public void remove() {
366
            this.iterator.remove();
367
            this.fType.fixAll();
368
        }
369

    
370
    }
371

    
372
    protected void setAllowAutomaticValues(boolean value) {
373
        this.allowAtomaticValues = value;
374
    }
375

    
376
    public void setDefaultTimeAttributeName(String name) {
377
        if (name == null || name.length() == 0) {
378
            this.defaultTimeAttributeIndex = -1;
379
            return;
380
        }
381
        DefaultFeatureAttributeDescriptor attr = (DefaultFeatureAttributeDescriptor) this
382
                .get(name);
383
        if (attr == null) {
384
            throw new IllegalArgumentException("Attribute '" + name
385
                    + "' not found.");
386
        }
387

    
388
        this.defaultTimeAttributeIndex = attr.getIndex();
389
    }
390
}