|
@@ -3,8 +3,10 @@ package com.cn.processor;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
|
import org.jim.common.ImSessionContext;
|
|
|
+import org.jim.common.cache.redis.JedisTemplate;
|
|
|
import org.jim.common.cache.redis.RedisCache;
|
|
|
import org.jim.common.cache.redis.RedisCacheManager;
|
|
|
+import org.jim.common.cache.redis.RedissonTemplate;
|
|
|
import org.jim.common.packets.*;
|
|
|
import org.jim.server.model.ChatGroup;
|
|
|
import org.jim.server.model.Conversation;
|
|
@@ -14,6 +16,8 @@ import org.jim.server.command.handler.processor.chat.DefaultAsyncChatMessageProc
|
|
|
import org.jim.server.enums.VisitTypeEnum;
|
|
|
import org.jim.server.model.GroupConversationMiddle;
|
|
|
import org.jim.server.util.SnowflakeIdUtils;
|
|
|
+import org.redisson.api.RLock;
|
|
|
+import org.redisson.api.RedissonClient;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.tio.core.ChannelContext;
|
|
@@ -24,6 +28,7 @@ import java.util.Date;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
+import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
/**
|
|
|
* 异步聊天持久化
|
|
@@ -36,50 +41,74 @@ public class IMChatAsyncChatMessageProcessor extends DefaultAsyncChatMessageProc
|
|
|
|
|
|
private static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
|
|
+ private static RedissonClient redisson = null;
|
|
|
+
|
|
|
+ private static RedisCache groupCache;
|
|
|
+
|
|
|
+ private static RedisCache userCache;
|
|
|
+
|
|
|
//设置key的过期时间 30分钟
|
|
|
private static final int TIME_OUT = 30 * 60;
|
|
|
|
|
|
private final String SUBFIX = ":";
|
|
|
|
|
|
- private static RedisCache groupCache;
|
|
|
-
|
|
|
- private static RedisCache userCache;
|
|
|
+ private final String SYNC_CHAT = "SYNC_CHAT";
|
|
|
|
|
|
static{
|
|
|
- RedisCacheManager.register(USER, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
- RedisCacheManager.register(GROUP, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
- RedisCacheManager.register(STORE, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
- RedisCacheManager.register(PUSH, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
- groupCache = RedisCacheManager.getCache(GROUP);
|
|
|
- userCache = RedisCacheManager.getCache(USER);
|
|
|
+ try {
|
|
|
+ RedisCacheManager.register(USER, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
+ RedisCacheManager.register(GROUP, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
+ RedisCacheManager.register(STORE, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
+ RedisCacheManager.register(PUSH, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
+ groupCache = RedisCacheManager.getCache(GROUP);
|
|
|
+ userCache = RedisCacheManager.getCache(USER);
|
|
|
+ redisson = RedissonTemplate.me().getRedissonClient();
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.info(" IMChatAsyncChatMessageProcessor 初始化失败!");
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public void doHandler(ChatBody chatBody, ChannelContext channelContext) {
|
|
|
log.info("聊天记录持久化... 开始:" + sdf.format(new Date()));
|
|
|
- //聊天类型(如 0:未知 1:群聊、2:私聊)
|
|
|
- Integer chatType = chatBody.getChatType();
|
|
|
- //消息类型;(如:0:text、1:image、2:voice、3:vedio、4:music、5:news)
|
|
|
- Integer msgType = chatBody.getMsgType();
|
|
|
- if( ChatType.CHAT_TYPE_PUBLIC.getNumber() == chatType ){
|
|
|
- //群聊
|
|
|
- ChatGroup group = ChatGroup.dao.findById(chatBody.getGroup_id());
|
|
|
- if( null != group){
|
|
|
- String group_id = group.getStr("group_id");
|
|
|
- GroupConversationMiddle groupConversationMiddle
|
|
|
- = this.getGroupConversationMiddleByGroupId(group_id);
|
|
|
- if( null != groupConversationMiddle ){
|
|
|
- Conversation conversation = Conversation.dao.findById(groupConversationMiddle.getLong("conversation_id"));
|
|
|
- if( null != conversation){
|
|
|
- ConversationRecord.dao
|
|
|
- ._setAttrs(this.getConversationRecordAttrs(chatBody,conversation,groupConversationMiddle,group))
|
|
|
- .save();
|
|
|
+ RLock rLock = redisson.getLock(SYNC_CHAT);
|
|
|
+ boolean res = false;
|
|
|
+ try {
|
|
|
+ res = rLock.tryLock(500, 5000, TimeUnit.MILLISECONDS);
|
|
|
+ if(res){
|
|
|
+ //聊天类型(如 0:未知 1:群聊、2:私聊)
|
|
|
+ Integer chatType = chatBody.getChatType();
|
|
|
+ //消息类型;(如:0:text、1:image、2:voice、3:vedio、4:music、5:news)
|
|
|
+ Integer msgType = chatBody.getMsgType();
|
|
|
+ if( ChatType.CHAT_TYPE_PUBLIC.getNumber() == chatType ){
|
|
|
+ //群聊
|
|
|
+ ChatGroup group = ChatGroup.dao.findById(chatBody.getGroup_id());
|
|
|
+ if( null != group){
|
|
|
+ String group_id = group.getStr("group_id");
|
|
|
+ GroupConversationMiddle groupConversationMiddle
|
|
|
+ = this.getGroupConversationMiddleByGroupId(group_id);
|
|
|
+ if( null != groupConversationMiddle ){
|
|
|
+ Conversation conversation = Conversation.dao.findById(groupConversationMiddle.getLong("conversation_id"));
|
|
|
+ if( null != conversation){
|
|
|
+ ConversationRecord.dao
|
|
|
+ ._setAttrs(this.getConversationRecordAttrs(chatBody,conversation,groupConversationMiddle,group))
|
|
|
+ .save();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(ON.equals(imConfig.getIsStore())){
|
|
|
+ //延长redis数据过期时间
|
|
|
+ this.extendRedisData(chatBody,channelContext);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if(ON.equals(imConfig.getIsStore())){
|
|
|
- //延长redis数据过期时间
|
|
|
- this.extendRedisData(chatBody,channelContext);
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ log.info("获取锁失败!");
|
|
|
+ e.printStackTrace();
|
|
|
+ } finally {
|
|
|
+ if(res){
|
|
|
+ rLock.unlock();
|
|
|
}
|
|
|
}
|
|
|
log.info("聊天记录持久化... 结束:" + sdf.format(new Date()));
|