org.ethereum.core.Bloom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ethereumj-core Show documentation
Show all versions of ethereumj-core Show documentation
Java implementation of the Ethereum protocol adapted to use for Hedera Smart Contract Service
The newest version!
/*
* 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 org.ethereum.core;
import org.ethereum.util.ByteUtil;
import java.util.Arrays;
import static org.ethereum.util.ByteUtil.toHexString;
/**
* See http://www.herongyang.com/Java/Bit-String-Set-Bit-to-Byte-Array.html.
*
* @author Roman Mandeleil
* @since 20.11.2014
*/
public class Bloom {
public static final long MEM_SIZE = 256 + 16;
final static int _8STEPS = 8;
final static int _3LOW_BITS = 7;
final static int ENSURE_BYTE = 255;
byte[] data = new byte[256];
public Bloom() {
}
public Bloom(byte[] data) {
this.data = data;
}
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;
}
public void or(Bloom bloom) {
for (int i = 0; i < data.length; ++i) {
data[i] |= bloom.data[i];
}
}
public boolean matches(Bloom topicBloom) {
Bloom copy = copy();
copy.or(topicBloom);
return this.equals(copy);
}
public byte[] getData() {
return data;
}
public Bloom copy() {
return new Bloom(Arrays.copyOf(getData(), getData().length));
}
@Override
public String toString() {
return 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;
}
}