Search in sources :

Example 1 with DfRefClsElement

use of org.dbflute.properties.assistant.classification.DfRefClsElement in project dbflute-core by dbflute.

the class DfAppClsTableLoader method createRefClsElement.

protected DfRefClsElement createRefClsElement(String classificationName, Map<String, Object> elementMap, Map<String, DfClassificationTop> dbClsMap, DfFreeGenResource resource) {
    final String refCls = (String) elementMap.get(DfRefClsElement.KEY_REFCLS);
    final String projectName;
    final String refClsName;
    final String groupName;
    if (refCls.contains("@")) {
        // #hope other schema's reference
        projectName = Srl.substringFirstFront(refCls, "@");
        final String rearName = Srl.substringFirstRear(refCls, "@");
        if (rearName.contains(".")) {
            refClsName = Srl.substringFirstFront(rearName, ".");
            groupName = Srl.substringFirstRear(rearName, ".");
        } else {
            refClsName = rearName;
            groupName = null;
        }
    } else {
        projectName = null;
        if (refCls.contains(".")) {
            refClsName = Srl.substringFirstFront(refCls, ".");
            groupName = Srl.substringFirstRear(refCls, ".");
        } else {
            refClsName = refCls;
            groupName = null;
        }
    }
    final String classificationType = buildClassificationType(refClsName);
    final String refType = (String) elementMap.get(DfRefClsElement.KEY_REFTYPE);
    if (refType == null) {
        String msg = "Not found the refType in refCls elementMap: " + classificationName + " " + elementMap;
        throw new DfIllegalPropertySettingException(msg);
    }
    final DfClassificationTop dbClsTop = findDBCls(classificationName, refClsName, dbClsMap, resource);
    return new DfRefClsElement(projectName, refClsName, classificationType, groupName, refType, dbClsTop);
}
Also used : DfClassificationTop(org.dbflute.properties.assistant.classification.DfClassificationTop) DfIllegalPropertySettingException(org.dbflute.exception.DfIllegalPropertySettingException) DfRefClsElement(org.dbflute.properties.assistant.classification.DfRefClsElement)

Example 2 with DfRefClsElement

use of org.dbflute.properties.assistant.classification.DfRefClsElement in project dbflute-core by dbflute.

the class DfWebClsTableLoader method loadTable.

// ===================================================================================
// Load Table
// ==========
// ; resourceMap = map:{
// ; baseDir = ../src/main
// ; resourceType = WEB_CLS
// ; resourceFile = ../../../dockside_webcls.properties
// }
// ; outputMap = map:{
// ; templateFile = LaAppCDef.vm
// ; outputDirectory = $$baseDir$$/java
// ; package = org.dbflute...
// ; className = unused
// }
// ; optionMap = map:{
// }
@Override
public DfFreeGenMetaData loadTable(String requestName, DfFreeGenResource resource, DfFreeGenMapProp mapProp) {
    // _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    // very similar to AppCls but no recycle because of silent maintenance
    // _/_/_/_/_/_/_/_/_/_/
    final String resourceFile = resource.getResourceFile();
    final Map<String, Object> webclsMap;
    try {
        webclsMap = new MapListFile().readMap(new FileInputStream(resourceFile));
    } catch (FileNotFoundException e) {
        throw new DfIllegalPropertySettingException("Not found the dfprop file: " + resourceFile, e);
    } catch (IOException e) {
        throw new DfIllegalPropertySettingException("Cannot read the the dfprop file: " + resourceFile, e);
    }
    // lazy load because it might be unused
    Map<String, DfClassificationTop> dbClsMap = null;
    boolean hasRefCls = false;
    final DfClassificationProperties clsProp = getClassificationProperties();
    final DfClassificationLiteralArranger literalArranger = new DfClassificationLiteralArranger();
    final List<DfClassificationTop> topList = new ArrayList<DfClassificationTop>();
    for (Entry<String, Object> entry : webclsMap.entrySet()) {
        final String classificationName = entry.getKey();
        final DfClassificationTop classificationTop = new DfClassificationTop();
        topList.add(classificationTop);
        classificationTop.setClassificationName(classificationName);
        DfRefClsElement refClsElement = null;
        @SuppressWarnings("unchecked") final List<Map<String, Object>> elementMapList = (List<Map<String, Object>>) entry.getValue();
        for (Map<String, Object> elementMap : elementMapList) {
            if (isElementMapClassificationTop(elementMap)) {
                classificationTop.acceptClassificationTopBasicItemMap(elementMap);
                // pickup from DfClassificationProperties@processClassificationTopFromLiteralIfNeeds()
                classificationTop.putGroupingAll(clsProp.getElementMapGroupingMap(elementMap));
                classificationTop.putDeprecatedAll(clsProp.getElementMapDeprecatedMap(elementMap));
            } else {
                if (isElementMapRefCls(elementMap)) {
                    assertRefClsOnlyOne(classificationName, refClsElement, elementMap, resource);
                    if (dbClsMap == null) {
                        dbClsMap = getClassificationProperties().getClassificationTopMap();
                    }
                    refClsElement = createRefClsElement(classificationName, elementMap, dbClsMap, resource);
                    handleRefCls(classificationTop, refClsElement);
                } else {
                    literalArranger.arrange(classificationName, elementMap);
                    final DfClassificationElement element = new DfClassificationElement();
                    element.setClassificationName(classificationName);
                    element.acceptBasicItemMap(elementMap);
                    classificationTop.addClassificationElement(element);
                }
            }
        }
        if (refClsElement != null) {
            refClsElement.checkRelationshipByRefTypeIfNeeds(classificationTop);
            hasRefCls = true;
        }
    }
    final Map<String, Object> optionMap = mapProp.getOptionMap();
    final String clsTheme = "webcls";
    optionMap.put("clsTheme", clsTheme);
    optionMap.put("classificationTopList", topList);
    optionMap.put("classificationNameList", topList.stream().map(top -> {
        return top.getClassificationName();
    }).collect(Collectors.toList()));
    optionMap.put("hasRefCls", hasRefCls);
    optionMap.put("allcommonPackage", getBasicProperties().getBaseCommonPackage());
    return DfFreeGenMetaData.asOnlyOne(optionMap, clsTheme, Collections.emptyList());
}
Also used : MapListFile(org.dbflute.helper.mapstring.MapListFile) FileNotFoundException(java.io.FileNotFoundException) ArrayList(java.util.ArrayList) IOException(java.io.IOException) DfIllegalPropertySettingException(org.dbflute.exception.DfIllegalPropertySettingException) DfRefClsElement(org.dbflute.properties.assistant.classification.DfRefClsElement) FileInputStream(java.io.FileInputStream) DfClassificationLiteralArranger(org.dbflute.properties.assistant.classification.DfClassificationLiteralArranger) DfClassificationElement(org.dbflute.properties.assistant.classification.DfClassificationElement) DfClassificationTop(org.dbflute.properties.assistant.classification.DfClassificationTop) ArrayList(java.util.ArrayList) List(java.util.List) Map(java.util.Map) DfClassificationProperties(org.dbflute.properties.DfClassificationProperties)

