net.openhft.chronicle.queue.internal.writer.ChronicleWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chronicle-queue Show documentation
Show all versions of chronicle-queue Show documentation
Java library for persisted low latency messaging (Java 8+)
/*
* 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.queue.internal.writer;
import net.openhft.chronicle.core.Jvm;
import net.openhft.chronicle.queue.ChronicleQueue;
import net.openhft.chronicle.queue.ExcerptAppender;
import net.openhft.chronicle.wire.DocumentContext;
import net.openhft.chronicle.wire.Marshallable;
import net.openhft.chronicle.wire.WriteMarshallable;
import java.io.IOException;
import java.nio.file.Path;
import java.util.List;
public class ChronicleWriter {
private Path basePath;
private String methodName;
private List files;
private Class> writeTo;
public void execute() throws IOException {
try (final ChronicleQueue queue = ChronicleQueue.singleBuilder(this.basePath).build()) {
final ExcerptAppender appender = queue.acquireAppender();
for (final String file : files) {
final Object payload = Marshallable.fromFile(Object.class, file);
try (final DocumentContext dc = appender.writingDocument()) {
if (writeTo != null)
dc.wire().write(methodName).marshallable((WriteMarshallable) payload);
else
dc.wire().write(methodName).object(payload);
}
}
}
}
/**
* Chronicle queue base path
* @param path path of queue to write to
* @return this
*/
public ChronicleWriter withBasePath(final Path path) {
this.basePath = path;
return this;
}
/**
* Interface class to use to write via
* @param interfaceName interface
* @return this
*/
public ChronicleWriter asMethodWriter(String interfaceName) {
try {
this.writeTo = Class.forName(interfaceName);
} catch (ClassNotFoundException e) {
throw Jvm.rethrow(e);
}
return this;
}
/**
* Specify method name to write each message out as
* @param methodName method name
* @return this
*/
public ChronicleWriter withMethodName(String methodName) {
this.methodName = methodName;
return this;
}
/**
* List of files to read and, for each, write out a message preceded by {@link #methodName}
* @param files files
* @return this
*/
public ChronicleWriter withFiles(List files) {
this.files = files;
return this;
}
}