
net.openhft.chronicle.hash.serialization.impl.ByteableDataAccess Maven / Gradle / Ivy
/*
* Copyright 2012-2018 Chronicle Map Contributors
*
* 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.hash.serialization.impl;
import net.openhft.chronicle.bytes.Byteable;
import net.openhft.chronicle.bytes.RandomDataInput;
import net.openhft.chronicle.hash.Data;
import net.openhft.chronicle.hash.serialization.DataAccess;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.lang.reflect.Type;
public class ByteableDataAccess extends InstanceCreatingMarshaller
implements DataAccess, Data {
/**
* State field
*/
private transient T instance;
public ByteableDataAccess(Type tClass) {
super(tClass);
}
@Override
public RandomDataInput bytes() {
return instance.bytesStore();
}
@Override
public long offset() {
return instance.offset();
}
@Override
public long size() {
return instance.maxSize();
}
@Override
public T get() {
return instance;
}
@Override
public T getUsing(@Nullable T using) {
if (using == null)
using = createInstance();
using.bytesStore(instance.bytesStore(), offset(), size());
return using;
}
@Override
public int hashCode() {
return dataHashCode();
}
@Override
public boolean equals(Object obj) {
return dataEquals(obj);
}
@Override
public String toString() {
return get().toString();
}
@Override
public Data getData(@NotNull T instance) {
this.instance = instance;
return this;
}
@Override
public void uninit() {
instance = null;
}
@Override
public DataAccess copy() {
return new ByteableDataAccess<>(tType());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy