Selaa lähdekoodia

Merge branch 'master' of http://121.42.53.174:3000/jiapeng/bridge

XMTT 6 vuotta sitten
vanhempi
commit
8eb2d6df7a

+ 41 - 0
src/main/java/com/ekexiu/project/bridge/alarm/AlarmDao.java

@ -0,0 +1,41 @@
1
package com.ekexiu.project.bridge.alarm;
2

3
import java.sql.Connection;
4
import java.sql.SQLException;
5
import java.util.List;
6

7
import org.jfw.apt.orm.annotation.dao.Batch;
8
import org.jfw.apt.orm.annotation.dao.DAO;
9
import org.jfw.apt.orm.annotation.dao.method.From;
10
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
11
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
12
import org.jfw.apt.orm.annotation.dao.method.Where;
13
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
14
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
15
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
16
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
17
import org.jfw.util.PageQueryResult;
18
@DAO
19
public interface AlarmDao {
20
	@Insert
21
	int insert(Connection con,AlarmMsg msg)throws SQLException;
22
	@Insert
23
	@Batch
24
	int[] insertAlarmDataItems(Connection con, List<AlarmDataItem> items)throws SQLException;
25
	
26
	@PageSelect
27
	@OrderBy("ORDER BY ALARM_TIME DESC,AID DESC")
28
	PageQueryResult<AlarmMsg> queryAlarmMsg(Connection con,String uid,int pageSize,int pageNo)throws SQLException;
29
	
30
	
31
	@UpdateWith
32
	@From(AlarmMsg.class)
33
	@SetSentence("READED='1',READ_TIME=TO_CHAR(NOW(),'YYYYMMDDHH24MISS')")
34
	@Where("READED='0'")
35
	int readed(Connection con,String uid,String aid)throws SQLException;
36
	
37
	@SelectList
38
	List<AlarmDataItem> query(Connection con,String id)throws SQLException;
39
	
40
	
41
}

+ 61 - 0
src/main/java/com/ekexiu/project/bridge/alarm/AlarmDataItem.java

@ -0,0 +1,61 @@
1
package com.ekexiu.project.bridge.alarm;
2

3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.enums.DE;
7

8
@PrimaryKey({"id","seq"})
9
@Table(descp="报警数据")
10
public class AlarmDataItem {
11
    private String id;
12
    private int seq;
13
    private String stime;
14
    private String atime;
15
    private String data;
16
    
17
    @Column(descp="报警编号",value=DE.text_de)
18
	public String getId() {
19
		return id;
20
	}
21

22
	public void setId(String id) {
23
		this.id = id;
24
	}
25
	@Column(descp="传感内部编号",value=DE.int_de)
26
	public int getSeq() {
27
		return seq;
28
	}
29

30
	public void setSeq(int seq) {
31
		this.seq = seq;
32
	}
33
    @Column(descp="起始时间",value=DE.text_de)
34
	public String getStime() {
35
		return stime;
36
	}
37

38
	public void setStime(String stime) {
39
		this.stime = stime;
40
	}
41
    @Column(descp="报警时间",value=DE.text_de)
42
	public String getAtime() {
43
		return atime;
44
	}
45

46
	public void setAtime(String atime) {
47
		this.atime = atime;
48
	}
49
    @Column(descp="报警数据,共300个数据点,以英文逗号分隔",value=DE.text_de)
50
	public String getData() {
51
		return data;
52
	}
53

54
	public void setData(String data) {
55
		this.data = data;
56
	}
57
    
58
	
59
	
60
    
61
}

+ 82 - 0
src/main/java/com/ekexiu/project/bridge/alarm/AlarmMsg.java

@ -0,0 +1,82 @@
1
package com.ekexiu.project.bridge.alarm;
2

3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
7
import org.jfw.apt.orm.core.enums.DE;
8

9

10
@PrimaryKey({"uid","aid"})
11
@Table(descp="报警消息")
12
public class AlarmMsg {
13
	private String uid;
14
	private String aid;
15
	private String server;
16
	private int  device;
17
	private boolean readed;
18
	private String readTime;
19
	private String alarmTime;
20
	private String createTime;
21
	
22
	@Column(descp="用户ID",value=DE.refid_32)
23
	public String getUid() {
24
		return uid;
25
	}
26
	public void setUid(String uid) {
27
		this.uid = uid;
28
	}
29
	@Column(descp="报警ID",value=DE.text_de)
30
	public String getAid() {
31
		return aid;
32
	}
33
	public void setAid(String aid) {
34
		this.aid = aid;
35
	}
36
	@Column(descp="采集服务器内部编号",value=DE.text_de)
37
	public String getServer() {
38
		return server;
39
	}
40
	public void setServer(String server) {
41
		this.server = server;
42
	}
43
	@Column(descp="采集盒内部编号",value=DE.int_de)
44
	public int getDevice() {
45
		return device;
46
	}
47
	public void setDevice(int device) {
48
		this.device = device;
49
	}
50
	@Column(descp="是否已读",value=DE.boolean_de,fixSqlValueWithInsert="'0'")
51
	public boolean isReaded() {
52
		return readed;
53
	}
54
	public void setReaded(boolean readed) {
55
		this.readed = readed;
56
	}
57
	@Column(descp="读取时间",value=DE.Text_de)
58
	public String getReadTime() {
59
		return readTime;
60
	}
61
	public void setReadTime(String readTime) {
62
		this.readTime = readTime;
63
	}
64
	@Column(descp="创建时间(YYYYMMDDHH24MISS)不可修改", handlerClass = FixLenStringHandler.class, dbType = "CHAR(14)", fixSqlValueWithInsert = "TO_CHAR(NOW(),'YYYYMMDDHH24MISS')", insertable = true, nullable = false, queryable = true, renewable = false)
65
	public String getCreateTime() {
66
		return createTime;
67
	}
68
	public void setCreateTime(String createTime) {
69
		this.createTime = createTime;
70
	}
71
	@Column(descp="报警时间",value=DE.text_de)
72
	public String getAlarmTime() {
73
		return alarmTime;
74
	}
75
	public void setAlarmTime(String alarmTime) {
76
		this.alarmTime = alarmTime;
77
	}
78
	
79
	
80
	
81
	
82
}

