org.hotrod.runtime.livesql.dialects.PostgreSQLDialect 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.List;
import org.hotrod.runtime.livesql.exceptions.InvalidLiveSQLStatementException;
import org.hotrod.runtime.livesql.exceptions.UnsupportedLiveSQLFeatureException;
import org.hotrod.runtime.livesql.expressions.datetime.DateTimeExpression;
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.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 PostgreSQLDialect extends SQLDialect {
public PostgreSQLDialect(final String productName, final String productVersion, final int majorVersion,
final int minorVersion) {
super(productName, productVersion, majorVersion, minorVersion);
}
// Identifier rendering
@Override
public IdentifierRenderer getIdentifierRenderer() {
// Identifier names are by default lower case in PostgreSQL
return new IdentifierRenderer("[a-z][a-z0-9_]*", "\"", "\"", false);
}
// 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 OUTER JOIN";
} else if (join instanceof RightOuterJoin) {
return "RIGHT OUTER JOIN";
} else if (join instanceof FullOuterJoin) {
return "FULL OUTER 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 OUTER JOIN";
} else if (join instanceof NaturalRightOuterJoin) {
return "NATURAL RIGHT OUTER JOIN";
} else if (join instanceof NaturalFullOuterJoin) {
return "NATURAL FULL OUTER JOIN";
} else if (join instanceof UnionJoin) {
throw new UnsupportedLiveSQLFeatureException("Union joins are not supported in PostgreSQL database");
} else {
throw new UnsupportedLiveSQLFeatureException(
"Invalid join type (" + join.getClass().getSimpleName() + ") in PostgreSQL database");
}
}
};
}
// Pagination rendering
public PaginationRenderer getPaginationRenderer() {
return new PaginationRenderer() {
@Override
public PaginationType getPaginationType(final Integer offset, final Integer limit) {
return offset != null || limit != null ? PaginationType.BOTTOM : null;
}
@Override
public void renderTopPagination(final Integer offset, final Integer limit, final QueryWriter w) {
throw new UnsupportedLiveSQLFeatureException("Pagination can only be rendered at the bottom in PostgreSQL");
}
@Override
public void renderBottomPagination(final Integer offset, final Integer limit, final QueryWriter w) {
if (limit != null) {
if (offset != null) {
w.write("\nLIMIT " + limit + " OFFSET " + offset);
} else {
w.write("\nLIMIT " + limit);
}
} else {
w.write("\nOFFSET " + offset);
}
}
@Override
public void renderBeginEnclosingPagination(final Integer offset, final Integer limit, final QueryWriter w) {
throw new UnsupportedLiveSQLFeatureException("Pagination can only be rendered at the bottom in PostgreSQL");
}
@Override
public void renderEndEnclosingPagination(final Integer offset, final Integer limit, final QueryWriter w) {
throw new UnsupportedLiveSQLFeatureException("Pagination can only be rendered at the bottom in PostgreSQL");
}
};
}
// Set operation rendering
@Override
public SetOperationRenderer getSetOperationRenderer() {
return new SetOperationRenderer() {
@Override
public void render(final SetOperation setOperation, final QueryWriter w) {
switch (setOperation) {
case UNION:
w.write("UNION");
break;
case UNION_ALL:
w.write("UNION ALL");
break;
case INTERSECT:
w.write("INTERSECT");
break;
case INTERSECT_ALL:
w.write("INTERSECT ALL");
break;
case EXCEPT:
w.write("EXCEPT");
break;
case EXCEPT_ALL:
w.write("EXCEPT ALL");
break;
default:
throw new InvalidLiveSQLStatementException("Invalid set operation '" + setOperation + "'.");
}
}
};
}
// 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 (!versionIsAtLeast(9)) {
throw new UnsupportedLiveSQLFeatureException("This PostgreSQL version (" + renderVersion()
+ ") does not support the GROUP_CONCAT() function (string_agg()). Only available on PostgreSQL 9.0 or newer");
}
if (distinct) {
throw new UnsupportedLiveSQLFeatureException(
"PostgreSQL does not support DISTINCT on the GROUP_CONCAT() function (string_agg())");
}
if (separator == null) {
throw new UnsupportedLiveSQLFeatureException(
"PostgreSQL requires the separator to be specified on the GROUP_CONCAT() function (string_agg())");
}
w.write("string_agg(");
value.renderTo(w);
w.write(", ");
separator.renderTo(w);
if (ordering != null && !ordering.isEmpty()) {
w.write(" 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 {
this.write(w, "log", base, x);
}
}
// String functions
@Override
public void locate(final QueryWriter w, final StringExpression substring, final StringExpression string,
final NumberExpression from) {
if (from == null) {
this.write(w, "strpos", string, substring);
} else {
throw new UnsupportedLiveSQLFeatureException(
"PostgreSQL does not support the parameter 'from' in the LOCATE function ('strpos' in PostgreSQL lingo)");
}
}
// 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");
}
@Override
public void date(final QueryWriter w, final DateTimeExpression datetime) {
datetime.renderTo(w);
w.write("::date");
}
@Override
public void time(final QueryWriter w, final DateTimeExpression datetime) {
datetime.renderTo(w);
w.write("::time");
}
@Override
public void dateTime(final QueryWriter w, final DateTimeExpression date, final DateTimeExpression time) {
w.write("(");
date.renderTo(w);
w.write(" + ");
time.renderTo(w);
w.write(")");
}
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy