blob: 2065aa155607a12cc5dbf640177530999490e4ee [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.core.documents;
import static org.apache.openmeetings.util.OpenmeetingsVariables.webAppRootKey;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import org.red5.logging.Red5LoggerFactory;
import org.slf4j.Logger;
import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.XppDriver;
public class LibraryChartLoader {
private static final Logger log = Red5LoggerFactory.getLogger(LibraryChartLoader.class, webAppRootKey);
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);
try (InputStream is = new FileInputStream(file);
BufferedReader reader = new BufferedReader(new InputStreamReader(is, StandardCharsets.UTF_8)))
{
ArrayList lMapList = (ArrayList) xStream.fromXML(reader);
return lMapList;
}
} catch (Exception err) {
log.error("Unexpected error while loading chart", err);
}
return null;
}
}