+ 90 - 0
src/main/java/com/ekexiu/project/bridge/alarm/AlarmService.java

@ -0,0 +1,90 @@
1
package com.ekexiu.project.bridge.alarm;
2

3
import java.sql.Connection;
4
import java.sql.PreparedStatement;
5
import java.sql.ResultSet;
6
import java.sql.SQLException;
7
import java.util.HashMap;
8
import java.util.List;
9
import java.util.Map;
10

11
import org.jfw.apt.annotation.Autowrie;
12
import org.jfw.apt.web.annotation.LoginUser;
13
import org.jfw.apt.web.annotation.Path;
14
import org.jfw.apt.web.annotation.operate.Get;
15
import org.jfw.apt.web.annotation.operate.Post;
16
import org.jfw.apt.web.annotation.param.JdbcConn;
17
import org.jfw.util.PageQueryResult;
18
import org.jfw.util.jdbc.JdbcUtil;
19
import org.jfw.util.jdbc.PreparedStatementConfig;
20
import org.jfw.util.jdbc.ResultSetExtractor;
21

22
import com.ekexiu.project.bridge.system.vo.SessionUser;
23

24
@Path("/alarm")
25
public class AlarmService {
26

27
	@Autowrie
28
	private AlarmDao alarmDao;
29
	
30
	public AlarmDao getAlarmDao() {
31
		return alarmDao;
32
	}
33

34
	public void setAlarmDao(AlarmDao alarmDao) {
35
		this.alarmDao = alarmDao;
36
	}
37

38
	@Get
39
	@Path("/msg")
40
	public PageQueryResult<AlarmMsg> query(@JdbcConn Connection con,final @LoginUser SessionUser user,int pageSize,int pageNo)throws SQLException{
41
		return this.alarmDao.queryAlarmMsg(con,user.getId(), pageSize, pageNo);
42
	}
43
	
44
	@Get
45
	@Path("/msg/unread")
46
	public Object query(@JdbcConn Connection con,@LoginUser final SessionUser user,final String[] server)throws SQLException{
47
		StringBuilder sb = new StringBuilder();
48
		sb.append("SELECT server,count(1) FROM ALARM_MSG WHERE SERVER IN (?");
49
		for(int i = 1 ; i < server.length;++i){
50
			sb.append(",?");
51
		}
52
		sb.append(") AND UID=? AND READED='0' GROUP BY SERVER");
53
		
54
		return JdbcUtil.queryList(con, sb.toString(), new ResultSetExtractor<Map<String,Integer>>() {
55

56
			@Override
57
			public Map<String, Integer> extractData(ResultSet rs) throws SQLException {
58
				Map<String,Integer> map = new HashMap<String,Integer>();
59
				String s= rs.getString(1);
60
				int c = rs.getInt(2);
61
				map.put(s, c);
62
				return map;
63
			}
64
		}, new PreparedStatementConfig() {
65
			
66
			@Override
67
			public void config(PreparedStatement ps) throws SQLException {
68
				int i =0;
69
				for(;i < server.length;++i ){
70
					ps.setString(i+1,server[i]);
71
				}
72
				ps.setString(i,user.getId());
73
			}
74
		});
75
		
76
	}
77

78
	@LoginUser
79
	@Get
80
	@Path("/detail")
81
	public List<AlarmDataItem> query(@JdbcConn Connection con,String aid)throws SQLException{
82
		return this.alarmDao.query(con, aid);
83
	}
84
	
85
	@Post
86
	@Path("/msg/read")
87
	public void read(@JdbcConn(true) Connection con,String aid,@LoginUser SessionUser user)throws SQLException{
88
		this.alarmDao.readed(con,user.getId(), aid);
89
	}
90
}

+ 0 - 21
src/main/java/com/ekexiu/project/bridge/collect/AlarmDataItem.java

@ -1,21 +0,0 @@
1
package com.ekexiu.project.bridge.collect;
2

3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.Table;
5
import org.jfw.apt.orm.core.enums.DE;
6

7
@Table(descp="报警数据")
8
public class AlarmDataItem {
9
    private String id;
10

11
    @Column(descp="报警编号",value=DE.text_de)
12
	public String getId() {
13
		return id;
14
	}
15

16
	public void setId(String id) {
17
		this.id = id;
18
	}
19
    
20
    
21
}

+ 8 - 3
src/main/java/com/ekexiu/project/bridge/collect/CollectDao.java

@ -11,6 +11,7 @@ import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
11 11
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
12 12
import org.jfw.apt.orm.annotation.dao.param.Alias;
13 13
import org.jfw.apt.orm.annotation.dao.param.GtEq;
14
import org.jfw.apt.orm.annotation.dao.param.In;
14 15
import org.jfw.apt.orm.annotation.dao.param.LtEq;
15 16

