
net.openhft.chronicle.map.ReaderWithSize Maven / Gradle / Ivy
/*
* Copyright 2014 Higher Frequency Trading http://www.higherfrequencytrading.com
*
* 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.map;
import net.openhft.chronicle.hash.serialization.BytesReader;
import net.openhft.chronicle.hash.serialization.SizeMarshaller;
import net.openhft.lang.io.Bytes;
import net.openhft.lang.threadlocal.Provider;
import net.openhft.lang.threadlocal.ThreadLocalCopies;
import org.jetbrains.annotations.Nullable;
final class ReaderWithSize {
private final SizeMarshaller sizeMarshaller;
private final BytesReader originalReader;
private final Provider> readerProvider;
ReaderWithSize(SerializationBuilder serializationBuilder) {
sizeMarshaller = serializationBuilder.sizeMarshaller();
originalReader = serializationBuilder.reader();
readerProvider = (Provider>) Provider.of(originalReader.getClass());
}
public ThreadLocalCopies getCopies(ThreadLocalCopies copies) {
return readerProvider.getCopies(copies);
}
public T read(Bytes in, @Nullable ThreadLocalCopies copies, @Nullable T using) {
long size = sizeMarshaller.readSize(in);
copies = readerProvider.getCopies(copies);
BytesReader reader = readerProvider.get(copies, originalReader);
return reader.read(in, size, using);
}
public T readNullable(Bytes in, @Nullable ThreadLocalCopies copies, T using) {
if (in.readBoolean())
return null;
return read(in, copies, using);
}
public BytesReader readerForLoop(@Nullable ThreadLocalCopies copies) {
copies = readerProvider.getCopies(copies);
return readerProvider.get(copies, originalReader);
}
public T readInLoop(Bytes in, BytesReader reader) {
long size = sizeMarshaller.readSize(in);
return reader.read(in, size);
}
public T readNullableInLoop(Bytes in, BytesReader reader) {
if (in.readBoolean())
return null;
return readInLoop(in, reader);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy