All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.openhft.chronicle.bytes.ref.BinaryBooleanReference Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 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.bytes.ref;

import net.openhft.chronicle.bytes.BytesStore;
import net.openhft.chronicle.bytes.HexDumpBytes;
import net.openhft.chronicle.core.annotation.NonNegative;
import net.openhft.chronicle.core.io.ClosedIllegalStateException;
import net.openhft.chronicle.core.io.ThreadingIllegalStateException;
import net.openhft.chronicle.core.values.BooleanValue;
import org.jetbrains.annotations.NotNull;

import java.nio.BufferOverflowException;
import java.nio.BufferUnderflowException;

import static net.openhft.chronicle.bytes.HexDumpBytes.MASK;

/**
 * Represents a binary reference to a boolean value.
 *
 * 

This class encapsulates a reference to a boolean value stored in binary form. It provides * functionality to read and write a boolean value to/from a {@link BytesStore}. * * @see BytesStore * @see BooleanValue */ @SuppressWarnings("rawtypes") public class BinaryBooleanReference extends AbstractReference implements BooleanValue { private static final byte FALSE = (byte) 0xB0; private static final byte TRUE = (byte) 0xB1; /** * Sets the underlying BytesStore to work with, along with the offset and length. * * @param bytes the BytesStore to set * @param offset the offset to set * @param length the length to set * @throws IllegalArgumentException If the arguments are invalid * @throws BufferOverflowException If the provided buffer is too small * @throws ClosedIllegalStateException If the resource has been released or closed. * @throws ThreadingIllegalStateException If this resource was accessed by multiple threads in an unsafe way */ @SuppressWarnings("rawtypes") @Override public void bytesStore(final @NotNull BytesStore bytes, @NonNegative long offset, @NonNegative final long length) throws IllegalStateException, IllegalArgumentException, BufferOverflowException { throwExceptionIfClosedInSetter(); if (length != maxSize()) throw new IllegalArgumentException(); if (bytes instanceof HexDumpBytes) { offset &= MASK; } super.bytesStore(bytes, offset, length); } /** * Returns the maximum size of the byte representation of a boolean value. * * @return The maximum size of a boolean in bytes */ @Override public long maxSize() { return 1; } /** * Reads a boolean value from the bytes store. * * @return The read boolean value * @throws BufferUnderflowException If the bytes store contains insufficient data * @throws ClosedIllegalStateException If the resource has been released or closed. * @throws ThreadingIllegalStateException If this resource was accessed by multiple threads in an unsafe way */ @Override public boolean getValue() throws IllegalStateException, BufferUnderflowException { throwExceptionIfClosed(); byte b = bytesStore.readByte(offset); if (b == FALSE) return false; if (b == TRUE) return true; throw new IllegalStateException("unexpected code=" + b); } /** * Writes a boolean value to the bytes store. * * @param flag The boolean value to write * @throws ClosedIllegalStateException If the resource has been released or closed. * @throws ThreadingIllegalStateException If this resource was accessed by multiple threads in an unsafe way */ @Override public void setValue(final boolean flag) throws IllegalStateException { throwExceptionIfClosed(); bytesStore.writeByte(offset, flag ? TRUE : FALSE); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy