Baseflow_V1_0.java [src/java/m/cfa] Revision: d64a7042d7439a9588a71182bd8d9ce267822aa4 Date: Wed Jun 04 12:09:06 MDT 2014
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package m.cfa;
import cfa.guiBaseflow_Model;
import csip.AbstractModelService;
import java.util.Map;
import java.util.concurrent.Callable;
import javax.ws.rs.Path;
import oms3.annotations.Description;
import oms3.annotations.Name;
import oms3.annotations.VersionInfo;
import org.apache.commons.io.FileUtils;
import org.codehaus.jettison.json.*;
import csip.utils.JSONUtils;
import csip.utils.Services;
import java.io.File;
@Name("baseflow")
@Description("baseflow")
@VersionInfo("1.0")
@Path("m/cfa/baseflow/1.0")
public class Baseflow_V1_0 extends AbstractModelService {
guiBaseflow_Model model = new guiBaseflow_Model();
@Override
protected Callable<String> createCallable() throws Exception {
return new Callable<String>() {
@Override
public String call() throws Exception {
Map<String, JSONObject> m = getParamMap();
model.setMainFolder(getWorkspaceDir().toString());
model.setOrganizationName(m.get("org").getString(VALUE));
model.setStationID(m.get("station_id").getString(VALUE));
model.setStationName(m.get("station_name").getString(VALUE));
model.setDrainageArea(m.get("drainage_area").getDouble(VALUE));
model.setModelType(m.get("model_type").getString(VALUE));
model.setBeginDate(m.get("begin_date").getString(VALUE));
model.setEndDate(m.get("end_date").getString(VALUE));
model.setNDMIN(m.get("ndmin").getInt(VALUE));
model.setNDMAX(m.get("ndmax").getInt(VALUE));
model.setUserData(m.get("user_data").getString(VALUE));
model.setMergeDatasets(m.get("merge_datasets").getBoolean(VALUE));
model.setMergeMethod(m.get("merge_method").getString(VALUE));
model.run();
return EXEC_OK;
}
};
}
@Override
public File[] postprocess() throws Exception {
return Services.toFiles(model.getGraph(), model.getBaseflow_out().getName());
}
@Override
protected JSONArray createResults() throws Exception {
String baseflowSummary = FileUtils.readFileToString(model.getBaseflow_dat());
JSONArray result = new JSONArray();
result.put(JSONUtils.data("len", model.getLen()));
result.put(JSONUtils.data("start", model.getStart()));
result.put(JSONUtils.data("end", model.getEnd()));
result.put(JSONUtils.data("baseflow_summary", baseflowSummary));
result.put(JSONUtils.data("baseflow_results", model.getBaseflow_out().getName()));
result.put(JSONUtils.data("graph", model.getGraph()));
return result;
}
}