Search in sources :

Example 1 with ReadData

use of org.apache.ofbiz.entity.config.model.ReadData in project ofbiz-framework by apache.

the class EntityDataLoader method getUrlList.

public static <E> List<URL> getUrlList(String helperName, String componentName, List<E> readerNames) {
    String paths = getPathsString(helperName);
    List<URL> urlList = new LinkedList<URL>();
    // first get files from resources
    if (readerNames != null) {
        for (Object readerInfo : readerNames) {
            String readerName = null;
            if (readerInfo instanceof String) {
                readerName = (String) readerInfo;
            } else if (readerInfo instanceof ReadData) {
                readerName = ((ReadData) readerInfo).getReaderName();
            } else if (readerInfo instanceof Element) {
                readerName = ((Element) readerInfo).getAttribute("reader-name");
            } else {
                throw new IllegalArgumentException("Reader name list does not contain String(s) or Element(s)");
            }
            readerName = readerName.trim();
            // ignore the "tenant" reader if multitenant is disabled
            if ("tenant".equals(readerName) && !EntityUtil.isMultiTenantEnabled()) {
                continue;
            }
            // get all of the main resource model stuff, ie specified in the entityengine.xml file
            EntityDataReader entityDataReaderInfo = null;
            try {
                entityDataReaderInfo = EntityConfig.getInstance().getEntityDataReader(readerName);
                if (entityDataReaderInfo == null) {
                    // create a reader name defined at runtime
                    Debug.logInfo("Could not find entity-data-reader named: " + readerName + ". Creating a new reader with this name. ", module);
                    entityDataReaderInfo = new EntityDataReader(readerName);
                }
            } catch (GenericEntityConfException e) {
                Debug.logWarning(e, "Exception thrown while getting entity data reader config: ", module);
            }
            if (entityDataReaderInfo != null) {
                for (Resource resourceElement : entityDataReaderInfo.getResourceList()) {
                    ResourceHandler handler = new MainResourceHandler(EntityConfig.ENTITY_ENGINE_XML_FILENAME, resourceElement.getLoader(), resourceElement.getLocation());
                    try {
                        urlList.add(handler.getURL());
                    } catch (GenericConfigException e) {
                        String errorMsg = "Could not get URL for Main ResourceHandler: " + e.toString();
                        Debug.logWarning(errorMsg, module);
                    }
                }
                // get all of the component resource model stuff, ie specified in each ofbiz-component.xml file
                for (ComponentConfig.EntityResourceInfo componentResourceInfo : ComponentConfig.getAllEntityResourceInfos("data", componentName)) {
                    if (readerName.equals(componentResourceInfo.readerName)) {
                        ResourceHandler handler = componentResourceInfo.createResourceHandler();
                        try {
                            urlList.add(handler.getURL());
                        } catch (GenericConfigException e) {
                            String errorMsg = "Could not get URL for Component ResourceHandler: " + e.toString();
                            Debug.logWarning(errorMsg, module);
                        }
                    }
                }
            } else {
                String errorMsg = "Could not find entity-data-reader named: " + readerName;
                Debug.logWarning(errorMsg, module);
            }
        }
    } else {
        String errorMsg = "Could not find datasource named: " + helperName;
        Debug.logWarning(errorMsg, module);
    }
    // get files from the paths string
    if (UtilValidate.isNotEmpty(paths)) {
        StringTokenizer tokenizer = new StringTokenizer(paths, ";");
        while (tokenizer.hasMoreTokens()) {
            String path = tokenizer.nextToken().toLowerCase(Locale.getDefault());
            File loadDir = new File(path);
            if (loadDir.exists() && loadDir.isDirectory()) {
                File[] files = loadDir.listFiles();
                List<File> tempFileList = new LinkedList<File>();
                if (files != null) {
                    for (File file : files) {
                        if (file.getName().toLowerCase(Locale.getDefault()).endsWith(".xml")) {
                            tempFileList.add(file);
                        }
                    }
                }
                Collections.sort(tempFileList);
                for (File dataFile : tempFileList) {
                    if (dataFile.exists()) {
                        URL url = null;
                        try {
                            url = dataFile.toURI().toURL();
                            urlList.add(url);
                        } catch (java.net.MalformedURLException e) {
                            String xmlError = "Error loading XML file \"" + dataFile.getAbsolutePath() + "\"; Error was: " + e.getMessage();
                            Debug.logError(xmlError, module);
                        }
                    } else {
                        String errorMsg = "Could not find file: \"" + dataFile.getAbsolutePath() + "\"";
                        Debug.logError(errorMsg, module);
                    }
                }
            }
        }
    }
    return urlList;
}
Also used : GenericEntityConfException(org.apache.ofbiz.entity.GenericEntityConfException) Element(org.w3c.dom.Element) Resource(org.apache.ofbiz.entity.config.model.Resource) ResourceHandler(org.apache.ofbiz.base.config.ResourceHandler) MainResourceHandler(org.apache.ofbiz.base.config.MainResourceHandler) URL(java.net.URL) LinkedList(java.util.LinkedList) StringTokenizer(java.util.StringTokenizer) GenericConfigException(org.apache.ofbiz.base.config.GenericConfigException) MainResourceHandler(org.apache.ofbiz.base.config.MainResourceHandler) ComponentConfig(org.apache.ofbiz.base.component.ComponentConfig) EntityDataReader(org.apache.ofbiz.entity.config.model.EntityDataReader) ReadData(org.apache.ofbiz.entity.config.model.ReadData) File(java.io.File)

Example 2 with ReadData

use of org.apache.ofbiz.entity.config.model.ReadData in project ofbiz-framework by apache.

the class EntityDataLoader method getUrlByComponentList.

public static List<URL> getUrlByComponentList(String helperName, List<String> components) {
    Datasource datasourceInfo = EntityConfig.getDatasource(helperName);
    List<String> readerNames = new LinkedList<String>();
    for (ReadData readerInfo : datasourceInfo.getReadDataList()) {
        String readerName = readerInfo.getReaderName();
        // ignore the "tenant" reader if the multitenant property is "N"
        if ("tenant".equals(readerName) && "N".equals(UtilProperties.getPropertyValue("general", "multitenant"))) {
            continue;
        }
        readerNames.add(readerName);
    }
    return getUrlByComponentList(helperName, components, readerNames);
}
Also used : Datasource(org.apache.ofbiz.entity.config.model.Datasource) ReadData(org.apache.ofbiz.entity.config.model.ReadData) LinkedList(java.util.LinkedList)

Aggregations

LinkedList (java.util.LinkedList)2 ReadData (org.apache.ofbiz.entity.config.model.ReadData)2 File (java.io.File)1 URL (java.net.URL)1 StringTokenizer (java.util.StringTokenizer)1 ComponentConfig (org.apache.ofbiz.base.component.ComponentConfig)1 GenericConfigException (org.apache.ofbiz.base.config.GenericConfigException)1 MainResourceHandler (org.apache.ofbiz.base.config.MainResourceHandler)1 ResourceHandler (org.apache.ofbiz.base.config.ResourceHandler)1 GenericEntityConfException (org.apache.ofbiz.entity.GenericEntityConfException)1 Datasource (org.apache.ofbiz.entity.config.model.Datasource)1 EntityDataReader (org.apache.ofbiz.entity.config.model.EntityDataReader)1 Resource (org.apache.ofbiz.entity.config.model.Resource)1 Element (org.w3c.dom.Element)1