com.novartis.opensource.yada.format.FileSystemResultJSONConverter Maven / Gradle / Ivy
/**
* Copyright 2016 Novartis Institutes for BioMedical Research Inc.
* Licensed 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 com.novartis.opensource.yada.format;
import java.io.File;
import java.util.List;
import org.apache.log4j.Logger;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import com.novartis.opensource.yada.YADAQueryResult;
/**
* @since 0.4.0.0
* @author David Varon
*
*/
public class FileSystemResultJSONConverter extends AbstractConverter
{
/**
* Local logger handle
*/
@SuppressWarnings("unused")
private static Logger l = Logger.getLogger(FileSystemResultJSONConverter.class);
/**
* Constant equal to: {@value}
*/
private static final String KEY_PATH = "path";
/**
* Constant equal to: {@value}
*/
private static final String KEY_CONTENT = "content";
/**
* Default constructor
*/
public FileSystemResultJSONConverter() {
// default constructor
}
/**
* Constructor with {@link YADAQueryResult}
* @param yqr the container for result processing artifacts
*/
public FileSystemResultJSONConverter(YADAQueryResult yqr) {
this.setYADAQueryResult(yqr);
}
/**
* Process the list of files in {@code result} and reformats it into a json object.
* @see com.novartis.opensource.yada.format.AbstractConverter#convert(java.lang.Object)
*/
@Override
public Object convert(Object result) throws YADAConverterException
{
//TODO implement harmony map solution for this
JSONArray arrayResult = new JSONArray();
JSONObject o;
try
{
@SuppressWarnings("unchecked")
List files = (List)result;
for(File f : files)
{
String path = f.getPath();
o = new JSONObject();
o.put(KEY_PATH, path);
arrayResult.put(o);
}
}
catch (JSONException e)
{
String msg = "Unable to parse file list";
throw new YADAConverterException(msg,e);
}
catch (ClassCastException e)
{
o = new JSONObject();
o.put(KEY_CONTENT, result);
arrayResult.put(o);
}
return arrayResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy