blob: 474b1e602429efb08401de5755babba1b5a1153b [file] [log] [blame]
/*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*******************************************************************************/
package org.apache.ofbiz.datafile;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.net.URL;
import org.apache.ofbiz.base.util.UtilFormatOut;
import org.apache.ofbiz.base.util.UtilURL;
import org.apache.ofbiz.base.util.UtilValidate;
public class DataFile2EntityXml {
/** Creates a new instance of DataFile2EntityXml */
public DataFile2EntityXml() {
}
/**
* Writes the entity xml
* @param fileName the file name
* @param dataFile the data file name
*/
public static void writeToEntityXml(String fileName, DataFile dataFile) throws DataFileException {
File file = new File(fileName);
BufferedWriter outFile = null;
try {
//outFile = new BufferedWriter(new FileWriter(file));
outFile = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), "UTF-8"));
} catch (Exception e) {
throw new DataFileException("Could not open file " + fileName, e);
}
//----------------------------------------------------
try {
outFile.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
outFile.newLine();
outFile.write("<entity-engine-xml>");
outFile.newLine();
for (Record record: dataFile.getRecords()) {
ModelRecord modelRecord = record.getModelRecord();
outFile.write("<" + modelRecord.name + " ");
for (ModelField modelField: modelRecord.fields) {
if (modelField.ignored) continue;
Object value = record.get(modelField.name);
if (value == null) {
value = modelField.defaultValue;
}
if (value instanceof String) {
value = ((String)value).trim();
if (((String)value).length() == 0) {
value = modelField.defaultValue;
}
}
if (value != null) {
if (value instanceof String) {
outFile.write(modelField.name + "=\"" + UtilFormatOut.encodeXmlValue((String)value) + "\" ");
} else {
outFile.write(modelField.name + "=\"" + value + "\" ");
}
}
}
outFile.write("/>");
outFile.newLine();
}
outFile.write("</entity-engine-xml>");
outFile.close();
} catch (IOException e) {
throw new DataFileException("Error writing to file " + fileName, e);
}
}
public static void main(String[] args) throws Exception {
// TODO code application logic here
String dataFileLoc = args[0];
String definitionLoc = args[1];
String definitionName = args[2];
BufferedWriter outFile = new BufferedWriter(new FileWriter(dataFileLoc + ".xml"));
URL dataFileUrl = null;
//try {
dataFileUrl = UtilURL.fromFilename(dataFileLoc);
//} catch (java.net.MalformedURLException e) {
//messages.add(e.getMessage());
//}
URL definitionUrl = null;
//try {
definitionUrl = UtilURL.fromFilename(definitionLoc);
//} catch (java.net.MalformedURLException e) {
//messages.add(e.getMessage());
//}
DataFile dataFile = null;
if (dataFileUrl != null && definitionUrl != null && UtilValidate.isNotEmpty(definitionName)) {
try {
dataFile = DataFile.readFile(dataFileUrl, definitionUrl, definitionName);
} catch (Exception e) {
//messages.add(e.toString());
//Debug.logInfo(e);
}
}
// -----------------------------------------
for (Record record: dataFile.getRecords()) {
ModelRecord modelRecord = record.getModelRecord();
outFile.write("<" + modelRecord.name + " ");
for (ModelField modelField: modelRecord.fields) {
Object value = record.get(modelField.name);
if (value instanceof String) {
value = ((String)value).trim();
outFile.write(modelField.name + "=\"" + UtilFormatOut.encodeXmlValue((String)value) + "\" ");
} else {
outFile.write(modelField.name + "=\"" + value + "\" ");
}
}
outFile.write("/>");
outFile.newLine();
}
outFile.close();
}
}