net.openhft.chronicle.wire.internal.extractor.DocumentExtractorUtil Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016-2022 chronicle.software
*
* https://chronicle.software
*
* 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 net.openhft.chronicle.wire.internal.extractor;
import net.openhft.chronicle.bytes.Bytes;
import net.openhft.chronicle.core.util.StringUtils;
import net.openhft.chronicle.wire.domestic.extractor.DocumentExtractor;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.lang.reflect.Proxy;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.BiConsumer;
import java.util.function.Supplier;
import static net.openhft.chronicle.core.util.ObjectUtils.requireNonNull;
/**
* A utility class offering static methods to assist in the process of extracting documents.
* The class serves as a hub for constructing specific types of document extractors using
* various parameters such as method references, suppliers, and type specifications.
*/
public final class DocumentExtractorUtil {
// Suppresses default constructor, ensuring non-instantiability.
private DocumentExtractorUtil() {
}
/**
* Constructs and returns a {@link DocumentExtractor} based on the provided parameters.
* This extractor is tailored to seek a specific event name within a wire protocol stream and
* retrieve the associated object of type {@code E}. The extractor leverages the method
* reference and the type specification to derive the expected event name.
*
* @param The interface type whose method will be referenced for extraction.
* @param The expected return type of the extractor.
* @param type The class of the interface whose method is referenced.
* @param methodReference The method reference used for extracting data.
* @param supplier A nullable supplier to provide instances of type {@code E}.
* @return A new {@link DocumentExtractor} configured to extract based on the provided parameters.
*/
public static
DocumentExtractor ofMethod(@NotNull final Class type,
@NotNull final BiConsumer super I, ? super E> methodReference,
@Nullable final Supplier extends E> supplier) {
final MethodNameAndMessageType info = methodOf(type, methodReference);
final String expectedEventName = info.name();
final Class elementType = info.messageType();
final StringBuilder eventName = new StringBuilder();
return (wire, index) -> {
wire.startEvent();
try {
final Bytes> bytes = wire.bytes();
while (bytes.readRemaining() > 0) {
if (wire.isEndEvent()) {
break;
}
final long start = bytes.readPosition();
wire.readEventName(eventName);
if (StringUtils.isEqual(expectedEventName, eventName)) {
final E using = supplier.get();
return wire
.getValueIn()
.object(using, elementType);
}
wire.consumePadding();
if (bytes.readPosition() == start) {
break;
}
}
} finally {
wire.endEvent();
}
// Nothing to return. There are no messages of type E
return null;
};
}
/**
* Extracts the method name and its message type from a provided method reference of a specified type.
* The extraction process leverages Java's Proxy mechanism to determine which method gets invoked
* by the given method reference, and subsequently extracts the method's metadata.
*
* @param The interface type whose method will be referenced.
* @param The message type associated with the method.
* @param type The class of the interface whose method is referenced.
* @param methodReference The method reference used for extracting method metadata.
* @return A {@link MethodNameAndMessageType} instance containing extracted method name and message type.
*/
public static
MethodNameAndMessageType methodOf(@NotNull final Class type,
@NotNull final BiConsumer super I, ? super M> methodReference) {
final AtomicReference> method = new AtomicReference<>();
Class>[] interfaces = {type};
@SuppressWarnings("unchecked") final I proxy = (I) Proxy.newProxyInstance(type.getClassLoader(), interfaces, (p, m, args) -> {
if (args == null || args.length != 1) {
throw new IllegalArgumentException("The provided method reference does not take exactly one parameter");
}
final String methodName = m.getName();
@SuppressWarnings("unchecked") final Class messageType = (Class) m.getParameters()[0].getType();
method.set(new MethodNameAndMessageType<>(methodName, messageType));
return p;
});
// Invoke the provided methodReference to see which method was actually called.
methodReference.accept(proxy, null);
return requireNonNull(method.get());
}
/**
* Encapsulates the method name and its associated message type.
* This class provides a structured representation of method metadata
* extracted using the {@link #methodOf} utility.
*
* @param The type of the message associated with the method.
*/
public static final class MethodNameAndMessageType {
private final String name;
private final Class messageType;
/**
* Constructs an instance of MethodNameAndMessageType with the provided method name and message type.
*
* @param name The name of the method.
* @param messageType The type of the message associated with the method.
*/
public MethodNameAndMessageType(@NotNull final String name,
@NotNull final Class messageType) {
this.name = name;
this.messageType = messageType;
}
/**
* Returns the method name encapsulated by this instance.
*
* @return The method name.
*/
public String name() {
return name;
}
/**
* Returns the message type associated with the encapsulated method.
*
* @return The type of the message.
*/
public Class messageType() {
return messageType;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy