org.hotrod.runtime.livesql.dialects.DB2Dialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hotrod-livesql Show documentation
Show all versions of hotrod-livesql Show documentation
HotRod is an ORM for Java, Spring and SpringBoot.
package org.hotrod.runtime.livesql.dialects;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
import org.hotrod.runtime.livesql.exceptions.InvalidLiteralException;
import org.hotrod.runtime.livesql.exceptions.UnsupportedLiveSQLFeatureException;
import org.hotrod.runtime.livesql.expressions.numbers.NumberExpression;
import org.hotrod.runtime.livesql.expressions.strings.StringExpression;
import org.hotrod.runtime.livesql.ordering.OrderingTerm;
import org.hotrod.runtime.livesql.queries.select.CrossJoin;
import org.hotrod.runtime.livesql.queries.select.FullOuterJoin;
import org.hotrod.runtime.livesql.queries.select.InnerJoin;
import org.hotrod.runtime.livesql.queries.select.Join;
import org.hotrod.runtime.livesql.queries.select.JoinLateral;
import org.hotrod.runtime.livesql.queries.select.LeftJoinLateral;
import org.hotrod.runtime.livesql.queries.select.LeftOuterJoin;
import org.hotrod.runtime.livesql.queries.select.NaturalFullOuterJoin;
import org.hotrod.runtime.livesql.queries.select.NaturalInnerJoin;
import org.hotrod.runtime.livesql.queries.select.NaturalLeftOuterJoin;
import org.hotrod.runtime.livesql.queries.select.NaturalRightOuterJoin;
import org.hotrod.runtime.livesql.queries.select.QueryWriter;
import org.hotrod.runtime.livesql.queries.select.RightOuterJoin;
import org.hotrod.runtime.livesql.queries.select.UnionJoin;
import org.hotrodorm.hotrod.utils.Separator;
public class DB2Dialect extends LiveSQLDialect {
public DB2Dialect(final boolean discovered, final String productName, final String productVersion,
final int majorVersion, final int minorVersion) {
super(discovered, productName, productVersion, majorVersion, minorVersion);
}
// WITH rendering
@Override
public WithRenderer getWithRenderer() {
return (c) -> "WITH";
}
// From rendering
@Override
public FromRenderer getFromRenderer() {
return () -> "FROM sysibm.sysdummy1";
}
// Table Expression rendering
@Override
public TableExpressionRenderer getTableExpressionRenderer() {
return (columns) -> " ("
+ Arrays.stream(columns).map(c -> this.canonicalToNatural(c)).collect(Collectors.joining(", ")) + ")";
}
// Join rendering
@Override
public JoinRenderer getJoinRenderer() {
return new JoinRenderer() {
@Override
public String renderJoinKeywords(final Join join) throws UnsupportedLiveSQLFeatureException {
if (join instanceof InnerJoin) {
return "JOIN";
} else if (join instanceof LeftOuterJoin) {
return "LEFT JOIN";
} else if (join instanceof RightOuterJoin) {
return "RIGHT JOIN";
} else if (join instanceof FullOuterJoin) {
return "FULL JOIN";
} else if (join instanceof CrossJoin) {
return "CROSS JOIN";
} else if (join instanceof NaturalInnerJoin) {
return "NATURAL JOIN";
} else if (join instanceof NaturalLeftOuterJoin) {
return "NATURAL LEFT JOIN";
} else if (join instanceof NaturalRightOuterJoin) {
return "NATURAL RIGHT JOIN";
} else if (join instanceof NaturalFullOuterJoin) {
return "NATURAL FULL JOIN";
} else if (join instanceof JoinLateral) {
if (versionIsAtLeast(10, 5)) {
return "JOIN LATERAL";
}
throw new UnsupportedLiveSQLFeatureException(
"LiveSQL supports lateral joins in the DB2 database starting in version 10.5, "
+ "but the current version is " + renderVersion());
} else if (join instanceof LeftJoinLateral) {
if (versionIsAtLeast(10, 5)) {
return "LEFT JOIN LATERAL";
}
throw new UnsupportedLiveSQLFeatureException(
"LiveSQL supports lateral joins in the DB2 database starting in version 10.5, "
+ "but the current version is " + renderVersion());
} else if (join instanceof UnionJoin) {
throw new UnsupportedLiveSQLFeatureException("Union joins are not supported in DB2 database");
} else {
throw new UnsupportedLiveSQLFeatureException(
"Invalid join type (" + join.getClass().getSimpleName() + ") in DB2 database");
}
}
@Override
public String renderOptionalOnPredicate(final Join join) throws UnsupportedLiveSQLFeatureException {
if (join instanceof InnerJoin) {
return "";
} else if (join instanceof LeftOuterJoin) {
return "";
} else if (join instanceof RightOuterJoin) {
return "";
} else if (join instanceof FullOuterJoin) {
return "";
} else if (join instanceof CrossJoin) {
return "";
} else if (join instanceof NaturalInnerJoin) {
return "";
} else if (join instanceof NaturalLeftOuterJoin) {
return "";
} else if (join instanceof NaturalRightOuterJoin) {
return "";
} else if (join instanceof NaturalFullOuterJoin) {
return "";
} else if (join instanceof JoinLateral) {
return " ON 1 = 1";
} else if (join instanceof LeftJoinLateral) {
return " ON 1 = 1";
} else if (join instanceof UnionJoin) {
throw new UnsupportedLiveSQLFeatureException("Union joins are not supported in Oracle database");
} else {
throw new UnsupportedLiveSQLFeatureException(
"Invalid join type (" + join.getClass().getSimpleName() + ") in Oracle database");
}
}
};
}
// Pagination rendering
public PaginationRenderer getPaginationRenderer() {
return new PaginationRenderer() {
@Override
public PaginationType getPaginationType(final Integer offset, final Integer limit) {
if (offset != null) {
if (!versionIsAtLeast(11, 1)) {
throw new UnsupportedLiveSQLFeatureException("This version of DB2 (" + renderVersion()
+ ") does not support the OFFSET clause. DB2 versions 11.1 and newer do");
}
}
return PaginationType.BOTTOM;
}
@Override
public void renderTopPagination(final Integer offset, final Integer limit, final QueryWriter w) {
throw new UnsupportedLiveSQLFeatureException("In DB2 pagination cannot be rendered at the top");
}
@Override
public void renderBottomPagination(final Integer offset, final Integer limit, final QueryWriter w) {
if (offset != null) {
if (!versionIsAtLeast(11, 1)) {
throw new UnsupportedLiveSQLFeatureException("This version of DB2 (" + renderVersion()
+ ") does not support the OFFSET clause. Support starts in DB2 11.1");
}
}
if (offset != null) {
w.write("\nOFFSET " + offset + " ROWS");
}
if (limit != null) {
w.write("\nFETCH FIRST " + limit + " ROWS ONLY");
}
}
@Override
public void renderBeginEnclosingPagination(final Integer offset, final Integer limit, final QueryWriter w) {
throw new UnsupportedLiveSQLFeatureException("In DB2 pagination cannot be rendered in an enclosing way");
}
@Override
public void renderEndEnclosingPagination(final Integer offset, final Integer limit, final QueryWriter w) {
throw new UnsupportedLiveSQLFeatureException("In DB2 pagination cannot be rendered in an enclosing way");
}
};
}
// Set operation rendering
@Override
public SetOperatorRenderer getSetOperationRenderer() {
return new SetOperatorRenderer() {
@Override
public void renderUnion(final QueryWriter w) {
w.write("UNION");
}
@Override
public void renderUnionAll(final QueryWriter w) {
w.write("UNION ALL");
}
@Override
public void renderExcept(final QueryWriter w) {
w.write("EXCEPT");
}
@Override
public void renderExceptAll(final QueryWriter w) {
w.write("EXCEPT ALL");
}
@Override
public void renderIntersect(final QueryWriter w) {
w.write("INTERSECT");
}
@Override
public void renderIntersectAll(final QueryWriter w) {
w.write("INTERSECT ALL");
}
};
}
// Function rendering
@Override
public FunctionRenderer getFunctionRenderer() {
return new FunctionRenderer() {
// General purpose functions
@Override
public void groupConcat(final QueryWriter w, final boolean distinct, final StringExpression value,
final List ordering, final StringExpression separator) {
if (distinct) {
throw new UnsupportedLiveSQLFeatureException(
"DB2 does not support DISTINCT on the GROUP_CONCAT() function (listagg())");
}
w.write("listagg(");
value.renderTo(w);
if (separator != null) {
w.write(", ");
separator.renderTo(w);
}
w.write(")");
if (ordering != null && !ordering.isEmpty()) {
w.write(" withing group (ORDER BY ");
Separator sep = new Separator();
for (OrderingTerm t : ordering) {
w.write(sep.render());
t.renderTo(w);
}
w.write(")");
}
}
// Arithmetic functions
@Override
public void logarithm(final QueryWriter w, final NumberExpression x, final NumberExpression base) {
if (base == null) {
this.write(w, "ln", x);
} else {
w.write("(");
this.write(w, "ln", x);
w.write(" / ");
this.write(w, "ln", base);
w.write(")");
}
}
// String functions
// Date/Time functions
@Override
public void currentDate(final QueryWriter w) {
w.write("current date");
}
@Override
public void currentTime(final QueryWriter w) {
w.write("current time");
}
@Override
public void currentDateTime(final QueryWriter w) {
w.write("current timestamp");
}
};
}
// New SQL Identifier rendering
private final String UNQUOTED_NATURAL = "[A-Za-z][A-Za-z0-9_]*";
private final String UNQUOTED_CANONICAL = "[A-Z][A-Z0-9_]*";
@Override
public String naturalToCanonical(final String natural) {
if (natural == null) {
return null;
}
if (natural.matches(UNQUOTED_NATURAL)) {
return natural.toUpperCase();
}
return natural;
}
@Override
public String canonicalToNatural(final String canonical) {
if (canonical == null)
return null;
if (canonical.matches(UNQUOTED_CANONICAL)) {
return canonical.toLowerCase();
} else {
return "\"" + canonical.replace("\"", "\"\"").replace("'", "''") + "\"";
}
}
@Override
public DateTimeLiteralRenderer getDateTimeLiteralRenderer() {
return new DateTimeLiteralRenderer() {
@Override
public String renderDate(final String isoFormat) {
return "DATE '" + isoFormat + "'";
}
@Override
public String renderTime(final String isoFormat, final int precision) {
return "TIME '" + isoFormat + "'";
}
@Override
public String renderTimestamp(final String isoFormat, final int precision) {
return "TIMESTAMP '" + isoFormat + "'";
}
@Override
public String renderOffsetTime(final String isoTime, final String isoOffset, final int precision) {
throw new InvalidLiteralException("DB2 does not implement the TIME WITH TIME ZONE data type.");
}
@Override
public String renderOffsetTimestamp(final String isoTimestamp, final String isoOffset, final int precision) {
throw new InvalidLiteralException("DB2 does not implement the TIMESTAMP WITH TIME ZONE data type.");
}
};
}
@Override
public BooleanLiteralRenderer getBooleanLiteralRenderer() {
return new BooleanLiteralRenderer() {
@Override
public void renderTrue(final QueryWriter w) {
w.write("1 = 1");
}
@Override
public void renderFalse(final QueryWriter w) {
w.write("1 = 0");
}
};
}
@Override
public boolean mandatoryColumnNamesInRecursiveCTEs() {
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy