-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshp.go
More file actions
209 lines (174 loc) · 3.48 KB
/
Copy pathshp.go
File metadata and controls
209 lines (174 loc) · 3.48 KB
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
package govector
import (
"errors"
"io"
"io/ioutil"
"os"
"path"
"path/filepath"
"strings"
"github.com/flywave/go-geom"
"github.com/flywave/go-shp"
)
const (
SHAPE_SHX_EXT = ".shx"
SHAPE_SHP_EXT = ".shp"
SHAPE_DBF_EXT = ".dbf"
)
type shapeIterator struct {
file *shp.ShapeFile
currentFeat int
}
func newIterator(path string) *shapeIterator {
return &shapeIterator{file: shp.Open(path), currentFeat: 0}
}
func (p *shapeIterator) next() bool {
if p.file == nil || p.file.ShapeCount == 0 {
return false
}
if p.currentFeat < (p.file.ShapeCount) {
p.currentFeat++
return true
}
return false
}
func (p *shapeIterator) readFeature() *geom.Feature {
i := p.currentFeat
return p.file.Feature(i)
}
func (p *shapeIterator) Close() error {
p.file.Close()
return nil
}
type ShapeProvider struct {
archiver *Archiver
shpfiles []string
index int
current *shapeIterator
}
func (p *ShapeProvider) ShapeFiles() []string {
return p.shpfiles
}
func (p *ShapeProvider) Open(filename string, file io.Reader) error {
arch := NewArchiver(filename, file)
if err := arch.Valid(); err != nil {
return err
}
p.archiver = arch
shpfiles := make(map[string]string)
dir, err := ioutil.TempDir(os.TempDir(), "")
if err != nil {
return err
}
err = arch.Walk(func(filename string, f io.ReadCloser, size int64) error {
ext := filepath.Ext(filename)
tempFile, err := os.Create(path.Join(dir, filename))
if err != nil {
return nil
}
io.Copy(tempFile, f)
if ext == SHAPE_SHP_EXT {
shpfiles[filename] = tempFile.Name()
}
tempFile.Sync()
tempFile.Close()
return nil
})
if err != nil {
return err
}
for _, f := range shpfiles {
p.shpfiles = append(p.shpfiles, f)
}
return nil
}
func (p *ShapeProvider) Match(filename string, file io.Reader) bool {
arch := NewArchiver(filename, file)
if err := arch.Valid(); err != nil {
return false
}
type shpFile struct {
shx bool
shp bool
dbf bool
}
shpfiles := make(map[string]*shpFile)
arch.Walk(func(filename string, f io.ReadCloser, size int64) error {
ext := filepath.Ext(filename)
name := strings.TrimSuffix(path.Base(filename), ext)
if _, ok := shpfiles[name]; !ok {
shpfiles[name] = &shpFile{shx: false, shp: false, dbf: false}
}
if ext == SHAPE_SHX_EXT {
shpfiles[name].shx = true
}
if ext == SHAPE_SHP_EXT {
shpfiles[name].shp = true
}
if ext == SHAPE_DBF_EXT {
shpfiles[name].dbf = true
}
return nil
})
if len(shpfiles) == 0 {
return false
}
for _, f := range shpfiles {
if !f.dbf || !f.shp || !f.shx {
return false
}
}
return true
}
func (p *ShapeProvider) Reset() error {
if p.current != nil {
p.current.Close()
}
p.current = nil
if p.moveNext() {
return nil
}
return errors.New("reset error")
}
func (p *ShapeProvider) Close() error {
if p.current != nil {
p.current.Close()
}
p.archiver.Close()
for i := range p.shpfiles {
os.Remove(p.shpfiles[i])
}
return nil
}
func (p *ShapeProvider) moveNext() bool {
if len(p.shpfiles) == 0 {
return false
}
if p.index < len(p.shpfiles) {
filename := p.shpfiles[p.index]
if p.current != nil {
p.current.Close()
}
p.current = newIterator(filename)
p.index++
return true
}
return false
}
func (p *ShapeProvider) Next() bool {
if p.current != nil {
if p.current.next() {
return true
} else {
return p.moveNext()
}
} else {
return p.moveNext()
}
}
func (p *ShapeProvider) Read() *geom.Feature {
if p.current != nil {
return p.current.readFeature()
}
return nil
}