Example 3 with DfRefClsElement

use of org.dbflute.properties.assistant.classification.DfRefClsElement in project dbflute-core by dbflute.

the class DfWebClsTableLoader method createRefClsElement.

protected DfRefClsElement createRefClsElement(String classificationName, Map<String, Object> elementMap, Map<String, DfClassificationTop> dbClsMap, DfFreeGenResource resource) {
    final String refCls = (String) elementMap.get(DfRefClsElement.KEY_REFCLS);
    final String projectName;
    final String refClsName;
    final String groupName;
    if (refCls.contains("@")) {
        // #hope other schema's reference
        projectName = Srl.substringFirstFront(refCls, "@");
        final String rearName = Srl.substringFirstRear(refCls, "@");
        if (rearName.contains(".")) {
            refClsName = Srl.substringFirstFront(rearName, ".");
            groupName = Srl.substringFirstRear(rearName, ".");
        } else {
            refClsName = rearName;
            groupName = null;
        }
    } else {
        projectName = null;
        if (refCls.contains(".")) {
            refClsName = Srl.substringFirstFront(refCls, ".");
            groupName = Srl.substringFirstRear(refCls, ".");
        } else {
            refClsName = refCls;
            groupName = null;
        }
    }
    final String classificationType = buildClassificationType(refClsName);
    final String refType = (String) elementMap.get(DfRefClsElement.KEY_REFTYPE);
    if (refType == null) {
        String msg = "Not found the refType in refCls elementMap: " + classificationName + " " + elementMap;
        throw new DfIllegalPropertySettingException(msg);
    }
    final DfClassificationTop dbClsTop = findDBCls(classificationName, refClsName, dbClsMap, resource);
    return new DfRefClsElement(projectName, refClsName, classificationType, groupName, refType, dbClsTop);
}
Also used : DfClassificationTop(org.dbflute.properties.assistant.classification.DfClassificationTop) DfIllegalPropertySettingException(org.dbflute.exception.DfIllegalPropertySettingException) DfRefClsElement(org.dbflute.properties.assistant.classification.DfRefClsElement)

Aggregations

DfIllegalPropertySettingException (org.dbflute.exception.DfIllegalPropertySettingException)3 DfClassificationTop (org.dbflute.properties.assistant.classification.DfClassificationTop)3 DfRefClsElement (org.dbflute.properties.assistant.classification.DfRefClsElement)3 FileInputStream (java.io.FileInputStream)1 FileNotFoundException (java.io.FileNotFoundException)1 IOException (java.io.IOException)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1 Map (java.util.Map)1 MapListFile (org.dbflute.helper.mapstring.MapListFile)1 DfClassificationProperties (org.dbflute.properties.DfClassificationProperties)1 DfClassificationElement (org.dbflute.properties.assistant.classification.DfClassificationElement)1 DfClassificationLiteralArranger (org.dbflute.properties.assistant.classification.DfClassificationLiteralArranger)1