blob: ea4b6c1696d8c87e0013ca76e28e60f98c353b64 [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.openmeetings.documents;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.util.ArrayList;
import org.apache.openmeetings.utils.Logger;
import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.XppDriver;
public class LibraryChartLoader {
private static final Logger log = new Logger();
private static final String fileExt = ".xchart";
private static LibraryChartLoader instance;
private LibraryChartLoader() {
}
public static synchronized LibraryChartLoader getInstance() {
if (instance == null) {
instance = new LibraryChartLoader();
}
return instance;
}
@SuppressWarnings("rawtypes")
public ArrayList loadChart(File dir, String fileName) {
try {
File file = new File(dir, fileName + fileExt);
log.error("filepathComplete: " + file);
XStream xStream = new XStream(new XppDriver());
xStream.setMode(XStream.NO_REFERENCES);
BufferedReader reader = new BufferedReader(new FileReader(file));
String xmlString = "";
while (reader.ready()) {
xmlString += reader.readLine();
}
reader.close();
// lMap = (LinkedHashMap) xStream.fromXML(xmlString);
ArrayList lMapList = (ArrayList) xStream.fromXML(xmlString);
return lMapList;
} catch (Exception err) {
log.error(err);
}
return null;
}
}