| | |
| | | * @date 2025/5/13 |
| | | * @author feiyu02 |
| | | */ |
| | | @Deprecated("2025.5.29, 逻辑与业务不匹配,后续删除") |
| | | class RealTimeExceptionValueMutation : BaseRealTimeException<ExceptionTag> { |
| | | |
| | | constructor(config: RealTimeAnalysisConfig) : super(config, ExceptionTag::class.java) |
| | |
| | | override fun getExceptionType(): ExceptionType { |
| | | return ExceptionType.TYPE4 |
| | | } |
| | | |
| | | override var judgeMethod: JudgeMethod = JudgeMethod.M2 |
| | | |
| | | override fun judgeException(p: BaseRealTimeData?, n: BaseRealTimeData): MutableMap<FactorType, Boolean> { |
| | | val res = mutableMapOf<FactorType, Boolean>() |
| | |
| | | return res |
| | | } |
| | | |
| | | override fun judgeExceptionCount(tag: ExceptionTag): Boolean { |
| | | override fun judgeExceptionCount(tag: ExceptionTag, factorType: FactorType?): Boolean { |
| | | val count = tag.exceptionData.size |
| | | |
| | | val b1 = special && count >= (config.mutationNum / 2) |
| | |
| | | return b1 || b2 |
| | | } |
| | | |
| | | override fun needCut(tag: ExceptionTag): Boolean { |
| | | override fun needCut(tag: ExceptionTag, hasException: Boolean?, data: BaseRealTimeData): Boolean { |
| | | // 按照时长和距离限制将异常截取 |
| | | if (tag.exceptionData.isEmpty()) return false |
| | | |
| | | val se = tag.exceptionData.first() |
| | | val ee = tag.exceptionData.last() |
| | | val ee = data |
| | | |
| | | val sTime = LocalDateTime.ofInstant(se.dataTime?.toInstant(), ZoneId.systemDefault()) |
| | | val eTime = LocalDateTime.ofInstant(ee.dataTime?.toInstant(), ZoneId.systemDefault()) |