jiapeng 6 anni fa
parent
commit
4350388459

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

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
}

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

1
package com.ekexiu.project.bridge.collect;
1
package com.ekexiu.project.bridge.alarm;
2

2

3
import org.jfw.apt.orm.annotation.entry.Column;
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;

+ 14 - 6
src/main/java/com/ekexiu/project/bridge/collect/AlarmMsg.java

1
package com.ekexiu.project.bridge.collect;
1
package com.ekexiu.project.bridge.alarm;
2

2

3
import org.jfw.apt.orm.annotation.entry.Column;
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
12
public class AlarmMsg {
12
public class AlarmMsg {
13
	private String uid;
13
	private String uid;
14
	private String aid;
14
	private String aid;
15
	private String seq;
15
	private String server;
16
	private int  device;
16
	private int  device;
17
	private boolean readed;
17
	private boolean readed;
18
	private String readTime;
18
	private String readTime;
19
	private String alarmTime;
19
	private String createTime;
20
	private String createTime;
20
	
21
	
21
	@Column(descp="用户ID",value=DE.refid_32)
22
	@Column(descp="用户ID",value=DE.refid_32)
33
		this.aid = aid;
34
		this.aid = aid;
34
	}
35
	}
35
	@Column(descp="采集服务器内部编号",value=DE.text_de)
36
	@Column(descp="采集服务器内部编号",value=DE.text_de)
36
	public String getSeq() {
37
		return seq;
37
	public String getServer() {
38
		return server;
38
	}
39
	}
39
	public void setSeq(String seq) {
40
		this.seq = seq;
40
	public void setServer(String server) {
41
		this.server = server;
41
	}
42
	}
42
	@Column(descp="采集盒内部编号",value=DE.int_de)
43
	@Column(descp="采集盒内部编号",value=DE.int_de)
43
	public int getDevice() {
44
	public int getDevice() {
67
	public void setCreateTime(String createTime) {
68
	public void setCreateTime(String createTime) {
68
		this.createTime = createTime;
69
		this.createTime = createTime;
69
	}
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
	}
70
	
78
	
71
	
79
	
72
	
80
	

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

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
}

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

11
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
11
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
12
import org.jfw.apt.orm.annotation.dao.param.Alias;
12
import org.jfw.apt.orm.annotation.dao.param.Alias;
13
import org.jfw.apt.orm.annotation.dao.param.GtEq;
13
import org.jfw.apt.orm.annotation.dao.param.GtEq;
14
import org.jfw.apt.orm.annotation.dao.param.In;
14
import org.jfw.apt.orm.annotation.dao.param.LtEq;
15
import org.jfw.apt.orm.annotation.dao.param.LtEq;
15

16

16
@DAO
17
@DAO
18

19

19
	@Insert
20
	@Insert
20
	@Batch
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
	@SelectList
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
	@SelectList
28
	@SelectList
28
	@OrderBy("ORDER BY CTIME,CID")
29
	@OrderBy("ORDER BY CTIME,CID")
32
	@OrderBy("ORDER BY CTIME")
33
	@OrderBy("ORDER BY CTIME")
33
	List<WaveDataItem> query(Connection con,String seq,int did,int cid,@Alias("ctime") @GtEq String btime,@Alias("ctime") @LtEq String etime)throws SQLException;
34
	List<WaveDataItem> query(Connection con,String seq,int did,int cid,@Alias("ctime") @GtEq String btime,@Alias("ctime") @LtEq String etime)throws SQLException;
34
	
35
	
35
	@Insert
36
	int insert(Connection con,AlarmMsg msg)throws SQLException;
37
	@Insert
38
	@Batch
39
	int[] insert(Connection con,AlarmDataItem[] items)throws SQLException;
36

37
	
38
	
40
}
39
}

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

46
	}
46
	}
47
	
47
	
48
	@Get
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
		return this.collectDao.query(con, seq, day+"000000", day+"235959");
51
		return this.collectDao.query(con, seq, day+"000000", day+"235959");
52
	}
52
	}
53
	
53
	
54
	@Get
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
		return this.collectDao.query(con, seq, begin,end);
57
		return this.collectDao.query(con, seq, begin,end);
58
	}
58
	}
59
	@Get
59
	@Get
67
		return this.collectDao.query(con, seq,box,channel,begin,end);
67
		return this.collectDao.query(con, seq,box,channel,begin,end);
68
	}
68
	}
69
	
69
	
70

70
	
71
	
71
}
72
}

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