16 17
@DAO
@ -18,11 +19,11 @@ public interface CollectDao {
18 19

19 20
	@Insert
20 21
	@Batch
21
	int[] insert(Connection con,List<WaveDataItem> items)throws SQLException;
22
	int[] insertWaveDataItems(Connection con,List<WaveDataItem> items)throws SQLException;
22 23
	
23 24
	@SelectList
24
	@OrderBy("ORDER BY CTIME,DIC,CID")
25
	List<WaveDataItem> query(Connection con,String seq,@Alias("ctime") @GtEq String btime,@Alias("ctime") @LtEq String etime)throws SQLException;
25
	@OrderBy("ORDER BY SEQ,CTIME,DIC,CID")
26
	List<WaveDataItem> query(Connection con,@In String[] seq,@Alias("ctime") @GtEq String btime,@Alias("ctime") @LtEq String etime)throws SQLException;
26 27
	
27 28
	@SelectList
28 29
	@OrderBy("ORDER BY CTIME,CID")
@ -31,4 +32,8 @@ public interface CollectDao {
31 32
	@SelectList
32 33
	@OrderBy("ORDER BY CTIME")
33 34
	List<WaveDataItem> query(Connection con,String seq,int did,int cid,@Alias("ctime") @GtEq String btime,@Alias("ctime") @LtEq String etime)throws SQLException;
35
	
36

37
	
38
	
34 39
}

+ 5 - 4
src/main/java/com/ekexiu/project/bridge/collect/CollectService.java

@ -46,14 +46,14 @@ public class CollectService {
46 46
	}
47 47
	
48 48
	@Get
49
	@Path("/wave/node/day")
50
	public List<WaveDataItem> waveByDay(@JdbcConn Connection con,String seq,String day)throws SQLException{
49
	@Path("/wave/server/day")
50
	public List<WaveDataItem> waveByDay(@JdbcConn Connection con,String[] seq,String day)throws SQLException{
51 51
		return this.collectDao.query(con, seq, day+"000000", day+"235959");
52 52
	}
53 53
	
54 54
	@Get
55
	@Path("/wave/node/time")
56
	public List<WaveDataItem> waveByDay(@JdbcConn Connection con,String seq,String begin,String end)throws SQLException{
55
	@Path("/wave/server/time")
56
	public List<WaveDataItem> waveByDay(@JdbcConn Connection con,String[] seq,String begin,String end)throws SQLException{
57 57
		return this.collectDao.query(con, seq, begin,end);
58 58
	}
59 59
	@Get
@ -67,5 +67,6 @@ public class CollectService {
67 67
		return this.collectDao.query(con, seq,box,channel,begin,end);
68 68
	}
69 69
	
70

70 71
	
71 72
}

+ 1 - 17
src/main/java/com/ekexiu/project/bridge/collect/WaveDataItem.java

@ -14,8 +14,7 @@ public class WaveDataItem {
14 14
	private int cid;
15 15
	private int hvalue;
16 16
	private int lvalue;
17
	private String htime;
18
	private String ltime;
17

19 18
	
20 19
	
21 20
	@Column(descp="采集服务器内部编号",value=DE.text_de)
@ -60,19 +59,4 @@ public class WaveDataItem {
60 59
	public void setLvalue(int lvalue) {
61 60
		this.lvalue = lvalue;
62 61
	}
63
	@Column(descp="一秒内最大幅度值时间(YYYYMMDDHH24MISS.zzz)",value=DE.text_de)
64
	public String getHtime() {
65
		return htime;
66
	}
67
	public void setHtime(String htime) {
68
		this.htime = htime;
69
	}
70
	@Column(descp="一秒内最小幅度值时间(YYYYMMDDHH24MISS.zzz)",value=DE.text_de)
71
	public String getLtime() {
72
		return ltime;
73
	}
74
	public void setLtime(String ltime) {
75
		this.ltime = ltime;
76
	}
77
	
78 62
}

+ 1 - 0
src/main/java/com/ekexiu/project/bridge/resource/dao/BridgeDao.java

@ -50,6 +50,7 @@ public interface BridgeDao {
50 50
    @Nullable
51 51
    Bridge queryByCode(Connection con, String code) throws SQLException;
52 52
53
53 54
    @PageSelect
54 55
    @OrderBy("ORDER BY CODE")
55 56
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @Nullable @Like String name, @Nullable String code, int pageSize, int pageNo) throws SQLException;

+ 4 - 0
src/main/java/com/ekexiu/project/bridge/resource/dao/BridgeServerDao.java

@ -44,6 +44,10 @@ public interface BridgeServerDao {
44 44
    @SelectOne
45 45
    @Nullable
46 46
    BridgeServer query(Connection con, String id) throws SQLException;
47
    
48
    @SelectOne
49
    @Nullable
50
    BridgeServer queryBySeq(Connection con,String seq) throws SQLException;
47 51
48 52
    @PageSelect
49 53
    @OrderBy("ORDER BY CODE")

+ 4 - 0
src/main/java/com/ekexiu/project/bridge/resource/dao/CollectDeviceDao.java

@ -44,6 +44,10 @@ public interface CollectDeviceDao {
44 44
    @SelectOne
45 45
    @Nullable
46 46
    CollectDevice query(Connection con, String id) throws SQLException;
47
    
48
    @SelectOne
49
    @Nullable
50
    CollectDevice query(Connection con, String serverId,int seq) throws SQLException;
47 51
48 52
    @PageSelect
49 53
    @OrderBy("ORDER BY CODE")

+ 272 - 0
src/main/java/com/ekexiu/project/bridge/servlet/AlarmDataServlet.java

@ -0,0 +1,272 @@
1
package com.ekexiu.project.bridge.servlet;
2

3
import java.io.ByteArrayOutputStream;
4
import java.io.IOException;
5
import java.io.InputStream;
6
import java.lang.reflect.Type;
7
import java.sql.Connection;
8
import java.util.HashMap;
9
import java.util.LinkedList;
10
import java.util.List;
11
import java.util.Map;
12

13
import javax.servlet.ServletException;
14
import javax.servlet.http.HttpServlet;
15
import javax.servlet.http.HttpServletRequest;
16
import javax.servlet.http.HttpServletResponse;
17
import javax.sql.DataSource;
18

19
import org.jfw.util.ConstData;
20
import org.jfw.util.context.JfwAppContext;
21
import org.jfw.util.io.IoUtil;
22
import org.jfw.util.jdbc.JdbcUtil;
23
import org.jfw.util.json.JsonService;
24
import org.jfw.util.reflect.TypeReference;
25

26
import com.ekexiu.project.bridge.alarm.AlarmDao;
27
import com.ekexiu.project.bridge.alarm.AlarmDataItem;
28
import com.ekexiu.project.bridge.alarm.AlarmMsg;
29
import com.ekexiu.project.bridge.mail.MailService;
30
import com.ekexiu.project.bridge.mobile.MobilePhoneService;
31
import com.ekexiu.project.bridge.resource.dao.BridgeDao;
32
import com.ekexiu.project.bridge.resource.dao.BridgeServerDao;
33
import com.ekexiu.project.bridge.resource.dao.CollectDeviceDao;
34
import com.ekexiu.project.bridge.resource.po.Bridge;
35
import com.ekexiu.project.bridge.resource.po.BridgeServer;
36
import com.ekexiu.project.bridge.resource.po.CollectDevice;
37
import com.ekexiu.project.bridge.system.dao.UserDao;
38
import com.ekexiu.project.bridge.system.po.User;
39

40
public class AlarmDataServlet extends HttpServlet {
41
	private static final long serialVersionUID = 4989044137656168797L;
42

43
	public static Type DATA_TYPE = new TypeReference<Map<Object, Object>>() {
44
	}.getType();
45

46
	private DataSource dataSource;
47
	private AlarmDao alarmDao;
48
	private UserDao userDao;
49
	private BridgeServerDao bridgeServerDao;
50
	private BridgeDao bridgeDao;
51
	private CollectDeviceDao collectDeviceDao;
52
	private MailService mailService;
53
	private MobilePhoneService phoneService;
54

55
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
56
		response.sendError(400);
57
	}
58

59
	@SuppressWarnings({ "rawtypes", "unchecked" })
60
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
61
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
62
		InputStream in = request.getInputStream();
63
		List<AlarmDataItem> items = new LinkedList<AlarmDataItem>();
64
		final AlarmMsg msg = new AlarmMsg();
65
		StringBuilder sb = new StringBuilder();
66
		final Map<User, String> notices = new HashMap<User, String>();
67
		List<Object> datas = null;
68
		AlarmDataItem item = null;
69
		try {
70
			byte[] buf = new byte[8192];
71
			IoUtil.copy(in, baos, buf);
72
			Map<Object, Object> map = JsonService.fromJson(new String(baos.toByteArray(), ConstData.UTF8), DATA_TYPE);
73
			Object tmpObj = map.get("node_id");
74
			if (tmpObj != null && tmpObj instanceof String) {
75
				msg.setServer((String) tmpObj);
76
				tmpObj = map.get("alarm_no");
77
				if (tmpObj != null && tmpObj instanceof String) {
78
					msg.setAid((String) tmpObj);
79
					tmpObj = map.get("box_id");
80
					if (tmpObj != null && tmpObj instanceof String) {
81
						try {
82
							msg.setDevice(Integer.parseInt((String) tmpObj));
83
							tmpObj = map.get("data");
84
							if (tmpObj != null && tmpObj instanceof List) {
85
								datas = (List<Object>) tmpObj;
86
							}
87
						} catch (Exception e) {
88
						}
89
					}
90
				}
91
			}
92
			if (datas != null) {
93
				for (Object obj : datas) {
94
					item = new AlarmDataItem();
95
					if (obj != null && obj instanceof Map) {
96
						map = (Map<Object, Object>) obj;
97
						item.setId(msg.getAid());
98
						tmpObj = map.get("channel_id");
99
						if (tmpObj != null && tmpObj instanceof String) {
100
							try {
101
								item.setSeq(Integer.parseInt((String) tmpObj));
102
							} catch (Exception e) {
103
								items.clear();
104
								break;
105
							}
106
						} else {
107
							items.clear();
108
							break;
109
						}
110
						tmpObj = map.get("start_time");
111
						if (tmpObj != null && tmpObj instanceof String) {
112
							item.setStime((String) tmpObj);
113
						} else {
114
							items.clear();
115
							break;
116
						}
117
						tmpObj = map.get("alarm_time");
118
						if (tmpObj != null && tmpObj instanceof String) {
119
							item.setStime((String) tmpObj);
120
							if (msg.getAlarmTime() == null) {
121
								String at = (String) tmpObj;
122
								at = at.substring(0, 14);
123
								msg.setAlarmTime(at);
124
							}
125

126
						} else {
127
							items.clear();
128
							break;
129
						}
130

131
						sb.setLength(0);
132
						tmpObj = map.get("value");
133
						if (tmpObj != null && tmpObj instanceof List) {
134
							for (Object val : ((List) tmpObj)) {
135
								sb.append(val.toString()).append(",");
136
							}
137
						}
138
						if (sb.length() > 0) {
139
							item.setData(sb.substring(0, sb.length() - 1));
140
						} else {
141
							items.clear();
142
							break;
143
						}
144
						items.add(item);
145
					}
146
				}
147
			}
148
		} finally {
149
			in.close();
150
		}
151
		Connection con = null;
152
		try {
153
			con = this.dataSource.getConnection();
154
			BridgeServer server = this.bridgeServerDao.queryBySeq(con, msg.getServer());
155
			if (server != null) {
156
				Bridge bridge = this.bridgeDao.query(con, server.getBridgeId());
157
				if (bridge != null) {
158
					CollectDevice device = this.collectDeviceDao.query(con, server.getId(), msg.getDevice());
159
					if (device != null) {
160
						String atime = items.get(0).getAtime();
161
						String cnt = "您负责管理维护的桥梁:【" + bridge.getShortName() + "】,于【" + atime.substring(0, 4) + "-" + atime.substring(4, 6) + "-"
162
								+ atime.substring(6, 8) + " " + atime.substring(8, 10) + ":" + atime.substring(10, 12) + ":" + atime.substring(12, 14)
163
								+ "】,编号为【" + device.getCode() + "】的采集盒发生一起报警事件,请尽快登录平台查看详细的报警信息。";
164
						List<User> users = this.userDao.queryByBridgeId(con, bridge.getId(), true);
165
						if (users != null && users.size() > 0) {
166
							for (User u : users) {
167
								msg.setUid(u.getId());
168
								this.alarmDao.insert(con, msg);
169
								notices.put(u, cnt);
170
							}
171
							this.alarmDao.insertAlarmDataItems(con, items);
172
						} else {
173
							items.clear();
174
						}
175
					} else {
176
						items.clear();
177
					}
178
				} else {
179
					items.clear();
180
				}
181
			} else {
182
				items.clear();
183
			}
184
			if (items.size() > 0) {
185
				con.commit();
186
				JfwAppContext.getScheduledExecutorService().equals(new Runnable() {
187
					@Override
188
					public void run() {
189

190
						for (Map.Entry<User, String> entry : notices.entrySet()) {
191
							User u = entry.getKey();
192
							String to = u.getEmail();
193
							try {
194
								if (to != null && to.length() > 0) {
195
									mailService.sendSimpleMail(to, "【" + u.getName() + "】您好:<br>" + entry.getValue(), null, "桥梁临控报警");
196
								}
197
							} catch (Throwable thr) {
198
							}
199
							to = u.getPhone();
200
							try {
201
								if (to != null && to.length() > 0) {
202
									phoneService.sendMessage(to, "【__USERNAME__】您好:" + entry.getValue(), "__USERNAME__", u.getName());
203
								}
204
							} catch (Throwable thr) {
205
							}
206
						}
207

208
					}
209
				});
210
			}
211
		} catch (Exception e) {
212
			if (null != con)
213
				JdbcUtil.rollback(con);
214
			items.clear();
215
		} finally {
216
			if (null != con)
217
				JdbcUtil.close(con);
218
		}
219

220
		response.setDateHeader("Expires", 0);
221
		response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
222
		response.addHeader("Cache-Control", "post-check=0, pre-check=0");
223
		response.setHeader("Pragma", "no-cache");
224
		if (null == request.getCharacterEncoding()) {
225
			request.setCharacterEncoding("UTF-8");
226
			request.setCharacterEncoding("UTF-8");
227
		}
228
		response.setContentType("application/json");
229
		java.io.PrintWriter out = response.getWriter();
230
		if (items.isEmpty()) {
231
			out.write("{\"status\":0,}");
232
			return;
233
		}
234
		out.write("{\"status\":1,}");
235
	}
236

237
	@Override
238
	public void init() throws ServletException {
239
		this.dataSource = JfwAppContext.getDataSource();
240
		if (this.dataSource == null) {
241
			throw new ServletException("not found datasource");
242
		}
243
		this.alarmDao = (AlarmDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_alarm_AlarmDao");
244
		if (this.alarmDao == null) {
245
			throw new ServletException("not found alarmDao");
246
		}
247
		this.userDao = (UserDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_system_dao_UserDao");
248
		if (userDao == null) {
249
			throw new ServletException("not found userDao");
250
		}
251
		this.bridgeServerDao = (BridgeServerDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_resource_dao_BridgeServerDao");
252
		if (null == this.bridgeServerDao) {
253
			throw new ServletException("not found bridgeServerDao");
254
		}
255
		this.bridgeDao = (BridgeDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_resource_dao_BridgeDao");
256
		if (null == this.bridgeDao) {
257
			throw new ServletException("not found bridgeDao");
258
		}
259
		this.collectDeviceDao = (CollectDeviceDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_resource_dao_CollectDeviceDao");
260
		if (null == this.collectDeviceDao) {
261
			throw new ServletException("not found collectDeviceDao");
262
		}
263
		this.mailService = (MailService) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_mail_MailService");
264
		if (null == mailService) {
265
			throw new ServletException("not found mailService");
266
		}
267
		this.phoneService = (MobilePhoneService) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_mobile_MobilePhoneService");
268
		if (null == phoneService) {
269
			throw new ServletException("not found mobilePhoneService");
270
		}
271
	}
272
}

+ 85 - 168
src/main/java/com/ekexiu/project/bridge/servlet/WaveDataServlet.java

@ -18,7 +18,6 @@ import javax.servlet.http.HttpServletResponse;
18 18
import javax.sql.DataSource;
19 19

20 20
import org.jfw.util.ConstData;
21
import org.jfw.util.DateUtil;
22 21
import org.jfw.util.context.JfwAppContext;
23 22
import org.jfw.util.io.IoUtil;
24 23
import org.jfw.util.json.JsonService;
@ -36,8 +35,7 @@ public class WaveDataServlet extends HttpServlet {
36 35
	@SuppressWarnings("unused")
37 36
	private static final LinkedList<List<WaveDataItem>> EMPTY_LIST = new LinkedList<List<WaveDataItem>>();
38 37

39
	public static Type DATA_TYPE = new TypeReference<Map<String, Object>>() {
40
	}.getType();
38
	public static Type DATA_TYPE=new TypeReference<List<Object>>(){}.getType();
41 39

42 40
	private DataSource dataSource;
43 41
	private CollectDao collectDao;
@ -46,95 +44,83 @@ public class WaveDataServlet extends HttpServlet {
46 44
		response.sendError(400);
47 45
	}
48 46

49
	@SuppressWarnings("unchecked")
47
	@SuppressWarnings({ "rawtypes" })
50 48
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
51 49
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
52 50
		InputStream in = request.getInputStream();
53 51
		final List<WaveDataItem> items = new LinkedList<WaveDataItem>();
54
		long currTime = System.currentTimeMillis();
55
		String ctime = DateUtil.formatDateTime(currTime);
56
		// String otime = DateUtil.formatDateTime(currTime -(5* 60*1000));
57
		String serverId = null;
58 52
		try {
59 53
			byte[] buf = new byte[8192];
60 54
			IoUtil.copy(in, baos, buf);
61
			Map<String, Object> map = JsonService.fromJson(new String(baos.toByteArray(), ConstData.UTF8), DATA_TYPE);
62
			Object tmpObj = map.get("node_id");
63
			if (null != tmpObj && (tmpObj instanceof String)) {
64
				serverId = (String) tmpObj;
65
				tmpObj = map.get("data");
66
				if (null != tmpObj && (tmpObj instanceof List)) {
67
					List<Object> ds = (List<Object>) tmpObj;
68
					for (Object wo : ds) {
69
						WaveDataItem item = new WaveDataItem();
70
						item.setCtime(ctime);
71
						item.setSeq(serverId);
72
						if (wo instanceof Map) {
73
							Map<Object, Object> im = (Map<Object, Object>) wo;
74
							tmpObj = im.get("box_id");
75
							if (tmpObj == null || (!(tmpObj instanceof Double))) {
76
								items.clear();
77
								break;
78
							}
79
							item.setDid(((Double) tmpObj).intValue());
80
							tmpObj = im.get("box_id");
81
							if (tmpObj == null || (!(tmpObj instanceof Double))) {
82
								items.clear();
83
								break;
84
							}
85
							item.setCid(((Double) tmpObj).intValue());
86
							tmpObj = im.get("value");
87
							if (null == tmpObj && (!(tmpObj instanceof List))) {
88
								items.clear();
89
								break;
90
							}
91
							List<Object> vs = (List<Object>) tmpObj;
92
							if (vs.size() != 2) {
93
								items.clear();
94
								break;
95
							}
96
							tmpObj = vs.get(0);
97
							if (tmpObj == null || (!(tmpObj instanceof List)) || (2 != ((List<?>) tmpObj).size())) {
98
								items.clear();
99
								break;
100
							}
101
							List<Object> vi = (List<Object>) tmpObj;
102
							tmpObj = vi.get(0);
103
							if (tmpObj == null || (!(tmpObj instanceof String))) {
104
								items.clear();
105
								break;
106
							}
107
							item.setLtime((String) tmpObj);
108
							tmpObj = vi.get(1);
109
							if (tmpObj == null || (!(tmpObj instanceof Double))) {
110
								items.clear();
111
								break;
112
							}
113
							item.setLvalue(((Double) tmpObj).intValue());
114
							tmpObj = vs.get(1);
115
							if (tmpObj == null || (!(tmpObj instanceof List)) || (2 != ((List<?>) tmpObj).size())) {
116
								items.clear();
117
								break;
118
							}
119
							vi = (List<Object>) tmpObj;
120
							tmpObj = vi.get(0);
121
							if (tmpObj == null || (!(tmpObj instanceof String))) {
122
								items.clear();
123
								break;
124
							}
125
							item.setHtime((String) tmpObj);
126
							tmpObj = vi.get(1);
127
							if (tmpObj == null || (!(tmpObj instanceof Double))) {
128
								items.clear();
129
								break;
130
							}
131
							item.setHvalue(((Double) tmpObj).intValue());
132
							items.add(item);
133
						} else {
55
			List<Object> param = JsonService.fromJson(new String(baos.toByteArray(), ConstData.UTF8), DATA_TYPE);
56
			for (Object obj : param) {
57
				if (obj instanceof List) {
58
					WaveDataItem item = new WaveDataItem();
59
					Object tmpObj = ((List) obj).get(0);
60
					if (tmpObj instanceof String) {
61
						item.setSeq((String) tmpObj);
62
					} else {
63
						items.clear();
64
						break;
65
					}
66
					tmpObj = ((List) obj).get(3);
67
					if (tmpObj instanceof String) {
68
						item.setCtime((String) tmpObj);
69
					} else {
70
						items.clear();
71
						break;
72
					}
73
					tmpObj = ((List) obj).get(1);
74
					if (tmpObj instanceof String) {
75
						try {
76
							item.setDid(Integer.parseInt((String) tmpObj));
77
						} catch (Exception e) {
78
							items.clear();
79
							break;
80
						}
81
					} else {
82
						items.clear();
83
						break;
84
					}
85
					tmpObj = ((List) obj).get(2);
86
					if (tmpObj instanceof String) {
87
						try {
88
							item.setCid(Integer.parseInt((String) tmpObj));
89
						} catch (Exception e) {
90
							items.clear();
91
							break;
92
						}
93
					} else {
94
						items.clear();
95
						break;
96
					}
97
					tmpObj = ((List) obj).get(4);
98
					if (tmpObj instanceof String) {
99
						try {
100
							item.setLvalue(Integer.parseInt((String) tmpObj));
101
						} catch (Exception e) {
102
							items.clear();
103
							break;
104
						}
105
					} else {
106
						items.clear();
107
						break;
108
					}
109
					tmpObj = ((List) obj).get(5);
110
					if (tmpObj instanceof String) {
111
						try {
112
							item.setHvalue(Integer.parseInt((String) tmpObj));
113
						} catch (Exception e) {
134 114
							items.clear();
135 115
							break;
136 116
						}
117
					} else {
118
						items.clear();
119
						break;
137 120
					}
121
				} else {
122
					items.clear();
123
					break;
138 124
				}
139 125
			}
140 126
		} finally {
@ -154,38 +140,31 @@ public class WaveDataServlet extends HttpServlet {
154 140
			out.write("{\"status\":0,}");
155 141
			return;
156 142
		}
157

158
		List<WaveDataItem> olist = null;
143
		out.write("{\"status\":1,}");
159 144
		synchronized (DATA_CACHE) {
160
			olist = DATA_CACHE.get(serverId);
145
			DATA_CACHE.put(items.get(0).getSeq(), items);
161 146
		}
162
		if (olist == null || olist.get(0).getCtime().compareTo(ctime) < 0) {
163
			synchronized (DATA_CACHE) {
164
				DATA_CACHE.put(serverId, items);
165
			}
166
			JfwAppContext.getScheduledExecutorService().execute(new Runnable() {
167
				@Override
168
				public void run() {
147
		JfwAppContext.getScheduledExecutorService().execute(new Runnable() {
148
			@Override
149
			public void run() {
150
				try {
151
					Connection con = dataSource.getConnection();
169 152
					try {
170
						Connection con = dataSource.getConnection();
171
						try {
172
							collectDao.insert(con, items);
173
							con.commit();
174
						} catch (SQLException e) {
175
							con.rollback();
176
						} finally {
177
							con.close();
178
						}
179
					} catch (Throwable thr) {
153
						collectDao.insertWaveDataItems(con, items);
154
						con.commit();
155
					} catch (SQLException e) {
156
						con.rollback();
157
					} finally {
158
						con.close();
180 159
					}
181

160
				} catch (Throwable thr) {
182 161
				}
183
			});
184
		}
185
		out.write("{\"status\":1,}");
186
		return;
162

163
			}
164
		});
187 165
	}
188 166

167

189 168
	@Override
190 169
	public void init() throws ServletException {
191 170
		this.dataSource = JfwAppContext.getDataSource();
@ -202,66 +181,4 @@ public class WaveDataServlet extends HttpServlet {
202 181
		}
203 182
		s.setWaveCache(DATA_CACHE);
204 183
	}
205

206
	public static void main(String args[]) throws Exception {
207
		Map<Object, Object> map = JsonService.fromJson("{\r\n" + "\"node_id\": \"12345\",\r\n" + "    \"data\": [	\r\n" + "        {		\r\n"
208
				+ "            \"box_id\": 1, \r\n" + "            \"channel_id\": 1, 	\r\n" + "            \"value\": [	\r\n" + "                [\r\n"
209
				+ "                    \"20180101101010.000\",	\r\n" + "                    -12	\r\n" + "                ], \r\n" + "                [\r\n"
210
				+ "                    \"20180101101011.500\", \r\n" + "                    13			\r\n" + "                ]\r\n" + "            ]\r\n"
211
				+ "        }, \r\n" + "        {\r\n" + "            \"box_id\": 2, \r\n" + "            \"channel_id\": 9, \r\n"
212
				+ "            \"value\": [\r\n" + "                [\r\n" + "                    \"20180101101010.100\", \r\n" + "                    -2\r\n"
213
				+ "                ], \r\n" + "                [\r\n" + "                    \"20180101101011.200\", \r\n" + "                    34\r\n"
214
				+ "                ]\r\n" + "            ]\r\n" + "        }\r\n" + "    ]\r\n" + "}", DATA_TYPE);
215

216
		outMap(0, map);
217

218
	}
219

220
	@SuppressWarnings("unchecked")
221
	public static void outList(int left, List<Object> list) {
222
		for (Object obj : list) {
223
			for (int i = 0; i < left; ++i) {
224
				System.out.print(" ");
225
			}
226
			System.out.print(obj.getClass().getName() + "  ");
227
			if (obj instanceof List) {
228
				System.out.println("===>List");
229
				outList(left + 8, (List<Object>) obj);
230
			} else if (obj instanceof Map) {
231
				System.out.println("===>Map");
232
				outMap(left + 8, (Map<Object, Object>) obj);
233
			} else {
234
				System.out.println("===>" + ((obj instanceof Double) ? ((Double) obj).intValue() : obj.toString()));
235
			}
236

237
		}
238

239
	}
240

241
	@SuppressWarnings("unchecked")
242
	public static void outMap(int left, Map<Object, Object> map) {
243
		for (Map.Entry<Object, Object> entry : map.entrySet()) {
244
			for (int i = 0; i < left; ++i) {
245
				System.out.print(" ");
246
			}
247
			Object obj = entry.getKey();
248
			System.out.println("KEY:" + obj.getClass().getName() + "    " + obj.toString());
249
			for (int i = 0; i < left; ++i) {
250
				System.out.print(" ");
251
			}
252
			obj = entry.getValue();
253
			System.out.print("VALUE:");
254
			if (obj instanceof List) {
255
				System.out.println("===>List");
256
				outList(left + 8, (List<Object>) obj);
257
			} else if (obj instanceof Map) {
258
				System.out.println("===>Map");
259
				outMap(left + 8, (Map<Object, Object>) obj);
260
			} else {
261
				System.out.println("===>" + obj.getClass().getName() + "       " + obj.toString());
262
			}
263

264
		}
265
	}
266

267 184
}

+ 61 - 49
src/main/java/com/ekexiu/project/bridge/system/dao/UserDao.java

@ -15,15 +15,19 @@ import org.jfw.apt.orm.annotation.dao.method.Where;
15 15
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
16 16
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
17 17
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
18
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
18 19
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
19 20
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
20 21
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
21 22
import org.jfw.apt.orm.annotation.dao.param.Like;
22 23
import org.jfw.apt.orm.annotation.dao.param.Set;
24
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
25
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
23 26
import org.jfw.util.PageQueryResult;
24 27
25 28
import java.sql.Connection;
26 29
import java.sql.SQLException;
30
import java.util.List;
27 31
28 32
/**
29 33
 * Created by TT on 2018/8/7.
@ -31,53 +35,61 @@ import java.sql.SQLException;
31 35
@DAO
32 36
public interface UserDao {
33 37
34
    @Nullable
35
    @SelectOne
36
    User query(Connection con, String id)throws SQLException;
37
38
    @Nullable
39
    @SelectOne
40
    @Where("active = '1'")
41
    User login(Connection con, String account,String passwd) throws SQLException;
42
43
    @Insert
44
    int insert(Connection con, User user) throws SQLException;
45
46
    @Update
47
    @Exclude("passwd")
48
    @Dynamic
49
    int update(Connection con, User user) throws SQLException;
50
    @UpdateWith
51
    @From(User.class)
52
    int updatePasswdWithMobile(Connection con,@Set String passwd,String account) throws SQLException;
53
54
    @UpdateWith
55
    @From(User.class)
56
    @SetSentence("active = '0'")
57
    int ban(Connection con,@Set String modifier, String id) throws SQLException;
58
59
    @PageSelect
60
    @Where("active = '1'")
61
    PageQueryResult<User> pageQuery(Connection con, @Nullable String account, @Nullable @Like String name, @Nullable @Like String comp, int pageSize, int pageNo) throws SQLException;
62
63
    @UpdateWith
64
    @From(User.class)
65
    int changePw(Connection con, @Set String passwd, String id) throws SQLException;
66
67
    @UpdateWith
68
    @From(Notice.class)
69
    @IncludeFixSet("modifyTime")
70
    int updateNotice(Connection con, @Set String cnt,@Set String modifier) throws SQLException;
71
72
    @Nullable
73
    @SelectOne
74
    User queryByAccount(Connection con,String account)throws SQLException;
75
76
    @Insert
77
    @Batch
78
    int[] insert(Connection con, UserBridge[] userBridges) throws SQLException;
79
80
    @DeleteWith
81
    @From(UserBridge.class)
82
    int delete(Connection con, String uid) throws SQLException;
38
	@Nullable
39
	@SelectOne
40
	User query(Connection con, String id) throws SQLException;
41
42
	@Nullable
43
	@SelectOne
44
	@Where("active = '1'")
45
	User login(Connection con, String account, String passwd) throws SQLException;
46
47
	@Insert
48
	int insert(Connection con, User user) throws SQLException;
49
50
	@Update
51
	@Exclude("passwd")
52
	@Dynamic
53
	int update(Connection con, User user) throws SQLException;
54
55
	@UpdateWith
56
	@From(User.class)
57
	int updatePasswdWithMobile(Connection con, @Set String passwd, String account) throws SQLException;
58
59
	@UpdateWith
60
	@From(User.class)
61
	@SetSentence("active = '0'")
62
	int ban(Connection con, @Set String modifier, String id) throws SQLException;
63
64
	@PageSelect
65
	@Where("active = '1'")
66
	PageQueryResult<User> pageQuery(Connection con, @Nullable String account, @Nullable @Like String name, @Nullable @Like String comp, int pageSize,
67
			int pageNo) throws SQLException;
68
69
	@UpdateWith
70
	@From(User.class)
71
	int changePw(Connection con, @Set String passwd, String id) throws SQLException;
72
73
	@UpdateWith
74
	@From(Notice.class)
75
	@IncludeFixSet("modifyTime")
76
	int updateNotice(Connection con, @Set String cnt, @Set String modifier) throws SQLException;
77
78
	@Nullable
79
	@SelectOne
80
	User queryByAccount(Connection con, String account) throws SQLException;
81
82
	@Insert
83
	@Batch
84
	int[] insert(Connection con, UserBridge[] userBridges) throws SQLException;
85
86
	@DeleteWith
87
	@From(UserBridge.class)
88
	int delete(Connection con, String uid) throws SQLException;
89
90
	@SelectList
91
	@From(User.class)
92
	List<User> queryByBridgeId(Connection con,
93
			@SqlColumn(value = "ID IN (SELECT UID FROM USER_BRIDGE WHERE BRIDGE=?", handlerClass = StringHandler.class) String bridge, @Nullable Boolean active)
94
			throws SQLException;
83 95
}

+ 10 - 1
src/main/webapp/WEB-INF/web.xml

@ -34,6 +34,11 @@
34 34
		<servlet-class>com.ekexiu.project.bridge.servlet.WaveDataServlet</servlet-class>
35 35
		<load-on-startup>3</load-on-startup>
36 36
	</servlet>
37
	<servlet>
38
		<servlet-name>alarm</servlet-name>
39
		<servlet-class>com.ekexiu.project.bridge.servlet.AlarmDataServlet</servlet-class>
40
		<load-on-startup>4</load-on-startup>
41
	</servlet>
37 42
	<servlet-mapping>
38 43
		<servlet-name>ajax</servlet-name>
39 44
		<url-pattern>/ajax/*</url-pattern>
@ -42,8 +47,12 @@
42 47
		<servlet-name>PictureVC</servlet-name>
43 48
		<url-pattern>/ajax/PictureVC</url-pattern>
44 49
	</servlet-mapping>
45
		<servlet-mapping>
50
	<servlet-mapping>
46 51
		<servlet-name>wave</servlet-name>
47 52
		<url-pattern>/waveData</url-pattern>
48 53
	</servlet-mapping>
54
		<servlet-mapping>
55
		<servlet-name>alarm</servlet-name>
56
		<url-pattern>/alarmData</url-pattern>
57
	</servlet-mapping>
49 58
</web-app>