com.higgschain.trust.evmcontract.core.Bloom Maven / Gradle / Ivy
/*
* Copyright (c) [2016] [ ]
* This file is part of the ethereumJ library.
*
* The ethereumJ library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The ethereumJ library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the ethereumJ library. If not, see .
*/
package com.higgschain.trust.evmcontract.core;
import com.higgschain.trust.evmcontract.util.ByteUtil;
import java.util.Arrays;
/**
* See http://www.herongyang.com/Java/Bit-String-Set-Bit-to-Byte-Array.html.
*
* @author Roman Mandeleil
* @since 20.11.2014
*/
public class Bloom {
/**
* The constant MEM_SIZE.
*/
public static final long MEM_SIZE = 256 + 16;
/**
* The constant _8STEPS.
*/
final static int _8STEPS = 8;
/**
* The constant _3LOW_BITS.
*/
final static int _3LOW_BITS = 7;
/**
* The constant ENSURE_BYTE.
*/
final static int ENSURE_BYTE = 255;
/**
* The Data.
*/
byte[] data = new byte[256];
/**
* Instantiates a new Bloom.
*/
public Bloom() {
}
/**
* Instantiates a new Bloom.
*
* @param data the data
*/
public Bloom(byte[] data) {
this.data = data;
}
/**
* Create bloom.
*
* @param toBloom the to bloom
* @return the bloom
*/
public static Bloom create(byte[] toBloom) {
int mov1 = (((toBloom[0] & ENSURE_BYTE) & (_3LOW_BITS)) << _8STEPS) + ((toBloom[1]) & ENSURE_BYTE);
int mov2 = (((toBloom[2] & ENSURE_BYTE) & (_3LOW_BITS)) << _8STEPS) + ((toBloom[3]) & ENSURE_BYTE);
int mov3 = (((toBloom[4] & ENSURE_BYTE) & (_3LOW_BITS)) << _8STEPS) + ((toBloom[5]) & ENSURE_BYTE);
byte[] data = new byte[256];
Bloom bloom = new Bloom(data);
ByteUtil.setBit(data, mov1, 1);
ByteUtil.setBit(data, mov2, 1);
ByteUtil.setBit(data, mov3, 1);
return bloom;
}
/**
* Or.
*
* @param bloom the bloom
*/
public void or(Bloom bloom) {
for (int i = 0; i < data.length; ++i) {
data[i] |= bloom.data[i];
}
}
/**
* Matches boolean.
*
* @param topicBloom the topic bloom
* @return the boolean
*/
public boolean matches(Bloom topicBloom) {
Bloom copy = copy();
copy.or(topicBloom);
return this.equals(copy);
}
/**
* Get data byte [ ].
*
* @return the byte [ ]
*/
public byte[] getData() {
return data;
}
/**
* Copy bloom.
*
* @return the bloom
*/
public Bloom copy() {
return new Bloom(Arrays.copyOf(getData(), getData().length));
}
@Override
public String toString() {
return ByteUtil.toHexString(data);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Bloom bloom = (Bloom) o;
return Arrays.equals(data, bloom.data);
}
@Override
public int hashCode() {
return data != null ? Arrays.hashCode(data) : 0;
}
}