1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
|
@Service @Slf4j public class EcommerceDistributedIdService { @Autowired private EcommerceDistributedIdProperties properties; @Autowired private EcommerceSnowflakeIdGenerator ecommerceSnowflakeIdGenerator; @Autowired private EcommerceUuidGenerator ecommerceUuidGenerator; @Autowired private EcommerceDatabaseIdGenerator ecommerceDatabaseIdGenerator; @Autowired private EcommerceRedisIdGenerator ecommerceRedisIdGenerator; @Autowired private EcommerceZookeeperIdGenerator ecommerceZookeeperIdGenerator; @Autowired private EcommerceDistributedIdMonitorService ecommerceDistributedIdMonitorService; @Autowired private EcommerceDistributedIdBusinessService ecommerceDistributedIdBusinessService; @Autowired private EcommerceDistributedIdSeckillService ecommerceDistributedIdSeckillService; @Autowired private EcommerceDistributedIdRepository ecommerceDistributedIdRepository;
public EcommerceDistributedIdResult generateEcommerceId(String idType, String businessType, String ecommerceBusinessType) { return generateEcommerceId(idType, businessType, ecommerceBusinessType, properties.getDefaultGeneratorType()); }
public EcommerceDistributedIdResult generateEcommerceId(String idType, String businessType, String ecommerceBusinessType, String generatorType) { log.info("生成电商分布式ID,ID类型: {}, 业务类型: {}, 电商业务类型: {}, 生成器类型: {}", idType, businessType, ecommerceBusinessType, generatorType); EcommerceDistributedIdResult result = new EcommerceDistributedIdResult(); result.setIdType(idType); result.setBusinessType(businessType); result.setEcommerceBusinessType(ecommerceBusinessType); result.setGeneratorType(generatorType); result.setStartTime(System.currentTimeMillis()); try { validateParameters(idType, businessType, ecommerceBusinessType, generatorType, result); if (!result.isSuccess()) { return result; } if (!performBusinessProcess(idType, businessType, ecommerceBusinessType, result)) { return result; } if (!performSeckillProcess(idType, businessType, ecommerceBusinessType, result)) { return result; } if (!performInventoryProcess(idType, businessType, ecommerceBusinessType, result)) { return result; } String id = generateIdByType(generatorType, idType, businessType, ecommerceBusinessType); if (id != null && !id.isEmpty()) { result.setSuccess(true); result.setId(id); result.setGenerateTime(LocalDateTime.now()); result.setEndTime(System.currentTimeMillis()); if (properties.getSnowflake().isEnableEncryption()) { id = encryptId(id, generatorType); result.setId(id); } ecommerceDistributedIdMonitorService.recordSuccessGeneration(generatorType, result.getDuration()); saveEcommerceIdRecord(result); log.info("电商分布式ID生成成功,ID: {}, 类型: {}, 生成器: {}", id, idType, generatorType); } else { result.setSuccess(false); result.setError("ID生成失败"); result.setEndTime(System.currentTimeMillis()); ecommerceDistributedIdMonitorService.recordFailureGeneration(generatorType); log.warn("电商分布式ID生成失败,类型: {}, 生成器: {}", idType, generatorType); } return result; } catch (Exception e) { log.error("电商分布式ID生成异常,类型: {}, 生成器: {}", idType, generatorType, e); result.setSuccess(false); result.setError("电商分布式ID生成异常: " + e.getMessage()); result.setEndTime(System.currentTimeMillis()); ecommerceDistributedIdMonitorService.recordFailureGeneration(generatorType); return result; } }
private void validateParameters(String idType, String businessType, String ecommerceBusinessType, String generatorType, EcommerceDistributedIdResult result) { if (idType == null || idType.isEmpty()) { result.setSuccess(false); result.setError("ID类型不能为空"); result.setEndTime(System.currentTimeMillis()); return; } if (businessType == null || businessType.isEmpty()) { result.setSuccess(false); result.setError("业务类型不能为空"); result.setEndTime(System.currentTimeMillis()); return; } if (ecommerceBusinessType == null || ecommerceBusinessType.isEmpty()) { result.setSuccess(false); result.setError("电商业务类型不能为空"); result.setEndTime(System.currentTimeMillis()); return; } if (generatorType == null || generatorType.isEmpty()) { result.setSuccess(false); result.setError("生成器类型不能为空"); result.setEndTime(System.currentTimeMillis()); return; } }
private boolean performBusinessProcess(String idType, String businessType, String ecommerceBusinessType, EcommerceDistributedIdResult result) { try { if (properties.getBusiness().isEnableBusinessIsolation()) { Map<String, Object> businessInfo = ecommerceDistributedIdBusinessService.performBusinessProcess( idType, businessType, ecommerceBusinessType); result.setBusinessInfo(businessInfo); if (businessInfo.containsKey("businessStatus") && "FAILED".equals(businessInfo.get("businessStatus"))) { result.setSuccess(false); result.setError("业务处理失败"); result.setEndTime(System.currentTimeMillis()); return false; } result.setBusinessStatus("BUSINESS_PROCESSED"); } return true; } catch (Exception e) { log.error("业务处理异常", e); return false; } }
private boolean performSeckillProcess(String idType, String businessType, String ecommerceBusinessType, EcommerceDistributedIdResult result) { try { if (properties.getSeckill().isEnableSeckill()) { Map<String, Object> seckillInfo = ecommerceDistributedIdSeckillService.performSeckillProcess( idType, businessType, ecommerceBusinessType); result.setSeckillInfo(seckillInfo); if (seckillInfo.containsKey("seckillStatus") && "FAILED".equals(seckillInfo.get("seckillStatus"))) { result.setSuccess(false); result.setError("秒杀处理失败"); result.setEndTime(System.currentTimeMillis()); return false; } result.setSeckillStatus("SECKILL_PROCESSED"); } return true; } catch (Exception e) { log.error("秒杀处理异常", e); return false; } }
private boolean performInventoryProcess(String idType, String businessType, String ecommerceBusinessType, EcommerceDistributedIdResult result) { try { if (properties.getInventory().isEnableInventory()) { Map<String, Object> inventoryInfo = new HashMap<>(); inventoryInfo.put("idType", idType); inventoryInfo.put("businessType", businessType); inventoryInfo.put("ecommerceBusinessType", ecommerceBusinessType); inventoryInfo.put("processTime", LocalDateTime.now()); inventoryInfo.put("inventoryStatus", "INVENTORY_PROCESSED"); result.setInventoryInfo(inventoryInfo); result.setInventoryStatus("INVENTORY_PROCESSED"); } return true; } catch (Exception e) { log.error("库存处理异常", e); return false; } }
private String generateIdByType(String generatorType, String idType, String businessType, String ecommerceBusinessType) { switch (generatorType.toUpperCase()) { case "ECOMMERCE_SNOWFLAKE": if (properties.getSnowflake().isEnableSnowflake()) { return String.valueOf(ecommerceSnowflakeIdGenerator.nextId()); } break; case "ECOMMERCE_UUID": if (properties.getUuid().isEnableUuid()) { return ecommerceUuidGenerator.generateEcommerceUuid(); } break; case "ECOMMERCE_DATABASE": if (properties.getDatabase().isEnableDatabase()) { return String.valueOf(ecommerceDatabaseIdGenerator.nextId()); } break; case "ECOMMERCE_REDIS": if (properties.getRedis().isEnableRedis()) { return String.valueOf(ecommerceRedisIdGenerator.nextId()); } break; case "ECOMMERCE_ZOOKEEPER": if (properties.getZookeeper().isEnableZookeeper()) { return String.valueOf(ecommerceZookeeperIdGenerator.nextId()); } break; default: log.warn("不支持的生成器类型: {}", generatorType); return null; } log.warn("生成器类型 {} 未启用", generatorType); return null; }
private String encryptId(String id, String generatorType) { try { String encryptionKey = getEncryptionKey(generatorType); return AESUtil.encrypt(id, encryptionKey); } catch (Exception e) { log.error("ID加密异常", e); return id; } }
private String getEncryptionKey(String generatorType) { switch (generatorType.toUpperCase()) { case "ECOMMERCE_SNOWFLAKE": return properties.getSnowflake().getEncryptionKey(); case "ECOMMERCE_UUID": return properties.getUuid().getEncryptionKey(); case "ECOMMERCE_DATABASE": return properties.getDatabase().getEncryptionKey(); case "ECOMMERCE_REDIS": return properties.getRedis().getEncryptionKey(); case "ECOMMERCE_ZOOKEEPER": return properties.getZookeeper().getEncryptionKey(); default: return "default-ecommerce-key"; } }
private void saveEcommerceIdRecord(EcommerceDistributedIdResult result) { try { EcommerceDistributedIdData data = new EcommerceDistributedIdData( result.getId(), result.getIdType(), result.getGeneratorType() ); data.setBusinessType(result.getBusinessType()); data.setEcommerceBusinessType(result.getEcommerceBusinessType()); data.setGenerateTime(result.getGenerateTime()); data.setEncryptionStatus(result.getEncryptionStatus()); data.setBusinessStatus(result.getBusinessStatus()); data.setSeckillStatus(result.getSeckillStatus()); data.setInventoryStatus(result.getInventoryStatus()); data.setExtendedPropertiesMap(result.getExtendedProperties()); data.setBusinessInfo(result.getBusinessInfo()); data.setSeckillInfo(result.getSeckillInfo()); data.setInventoryInfo(result.getInventoryInfo()); ecommerceDistributedIdRepository.save(data); } catch (Exception e) { log.error("保存电商ID记录异常", e); } }
public List<EcommerceDistributedIdResult> batchGenerateEcommerceId(String idType, String businessType, String ecommerceBusinessType, int count) { return batchGenerateEcommerceId(idType, businessType, ecommerceBusinessType, count, properties.getDefaultGeneratorType()); }
public List<EcommerceDistributedIdResult> batchGenerateEcommerceId(String idType, String businessType, String ecommerceBusinessType, int count, String generatorType) { log.info("批量生成电商分布式ID,ID类型: {}, 业务类型: {}, 电商业务类型: {}, 数量: {}, 生成器类型: {}", idType, businessType, ecommerceBusinessType, count, generatorType); List<EcommerceDistributedIdResult> results = new ArrayList<>(); try { for (int i = 0; i < count; i++) { EcommerceDistributedIdResult result = generateEcommerceId(idType, businessType, ecommerceBusinessType, generatorType); results.add(result); } log.info("批量生成电商分布式ID完成,成功数量: {}", results.stream().mapToInt(r -> r.isSuccess() ? 1 : 0).sum()); } catch (Exception e) { log.error("批量生成电商分布式ID异常", e); } return results; }
public EcommerceDistributedIdStatus getEcommerceDistributedIdStatus() { log.info("获取电商分布式ID状态"); try { return ecommerceDistributedIdMonitorService.getStatus(); } catch (Exception e) { log.error("获取电商分布式ID状态异常", e); return null; } }
public boolean validateEcommerceIdFormat(String id, String idType) { log.info("验证电商ID格式,ID: {}, 类型: {}", id, idType); try { if (id == null || id.isEmpty()) { return false; } String decryptedId = decryptId(id, idType); switch (idType.toUpperCase()) { case "ECOMMERCE_SNOWFLAKE": return validateEcommerceSnowflakeId(decryptedId); case "ECOMMERCE_UUID": return validateEcommerceUuid(decryptedId); case "ECOMMERCE_DATABASE": return validateEcommerceDatabaseId(decryptedId); case "ECOMMERCE_REDIS": return validateEcommerceRedisId(decryptedId); case "ECOMMERCE_ZOOKEEPER": return validateEcommerceZookeeperId(decryptedId); default: return false; } } catch (Exception e) { log.error("验证电商ID格式异常", e); return false; } }
private String decryptId(String id, String idType) { try { String encryptionKey = getEncryptionKey(idType); return AESUtil.decrypt(id, encryptionKey); } catch (Exception e) { log.error("ID解密异常", e); return id; } }
private boolean validateEcommerceSnowflakeId(String id) { try { long idLong = Long.parseLong(id); return idLong > 0; } catch (NumberFormatException e) { return false; } }
private boolean validateEcommerceUuid(String id) { try { UUID.fromString(id); return true; } catch (IllegalArgumentException e) { return false; } }
private boolean validateEcommerceDatabaseId(String id) { try { long idLong = Long.parseLong(id); return idLong > 0; } catch (NumberFormatException e) { return false; } }
private boolean validateEcommerceRedisId(String id) { try { long idLong = Long.parseLong(id); return idLong > 0; } catch (NumberFormatException e) { return false; } }
private boolean validateEcommerceZookeeperId(String id) { try { long idLong = Long.parseLong(id); return idLong > 0; } catch (NumberFormatException e) { return false; } } }
|