fixe rotation parsing in scatterplot facet (#3926)
* fixes #3344 * Remove try/catch block no longer useful
This commit is contained in:
parent
dd4eb781e1
commit
3adc03c0db
@ -76,8 +76,8 @@ public class GetScatterplotCommand extends Command {
|
|||||||
Project project = getProject(request);
|
Project project = getProject(request);
|
||||||
Engine engine = getEngine(request, project);
|
Engine engine = getEngine(request, project);
|
||||||
PlotterConfig conf = ParsingUtilities.mapper.readValue(
|
PlotterConfig conf = ParsingUtilities.mapper.readValue(
|
||||||
request.getParameter("plotter"),
|
request.getParameter("plotter"),
|
||||||
PlotterConfig.class);
|
PlotterConfig.class);
|
||||||
|
|
||||||
response.setHeader("Content-Type", "image/png");
|
response.setHeader("Content-Type", "image/png");
|
||||||
|
|
||||||
@ -98,28 +98,28 @@ public class GetScatterplotCommand extends Command {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected static class PlotterConfig {
|
protected static class PlotterConfig {
|
||||||
@JsonProperty(ScatterplotFacet.SIZE)
|
@JsonProperty(ScatterplotFacet.SIZE)
|
||||||
public int size = 100;
|
public int size = 100;
|
||||||
@JsonProperty(ScatterplotFacet.DOT)
|
@JsonProperty(ScatterplotFacet.DOT)
|
||||||
double dot = 100;
|
double dot = 100;
|
||||||
@JsonIgnore
|
@JsonIgnore
|
||||||
public int dim_x = ScatterplotFacet.LIN;
|
public int dim_x = ScatterplotFacet.LIN;
|
||||||
@JsonIgnore
|
@JsonIgnore
|
||||||
public int dim_y = ScatterplotFacet.LIN;
|
public int dim_y = ScatterplotFacet.LIN;
|
||||||
@JsonProperty(ScatterplotFacet.ROTATION)
|
@JsonProperty(ScatterplotFacet.ROTATION)
|
||||||
public int rotation = ScatterplotFacet.NO_ROTATION;
|
public int rotation = ScatterplotFacet.NO_ROTATION;
|
||||||
@JsonProperty(ScatterplotFacet.COLOR)
|
@JsonProperty(ScatterplotFacet.COLOR)
|
||||||
public String color_str = "000000";
|
public String color_str = "000000";
|
||||||
@JsonProperty(ScatterplotFacet.BASE_COLOR)
|
@JsonProperty(ScatterplotFacet.BASE_COLOR)
|
||||||
public String base_color_str = null;
|
public String base_color_str = null;
|
||||||
@JsonProperty(ScatterplotFacet.X_COLUMN_NAME)
|
@JsonProperty(ScatterplotFacet.X_COLUMN_NAME)
|
||||||
public String columnName_x = "";
|
public String columnName_x = "";
|
||||||
@JsonProperty(ScatterplotFacet.X_EXPRESSION)
|
@JsonProperty(ScatterplotFacet.X_EXPRESSION)
|
||||||
public String expression_x = "value";
|
public String expression_x = "value";
|
||||||
@JsonProperty(ScatterplotFacet.Y_COLUMN_NAME)
|
@JsonProperty(ScatterplotFacet.Y_COLUMN_NAME)
|
||||||
public String columnName_y = "";
|
public String columnName_y = "";
|
||||||
@JsonProperty(ScatterplotFacet.Y_EXPRESSION)
|
@JsonProperty(ScatterplotFacet.Y_EXPRESSION)
|
||||||
public String expression_y = "value";
|
public String expression_y = "value";
|
||||||
|
|
||||||
@JsonProperty(ScatterplotFacet.DIM_X)
|
@JsonProperty(ScatterplotFacet.DIM_X)
|
||||||
public String getDimX() {
|
public String getDimX() {
|
||||||
@ -133,22 +133,18 @@ public class GetScatterplotCommand extends Command {
|
|||||||
|
|
||||||
@JsonProperty(ScatterplotFacet.DIM_X)
|
@JsonProperty(ScatterplotFacet.DIM_X)
|
||||||
public void setDimX(String dim) {
|
public void setDimX(String dim) {
|
||||||
dim_x = dim.equals("lin") ? ScatterplotFacet.LIN : ScatterplotFacet.LOG;
|
dim_x = dim.equals("lin") ? ScatterplotFacet.LIN : ScatterplotFacet.LOG;
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonProperty(ScatterplotFacet.DIM_Y)
|
@JsonProperty(ScatterplotFacet.DIM_Y)
|
||||||
public void setDimY(String dim) {
|
public void setDimY(String dim) {
|
||||||
dim_y = dim.equals("lin") ? ScatterplotFacet.LIN : ScatterplotFacet.LOG;
|
dim_y = dim.equals("lin") ? ScatterplotFacet.LIN : ScatterplotFacet.LOG;
|
||||||
}
|
}
|
||||||
|
|
||||||
// rotation can be set to "none" (a JSON string) in which case it should be ignored
|
// rotation can be set to "none" (a JSON string) in which case it should be ignored
|
||||||
@JsonProperty(ScatterplotFacet.ROTATION)
|
@JsonProperty(ScatterplotFacet.ROTATION)
|
||||||
public void setRotation(Object rotation) {
|
public void setRotation(Object rotation) {
|
||||||
try {
|
this.rotation = ScatterplotFacet.ScatterplotFacetConfig.getRotation(rotation.toString());
|
||||||
this.rotation = Integer.parseInt(rotation.toString());
|
|
||||||
} catch(NumberFormatException e) {
|
|
||||||
;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -165,9 +161,9 @@ public class GetScatterplotCommand extends Command {
|
|||||||
Evaluable eval_x = null;
|
Evaluable eval_x = null;
|
||||||
Evaluable eval_y = null;
|
Evaluable eval_y = null;
|
||||||
|
|
||||||
Color color = new Color(Integer.parseInt(o.color_str,16));
|
Color color = new Color(Integer.parseInt(o.color_str, 16));
|
||||||
|
|
||||||
Color base_color = o.base_color_str != null ? new Color(Integer.parseInt(o.base_color_str,16)) : null;
|
Color base_color = o.base_color_str != null ? new Color(Integer.parseInt(o.base_color_str, 16)) : null;
|
||||||
|
|
||||||
if (o.columnName_x.length() > 0) {
|
if (o.columnName_x.length() > 0) {
|
||||||
Column x_column = project.columnModel.getColumnByName(o.columnName_x);
|
Column x_column = project.columnModel.getColumnByName(o.columnName_x);
|
||||||
@ -220,8 +216,8 @@ public class GetScatterplotCommand extends Command {
|
|||||||
|
|
||||||
if (index_x != null && index_y != null && index_x.isNumeric() && index_y.isNumeric()) {
|
if (index_x != null && index_y != null && index_x.isNumeric() && index_y.isNumeric()) {
|
||||||
ScatterplotDrawingRowVisitor drawer = new ScatterplotDrawingRowVisitor(
|
ScatterplotDrawingRowVisitor drawer = new ScatterplotDrawingRowVisitor(
|
||||||
columnIndex_x, columnIndex_y, min_x, max_x, min_y, max_y,
|
columnIndex_x, columnIndex_y, min_x, max_x, min_y, max_y,
|
||||||
o.size, o.dim_x, o.dim_y, o.rotation, o.dot, color
|
o.size, o.dim_x, o.dim_y, o.rotation, o.dot, color
|
||||||
);
|
);
|
||||||
|
|
||||||
if (base_color != null) {
|
if (base_color != null) {
|
||||||
|
@ -76,6 +76,42 @@ public class ScatterplotDrawCommandTests {
|
|||||||
+ "\"to_y\":0,"
|
+ "\"to_y\":0,"
|
||||||
+ "\"color\":\"ff6a00\"}";
|
+ "\"color\":\"ff6a00\"}";
|
||||||
|
|
||||||
|
public static String configJsonWithCW = "{"
|
||||||
|
+ "\"name\":\"b (x) vs. y (y)\","
|
||||||
|
+ "\"cx\":\"b\","
|
||||||
|
+ "\"cy\":\"y\","
|
||||||
|
+ "\"l\":150,"
|
||||||
|
+ "\"ex\":\"value\","
|
||||||
|
+ "\"ey\":\"value\","
|
||||||
|
+ "\"dot\":1.4,"
|
||||||
|
+ "\"dim_x\":\"lin\","
|
||||||
|
+ "\"dim_y\":\"lin\","
|
||||||
|
+ "\"r\":\"cw\","
|
||||||
|
+ "\"type\":\"scatterplot\","
|
||||||
|
+ "\"from_x\":0,"
|
||||||
|
+ "\"to_x\":0,"
|
||||||
|
+ "\"from_y\":0,"
|
||||||
|
+ "\"to_y\":0,"
|
||||||
|
+ "\"color\":\"ff6a00\"}";
|
||||||
|
|
||||||
|
public static String configJsonWithCCW = "{"
|
||||||
|
+ "\"name\":\"b (x) vs. y (y)\","
|
||||||
|
+ "\"cx\":\"b\","
|
||||||
|
+ "\"cy\":\"y\","
|
||||||
|
+ "\"l\":150,"
|
||||||
|
+ "\"ex\":\"value\","
|
||||||
|
+ "\"ey\":\"value\","
|
||||||
|
+ "\"dot\":1.4,"
|
||||||
|
+ "\"dim_x\":\"lin\","
|
||||||
|
+ "\"dim_y\":\"lin\","
|
||||||
|
+ "\"r\":\"ccw\","
|
||||||
|
+ "\"type\":\"scatterplot\","
|
||||||
|
+ "\"from_x\":0,"
|
||||||
|
+ "\"to_x\":0,"
|
||||||
|
+ "\"from_y\":0,"
|
||||||
|
+ "\"to_y\":0,"
|
||||||
|
+ "\"color\":\"ff6a00\"}";
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testParseConfig() throws JsonParseException, JsonMappingException, IOException {
|
public void testParseConfig() throws JsonParseException, JsonMappingException, IOException {
|
||||||
GetScatterplotCommand.PlotterConfig config = ParsingUtilities.mapper.readValue(configJson, GetScatterplotCommand.PlotterConfig.class);
|
GetScatterplotCommand.PlotterConfig config = ParsingUtilities.mapper.readValue(configJson, GetScatterplotCommand.PlotterConfig.class);
|
||||||
@ -88,7 +124,19 @@ public class ScatterplotDrawCommandTests {
|
|||||||
@Test
|
@Test
|
||||||
public void testParseConfigWithNone() throws JsonParseException, JsonMappingException, IOException {
|
public void testParseConfigWithNone() throws JsonParseException, JsonMappingException, IOException {
|
||||||
GetScatterplotCommand.PlotterConfig config = ParsingUtilities.mapper.readValue(configJsonWithNone, GetScatterplotCommand.PlotterConfig.class);
|
GetScatterplotCommand.PlotterConfig config = ParsingUtilities.mapper.readValue(configJsonWithNone, GetScatterplotCommand.PlotterConfig.class);
|
||||||
Assert.assertEquals(0, config.rotation);
|
Assert.assertEquals(ScatterplotFacet.NO_ROTATION, config.rotation);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testParseConfigWithCW() throws JsonParseException, JsonMappingException, IOException {
|
||||||
|
GetScatterplotCommand.PlotterConfig config = ParsingUtilities.mapper.readValue(configJsonWithCW, GetScatterplotCommand.PlotterConfig.class);
|
||||||
|
Assert.assertEquals(ScatterplotFacet.ROTATE_CW, config.rotation);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testParseConfigWithCCW() throws JsonParseException, JsonMappingException, IOException {
|
||||||
|
GetScatterplotCommand.PlotterConfig config = ParsingUtilities.mapper.readValue(configJsonWithCCW, GetScatterplotCommand.PlotterConfig.class);
|
||||||
|
Assert.assertEquals(ScatterplotFacet.ROTATE_CCW, config.rotation);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user