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

Implement @RegisterCollector with tests and short doc #2377

Merged
merged 4 commits into from
Jun 14, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- document vavr incompatibility between 0.10.x and 1.0.0-alpha (#2350)
- Handle.inTransaction: improve exception thrown when restoring transaction isolation #2343
- add support for Guice 6.x (using javax.inject annotations) and guice 7.x (using jakarta.inject annotations)
- add new @RegisterCollector customizing annotation (#2377)

# 3.38.2
- spring5 JdbiUtil: fix thread safety #2341
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,25 @@
import org.jdbi.v3.core.generic.GenericTypes;

class SimpleCollectorFactory implements CollectorFactory {
private final Type containerType;
private final Type resultType;
private final Collector<?, ?, ?> collector;

SimpleCollectorFactory(Type containerType, Collector<?, ?, ?> collector) {
this.containerType = containerType;
SimpleCollectorFactory(Type resultType, Collector<?, ?, ?> collector) {
this.resultType = resultType;
this.collector = collector;
}

@Override
public boolean accepts(Type containerType) {
return GenericTypes.isSuperType(containerType, this.containerType);
return GenericTypes.isSuperType(containerType, resultType);
}

@Override
public Optional<Type> elementType(Type containerType) {
Optional<Type> collectedType = GenericTypes.findGenericParameter(collector.getClass(), Collector.class);
if (collectedType.isPresent()) {
return collectedType;
}
if (GenericTypes.isSuperType(Iterable.class, containerType)) {
return GenericTypes.findGenericParameter(containerType, Iterable.class);
}
Expand All @@ -48,6 +52,6 @@ public Optional<Type> elementType(Type containerType) {

@Override
public String toString() {
return "CollectorFactory handling " + containerType + " with " + collector;
return "CollectorFactory handling " + resultType + " with " + collector;
}
}
7 changes: 7 additions & 0 deletions docs/src/adoc/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4636,7 +4636,14 @@ the `User.id` and `User.name` fields. Likewise for `r_id` and `r_name` into the
The link:{jdbidocs}/sqlobject/config/RegisterConstructorMapper.html[@RegisterConstructorMapper^] annotation may be repeated multiple times on
the same type or method to register multiple constructor mappers.

==== @RegisterCollectorFactory
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RegisterCollector ?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this would be a better fit after @UseRowReducer. The docs are so bare bones that, without an example, this will probably not find any users.


Convenience annotation to register a `CollectorFactory` for this SqlObject method. See <<Collectors>> for more details.

==== @RegisterCollectorFactory

Convenience annotation to register a `Collector` for this SqlObject method. The element and result types are inferred from
the concrete `Collector<Element, ?, Result>` implementation's type parameters. See <<Collectors>> for more details.

=== Other SQL Object annotations

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
* 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
*
* 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.jdbi.v3.sqlobject.config;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.util.stream.Collector;

import org.jdbi.v3.core.extension.annotation.UseExtensionConfigurer;
import org.jdbi.v3.sqlobject.config.internal.RegisterCollectorImpl;

/**
* Registers specifically one collector for a sql object type
*/
@UseExtensionConfigurer(RegisterCollectorImpl.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface RegisterCollector {

/**
* The collector instance to register
*
* @return the collector instance
*/
Class<? extends Collector<?, ?, ?>> value();

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* 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
*
* 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.jdbi.v3.sqlobject.config.internal;

import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.stream.Collector;

import org.jdbi.v3.core.collector.JdbiCollectors;
import org.jdbi.v3.core.config.ConfigRegistry;
import org.jdbi.v3.core.extension.SimpleExtensionConfigurer;
import org.jdbi.v3.core.generic.GenericTypes;
import org.jdbi.v3.core.statement.UnableToCreateStatementException;
import org.jdbi.v3.sqlobject.config.RegisterCollector;

public class RegisterCollectorImpl extends SimpleExtensionConfigurer {
@Override
public void configure(final ConfigRegistry config, final Annotation annotation, final Class<?> extensionType) {
final RegisterCollector registerCollector = (RegisterCollector) annotation;
final JdbiCollectors collectors = config.get(JdbiCollectors.class);

try {
final Type resultType = GenericTypes.findGenericParameter(registerCollector.value(), Collector.class, 2)
.orElseThrow(() -> new IllegalArgumentException("Tried to pass non-collector object to @RegisterCollector"));
collectors.registerCollector(resultType, registerCollector.value().getConstructor().newInstance());
} catch (ReflectiveOperationException | SecurityException e) {
throw new UnableToCreateStatementException("Unable to instantiate collector class " + registerCollector.value(), e);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/*
* 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
*
* 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.jdbi.v3.sqlobject.config;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import java.util.function.BiConsumer;
import java.util.function.BinaryOperator;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collector;
import java.util.stream.Collectors;

import org.jdbi.v3.core.Handle;
import org.jdbi.v3.core.junit5.H2DatabaseExtension;
import org.jdbi.v3.sqlobject.statement.SqlQuery;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.RegisterExtension;

import static org.assertj.core.api.Assertions.assertThat;

public class RegisterCollectorTest {

@RegisterExtension
H2DatabaseExtension h2 = H2DatabaseExtension.withPlugins();
Handle h;

@BeforeEach
void setup() {
h = h2.getSharedHandle();
h.execute("create table i (i int)");
h.execute("insert into i values(1)");
h.execute("insert into i values(2)");
}

@Test
void registerCollector() {
assertThat(h.attach(RegisterCollectorDao.class).select())
.isEqualTo("1 2");
}

public interface RegisterCollectorDao {
@RegisterCollector(StringConcatCollector.class)
@SqlQuery("select i from i order by i asc")
String select();
}

public static class StringConcatCollector implements Collector<Integer, List<Integer>, String> {
@Override
public Supplier<List<Integer>> supplier() {
return ArrayList::new;
}

@Override
public BiConsumer<List<Integer>, Integer> accumulator() {
return (l, i) -> l.add(i);
}

@Override
public BinaryOperator<List<Integer>> combiner() {
return (a, b) -> {
a.addAll(b);
return a;
};
}

@Override
public Function<List<Integer>, String> finisher() {
return i -> i.stream().map(Object::toString).collect(Collectors.joining(" "));
}

@Override
public Set<Characteristics> characteristics() {
return Collections.emptySet();
}
}
}