package org.activityinfo.ui.client.component.formdesigner.skip; /* * #%L * ActivityInfo Server * %% * Copyright (C) 2009 - 2013 UNICEF * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * #L% */ import com.google.common.collect.Lists; import org.activityinfo.model.expr.*; import org.activityinfo.model.expr.functions.BooleanFunctions; import org.activityinfo.model.expr.functions.ExprFunction; import org.activityinfo.model.resource.ResourceId; import org.activityinfo.model.type.FieldValue; import org.activityinfo.model.type.HasSetFieldValue; import org.activityinfo.model.type.number.Quantity; import org.activityinfo.model.type.primitive.BooleanFieldValue; import org.activityinfo.model.type.primitive.BooleanType; import org.activityinfo.model.type.primitive.TextType; import org.activityinfo.model.type.primitive.TextValue; import java.util.List; /** * @author yuriyz on 7/25/14. */ public class ExpressionBuilder { private List<RowData> rows; public ExpressionBuilder(List<RowData> rows) { this.rows = rows; } public String build() { return buildNode(null, 0).asExpression(); } private ExprNode buildNode(ExprNode leftNode, int index) { RowData row = rows.get(index); ExprNode left = leftNode != null ? leftNode : new SymbolExpr(row.getFormField().getId().asString()); ExprNode right = null; FieldValue value = row.getValue(); ExprFunction rowFunction = row.getFunction(); // FUNCTIONS building if (SkipRowPresenter.SET_FUNCTIONS.contains(rowFunction)) { List<ExprNode> arguments = Lists.newArrayList(); arguments.add(new SymbolExpr(row.getFormField().getId().asString())); if (value instanceof BooleanFieldValue || value instanceof Quantity || value instanceof TextValue) { arguments.add(newConstant(value)); } else if (value instanceof HasSetFieldValue) { List<ResourceId> idSet = Lists.newArrayList(((HasSetFieldValue)value).getResourceIds()); for (ResourceId resourceId : idSet) { arguments.add(new SymbolExpr(resourceId.asString())); } } else { throw new UnsupportedOperationException("Not supported value: " + value); } return new FunctionCallNode(rowFunction, arguments); } // OPERATOR building if (value instanceof BooleanFieldValue || value instanceof Quantity || value instanceof TextValue) { right = newConstant(value); } else if (value instanceof HasSetFieldValue) { List<ResourceId> idSet = Lists.newArrayList(((HasSetFieldValue)value).getResourceIds()); int size = idSet.size(); if (size == 1) { right = new SymbolExpr(idSet.get(0).asString()); } else { return new GroupExpr(buildNodeForSet(left, idSet, row)); } } else { throw new UnsupportedOperationException("Not supported value: " + value); } ExprNode node = new FunctionCallNode(rowFunction, left, right); if (rows.size() > 1) { node = new GroupExpr(node); } if ((index + 1) < rows.size()) { index++; RowData nextRow = rows.get(index); return new FunctionCallNode(nextRow.getJoinFunction(), node, buildNode(null, index)); } return node; } private ExprNode newConstant(FieldValue value) { if (value instanceof BooleanFieldValue) { return new ConstantExpr(value, BooleanType.INSTANCE); } else if (value instanceof Quantity) { return new ConstantExpr((Quantity)value); } else if (value instanceof TextValue) { return new ConstantExpr(value, TextType.INSTANCE); } else { throw new IllegalArgumentException("value: "+ value); } } private ExprNode buildNodeForSet(ExprNode left, List<ResourceId> values, RowData row) { ExprFunction internalFunction = BooleanFunctions.OR; if (row.getFunction() == BooleanFunctions.NOT_EQUAL) { internalFunction = BooleanFunctions.AND; } final List<ExprNode> arguments = Lists.newArrayList(); for (ResourceId value : values) { arguments.add(new GroupExpr(new FunctionCallNode(row.getFunction(), left, new SymbolExpr(value.asString())))); } return new FunctionCallNode(internalFunction, arguments); } }