jooq/jOOQ/src/main/java/org/jooq/SQLDialect.java

1613 lines
25 KiB
Java

/*
* Licensed 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
*
* https://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.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: https://www.jooq.org/legal/licensing
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq;
import java.sql.DatabaseMetaData;
import java.util.Collection;
import java.util.Collections;
import java.util.EnumSet;
import java.util.Set;
import java.util.concurrent.locks.Condition;
import java.util.regex.Pattern;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.ApiStatus.Experimental;
/**
* Dialects and dialect families as supported by jOOQ.
* <p>
* The commercial jOOQ distributions support a variety of dialects, which are
* grouped into dialect families. For instance, the PostgreSQL dialect family
* {@link #POSTGRES} is specialised by its dialects
* <ul>
* <li>{@link #POSTGRES_9_3}</li>
* <li>{@link #POSTGRES_9_4}</li>
* <li>{@link #POSTGRES_9_5}</li>
* <li>{@link #POSTGRES_10}</li>
* <li>{@link #POSTGRES_11}</li>
* <li>{@link #POSTGRES_12}</li>
* <li>{@link #POSTGRES_13}</li>
* <li>{@link #POSTGRES_14}</li>
* </ul>
* <p>
* The open source jOOQ distributions only support the dialect family, which
* corresponds to the latest supported dialect version of the commercial
* distribution. A full list of mappings between dialect families and latest
* supported version can be seen here <a href=
* "https://www.jooq.org/download/support-matrix">https://www.jooq.org/download/support-matrix</a>.
* <p>
* If a dialect is documented but does not seem to be available in your jOOQ
* Edition, you may be using the wrong edition, e.g. because of a transitive
* dependency introduced by Spring Boot. See this article about how to exclude
* such transitive dependencies from your classpath <a href=
* "https://blog.jooq.org/how-to-use-jooqs-commercial-distributions-with-spring-boot/">https://blog.jooq.org/how-to-use-jooqs-commercial-distributions-with-spring-boot/</a>.
*
* @author Lukas Eder
*/
public enum SQLDialect {
/**
* The default SQL dialect.
* <p>
* This dialect is chosen in the absence of a more explicit dialect. It is
* not intended to be used with any actual database as it may combined
* dialect-specific things from various dialects.
*/
DEFAULT("", false, false),
// -------------------------------------------------------------------------
// SQL dialects for free usage
// -------------------------------------------------------------------------
/**
* The CUBRID dialect family.
*
* @deprecated - [#9403] - 3.13.0 - This dialect is hardly used by anyone
* with jOOQ or without jOOQ and will be removed in the near
* future.
*/
@Deprecated(forRemoval = true, since = "3.13")
CUBRID("CUBRID", false, true, SQLDialectCategory.MYSQL),
/**
* The Apache Derby dialect family.
*/
DERBY("Derby", false, true),
/**
* The DuckDB dialect family.
* <p>
* jOOQ integration tests have found that this RDBMS is in a beta state. We
* do not run the complete integration test suite against it, nor do we
* regression test, currently, until significant issues are resolved in both
* the RDBMS and the JDBC driver.
*/
@Experimental
DUCKDB("DuckDB", false, true),
/**
* The Firebird dialect family.
* <p>
* This family behaves like the versioned dialect {@link #FIREBIRD_3_0}.
*/
FIREBIRD("Firebird", false, true, new RequiredVersion(4, null, null)),
/**
* The H2 dialect family.
*/
H2("H2", false, true, new RequiredVersion(2, 1, 214)),
/**
* The Hypersonic dialect family.
*/
HSQLDB("HSQLDB", false, true),
/**
* The Apache Ignite dialect family.
*
* @deprecated - [#12465] - 3.16.0 - This dialect is hardly used by anyone
* with jOOQ or without jOOQ and will be removed in the near
* future. If you're actively using this dialect, please get in
* touch for extended support:
* https://github.com/jOOQ/jOOQ/issues/12465
*/
@Deprecated(forRemoval = true, since = "3.16")
IGNITE("Ignite", false, true),
/**
* The MariaDB dialect family.
* <p>
* This family behaves like the versioned dialect {@link #MARIADB_10_5}.
*/
MARIADB("MariaDB", false, true, new RequiredVersion(10, 7, null), SQLDialectCategory.MYSQL),
/**
* The MySQL dialect family.
* <p>
* This family behaves like the versioned dialect {@link #MYSQL_8_0_31}.
*/
MYSQL("MySQL", false, true, new RequiredVersion(8, 0, 31), SQLDialectCategory.MYSQL),
/**
* The PostgreSQL dialect family.
* <p>
* This family behaves like the versioned dialect {@link #POSTGRES_15}.
* <p>
* While this family (and its dialects) have been observed to work to some
* extent on Amazon RedShift as well, we strongly suggest you use the
* official {@link #REDSHIFT} support, instead.
*/
POSTGRES("Postgres", false, true, new RequiredVersion(15, null, null), SQLDialectCategory.POSTGRES),
/**
* The SQLite dialect family.
* <p>
* This family behaves like the versioned dialect {@link #SQLITE_3_40}.
*/
SQLITE("SQLite", false, true, new RequiredVersion(3, 40, null)),
/**
* The Trino dialect family.
*/
TRINO("Trino", false, true),
/**
* The YugabyteDB dialect family.
*/
YUGABYTEDB("YugabyteDB", false, true, new RequiredVersion(2, 9, null), SQLDialectCategory.POSTGRES),
// -------------------------------------------------------------------------
// SQL dialects for commercial usage
// -------------------------------------------------------------------------
;
private static final SQLDialect[] FAMILIES;
static {
Set<SQLDialect> set = EnumSet.noneOf(SQLDialect.class);
for (SQLDialect dialect : values()) {
set.add(dialect.family());
}
FAMILIES = set.toArray(new SQLDialect[0]);
}
private final String name;
private final boolean commercial;
private final boolean supported;
private final RequiredVersion requiredVersion;
private final SQLDialect family;
private final SQLDialectCategory category;
private SQLDialect predecessor;
private transient EnumSet<SQLDialect> predecessors;
private final ThirdParty thirdParty;
/**
* Get a list of all {@link SQLDialect#family()} values.
*/
@NotNull
public static final SQLDialect @NotNull [] families() {
return FAMILIES.clone();
}
/**
* Get a set of dialects preceding a given set of dialects.
* <p>
* The resulting set of dialects contain all the families and dialect
* versions that precede the argument dialects, including the argument
* dialects.
*/
@NotNull
public static final Set<SQLDialect> predecessors(SQLDialect... dialects) {
EnumSet<SQLDialect> result = EnumSet.noneOf(SQLDialect.class);
for (SQLDialect dialect : dialects)
result.addAll(dialect.predecessors());
return result;
}
/**
* Get a set of supported dialect versions and predecessors given a dialect
* version.
* <p>
* The resulting set of dialects contain all the families and dialect
* versions that precede the argument dialect, including the argument
* dialect.
*/
@NotNull
public static final Set<SQLDialect> supportedUntil(SQLDialect dialect) {
return predecessors(dialect);
}
/**
* Get a set of supported dialect versions and predecessors given a dialect
* version.
* <p>
* The resulting set of dialects contain all the families and dialect
* versions that precede the argument dialect, including the argument
* dialects.
*/
@NotNull
public static final Set<SQLDialect> supportedUntil(SQLDialect... dialects) {
return predecessors(dialects);
}
/**
* Get a set of supported dialect versions and successors given a dialect
* version.
* <p>
* The resulting set of dialects contain all the families and dialect
* versions that support the argument dialect, i.e. that succeed it,
* including the argument dialect.
*/
@NotNull
public static final Set<SQLDialect> supportedBy(SQLDialect dialect) {
EnumSet<SQLDialect> result = EnumSet.noneOf(SQLDialect.class);
addSupportedBy(dialect, result);
return result;
}
/**
* Get a set of supported dialect versions and successors given a set of
* dialect versions.
* <p>
* The resulting set of dialects contain all the families and dialect
* versions that support the argument dialects, i.e. that succeed them,
* including the argument dialects.
*/
@NotNull
public static final Set<SQLDialect> supportedBy(SQLDialect... dialects) {
EnumSet<SQLDialect> result = EnumSet.noneOf(SQLDialect.class);
for (SQLDialect dialect : dialects)
addSupportedBy(dialect, result);
return result;
}
private static final void addSupportedBy(SQLDialect dialect, EnumSet<SQLDialect> supported) {
supported.add(dialect);
if (dialect.isFamily())
supported.addAll(dialect.predecessors());
else
for (SQLDialect candidate = dialect.family(); candidate != dialect; candidate = candidate.predecessor())
supported.add(candidate);
}
private SQLDialect(String name, boolean commercial, boolean supported) {
this(name, commercial, supported, (RequiredVersion) null);
}
private SQLDialect(String name, boolean commercial, boolean supported, SQLDialectCategory category) {
this(name, commercial, supported, null, category);
}
private SQLDialect(String name, boolean commercial, boolean supported, RequiredVersion requiredVersion) {
this(name, commercial, supported, requiredVersion, SQLDialectCategory.OTHER, null, null);
}
private SQLDialect(String name, boolean commercial, boolean supported, RequiredVersion requiredVersion, SQLDialectCategory category) {
this(name, commercial, supported, requiredVersion, category, null, null);
}
private SQLDialect(String name, boolean commercial, boolean supported, RequiredVersion requiredVersion, SQLDialect family) {
this(name, commercial, supported, requiredVersion, family, null);
}
private SQLDialect(String name, boolean commercial, boolean supported, RequiredVersion requiredVersion, SQLDialect family, SQLDialect predecessor) {
this(name, commercial, supported, requiredVersion, family.category(), family, predecessor);
}
private SQLDialect(String name, boolean commercial, boolean supported, RequiredVersion requiredVersion, SQLDialectCategory category, SQLDialect family, SQLDialect predecessor) {
this.name = name;
this.commercial = commercial;
this.supported = supported;
this.requiredVersion = requiredVersion;
this.family = family == null ? this : family;
this.category = category == null ? this.family.category() : category;
this.predecessor = predecessor == null ? this : predecessor;
if (family != null)
family.predecessor = this;
this.thirdParty = new ThirdParty();
}
/**
* Whether this dialect is supported with the jOOQ commercial license only.
*/
public final boolean commercial() {
return commercial;
}
/**
* Whether this dialect is supported by jOOQ as an output dialect.
* <p>
* Unsupported, non-output dialects include:
* <ul>
* <li>{@link #DEFAULT}: A hypothetical dialect used for
* {@link QueryPart#toString()} calls of unattached query parts.</li>
* <li>{@link #POSTGRESPLUS}: A not yet supported dialect.</li>
* </ul>
*/
public final boolean supported() {
return supported;
}
/**
* The dialect family.
* <p>
* This returns the dialect itself, if it has no "parent family". E.g.
* <pre><code>
* SQLSERVER == SQLSERVER2012.family();
* SQLSERVER == SQLSERVER2008.family();
* SQLSERVER == SQLSERVER.family();
* </code></pre>
*/
@NotNull
public final SQLDialect family() {
return family;
}
/**
* The dialect category.
*/
@NotNull
public final SQLDialectCategory category() {
return category;
}
/**
* Whether this dialect is a {@link #family()}.
*/
public final boolean isFamily() {
return this == family;
}
/**
* Whether this dialect is a versioned dialect or a family with versioned
* dialects.
*/
public final boolean isVersioned() {
return requiredVersion != null;
}
/**
* The predecessor dialect.
* <p>
* If this is a dialect version (e.g. {@link #POSTGRES_9_4}) within a family
* (e.g. {@link #POSTGRES}), then the predecessor will point to the
* historically previous dialect version (e.g. {@link #POSTGRES_9_3}) within
* the same family, or to the dialect itself if there was no predecessor
* explicitly supported by jOOQ.
*/
@NotNull
public final SQLDialect predecessor() {
return predecessor;
}
/**
* The predecessor dialects.
* <p>
* Recursively calls {@link #predecessor()} and finds all the preceding
* dialects to this one, including this one.
*/
@NotNull
public final Set<SQLDialect> predecessors() {
if (predecessors == null) {
SQLDialect curr = this;
EnumSet<SQLDialect> result = EnumSet.of(curr);
for (;;) {
SQLDialect pred = curr.predecessor();
result.add(pred);
if (curr == pred)
break;
curr = pred;
}
predecessors = result;
}
return Collections.unmodifiableSet(predecessors);
}
/**
* Whether this dialect precedes an other dialect from the same family.
* <p>
* This returns:
* <ul>
* <li><code>true</code> if this dialect is the same as the other dialect</li>
* <li><code>true</code> if this dialect precedes the other dialect via any
* number of calls to {@link #predecessor()}</li>
* </ul>
* The above also implies that:
* <ul>
* <li><code>false</code> if the two dialects do not belong to the same
* family</li>
* </ul>
* <p>
* This is useful to see if some feature is supported by <em>"at least"</em>
* a given dialect version. Example: <pre><code>
* // Do this block only if the chosen dialect supports PostgreSQL 9.4+ features
* if (POSTGRES_9_4.precedes(dialect)) {
* }
*
* // Do this block only if the chosen dialect supports PostgreSQL 9.3+ features
* else if (POSTGRES_9_3.precedes(dialect)) {
* }
*
* // Fall back to pre-PostgreSQL 9.3 behaviour
* else {
* }
* </code></pre>
*/
public final boolean precedes(SQLDialect other) {
if (family != other.family)
return false;
return other.predecessors().contains(this);
}
/**
* Whether this dialect strictly precedes an other dialect from the same
* family.
* <p>
* This returns:
* <ul>
* <li><code>false</code> if this dialect is the same as the other
* dialect</li>
* <li><code>true</code> if this dialect precedes the other dialect via any
* number of calls to {@link #predecessor()}</li>
* </ul>
* The above also implies that:
* <ul>
* <li><code>false</code> if the two dialects do not belong to the same
* family</li>
* </ul>
* <p>
* This is useful to see if some feature is supported by <em>"at least"</em>
* a given dialect version. Example:
*
* <pre>
* <code>
* // Do this block only if the chosen dialect was before PostgreSQL 9.3-
* if (dialect.precedesStrictly(POSTGRES)) {
* }
*
* // Do this block only if the chosen dialect was before PostgreSQL 9.4-
* else if (dialect.precedesStrictly(POSTGRES)) {
* }
*
* // Fall back to post-PostgreSQL 9.4+ behaviour
* else {
* }
* </code>
* </pre>
*/
public final boolean precedesStrictly(SQLDialect other) {
return precedes(other) && this != other;
}
/**
* Check whether this dialect supports another one.
* <p>
* This is:
* <ul>
* <li><code>false</code> if dialects don't belong to the same family</li>
* <li><code>true</code> if either dialect {@link #isFamily()}</li>
* <li><code>true</code> if <code>other</code> dialect precedes this
* dialect</li>
* </ul>
* <p>
* The <code>other</code> argument dialect is typically referenced from a
* {@link Support} annotation, whereas this dialect is the user dialect.
*/
public final boolean supports(SQLDialect other) {
if (family != other.family)
return false;
if (isFamily() || other.isFamily())
return true;
return other.precedes(this);
}
/**
* Check whether this dialect supports any dialect from the argument
* collection.
*
* @deprecated - [#9882] - 3.14.0 - Use {@link #supportedBy(SQLDialect...)} instead
*/
@Deprecated(forRemoval = true, since = "3.14")
public final boolean supports(Collection<SQLDialect> other) {
if (other.contains(family))
return true;
SQLDialect candidate = family.predecessor();
boolean successor = this == family;
for (;;) {
successor = successor || this == candidate;
if (other.contains(candidate))
return successor;
if (candidate == (candidate = candidate.predecessor()))
return false;
}
}
/**
* Check if this {@link SQLDialect} supports a JDBC
* {@link DatabaseMetaData#getDatabaseMajorVersion()},
* {@link DatabaseMetaData#getDatabaseMinorVersion()}, patch version.
*/
public final boolean supportsDatabaseVersion(
int majorVersion,
int minorVersion,
String productVersion
) {
return requiredVersion == null
|| requiredVersion.major == null
|| requiredVersion.major < majorVersion
|| requiredVersion.major == majorVersion && (
requiredVersion.minor == null
|| requiredVersion.minor < minorVersion
|| requiredVersion.minor == minorVersion && (
requiredVersion.patch == null
|| requiredVersion.patch <= patchVersion(productVersion)
)
);
}
private static final Pattern P_PATCH_VERSION_MYSQL = Pattern.compile("^\\d+\\.\\d+\\.(\\d+).*$");
private final int patchVersion(String productVersion) {
if (productVersion == null)
return Integer.MAX_VALUE;
switch (family()) {
case H2:
return Integer.parseInt(productVersion.split(" ")[0].split("\\.")[2]);
case MYSQL:
return Integer.parseInt(P_PATCH_VERSION_MYSQL.matcher(productVersion).replaceFirst("$1"));
default:
return Integer.MAX_VALUE;
}
}
/**
* The name of this dialect as it appears in related class names.
*/
@NotNull
public final String getName() {
return name;
}
/**
* The name of this dialect as it appears in related package names.
*/
@NotNull
public final String getNameLC() {
return name.toLowerCase();
}
/**
* The name of this dialect as it appears in related enum values.
*/
@NotNull
public final String getNameUC() {
return name.toUpperCase();
}
/**
* Get access to third party representations of this {@link SQLDialect}.
*/
@NotNull
public final ThirdParty thirdParty() {
return thirdParty;
}
/**
* Third party representations of the enclosing {@link SQLDialect}.
*/
public final class ThirdParty {
/**
* "Guess" the JDBC driver from a {@link SQLDialect}.
*
* @return The appropriate JDBC driver class or
* <code>"java.sql.Driver"</code> if no driver class could be
* derived from the URL. Never <code>null</code>.
*/
@NotNull
public final String driver() {
// jOOQ build tools need this class without its dependencies, which
// is why we are using reflection here.
try {
Class<?> utils = Class.forName("org.jooq.tools.jdbc.JDBCUtils");
return (String) utils.getMethod("driver", SQLDialect.class).invoke(utils, SQLDialect.this);
}
catch (Exception e) {
throw new RuntimeException(e);
}
}
/**
* The Spring DB name or <code>null</code>, if the db name is not
* supported by Spring.
* <p>
* The name returned by this method corresponds to the DB id as
* referenced in
* <code>org/springframework/jdbc/support/sql-error-codes.xml</code>
*/
@Nullable
public final String springDbName() {
switch (SQLDialect.this.family) {
case DERBY: return "Derby";
case H2: return "H2";
case HSQLDB: return "HSQL";
case MARIADB:
case MYSQL: return "MySQL";
case POSTGRES:
case YUGABYTEDB: return "PostgreSQL";
default: return null;
}
}
/**
* The Hibernate dialect name or <code>null</code>, if the dialect is
* not supported by Hibernate.
* <p>
*
* @see <a href=
* "http://docs.jboss.org/hibernate/orm/5.0/javadocs/org/hibernate/dialect/package-summary.html">
* http://docs.jboss.org/hibernate/orm/5.0/javadocs/org/hibernate/
* dialect/package-summary.html</a>
*/
@Nullable
public final String hibernateDialect() {
switch (SQLDialect.this.family()) {
case CUBRID:
return "org.hibernate.dialect.CUBRIDDialect";
case DERBY:
return "org.hibernate.dialect.DerbyTenSevenDialect";
case FIREBIRD:
return "org.hibernate.dialect.FirebirdDialect";
case H2:
return "org.hibernate.dialect.H2Dialect";
case HSQLDB:
return "org.hibernate.dialect.HSQLDialect";
case MARIADB:
case MYSQL:
return "org.hibernate.dialect.MySQL5Dialect";
case POSTGRES:
return "org.hibernate.dialect.PostgreSQL94Dialect";
case YUGABYTEDB:
return "org.hibernate.dialect.PostgreSQL94Dialect";
case SQLITE:
return null;
default:
return null;
}
}
}
static final record RequiredVersion(Integer major, Integer minor, Integer patch) {}
}