50
    @Nullable
50
    @Nullable
51
    Bridge queryByCode(Connection con, String code) throws SQLException;
51
    Bridge queryByCode(Connection con, String code) throws SQLException;
52
52
53
53
    @PageSelect
54
    @PageSelect
54
    @OrderBy("ORDER BY CODE")
55
    @OrderBy("ORDER BY CODE")
55
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @Nullable @Like String name, @Nullable String code, int pageSize, int pageNo) throws SQLException;
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

43
    @SelectOne
43
    @SelectOne
44
    @Nullable
44
    @Nullable
45
    BridgeServer query(Connection con, String id) throws SQLException;
45
    BridgeServer query(Connection con, String id) throws SQLException;
46
    
47
    @SelectOne
48
    @Nullable
49
    BridgeServer queryBySeq(Connection con,String seq) throws SQLException;
46
50
47
    @PageSelect
51
    @PageSelect
48
    @OrderBy("ORDER BY CODE")
52
    @OrderBy("ORDER BY CODE")

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

43
    @SelectOne
43
    @SelectOne
44
    @Nullable
44
    @Nullable
45
    CollectDevice query(Connection con, String id) throws SQLException;
45
    CollectDevice query(Connection con, String id) throws SQLException;
46
    
47
    @SelectOne
48
    @Nullable
49
    CollectDevice query(Connection con, String serverId,int seq) throws SQLException;
46
50
47
    @PageSelect
51
    @PageSelect
48
    @OrderBy("ORDER BY CODE")
52
    @OrderBy("ORDER BY CODE")

+ 1 - 1
src/main/java/com/ekexiu/project/bridge/resource/po/Transducer.java

31
	public void setId(String id) {
31
	public void setId(String id) {
32
		this.id = id;
32
		this.id = id;
33
	}
33
	}
34
	@Column(descp="内部编号",value=DE.text_de)
34
	@Column(descp="内部编号",value=DE.int_de)
35
	public int getSeq() {
35
	public int getSeq() {
36
		return seq;
36
		return seq;
37
	}
37
	}

+ 152 - 79
src/main/java/com/ekexiu/project/bridge/servlet/AlarmDataServlet.java

5
import java.io.InputStream;
5
import java.io.InputStream;
6
import java.lang.reflect.Type;
6
import java.lang.reflect.Type;
7
import java.sql.Connection;
7
import java.sql.Connection;
8
import java.sql.SQLException;
9
import java.util.HashMap;
8
import java.util.HashMap;
10
import java.util.LinkedList;
9
import java.util.LinkedList;
11
import java.util.List;
10
import java.util.List;
24
import org.jfw.util.json.JsonService;
23
import org.jfw.util.json.JsonService;
25
import org.jfw.util.reflect.TypeReference;
24
import org.jfw.util.reflect.TypeReference;
26

25

27
import com.ekexiu.project.bridge.collect.AlarmDataItem;
28
import com.ekexiu.project.bridge.collect.AlarmMsg;
29
import com.ekexiu.project.bridge.collect.CollectDao;
30
import com.ekexiu.project.bridge.collect.CollectService;
31
import com.ekexiu.project.bridge.collect.WaveDataItem;
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;
32
import com.ekexiu.project.bridge.resource.po.Bridge;
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;
33
import com.ekexiu.project.bridge.system.dao.UserDao;
37
import com.ekexiu.project.bridge.system.dao.UserDao;
34
import com.ekexiu.project.bridge.system.po.User;
38
import com.ekexiu.project.bridge.system.po.User;
35

39

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

42

39

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

45

42
	private DataSource dataSource;
46
	private DataSource dataSource;
43
	private CollectDao collectDao;
47
	private AlarmDao alarmDao;
44
	private UserDao userDao;
48
	private UserDao userDao;
49
	private BridgeServerDao bridgeServerDao;
50
	private BridgeDao bridgeDao;
51
	private CollectDeviceDao collectDeviceDao;
52
	private MailService mailService;
53
	private MobilePhoneService phoneService;
45

54

46
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
55
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
47
		response.sendError(400);
56
		response.sendError(400);
51
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
60
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
52
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
61
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
53
		InputStream in = request.getInputStream();
62
		InputStream in = request.getInputStream();
54
		 List<AlarmDataItem> items = new LinkedList<AlarmDataItem>();
63
		List<AlarmDataItem> items = new LinkedList<AlarmDataItem>();
55
		final AlarmMsg msg = new AlarmMsg();
