Compare commits

...

5 Commits

Author SHA1 Message Date
dongxiaodong 42da762c53 结束时间已实现 2024-04-11 18:29:57 +08:00
dongxiaodong 81632a5679 结束时间实现 2024-04-11 09:43:44 +08:00
dongxiaodong c5fbb65b62 Merge branch 'server_five' of https://gitea.qinmian.online/five-groups/five-groups-couplet into server_five_dongxiaodong 2024-04-10 09:11:30 +08:00
dongxiaodong deece927c5 Merge branch 'server_five' of https://gitea.qinmian.online/five-groups/five-groups-couplet into server_five_dongxiaodong
# Conflicts:
#	couplet-modules/couplet-analyze/couplet-analyze-msg/pom.xml
2024-04-09 18:47:05 +08:00
dongxiaodong 70f3d0ecc9 kafka修改bug 2024-04-09 18:44:54 +08:00
16 changed files with 182 additions and 133 deletions

View File

@ -8,6 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestBody;
@FeignClient(contextId = "remoteTroubleService" , @FeignClient(contextId = "remoteTroubleService" ,
value = ServiceNameConstants.BUSINESS_SERVICE, value = ServiceNameConstants.BUSINESS_SERVICE,
fallbackFactory = RemoteTroubleFallbackFactory.class fallbackFactory = RemoteTroubleFallbackFactory.class
@ -22,4 +23,11 @@ public interface RemoteTroubleService {
@PostMapping("/trouble/newFaultData") @PostMapping("/trouble/newFaultData")
public Result<?> newFaultData(@RequestBody CoupletTroubleCode code); public Result<?> newFaultData(@RequestBody CoupletTroubleCode code);
/**
*
* @param trouble
* @return
*/
@PostMapping("/trouble/updEndTime")
public int updEndTime(@RequestBody CoupletTroubleCode trouble);
} }

View File

@ -8,6 +8,7 @@ import org.slf4j.LoggerFactory;
import org.springframework.cloud.openfeign.FallbackFactory; import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
/** /**
* @author fufanrui * @author fufanrui
* @version 1.0 * @version 1.0
@ -26,9 +27,13 @@ public class RemoteTroubleFallbackFactory implements FallbackFactory<RemoteTroub
@Override @Override
public Result<?> newFaultData(CoupletTroubleCode code) { public Result<?> newFaultData(CoupletTroubleCode code) {
return Result.error("调用失败...."+cause.getMessage()); return Result.error("调用失败...." + cause.getMessage());
} }
@Override
public int updEndTime(CoupletTroubleCode trouble) {
return 0;
}
}; };
} }
} }

View File

@ -80,6 +80,7 @@
<groupId>com.couplet</groupId> <groupId>com.couplet</groupId>
<artifactId>couplet-common-swagger</artifactId> <artifactId>couplet-common-swagger</artifactId>
</dependency> </dependency>
<!-- 事件核心配置 --> <!-- 事件核心配置 -->
<dependency> <dependency>
<groupId>com.couplet</groupId> <groupId>com.couplet</groupId>
@ -98,7 +99,6 @@
<artifactId>couplet-common-business</artifactId> <artifactId>couplet-common-business</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -20,7 +20,7 @@ public class CoupletMsgApplication {
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(CoupletMsgApplication.class); SpringApplication.run(CoupletMsgApplication.class);
System.out.println("解析系统启动成功"); System.out.println("解析系统启动成功");
new ModelsKafkaMessage().initKafkaConsumer(); // new ModelsKafkaMessage().initKafkaConsumer();
} }

View File

@ -38,7 +38,7 @@ import static java.lang.Thread.sleep;
@Component @Component
@Slf4j @Slf4j
public class ModelsKafkaMessage { public class ModelsKafkaMessage {
private static final String TOPIC_NAME = "topic_lyh"; private static final String TOPIC_NAME = "topic_dxd";
private static final String BOOTSTRAP_SERVERS = "39.103.133.136:9092"; private static final String BOOTSTRAP_SERVERS = "39.103.133.136:9092";
@ -52,23 +52,20 @@ public class ModelsKafkaMessage {
private AnalyzeEventCache analyzeEventCache; private AnalyzeEventCache analyzeEventCache;
//kafka消费者初始化 //kafka消费者初始化
@PostConstruct @PostConstruct
public void initKafkaConsumer() { public void initKafkaConsumer() {
Properties props = new Properties(); Properties props = new Properties();
props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, BOOTSTRAP_SERVERS); props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, BOOTSTRAP_SERVERS);
// props.put(ConsumerConfig.GROUP_ID_CONFIG, "my-consumer-group"); // props.put(ConsumerConfig.GROUP_ID_CONFIG, "my-consumer-group");
props.put(ConsumerConfig.GROUP_ID_CONFIG, "group"); props.put(ConsumerConfig.GROUP_ID_CONFIG, "fbab");
props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer"); props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer");
props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer"); props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer");
//消费者 //消费者
consumer = new KafkaConsumer<>(props); consumer = new KafkaConsumer<>(props);
//订阅主题
consumer.subscribe(Collections.singletonList(TOPIC_NAME)); this.consumerMessages();
} }
@ -86,6 +83,8 @@ public class ModelsKafkaMessage {
public void consumer() { public void consumer() {
try { try {
//订阅主题
consumer.subscribe(Collections.singletonList(TOPIC_NAME));
//持续消费消息 //持续消费消息
while (true) { while (true) {

View File

@ -1,6 +1,5 @@
package com.couplet.analyze.msg.service.impl; package com.couplet.analyze.msg.service.impl;
import com.alibaba.fastjson.JSON;
import com.couplet.analyze.common.contents.AnalyzeEventContents; import com.couplet.analyze.common.contents.AnalyzeEventContents;
import com.couplet.analyze.msg.contents.StateConstant; import com.couplet.analyze.msg.contents.StateConstant;
import com.couplet.analyze.msg.domain.CoupletMsgData; import com.couplet.analyze.msg.domain.CoupletMsgData;
@ -80,14 +79,19 @@ public class BreakdownServiceImpl extends KeyExpirationEventMessageListener impl
long expireTime = 30; long expireTime = 30;
redisService.expire(key, expireTime, TimeUnit.MINUTES); redisService.expire(key, expireTime, TimeUnit.MINUTES);
scheduledRedis(); scheduledRedis();
// long timeMillis = System.currentTimeMillis();
// log.info("故障事件结束时间:"+timeMillis);
// log.info("故障事件检测结束.....");
}else {
long timeMillis = System.currentTimeMillis(); long timeMillis = System.currentTimeMillis();
log.info("故障事件结束时间:"+timeMillis); CoupletTroubleCode troubleCode = new CoupletTroubleCode();
log.info("故障事件检测结束....."); troubleCode.setTroubleEndTime(new Date());
} troubleCode.setTroubleVin(coupletMsgData.getVin());
long timeMillis = System.currentTimeMillis(); remoteTroubleService.updEndTime(troubleCode);
log.info("故障事件结束时间:"+timeMillis); log.info("故障事件结束时间:"+timeMillis);
log.info("故障事件结束....."); log.info("故障事件结束.....");
} }
}
/** /**
* @return * @return
@ -105,6 +109,7 @@ public class BreakdownServiceImpl extends KeyExpirationEventMessageListener impl
for (CoupletMsgData member : members) { for (CoupletMsgData member : members) {
Set<String> breakdownIds = redisService.getCacheSet(member.getVin()+":"+key); Set<String> breakdownIds = redisService.getCacheSet(member.getVin()+":"+key);
if (breakdownIds.size()==0){ if (breakdownIds.size()==0){
//异步执行任务的方法,它可以在后台执行一个无返回值的异步操作。该方法接受一个 Runnable 类型的参数,用于指定要执行的任务
CompletableFuture.runAsync(() -> { CompletableFuture.runAsync(() -> {
CoupletTroubleCode troubleCode = new CoupletTroubleCode(); CoupletTroubleCode troubleCode = new CoupletTroubleCode();
troubleCode.setTroubleStartTime(new Date()); troubleCode.setTroubleStartTime(new Date());

View File

@ -49,7 +49,7 @@ public class ElectronicFenceServiceImpl implements IncidentService {
log.info("电子围栏事件redis存在......."); log.info("电子围栏事件redis存在.......");
for (Fence fence : cacheSet) { for (Fence fence : cacheSet) {
String fenceLongitudeLatitude = fence.getFenceLongitudeLatitude(); String fenceLongitudeLatitude = fence.getFenceLongitudeLatitude();
if (StringUtils.isEmpty(fenceLongitudeLatitude)){ if (!StringUtils.isEmpty(fenceLongitudeLatitude)){
/** /**
* *
*/ */

View File

@ -5,6 +5,9 @@ import lombok.extern.slf4j.Slf4j;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
@ -19,6 +22,16 @@ import java.util.Random;
@Slf4j @Slf4j
public class MsgUtils { public class MsgUtils {
public static Date convertMillisToDate(long millis) {
Instant instant = Instant.ofEpochMilli(millis);
LocalDateTime localDateTime = LocalDateTime.ofInstant(instant, ZoneId.systemDefault());
return Date.from(localDateTime.atZone(ZoneId.systemDefault()).toInstant());
}
/**
* GTA
* @return
*/
public static String generateGTA() { public static String generateGTA() {
// 生成四位以"GTA"开头的字符串 // 生成四位以"GTA"开头的字符串
String prefix = "GTA"; String prefix = "GTA";

View File

@ -1,5 +1,10 @@
package com.couplet.msg; package com.couplet.msg;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.util.Date;
import java.util.Random; import java.util.Random;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
@ -12,17 +17,14 @@ import java.util.regex.Pattern;
*/ */
public class Main { public class Main {
public static void main(String[] args) { public static void main(String[] args) {
// 创建一个字符串数组存储三个状态 long timeMillis = System.currentTimeMillis();
String[] statuses = {"电池故障", "车体故障", "车尾故障","抽轮故障"}; Date date = new Date(timeMillis);
System.out.println(date);
// 生成随机数对象
Random rand = new Random();
// 生成一个范围在 0 到 2 之间的随机整数
int randomIndex = rand.nextInt(4);
// 随机选择一个字符串并输出
String randomStatus = statuses[randomIndex];
System.out.println("随机输出的字符串:" + randomStatus);
} }
// private static Date convertMillisToDate(long millis) {
// Instant instant = Instant.ofEpochMilli(millis);
// LocalDateTime localDateTime = LocalDateTime.ofInstant(instant, ZoneId.systemDefault());
// return Date.from(localDateTime.atZone(ZoneId.systemDefault()).toInstant());
// }
} }

View File

@ -14,6 +14,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import java.util.Date;
import java.util.List; import java.util.List;
/** /**
@ -97,9 +98,9 @@ public class SysTroubleController extends BaseController {
/** /**
* *
*/ */
@PostMapping("/getUpdState") @PostMapping("/updEndTime")
public Result<?> getUpdState(@RequestBody CoupletTroubleCode code) { public int updEndTime(@RequestBody CoupletTroubleCode trouble) {
int updateState = troubleService.updateState(code); int i = troubleService.updEndTime(trouble);
return Result.success(updateState); return i;
} }
} }

View File

@ -6,7 +6,9 @@ import com.couplet.common.domain.CoupletTroubleGrade;
import com.couplet.common.domain.request.TroubleResp; import com.couplet.common.domain.request.TroubleResp;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.Date;
import java.util.List; import java.util.List;
/** /**
@ -30,5 +32,7 @@ public interface SysTroubleMapper extends BaseMapper<CoupletTroubleCode> {
void cleanTroubleCode(); void cleanTroubleCode();
int updateState(CoupletTroubleCode code); int updEndTime(CoupletTroubleCode trouble);
List<CoupletTroubleCode> selectMaxTime();
} }

View File

@ -6,6 +6,7 @@ import com.couplet.common.domain.CoupletTroubleCode;
import com.couplet.common.domain.CoupletTroubleGrade; import com.couplet.common.domain.CoupletTroubleGrade;
import com.couplet.common.domain.request.TroubleResp; import com.couplet.common.domain.request.TroubleResp;
import java.util.Date;
import java.util.List; import java.util.List;
/** /**
@ -27,5 +28,5 @@ public interface SysTroubleService extends IService<CoupletTroubleCode> {
void cleanTroubleCode(); void cleanTroubleCode();
int updateState(CoupletTroubleCode code); int updEndTime(CoupletTroubleCode trouble);
} }

View File

@ -12,6 +12,7 @@ import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.List; import java.util.List;
/** /**
@ -60,11 +61,17 @@ public class SysTroubleServiceImpl extends ServiceImpl<SysTroubleMapper, Couplet
/** /**
* *
* @param code * @param trouble
* @return * @return
*/ */
@Override @Override
public int updateState(CoupletTroubleCode code) { public int updEndTime(CoupletTroubleCode trouble) {
// 查询表中最大时间
List<CoupletTroubleCode> maxTime = sysTroubleMapper.selectMaxTime();
// 然后将结束时间改成当前时间
if (maxTime != null) {
sysTroubleMapper.updEndTime(trouble);
}
return 0; return 0;
} }

View File

@ -26,10 +26,11 @@
<update id="cleanTroubleCode"> <update id="cleanTroubleCode">
truncate table couplet_trouble_code truncate table couplet_trouble_code
</update> </update>
<update id="updateState"> <update id="updEndTime">
update couplet_trouble_code set processing_state = 1 where thourble_id = #{troubleId} update couplet_trouble_code set trouble_end_time = #{troubleEndTime} where trouble_vin = #{troubleVin}
</update> </update>
<select id="selectTroubleList" parameterType="com.couplet.business.server.mapper.SysTroubleMapper" resultMap="SysTroubleResult"> <select id="selectTroubleList" parameterType="com.couplet.business.server.mapper.SysTroubleMapper" resultMap="SysTroubleResult">
<include refid="selectTroubleVo"/> <include refid="selectTroubleVo"/>
<where> <where>
@ -45,5 +46,8 @@
<select id="selectTroubleListByGrade" resultType="com.couplet.common.domain.CoupletTroubleGrade"> <select id="selectTroubleListByGrade" resultType="com.couplet.common.domain.CoupletTroubleGrade">
select * from couplet_trouble_grade select * from couplet_trouble_grade
</select> </select>
<select id="selectMaxTime" resultType="com.couplet.common.domain.CoupletTroubleCode">
select max(trouble_start_time) from couplet_trouble_code
</select>
</mapper> </mapper>

View File

@ -1,93 +1,93 @@
//package com.couplet.mq.controller; package com.couplet.mq.controller;
//
//import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
//import org.apache.kafka.clients.consumer.ConsumerConfig; import org.apache.kafka.clients.consumer.ConsumerConfig;
//import org.apache.kafka.clients.consumer.ConsumerRecords; import org.apache.kafka.clients.consumer.ConsumerRecords;
//import org.apache.kafka.clients.consumer.KafkaConsumer; import org.apache.kafka.clients.consumer.KafkaConsumer;
//import org.apache.kafka.clients.producer.KafkaProducer; import org.apache.kafka.clients.producer.KafkaProducer;
//import org.apache.kafka.clients.producer.ProducerConfig; import org.apache.kafka.clients.producer.ProducerConfig;
//import org.apache.kafka.clients.producer.ProducerRecord; import org.apache.kafka.clients.producer.ProducerRecord;
//
//import javax.annotation.PostConstruct; import javax.annotation.PostConstruct;
//import java.time.Duration; import java.time.Duration;
//import java.util.Collections; import java.util.Collections;
//import java.util.Properties; import java.util.Properties;
//
///** /**
// * @ProjectName: five-groups-couplet * @ProjectName: five-groups-couplet
// * @Author: LiuYunHu * @Author: LiuYunHu
// * @CreateTime: 2024/4/4 * @CreateTime: 2024/4/4
// * @Description: kafka测试类 * @Description: kafka
// */ */
//
//@Slf4j @Slf4j
//public class KafkaTest { public class KafkaTest {
// private static final String TOPIC_NAME = "online"; private static final String TOPIC_NAME = "topic_dxd";
// private static final String BOOTSTRAP_SERVERS = "39.103.133.136:9092"; private static final String BOOTSTRAP_SERVERS = "39.103.133.136:9092";
//
// public static void main(String[] args) { public static void main(String[] args) {
// //生产者示例 //生产者示例
//// produceMessage(); // produceMessage();
//
// //消费者示例 //消费者示例
//// consumerMessages(); consumerMessages();
//
// } }
//
// //生产者 //生产者
// @PostConstruct @PostConstruct
// private static void produceMessage() { private static void produceMessage() {
// Properties props = new Properties(); Properties props = new Properties();
// props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, BOOTSTRAP_SERVERS); props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, BOOTSTRAP_SERVERS);
// props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer"); props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer");
// props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer"); props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer");
//
// KafkaProducer<String, String> producer = new KafkaProducer<>(props); KafkaProducer<String, String> producer = new KafkaProducer<>(props);
// //创建生产者 //创建生产者
// try { try {
//
// //发送消息 //发送消息
// for (int i = 0; i < 10000; i++) { for (int i = 0; i < 10000; i++) {
// String message = "佳佳来喽" + (i + 1); String message = "佳佳来喽" + (i + 1);
// producer.send(new ProducerRecord<>(TOPIC_NAME, message)); producer.send(new ProducerRecord<>(TOPIC_NAME, message));
//
// System.out.println("发送消息:" + message); System.out.println("发送消息:" + message);
// } }
// } catch (Exception e) { } catch (Exception e) {
// e.printStackTrace(); e.printStackTrace();
// } finally { } finally {
// producer.close(); producer.close();
// } }
// } }
//
// //消费者 //消费者
//// private static void consumerMessages() { private static void consumerMessages() {
//// Properties props = new Properties(); Properties props = new Properties();
//// props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, BOOTSTRAP_SERVERS); props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, BOOTSTRAP_SERVERS);
//// props.put(ConsumerConfig.GROUP_ID_CONFIG, "my-consumer-group"); props.put(ConsumerConfig.GROUP_ID_CONFIG, "my-consumer-group");
//// props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer"); props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer");
//// props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer"); props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer");
////
//// //创建消费者 //创建消费者
//// KafkaConsumer<String, String> consumer = new KafkaConsumer<>(props); KafkaConsumer<String, String> consumer = new KafkaConsumer<>(props);
////
//// try { try {
////
//// //订阅主题 //订阅主题
//// consumer.subscribe(Collections.singletonList(TOPIC_NAME)); consumer.subscribe(Collections.singletonList(TOPIC_NAME));
////
//// //持续消费消息 //持续消费消息
//// while (true) { while (true) {
//// ConsumerRecords<String, String> records = consumer.poll(Duration.ofMillis(100)); ConsumerRecords<String, String> records = consumer.poll(Duration.ofMillis(100));
//// records.forEach(record -> { records.forEach(record -> {
//// System.out.println("消费者接受到的消息值:" + record.value()); System.out.println("消费者接受到的消息值:" + record.value());
//// }); });
//// } }
//// } catch (Exception e) { } catch (Exception e) {
//// e.printStackTrace(); e.printStackTrace();
//// } finally { } finally {
//// consumer.close(); consumer.close();
//// } }
//// } }
//
//} }

View File

@ -76,7 +76,7 @@ public class MqttMonitor {
//Kafka生产者配置 //Kafka生产者配置
private static final String TOPIC_NAME = "topic_lhy"; private static final String TOPIC_NAME = "topic_dxd";
private static final String BOOTSTRAP_SERVERS = "39.103.133.136:9092"; private static final String BOOTSTRAP_SERVERS = "39.103.133.136:9092";
//线程池,用于异步处理消息到来时的业务逻辑 //线程池,用于异步处理消息到来时的业务逻辑