@Override public ArchetypeFile extractArchetype(Archetype archetype, FileProcessResult result) { try { final ArchetypeFile archetypeFile = new ArchetypeFile(); final Map<String, String> archetypeAttributes = new ConcurrentHashMap<String, String>(); archetypeAttributes.put("archetypeId", archetype.getArchetypeId().getValue()); archetypeAttributes.put("rmName", archetype.getArchetypeId().rmName()); archetypeAttributes.put("rmEntity", archetype.getArchetypeId().rmEntity()); archetypeAttributes.put("originalLanguage", archetype.getOriginalLanguage().getCodeString()); archetypeAttributes.put("concept", archetype.getConcept()); archetypeAttributes.put("conceptName", archetype.getArchetypeId().conceptName()); archetype .getDescription() .getDetails() .stream() .filter( item -> item.getLanguage() .getCodeString() .equals(archetypeAttributes.get("originalLanguage"))) .findFirst() .ifPresent( item -> { if (item.getPurpose() != null) { archetypeAttributes.put("purpose", item.getPurpose()); } if (item.getUse() != null) { archetypeAttributes.put("use", item.getUse()); } if (item.getKeywords() != null) { archetypeAttributes.put("keywords", String.join("|", item.getKeywords())); } }); ADLSerializer adlSerilizer = new ADLSerializer(); archetypeAttributes.put("archetypeContent", adlSerilizer.output(archetype)); archetypeFile.setContent(archetypeAttributes.get("archetypeContent")); archetypeFile.setName(archetypeAttributes.get("archetypeId")); archetypeFile.setKeywords(archetypeAttributes.get("keywords")); archetypeFile.setPurpose(archetypeAttributes.get("purpose")); archetypeFile.setUse(archetypeAttributes.get("use")); archetypeFile.setOriginalLanguage(archetypeAttributes.get("originalLanguage")); archetypeFile.setConceptName(archetypeAttributes.get("conceptName")); archetypeFile.setRmName(archetypeAttributes.get("rmName")); archetypeFile.setRmEntity(archetypeAttributes.get("rmEntity")); Map<String, CObject> pathNodeMap = archetype.getPathNodeMap(); final ArchetypeOntology ontology = archetype.getOntology(); pathNodeMap.forEach( (path, node) -> { if (this.filterRmTypeNames.containsKey(node.getRmTypeName())) { if (this.filterRmTypeNames .get(node.getRmTypeName()) .equals(node.getParent().getRmAttributeName())) { ArchetypeNode archetypeNode = new ArchetypeNode(); archetypeNode.setNodePath(path); archetypeNode.setRmType(node.getRmTypeName()); String nodeId = this.getNodeIdFromNodePath(path); if (nodeId != "") { // archetypeNode.setCode(nodeId); // archetypeNode.setNodeName(ontology // .termDefinition( // archetypeAttributes // .get("originalLanguage"), // nodeId).getText()); // archetypeNode.setArchetypeTerm(ontology // .termDefinition(nodeId)); } else { throw new RuntimeException("Extract node path " + path + " failed."); } // archetypeFile.addArchetypeNode(archetypeNode); } } }); return archetypeFile; } catch (Exception ex) { this.logger.debug("Extract archetype {} failed.", archetype.getArchetypeId().getValue(), ex); if (result != null) { result.setStatus(FileProcessResult.FileStatusConstant.INVALID); result.setMessage("Extract archetype information failed, error: " + ex.getMessage()); } return null; } }
@Override public List<ArchetypeRelationship> extractArchetypeRelations( final Map<String, Archetype> archetypes, final Map<String, ArchetypeFile> archetypeFiles, final Map<String, FileProcessResult> results) { List<ArchetypeRelationship> relations = new ArrayList<ArchetypeRelationship>(); final Map<String, OntologyDefinitions> termDefinitionMap = archetypes .entrySet() .stream() .map( entry -> { Archetype archetype = entry.getValue(); OntologyDefinitions terms = archetype .getOntology() .getTermDefinitionsList() .stream() .filter( definition -> definition .getLanguage() .equals(archetype.getOriginalLanguage().getCodeString())) .findFirst() .get(); return new AbstractMap.SimpleEntry<String, OntologyDefinitions>( archetype.getArchetypeId().getValue(), terms); }) .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); // Max iteration times = n*n termDefinitionMap.forEach( (archetypeName, termDefinitions) -> { termDefinitions .getDefinitions() .stream() .filter( item -> item.getItem(ArchetypeRelationship.RelationType.OneToMany.toString()) != null) .forEach( item -> { try { String targetArchetypeName = item.getItem(ArchetypeRelationship.RelationType.OneToMany.toString()); String mappedNodePath = item.getItem("mappedBy").replace("\"", ""); if (mappedNodePath == null) { throw new ArchetypeRelationExtractException( "Missing 'mappedBy' annotation."); } Archetype targetArchetype = archetypes.get(targetArchetypeName); if (targetArchetype == null) { throw new ArchetypeRelationExtractException( "Missing archetype " + targetArchetypeName + " or OneToMany archetype name is wrong."); } String mappedNodeId = this.getNodeIdFromNodePath(mappedNodePath); ArchetypeTerm targetTerm = targetArchetype .getOntology() .termDefinition( targetArchetype.getOriginalLanguage().getCodeString(), mappedNodeId); if (targetTerm == null) { throw new ArchetypeRelationExtractException( "'mappedBy' node path is wrong."); } String inverseArchetypeName = targetTerm.getItem( ArchetypeRelationship.RelationType.ManyToOne.toString()); if (inverseArchetypeName == null) { throw new ArchetypeRelationExtractException( "Archetype " + targetArchetypeName + "'s ontology term " + targetTerm.getCode() + " missing ManyToOne annotation."); } if (inverseArchetypeName.equals(archetypeName)) { // ArchetypeRelationship relation = new ArchetypeRelationship(); // ArchetypeFile sourceArchetypeFile = archetypeFiles // .get(archetypeName); // ArchetypeFile definitionArchetypeFile = archetypeFiles // .get(targetArchetypeName); // relation.setSourceArchetypeFile(sourceArchetypeFile); // relation.setDestinationArchetypeFile(definitionArchetypeFile); // relation.setSourceArchetypeNode(sourceArchetypeFile // .getArchetypeNodeMap( // ArchetypeNode::getCode) // .get(item.getCode())); // relation.setDestinationArchetypeNode(definitionArchetypeFile // .getArchetypeNodeMap( // ArchetypeNode::getCode) // .get(targetTerm // .getCode())); // relations.add(relation); } else { this.logger.debug( "OneToMany and ManyToOne relation does not match between {} and {}.", archetypeName, inverseArchetypeName); throw new ArchetypeRelationExtractException( "OneToMany and ManyToOne relation does not match between " + archetypeName + " and " + archetypeName + "."); } } catch (Exception ex) { this.logger.debug("Extract archetype relation failed.", ex); if (results != null) { FileProcessResult result = results.get(archetypeName); result.setStatus(FileProcessResult.FileStatusConstant.INVALID); result.setMessage( "Extract archetype relation failed, error: " + ex.getMessage()); } } }); ; }); return relations; }