/***************************************************************** * 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.cayenne.dba.oracle; import org.apache.cayenne.access.translator.select.QueryAssembler; import org.apache.cayenne.access.translator.select.TrimmingQualifierTranslator; import org.apache.cayenne.exp.Expression; import org.apache.cayenne.exp.parser.ASTExtract; import org.apache.cayenne.exp.parser.ASTFunctionCall; import org.apache.cayenne.exp.parser.ASTIn; import org.apache.cayenne.exp.parser.ASTList; import org.apache.cayenne.exp.parser.ASTNegate; import org.apache.cayenne.exp.parser.ASTNotIn; import org.apache.cayenne.exp.parser.ASTPath; import org.apache.cayenne.exp.parser.Node; import org.apache.commons.collections.Transformer; import java.util.ArrayList; import java.util.List; /** * Oracle qualifier translator. In particular, trims INs with more than 1000 * elements to an OR-set of INs with <= 1000 elements */ public class OracleQualifierTranslator extends TrimmingQualifierTranslator { public OracleQualifierTranslator(QueryAssembler queryAssembler) { super(queryAssembler, OracleAdapter.TRIM_FUNCTION); } @Override protected void doAppendPart(Expression rootNode) { if (rootNode == null) { return; } rootNode = rootNode.transform(new INTrimmer()); rootNode.traverse(this); } public static class INTrimmer implements Transformer { public Expression trimmedInExpression(Expression exp, int maxInSize) { Expression list = (Expression) exp.getOperand(1); Object[] objects = (Object[]) list.evaluate(null); if (objects.length <= maxInSize) { return exp; } Expression trimmed = trimmedInExpression((ASTPath) exp.getOperand(0), objects, maxInSize); if (exp instanceof ASTNotIn) { return new ASTNegate(trimmed); } return trimmed; } Expression trimmedInExpression(ASTPath path, Object[] values, int maxInSize) { Expression res = null; List<Object> in = new ArrayList<>(maxInSize); for (Object v : values) { in.add(v); if (in.size() == maxInSize) { Expression inExp = new ASTIn(path, new ASTList(in)); res = res != null ? res.orExp(inExp) : inExp; in = new ArrayList<>(maxInSize); } } if (in.size() > 0) { Expression inExp = new ASTIn(path, new ASTList(in)); res = res != null ? res.orExp(inExp) : inExp; } return res; } public Object transform(Object input) { if (input instanceof ASTIn || input instanceof ASTNotIn) { return trimmedInExpression((Expression) input, 1000); } return input; } } /** * @since 4.0 */ @Override public void endNode(Expression node, Expression parentNode) { super.endNode(node, parentNode); if(node.getType() == Expression.FUNCTION_CALL) { if("LOCATE".equals(((ASTFunctionCall)node).getFunctionName())) { // order of args in INSTR is different, so swap them back swapNodeChildren((ASTFunctionCall)node, 0, 1); } } } /** * @since 4.0 */ @Override protected void appendFunction(ASTFunctionCall functionExpression) { if("CONCAT".equals(functionExpression.getFunctionName())) { // CONCAT(x, y, z) -> (x || y || z) } else if("SUBSTRING".equals(functionExpression.getFunctionName())) { out.append("SUBSTR"); } else if("LOCATE".equals(functionExpression.getFunctionName())) { // LOCATE(substr, str) -> INSTR(str, substr) out.append("INSTR"); swapNodeChildren(functionExpression, 0, 1); } else if("CURRENT_TIME".equals(functionExpression.getFunctionName())) { out.append("{fn CURTIME()}"); } else { super.appendFunction(functionExpression); } } /** * @since 4.0 */ @Override protected void appendFunctionArgDivider(ASTFunctionCall functionExpression) { if("CONCAT".equals(functionExpression.getFunctionName())) { out.append(" || "); } else { super.appendFunctionArgDivider(functionExpression); } } /** * @since 4.0 */ @Override protected void clearLastFunctionArgDivider(ASTFunctionCall functionExpression) { if("CONCAT".equals(functionExpression.getFunctionName())) { out.delete(out.length() - " || ".length(), out.length()); } else { super.clearLastFunctionArgDivider(functionExpression); } if(functionExpression instanceof ASTExtract) { switch (((ASTExtract)functionExpression).getPart()) { case DAY_OF_YEAR: out.append(", 'DDD'"); break; case DAY_OF_WEEK: out.append(", 'D'"); break; case WEEK: out.append(", 'IW'"); break; } out.append(")"); } } @Override protected boolean parenthesisNeeded(Expression node, Expression parentNode) { if (node.getType() == Expression.FUNCTION_CALL) { if (node instanceof ASTExtract) { return false; } } return super.parenthesisNeeded(node, parentNode); } @Override protected void appendExtractFunction(ASTExtract functionExpression) { switch (functionExpression.getPart()) { // use TO_CHAR(date, format) function for parts that is unsupported by EXTRACT() case DAY_OF_YEAR: case DAY_OF_WEEK: case WEEK: out.append("TO_CHAR("); break; case DAY_OF_MONTH: out.append("EXTRACT(DAY FROM "); break; default: out.append("EXTRACT("); out.append(functionExpression.getPart().name()); out.append(" FROM "); } } /** * @since 4.0 */ private void swapNodeChildren(Node node, int i, int j) { Node ni = node.jjtGetChild(i); Node nj = node.jjtGetChild(j); node.jjtAddChild(ni, j); node.jjtAddChild(nj, i); } }