64
		final AlarmMsg msg = new AlarmMsg();
56
		StringBuilder sb = new StringBuilder();
65
		StringBuilder sb = new StringBuilder();
66
		final Map<User, String> notices = new HashMap<User, String>();
57
		List<Object> datas = null;
67
		List<Object> datas = null;
68
		AlarmDataItem item = null;
58
		try {
69
		try {
59
			byte[] buf = new byte[8192];
70
			byte[] buf = new byte[8192];
60
			IoUtil.copy(in, baos, buf);
71
			IoUtil.copy(in, baos, buf);
61
			Map<Object,Object> map = JsonService.fromJson(new String(baos.toByteArray(), ConstData.UTF8), DATA_TYPE);
72
			Map<Object, Object> map = JsonService.fromJson(new String(baos.toByteArray(), ConstData.UTF8), DATA_TYPE);
62
			Object tmpObj = map.get("node_id");
73
			Object tmpObj = map.get("node_id");
63
			if(tmpObj != null && tmpObj instanceof String){
64
				msg.setSeq((String)tmpObj);
74
			if (tmpObj != null && tmpObj instanceof String) {
75
				msg.setServer((String) tmpObj);
65
				tmpObj = map.get("alarm_no");
76
				tmpObj = map.get("alarm_no");
66
				if(tmpObj != null && tmpObj instanceof String){
67
					msg.setAid((String)tmpObj);
77
				if (tmpObj != null && tmpObj instanceof String) {
78
					msg.setAid((String) tmpObj);
68
					tmpObj = map.get("box_id");
79
					tmpObj = map.get("box_id");
69
					if(tmpObj != null && tmpObj instanceof String){
70
						try{
71
							msg.setDevice(Integer.parseInt((String)tmpObj));
80
					if (tmpObj != null && tmpObj instanceof String) {
81
						try {
82
							msg.setDevice(Integer.parseInt((String) tmpObj));
72
							tmpObj = map.get("data");
83
							tmpObj = map.get("data");
73
							if(tmpObj != null && tmpObj instanceof List){
74
								datas=(List<Object>) tmpObj;
84
							if (tmpObj != null && tmpObj instanceof List) {
85
								datas = (List<Object>) tmpObj;
75
							}
86
							}
76
						}catch(Exception e){
87
						} catch (Exception e) {
77
						}
88
						}
78
					}
89
					}
79
				}
90
				}
80
			}
91
			}
81
			if(datas!=null){
82
				for(Object obj:datas){
83
					AlarmDataItem item = new AlarmDataItem();
84
					if(obj !=null && obj instanceof Map){
85
						map = (Map<Object,Object>)obj;
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;
86
						item.setId(msg.getAid());
97
						item.setId(msg.getAid());
87
						tmpObj = map.get("channel_id");
98
						tmpObj = map.get("channel_id");
88
						if(tmpObj != null && tmpObj instanceof String){
89
							try{
90
								item.setSeq(Integer.parseInt((String)tmpObj));
91
							}catch(Exception e){
99
						if (tmpObj != null && tmpObj instanceof String) {
100
							try {
101
								item.setSeq(Integer.parseInt((String) tmpObj));
102
							} catch (Exception e) {
92
								items.clear();
103
								items.clear();
93
								break;
104
								break;
94
							}
105
							}
95
						}else{
106
						} else {
96
							items.clear();
107
							items.clear();
97
							break;
108
							break;
98
						}
109
						}
99
						tmpObj = map.get("start_time");
110
						tmpObj = map.get("start_time");
100
						if(tmpObj != null && tmpObj instanceof String){
101
								item.setStime((String)tmpObj);
102
						}else{
111
						if (tmpObj != null && tmpObj instanceof String) {
112
							item.setStime((String) tmpObj);
113
						} else {
103
							items.clear();
114
							items.clear();
104
							break;
115
							break;
105
						}
116
						}
106
						tmpObj = map.get("alarm_time");
117
						tmpObj = map.get("alarm_time");
107
						if(tmpObj != null && tmpObj instanceof String){
108
								item.setStime((String)tmpObj);
109
						}else{
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 {
110
							items.clear();
127
							items.clear();
111
							break;
128
							break;
112
						}
129
						}
113
						
130

114
						sb.setLength(0);
131
						sb.setLength(0);
115
						tmpObj = map.get("value");
132
						tmpObj = map.get("value");
116
						if(tmpObj != null && tmpObj instanceof List){
117
							for(Object val:((List)tmpObj)){
133
						if (tmpObj != null && tmpObj instanceof List) {
134
							for (Object val : ((List) tmpObj)) {
118
								sb.append(val.toString()).append(",");
135
								sb.append(val.toString()).append(",");
119
							}
136
							}
120
						}
137
						}
121
						if(sb.length()>0){
122
							item.setData(sb.substring(0,sb.length()-1));
123
						}else{
138
						if (sb.length() > 0) {
139
							item.setData(sb.substring(0, sb.length() - 1));
140
						} else {
124
							items.clear();
141
							items.clear();
125
							break;
142
							break;
126
						}
143
						}
144
						items.add(item);
127
					}
145
					}
128
				}
146
				}
129
			}
