package com.sagacloud.route.processors; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.sagacloud.Exceptions.InvalidPostException; import com.sagacloud.pojos.venderDetail.*; import org.apache.camel.Exchange; import org.apache.camel.Processor; import java.util.*; /** * Created by Xiaoyu on 2018/7/13 */ public class VenderMapProcessor implements Processor { @Override public void process(Exchange exchange) throws Exception { //1.第一层为Manufacturer、Brand、Specification、Supplier、Insurer、InsuranceNum、Maintainer时 //第二层map的key为厂商名称、产品名称等,指向厂商id //2.第一层为DPManufacturerID、DPSpecificationID、DPSupplierID、DPInsurerID、DPMaintainerID时 //第二层为厂商id指向厂商id 或 型号id指向厂商id Map> nameMap = new HashMap<>(); String jsonStr = exchange.getIn().getBody(String.class); System.out.println(jsonStr); JSONObject json = JSONObject.parseObject(jsonStr); if (json.getString("result").equals("failure")) { throw new InvalidPostException("请求厂商库出错"); } JSONObject content = json.getJSONObject("content"); AllVender venders = JSONObject.parseObject(content.toString(), AllVender.class); buildNameMap(venders,nameMap); exchange.setProperty("map",nameMap); exchange.getIn().setBody(exchange.getProperty("projectList")); } public void buildNameMap(AllVender venders, Map> nameMap) { initMap(nameMap); List manuList = venders.getManuList(); List suppList = venders.getSuppList(); List insureList = venders.getInsureList(); List maintnList = venders.getMaintnList(); handleMaunfacturer(nameMap,manuList); handleSupplier(nameMap,suppList); handleInsurer(nameMap,insureList); handleMtn(nameMap,maintnList); } public void initMap(Map> nameMap) { String[] keyList = new String[]{"Manufacturer", "Brand", "Specification", "Supplier", "Insurer", "InsuranceNum" , "AllInsuranceNum", "Maintainer", "DPManufacturerID", "DPSpecificationID", "DPSupplierID", "DPInsurerID", "DPMaintainerID"}; for (String key : keyList) { nameMap.put(key, new HashMap()); } } public void handleMtn(Map> nameMap, List maintnList){ Set visitedMaintainer = new HashSet<>(); Set conflictMaintainer = new HashSet<>(); Map maintainer = nameMap.get("Maintainer"); Map dpMaintainerID = nameMap.get("DPMaintainerID"); for(Maintn m : maintnList){ fillMap(maintainer,m.getName(),m.getVenderId(),visitedMaintainer,conflictMaintainer); dpMaintainerID.put(m.getVenderId(),m.getVenderId()); } } public void handleInsurer(Map> nameMap, List insureList){ Date now = new Date(); Set visitedInsurer = new HashSet<>(); Set conflictInsurer = new HashSet<>(); Map insurer = nameMap.get("Insurer"); Map dpInsurerID = nameMap.get("DPInsurerID"); Map insuranceNum = nameMap.get("InsuranceNum"); Map allInsuranceNum = nameMap.get("AllInsuranceNum"); for(Insure i : insureList ){ fillMap(insurer,i.getName(),i.getVenderId(),visitedInsurer,conflictInsurer); dpInsurerID.put(i.getVenderId(),i.getVenderId()); for(Contract c : i.getContract()){ if(c.underWarranty(now)){ insuranceNum.put(c.getInsuranceNo(),i.getVenderId()); } allInsuranceNum.put(c.getInsuranceNo(),i.getVenderId()); } } } public void handleSupplier(Map> nameMap, List suppList){ Set visitedSupplier = new HashSet<>(); Set conflictSupplier = new HashSet<>(); Map supplier = nameMap.get("Supplier"); Map dpSupplierID = nameMap.get("DPSupplierID"); for(Supp s : suppList){ fillMap(supplier,s.getName(),s.getVenderId(),visitedSupplier,conflictSupplier); dpSupplierID.put(s.getVenderId(),s.getVenderId()); } } public void handleMaunfacturer(Map> nameMap, List manuList) { Set visitedManufacturer = new HashSet<>(); Set conflictManufacturer = new HashSet<>(); Set visitedBrand = new HashSet<>(); Set conflictBrand = new HashSet<>(); Set visitedSpecification = new HashSet<>(); Set conflictSpecification = new HashSet<>(); Map manufacturer = nameMap.get("Manufacturer"); Map brand = nameMap.get("Brand"); Map specification = nameMap.get("Specification"); Map dpManufacturerID = nameMap.get("DPManufacturerID"); Map dpSpecificationID = nameMap.get("DPSpecificationID"); for (Manu m : manuList) { String venderId = m.getVenderId(); fillMap(manufacturer,m.getName(),venderId,visitedManufacturer,conflictManufacturer); dpManufacturerID.put(venderId, venderId); for (String specId : m.getSpecId()) { dpSpecificationID.put(specId,venderId); } for(String specName:m.getSpecName()){ fillMap(specification,specName,venderId,visitedSpecification,conflictSpecification); } for(String brandName : m.getBrandName()){ fillMap(brand,brandName,venderId,visitedBrand,conflictBrand); } } } private void fillMap(Map map, String key, String value, Set visited, Set conflict) { visited.add(key); if (conflict.contains(key)) {//如果之前产生过冲突,不再添加 return; } else if (!map.containsKey(key)) { map.put(key, value); } else { if (!map.get(key).equals(value)) { conflict.add(key); map.remove(key); } } } }