Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Charset in Quarkus Config - Use it in Hibernate #9570

Merged
merged 2 commits into from
May 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package io.quarkus.runtime.configuration;

import static io.quarkus.runtime.configuration.ConverterSupport.DEFAULT_QUARKUS_CONVERTER_PRIORITY;

import java.io.Serializable;
import java.nio.charset.Charset;

import javax.annotation.Priority;

import org.eclipse.microprofile.config.spi.Converter;

/**
* A converter which converts a Charset string into an instance of {@link java.nio.charset.Charset}.
*/
@Priority(DEFAULT_QUARKUS_CONVERTER_PRIORITY)
public class CharsetConverter implements Converter<Charset>, Serializable {

private static final long serialVersionUID = 2320905063828247874L;

@Override
public Charset convert(String value) {
try {
return Charset.forName(value);
} catch (Exception e) {
throw new IllegalArgumentException("Unable to create Charset from: '" + value + "'", e);
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
io.quarkus.runtime.configuration.InetSocketAddressConverter
io.quarkus.runtime.configuration.CharsetConverter
io.quarkus.runtime.configuration.CidrAddressConverter
io.quarkus.runtime.configuration.InetAddressConverter
io.quarkus.runtime.configuration.RegexConverter
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package io.quarkus.runtime.configuration;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;

import java.nio.charset.StandardCharsets;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

public class CharsetConverterTestCase {

private CharsetConverter charsetConverter;

@BeforeEach
public void setup() {
charsetConverter = new CharsetConverter();
}

@Test
public void testUTF8Uppercase() {
assertEquals(charsetConverter.convert("UTF-8"), StandardCharsets.UTF_8);
}

@Test
public void testUTF8Lowercase() {
assertEquals(charsetConverter.convert("utf-8"), StandardCharsets.UTF_8);
}

@Test
public void testOther() {
assertEquals(charsetConverter.convert("US-ASCII"), StandardCharsets.US_ASCII);
}

@Test
public void testInvalidCharset() {
assertThrows(IllegalArgumentException.class, () -> charsetConverter.convert("whatever"));
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.quarkus.hibernate.orm.deployment;

import java.nio.charset.Charset;
import java.time.Duration;
import java.util.Map;
import java.util.Optional;
Expand Down Expand Up @@ -219,6 +220,8 @@ public boolean isAnyPropertySet() {
@ConfigGroup
public static class HibernateOrmConfigDatabase {

private static final String DEFAULT_CHARSET = "UTF-8";

/**
* Select whether the database schema is generated or not.
*
Expand Down Expand Up @@ -249,9 +252,11 @@ public static class HibernateOrmConfigDatabase {

/**
* The charset of the database.
* <p>
* Used for DDL generation and also for the SQL import scripts.
*/
@ConfigItem
public Optional<String> charset;
@ConfigItem(defaultValue = "UTF-8")
public Charset charset;

/**
* Whether Hibernate should quote all identifiers.
Expand All @@ -262,7 +267,7 @@ public static class HibernateOrmConfigDatabase {
public boolean isAnyPropertySet() {
return !"none".equals(generation) || defaultCatalog.isPresent() || defaultSchema.isPresent()
|| generationHaltOnError
|| charset.isPresent()
|| !DEFAULT_CHARSET.equals(charset.name())
|| globallyQuotedIdentifiers;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -784,8 +784,9 @@ private void handleHibernateORMWithNoPersistenceXml(
desc.getProperties().setProperty(AvailableSettings.HBM2DDL_HALT_ON_ERROR, "true");
}

hibernateConfig.database.charset.ifPresent(
charset -> desc.getProperties().setProperty(AvailableSettings.HBM2DDL_CHARSET_NAME, charset));
//charset
desc.getProperties().setProperty(AvailableSettings.HBM2DDL_CHARSET_NAME,
hibernateConfig.database.charset.name());

hibernateConfig.database.defaultCatalog.ifPresent(
catalog -> desc.getProperties().setProperty(AvailableSettings.DEFAULT_CATALOG, catalog));
Expand Down