147
			}
130
		} finally {
148
		} finally {
131
			in.close();
149
			in.close();
132
		}
150
		}
133
		
134
		Connection con = this.dataSource.getConnection();
135
		try{
136
		//	final Bridge bridge = this
137
			
138
		//	List<User> users = this.userDao.queryByBridgeCode(con, msg.getSeq(), true);
139
			
140
			
141
		}finally{
142
			JdbcUtil.close(con);
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);
143
		}
218
		}
144
		
219

145
		response.setDateHeader("Expires", 0);
220
		response.setDateHeader("Expires", 0);
146
		response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
221
		response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
147
		response.addHeader("Cache-Control", "post-check=0, pre-check=0");
222
		response.addHeader("Cache-Control", "post-check=0, pre-check=0");
157
			return;
232
			return;
158
		}
233
		}
159
		out.write("{\"status\":1,}");
234
		out.write("{\"status\":1,}");
160
		synchronized (DATA_CACHE) {
161
			DATA_CACHE.put(items.get(0).getSeq(), items);
162
		}
163
		JfwAppContext.getScheduledExecutorService().execute(new Runnable() {
164
			@Override
165
			public void run() {
166
				try {
167
					Connection con = dataSource.getConnection();
168
					try {
169
						collectDao.insert(con, items);
170
						con.commit();
171
					} catch (SQLException e) {
172
						con.rollback();
173
					} finally {
174
						con.close();
175
					}
176
				} catch (Throwable thr) {
177
				}
178

179
			}
180
		});
181
	}
235
	}
182

236

183

184
	@Override
237
	@Override
185
	public void init() throws ServletException {
238
	public void init() throws ServletException {
186
		this.dataSource = JfwAppContext.getDataSource();
239
		this.dataSource = JfwAppContext.getDataSource();
187
		if (this.dataSource == null) {
240
		if (this.dataSource == null) {
188
			throw new ServletException("not found datasource");
241
			throw new ServletException("not found datasource");
189
		}
242
		}
190
		this.collectDao = (CollectDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_collect_CollectDao");
191
		if (this.dataSource == null) {
192
			throw new ServletException("not found collectDao");
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");
193
		}
246
		}
194
		this.userDao = (UserDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_system_dao_UserDao");
247
		this.userDao = (UserDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_system_dao_UserDao");
195
		if (userDao == null) {
248
		if (userDao == null) {
196
			throw new ServletException("not found userDao");
249
			throw new ServletException("not found userDao");
197
		}
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
		}
198
	}
271
	}
199
}
272
}

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

150
				try {
150
				try {
151
					Connection con = dataSource.getConnection();
151
					Connection con = dataSource.getConnection();
152
					try {
152
					try {
153
						collectDao.insert(con, items);
153
						collectDao.insertWaveDataItems(con, items);
154
						con.commit();
154
						con.commit();
155
					} catch (SQLException e) {
155
					} catch (SQLException e) {
156
						con.rollback();
156
						con.rollback();

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

15
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
15
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
16
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
16
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
17
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
17
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
18
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
18
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
19
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
19
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
20
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
20
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
21
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
21
import org.jfw.apt.orm.annotation.dao.param.Like;
22
import org.jfw.apt.orm.annotation.dao.param.Like;
22
import org.jfw.apt.orm.annotation.dao.param.Set;
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
import org.jfw.util.PageQueryResult;
26
import org.jfw.util.PageQueryResult;
24
27
25
import java.sql.Connection;
28
import java.sql.Connection;
26
import java.sql.SQLException;
29
import java.sql.SQLException;
30
import java.util.List;
27
31
28
/**
32
/**
29
 * Created by TT on 2018/8/7.
33
 * Created by TT on 2018/8/7.
31
@DAO
35
@DAO
32
public interface UserDao {
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
}