📄 modeldatafilereader.java
字号:
/* * $Id: ModelDataFileReader.java 5462 2005-08-05 18:35:48Z jonesde $ * * Copyright (c) 2001-2003 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */package org.ofbiz.datafile;import java.io.IOException;import java.net.URL;import java.util.Collection;import java.util.HashMap;import java.util.Iterator;import java.util.Map;import javax.xml.parsers.ParserConfigurationException;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.UtilTimer;import org.ofbiz.base.util.UtilXml;import org.ofbiz.base.util.cache.UtilCache;import org.w3c.dom.Document;import org.w3c.dom.Element;import org.w3c.dom.Node;import org.w3c.dom.NodeList;import org.xml.sax.SAXException;/** * Flat File definition reader * * @author <a href="mailto:jonesde@ofbiz.org">David E. Jones</a> * @version $Rev: 5462 $ * @since 2.0 */public class ModelDataFileReader { public static final String module = ModelDataFileReader.class.getName(); public static UtilCache readers = new UtilCache("ModelDataFile", 0, 0); public URL readerURL = null; public Map modelDataFiles = null; public static ModelDataFileReader getModelDataFileReader(URL readerURL) { ModelDataFileReader reader = null; reader = (ModelDataFileReader) readers.get(readerURL); if (reader == null) { // don't want to block here synchronized (ModelDataFileReader.class) { // must check if null again as one of the blocked threads can still enter reader = (ModelDataFileReader) readers.get(readerURL); if (reader == null) { if (Debug.infoOn()) Debug.logInfo("[ModelDataFileReader.getModelDataFileReader] : creating reader.", module); reader = new ModelDataFileReader(readerURL); readers.put(readerURL, reader); } } } if (reader != null && (reader.modelDataFiles == null || reader.modelDataFiles.size() == 0)) { readers.remove(readerURL); return null; } if (Debug.infoOn()) Debug.logInfo("[ModelDataFileReader.getModelDataFileReader] : returning reader.", module); return reader; } public ModelDataFileReader(URL readerURL) { this.readerURL = readerURL; // preload models... getModelDataFiles(); } public Map getModelDataFiles() { if (modelDataFiles == null) { // don't want to block here synchronized (ModelDataFileReader.class) { // must check if null again as one of the blocked threads can still enter if (modelDataFiles == null) { // now it's safe modelDataFiles = new HashMap(); UtilTimer utilTimer = new UtilTimer(); utilTimer.timerString("Before getDocument in file " + readerURL); Document document = getDocument(readerURL); if (document == null) { modelDataFiles = null; return null; } utilTimer.timerString("Before getDocumentElement in file " + readerURL); Element docElement = document.getDocumentElement(); if (docElement == null) { modelDataFiles = null; return null; } docElement.normalize(); Node curChild = docElement.getFirstChild(); int i = 0; if (curChild != null) { utilTimer.timerString("Before start of dataFile loop in file " + readerURL); do { if (curChild.getNodeType() == Node.ELEMENT_NODE && "data-file".equals(curChild.getNodeName())) { i++; Element curDataFile = (Element) curChild; String dataFileName = UtilXml.checkEmpty(curDataFile.getAttribute("name")); // check to see if dataFile with same name has already been read if (modelDataFiles.containsKey(dataFileName)) { Debug.logWarning("WARNING: DataFile " + dataFileName + " is defined more than once, most recent will over-write previous definition(s)", module); } // utilTimer.timerString(" After dataFileName -- " + i + " --"); ModelDataFile dataFile = createModelDataFile(curDataFile); // utilTimer.timerString(" After createModelDataFile -- " + i + " --"); if (dataFile != null) { modelDataFiles.put(dataFileName, dataFile); // utilTimer.timerString(" After modelDataFiles.put -- " + i + " --"); if (Debug.infoOn()) Debug.logInfo("-- getModelDataFile: #" + i + " Loaded dataFile: " + dataFileName, module); } else Debug.logWarning("-- -- SERVICE ERROR:getModelDataFile: Could not create dataFile for dataFileName: " + dataFileName, module); } } while ((curChild = curChild.getNextSibling()) != null); } else { Debug.logWarning("No child nodes found.", module); } utilTimer.timerString("Finished file " + readerURL + " - Total Flat File Defs: " + i + " FINISHED"); } } } return modelDataFiles; } /** Gets an DataFile object based on a definition from the specified XML DataFile descriptor file. * @param dataFileName The dataFileName of the DataFile definition to use. * @return An DataFile object describing the specified dataFile of the specified descriptor file. */ public ModelDataFile getModelDataFile(String dataFileName) { Map ec = getModelDataFiles(); if (ec != null) { return (ModelDataFile) ec.get(dataFileName); } else { return null; } } /** Creates a Iterator with the dataFileName of each DataFile defined in the specified XML DataFile Descriptor file. * @return A Iterator of dataFileName Strings */ public Iterator getDataFileNamesIterator() { Collection collection = getDataFileNames(); if (collection != null) { return collection.iterator(); } else { return null;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -