forked from geodmms/xdgnjobs

?? ?
2008-05-14 fe4bda7d456c106e1061afaa29d452e5553e9d96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
package com.ximple.io.dgn7;
 
//~--- JDK imports ------------------------------------------------------------
 
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
 
import com.vividsolutions.jts.geom.Geometry;
import com.vividsolutions.jts.geom.GeometryCollection;
import com.vividsolutions.jts.geom.GeometryFactory;
 
/**
 * ComplexChainElement
 *
 * @author Ulysses
 * @version 0.1
 * @since 2006/5/18 下午 03:44:56
 */
public class ComplexChainElement extends Element implements ComplexElement, GeometryConverter
{
    protected ArrayList list = new ArrayList();
 
    public ComplexChainElement(byte[] raw)
    {
        super(raw);
        attrOffset = 4;
    }
 
    public int size()
    {
        return list.size();
    }
 
    public boolean isEmpty()
    {
        return list.isEmpty();
    }
 
    public boolean contains(Object o)
    {
        return list.contains(o);
    }
 
    public Iterator iterator()
    {
        return list.iterator();
    }
 
    public Object[] toArray()
    {
        return list.toArray();
    }
 
    public boolean add(Object o)
    {
        return list.add(o);
    }
 
    public boolean remove(Object o)
    {
        return list.remove(o);
    }
 
    public boolean addAll(Collection c)
    {
        return list.addAll(c);
    }
 
    public boolean addAll(int index, Collection c)
    {
        return list.addAll(index, c);
    }
 
    public void clear()
    {
        list.clear();
    }
 
    public Object get(int index)
    {
        return list.get(index);
    }
 
    public Object set(int index, Object element)
    {
        return list.set(index, element);
    }
 
    public void add(int index, Object element)
    {
        list.add(index, element);
    }
 
    public Object remove(int index)
    {
        return list.remove(index);
    }
 
    public int indexOf(Object o)
    {
        return list.indexOf(o);
    }
 
    public int lastIndexOf(Object o)
    {
        return list.lastIndexOf(o);
    }
 
    public ListIterator listIterator()
    {
        return list.listIterator();
    }
 
    public ListIterator listIterator(int index)
    {
        return list.listIterator(index);
    }
 
    public List subList(int fromIndex, int toIndex)
    {
        return list.subList(fromIndex, toIndex);
    }
 
    public boolean retainAll(Collection c)
    {
        return list.retainAll(c);
    }
 
    public boolean removeAll(Collection c)
    {
        return list.removeAll(c);
    }
 
    public boolean containsAll(Collection c)
    {
        return list.containsAll(c);
    }
 
    public Object[] toArray(Object[] a)
    {
        return list.toArray(a);
    }
 
    public Geometry toGeometry(GeometryFactory factory)
    {
        ArrayList<Geometry> list = new ArrayList<Geometry>();
 
        if (size() == 1)
        {
            Element element = (Element) get(0);
 
            if (element instanceof LineStringElement)
            {
                if (((LineStringElement) element).getVerticeSize() == 0 || ((LineStringElement) element).getVerticeSize() > 1)
                {
                    return ((LineStringElement) element).toGeometry(factory);
                }
 
            } else if (element instanceof LineElement)
            {
                if (((LineElement) element).getVertices().length == 0 || ((LineElement) element).getVertices().length > 1)
                {
                    return ((LineElement) element).toGeometry(factory);
                }
 
            } else
            {
                if (element instanceof GeometryConverter)
                {
                    return ((GeometryConverter) element).toGeometry(factory);
                }
 
                return null;
            }
        }
 
        for (ListIterator it = listIterator(); it.hasNext();)
        {
            Element element = (Element) it.next();
 
            if (element instanceof LineStringElement)
            {
                if (((LineStringElement) element).getVerticeSize() == 0 || ((LineStringElement) element).getVerticeSize() > 1)
                {
                    list.add(((LineStringElement) element).toGeometry(factory));
                }
 
            } else if (element instanceof LineElement)
            {
 
                if (((LineElement) element).getVertices().length == 0 || ((LineElement) element).getVertices().length > 1)
                {
                    list.add(((LineElement) element).toGeometry(factory));
                }
            /*
            } else if (element instanceof ArcElement)
            {
                list.add(((ArcElement) element).toGeometry(factory));
            */
            }
        }
 
        Geometry[] ga = list.toArray(new Geometry[list.size()]);
 
        return new GeometryCollection(ga, factory);
    }
 
    public double getElementSize()
    {
        return raw[18];
    }
 
    public boolean isClosed()
    {
        if (isEmpty())
        {
            return false;
        }
 
        return false;
    }
 
    public static class ElementHandler extends Element.ElementHandler
    {
        private static ElementHandler instance = null;
 
        public ElementHandler()
        {
            super(ElementType.COMPLEXCHAIN);
        }
 
        public static IElementHandler getInstance()
        {
            if (instance == null)
            {
                instance = new ElementHandler();
            }
 
            return instance;
        }
 
        protected Element createElement(byte[] raw)
        {
            return new ComplexChainElement(raw);
        }
    }
}