13693261870
2025-06-24 8565bd83fcd670ec8379084d600eb97d18037d21
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
package com.terra.system.service.show;
 
import com.terra.system.entity.all.StaticData;
import com.terra.system.entity.ctrl.MarkJsonEntity;
import com.terra.system.entity.data.DownloadEntity;
import com.terra.system.entity.data.MetaFileEntity;
import com.terra.system.entity.show.MarkEntity;
import com.terra.system.entity.sys.UserEntity;
import com.terra.system.helper.*;
import com.terra.system.mapper.show.MarkMapper;
import com.terra.system.service.data.DownloadService;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
 
import java.io.File;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
/**
 * 标绘
 * @author WWW
 */
@Service
public class MarkService implements MarkMapper {
    @Resource
    MarkMapper markMapper;
 
    @Resource
    PathHelper pathHelper;
 
    @Resource
    DownloadService downloadService;
 
    @Override
    public Integer selectCount(Integer uid) {
        return markMapper.selectCount(uid);
    }
 
    @Override
    public List<MarkEntity> selectByPage(Integer uid, Integer limit, Integer offset) {
        return markMapper.selectByPage(uid, limit, offset);
    }
 
    @Override
    public List<MarkEntity> selectAll() {
        return markMapper.selectAll();
    }
 
    @Override
    public MarkEntity selectById(int id) {
        return markMapper.selectById(id);
    }
 
    @Override
    public Integer insert(MarkEntity entity) {
        return markMapper.insert(entity);
    }
 
    @Override
    public Integer inserts(List<MarkEntity> list) {
        return markMapper.inserts(list);
    }
 
    @Override
    public Integer delete(int id) {
        return markMapper.delete(id);
    }
 
    @Override
    public Integer deletes(List<Integer> ids) {
        return markMapper.deletes(ids);
    }
 
    @Override
    public Integer update(MarkEntity entity) {
        return markMapper.update(entity);
    }
 
    @Override
    public Integer updates(List<MarkEntity> list) {
        return markMapper.updates(list);
    }
 
    /**
     * 下载ShapeFile文件
     *
     * @param ue   用户实体
     * @param list 标绘JSON实体类集合
     * @return GUID
     * @throws Exception 异常
     */
    public String downloadShp(UserEntity ue, List<MarkJsonEntity> list) throws Exception {
        String path = pathHelper.getTempPath();
        createShapeFiles(ue, list, path);
 
        File[] files = new File(path).listFiles();
        if (files == null || files.length == 0) {
            return null;
        }
 
        String zip = getZipPath();
        ZipHelper.zip(zip, path);
        FileHelper.deleteDir(path);
 
        String guid = FileHelper.getFileMd5(zip);
        DownloadEntity entity = downloadService.selectByGuid(guid);
        if (entity != null) {
            return entity.getGuid();
        }
 
        DownloadEntity de = getDownloadEntity(ue, zip);
        int rows = downloadService.insert(de);
 
        return rows > 0 ? de.getGuid() : null;
    }
 
    /**
     * 创建shp文件
     */
    private String createShapeFiles(UserEntity ue, List<MarkJsonEntity> list, String path) {
        List<MarkJsonEntity> points = getMarkByType(list, "POINT");
        if (points.size() > 0) {
            ShpHelper.createShp(points, path, "POINT");
        }
        List<MarkJsonEntity> lines = getMarkByType(list, "LINESTRING");
        if (lines.size() > 0) {
            ShpHelper.createShp(lines, path, "LINESTRING");
        }
        List<MarkJsonEntity> polygons = getMarkByType(list, "POLYGON");
        if (polygons.size() > 0) {
            ShpHelper.createShp(polygons, path, "POLYGON");
        }
 
        return path;
    }
 
    /**
     * 获取shp目录
     */
    private String getShpDir(UserEntity ue, String parent) {
        String path = parent + File.separator + StringHelper.YMDHMS2_FORMAT.format(new Date());
 
        File file = new File(path);
        if (!file.exists() && !file.isDirectory()) {
            file.mkdirs();
        }
 
        return path;
    }
 
    /**
     * 获取标绘类型
     */
    private List<MarkJsonEntity> getMarkByType(List<MarkJsonEntity> list, String type) {
        List<MarkJsonEntity> rs = new ArrayList<>();
        for (MarkJsonEntity mark : list) {
            if (StringHelper.isEmpty(mark.getWkt())) {
                continue;
            }
            if (mark.getWkt().contains(type)) {
                rs.add(mark);
            }
        }
 
        return rs;
    }
 
    /**
     * 获取zip路径
     */
    private String getZipPath() {
        String path = pathHelper.getDownloadFullPath() + File.separator + StringHelper.YMDHMS2_FORMAT.format(new Date()) + ".zip";
 
        File file = new File(path);
        if (file.exists() && !file.isDirectory()) {
            file.delete();
        }
 
        return path;
    }
 
    /**
     * 获取下载实体类
     */
    private DownloadEntity getDownloadEntity(UserEntity ue, String file) throws Exception {
        DownloadEntity de = new DownloadEntity();
        de.setName(FileHelper.getFileName(file));
        // 1-Shp文件,2-专题图,3-元数据,4-业务数据,5-管道分析,6-统计报告,7-附件文件,8-瓦片文件
        de.setType(1);
        de.setSizes(FileHelper.sizeToMb(new File(file).length()));
        de.setDepid(ue.getDepid());
        de.setDcount(0);
        // de.setPwd(null)
        de.setUrl(FileHelper.getRelativePath(file));
        de.setDescr("Shp文件");
        de.setGuid(FileHelper.getFileMd5(file));
        de.setCreateUser(ue.getId());
        // de.setGeom(null)
 
        return de;
    }
 
    /**
     * 获取下载文件路径
     */
    public String getDownloadFilePath(DownloadEntity de) {
        return pathHelper.getConfig().getDownloadPath() + File.separator + de.getUrl();
    }
 
    /**
     * 读取ShapeFile文件获取Mark实体类
     */
    public List<MarkJsonEntity> readShpForMarks(List<MetaFileEntity> list) {
        String fileName = null;
        for (MetaFileEntity mf : list) {
            if (mf.getName().toLowerCase().contains(StaticData.SHP)) {
                fileName = mf.getPath();
                break;
            }
        }
        if (StringHelper.isEmpty(fileName)) {
            return null;
        }
 
        List<MarkJsonEntity> mjeList = ShpHelper.readShpForMarks(fileName);
        FileHelper.deleteFiles(list);
 
        return mjeList;
    }
}