blob: 6cfbd73cd8f9171421ac0da9550ff60d64182d85 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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 org.apache.geode.internal.cache;
/**
* Interprets a one-byte bit field used for entry properties.
*
*/
public abstract class EntryBits {
private static final byte SERIALIZED = 0x1; // persistent bit
private static final byte INVALID = 0x2; // persistent bit
private static final byte LOCAL_INVALID = 0x4; // persistent bit
private static final byte RECOVERED_FROM_DISK = 0x8; // used by DiskId; transient bit
private static final byte PENDING_ASYNC = 0x10; // used by DiskId; transient bit
private static final byte TOMBSTONE = 0x40;
private static final byte WITH_VERSIONS = (byte) 0x80; // oplog entry contains versions
public static boolean isSerialized(byte b) {
return (b & SERIALIZED) != 0;
}
public static boolean isInvalid(byte b) {
return (b & INVALID) != 0;
}
public static boolean isLocalInvalid(byte b) {
return (b & LOCAL_INVALID) != 0;
}
public static boolean isTombstone(byte b) {
return (b & TOMBSTONE) != 0;
}
public static boolean isWithVersions(byte b) {
return (b & WITH_VERSIONS) != 0;
}
public static boolean isRecoveredFromDisk(byte b) {
return (b & RECOVERED_FROM_DISK) != 0;
}
public static boolean isPendingAsync(byte b) {
return (b & PENDING_ASYNC) != 0;
}
public static boolean isAnyInvalid(byte b) {
return (b & (INVALID | LOCAL_INVALID)) != 0;
}
/**
* If it is not invalid and not local_invalid then we need a value.
*/
public static boolean isNeedsValue(byte b) {
return (b & (INVALID | LOCAL_INVALID | TOMBSTONE)) == 0;
}
public static byte setSerialized(byte b, boolean isSerialized) {
return isSerialized ? (byte) (b | SERIALIZED) : (byte) (b & ~SERIALIZED);
}
public static byte setInvalid(byte b, boolean isInvalid) {
return isInvalid ? (byte) (b | INVALID) : (byte) (b & ~INVALID);
}
public static byte setLocalInvalid(byte b, boolean isLocalInvalid) {
return isLocalInvalid ? (byte) (b | LOCAL_INVALID) : (byte) (b & ~LOCAL_INVALID);
}
public static byte setTombstone(byte b, boolean isTombstone) {
return isTombstone ? (byte) (b | TOMBSTONE) : (byte) (b & ~TOMBSTONE);
}
public static byte setWithVersions(byte b, boolean isWithVersions) {
return isWithVersions ? (byte) (b | WITH_VERSIONS) : (byte) (b & ~WITH_VERSIONS);
}
public static byte setRecoveredFromDisk(byte b, boolean isRecoveredFromDisk) {
return isRecoveredFromDisk ? (byte) (b | RECOVERED_FROM_DISK)
: (byte) (b & ~RECOVERED_FROM_DISK);
}
public static byte setPendingAsync(byte b, boolean isPendingAsync) {
return isPendingAsync ? (byte) (b | PENDING_ASYNC) : (byte) (b & ~PENDING_ASYNC);
}
/**
* Returns a byte whose bits are those that need to be written to disk
*/
public static byte getPersistentBits(byte b) {
return (byte) (b & (SERIALIZED | INVALID | LOCAL_INVALID | TOMBSTONE | WITH_VERSIONS));
}
}