com.landawn.abacus.util.stream.AbstractByteStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-android Show documentation
Show all versions of abacus-android Show documentation
A general programming library in Java
/*
* Copyright (C) 2016 HaiYang Li
*
* 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 com.landawn.abacus.util.stream;
import java.util.Collection;
import java.util.HashSet;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.Random;
import java.util.Set;
import java.util.concurrent.atomic.AtomicLong;
import com.landawn.abacus.util.ByteIterator;
import com.landawn.abacus.util.ByteList;
import com.landawn.abacus.util.ByteMatrix;
import com.landawn.abacus.util.ByteSummaryStatistics;
import com.landawn.abacus.util.Fn;
import com.landawn.abacus.util.IndexedByte;
import com.landawn.abacus.util.Joiner;
import com.landawn.abacus.util.Multiset;
import com.landawn.abacus.util.MutableByte;
import com.landawn.abacus.util.MutableLong;
import com.landawn.abacus.util.N;
import com.landawn.abacus.util.Nth;
import com.landawn.abacus.util.Optional;
import com.landawn.abacus.util.OptionalByte;
import com.landawn.abacus.util.Pair;
import com.landawn.abacus.util.Percentage;
import com.landawn.abacus.util.Try;
import com.landawn.abacus.util.function.BiConsumer;
import com.landawn.abacus.util.function.BiPredicate;
import com.landawn.abacus.util.function.BinaryOperator;
import com.landawn.abacus.util.function.ByteBiFunction;
import com.landawn.abacus.util.function.ByteBiPredicate;
import com.landawn.abacus.util.function.ByteConsumer;
import com.landawn.abacus.util.function.ByteFunction;
import com.landawn.abacus.util.function.BytePredicate;
import com.landawn.abacus.util.function.ByteTriFunction;
import com.landawn.abacus.util.function.Consumer;
import com.landawn.abacus.util.function.Function;
import com.landawn.abacus.util.function.ObjByteConsumer;
import com.landawn.abacus.util.function.Predicate;
import com.landawn.abacus.util.function.Supplier;
import com.landawn.abacus.util.function.ToByteFunction;
/**
* This class is a sequential, stateful and immutable stream implementation.
*
* @since 0.8
*
* @author Haiyang Li
*/
abstract class AbstractByteStream extends ByteStream {
AbstractByteStream(final boolean sorted, final Collection closeHandlers) {
super(sorted, closeHandlers);
}
@Override
public ByteStream flattMap(final ByteFunction mapper) {
return flatMap(new ByteFunction() {
@Override
public ByteStream apply(byte t) {
return ByteStream.of(mapper.apply(t));
}
});
}
@Override
public Stream flattMapToObj(final ByteFunction extends Collection> mapper) {
return flatMapToObj(new ByteFunction>() {
@Override
public Stream apply(byte t) {
return Stream.of(mapper.apply(t));
}
});
}
@Override
public ByteStream skip(final long n, final ByteConsumer action) {
N.checkArgNotNegative(n, "n");
if (n == 0) {
return this;
}
final BytePredicate filter = isParallel() ? new BytePredicate() {
final AtomicLong cnt = new AtomicLong(n);
@Override
public boolean test(byte value) {
return cnt.getAndDecrement() > 0;
}
} : new BytePredicate() {
final MutableLong cnt = MutableLong.of(n);
@Override
public boolean test(byte value) {
return cnt.getAndDecrement() > 0;
}
};
return dropWhile(filter, action);
}
@Override
public ByteStream removeIf(final BytePredicate predicate) {
N.checkArgNotNull(predicate);
return filter(new BytePredicate() {
@Override
public boolean test(byte value) {
return predicate.test(value) == false;
}
});
}
@Override
public ByteStream removeIf(final BytePredicate predicate, final ByteConsumer action) {
N.checkArgNotNull(predicate);
N.checkArgNotNull(predicate);
return filter(new BytePredicate() {
@Override
public boolean test(byte value) {
if (predicate.test(value)) {
action.accept(value);
return false;
}
return true;
}
});
}
@Override
public ByteStream dropWhile(final BytePredicate predicate, final ByteConsumer action) {
N.checkArgNotNull(predicate);
N.checkArgNotNull(action);
return dropWhile(new BytePredicate() {
@Override
public boolean test(byte value) {
if (predicate.test(value)) {
action.accept(value);
return true;
}
return false;
}
});
}
@Override
public ByteStream step(final long step) {
N.checkArgPositive(step, "step");
if (step == 1) {
return this;
}
final long skip = step - 1;
final ByteIteratorEx iter = this.iteratorEx();
final ByteIterator byteIterator = new ByteIteratorEx() {
@Override
public boolean hasNext() {
return iter.hasNext();
}
@Override
public byte nextByte() {
final byte next = iter.nextByte();
iter.skip(skip);
return next;
}
};
return newStream(byteIterator, sorted);
}
@Override
public Stream split(final int size) {
return splitToList(size).map(new Function() {
@Override
public ByteStream apply(ByteList t) {
return new ArrayByteStream(t.array(), 0, t.size(), sorted, null);
}
});
}
@Override
public Stream split(final BytePredicate predicate) {
return splitToList(predicate).map(new Function() {
@Override
public ByteStream apply(ByteList t) {
return new ArrayByteStream(t.array(), 0, t.size(), sorted, null);
}
});
}
@Override
public Stream splitToList(final BytePredicate predicate) {
final BiPredicate predicate2 = new BiPredicate() {
@Override
public boolean test(Byte t, Object u) {
return predicate.test(t);
}
};
return splitToList(null, predicate2, null);
}
@Override
public Stream split(final U seed, final BiPredicate super Byte, ? super U> predicate, final Consumer super U> seedUpdate) {
return splitToList(seed, predicate, seedUpdate).map(new Function() {
@Override
public ByteStream apply(ByteList t) {
return new ArrayByteStream(t.array(), 0, t.size(), sorted, null);
}
});
}
@Override
public Stream sliding(final int windowSize, final int increment) {
return slidingToList(windowSize, increment).map(new Function() {
@Override
public ByteStream apply(ByteList t) {
return new ArrayByteStream(t.array(), 0, t.size(), sorted, null);
}
});
}
@Override
public ByteStream collapse(final ByteBiPredicate collapsible, final ByteBiFunction mergeFunction) {
final ByteIteratorEx iter = iteratorEx();
return newStream(new ByteIteratorEx() {
private boolean hasNext = false;
private byte next = 0;
@Override
public boolean hasNext() {
return hasNext || iter.hasNext();
}
@Override
public byte nextByte() {
byte res = hasNext ? next : (next = iter.nextByte());
while ((hasNext = iter.hasNext())) {
if (collapsible.test(next, (next = iter.nextByte()))) {
res = mergeFunction.apply(res, next);
} else {
break;
}
}
return res;
}
}, false);
}
@Override
public ByteStream scan(final ByteBiFunction accumulator) {
final ByteIteratorEx iter = iteratorEx();
return newStream(new ByteIteratorEx() {
private byte res = 0;
private boolean isFirst = true;
@Override
public boolean hasNext() {
return iter.hasNext();
}
@Override
public byte nextByte() {
if (isFirst) {
isFirst = false;
return (res = iter.nextByte());
} else {
return (res = accumulator.apply(res, iter.nextByte()));
}
}
}, false);
}
@Override
public ByteStream scan(final byte seed, final ByteBiFunction accumulator) {
final ByteIteratorEx iter = iteratorEx();
return newStream(new ByteIteratorEx() {
private byte res = seed;
@Override
public boolean hasNext() {
return iter.hasNext();
}
@Override
public byte nextByte() {
return (res = accumulator.apply(res, iter.nextByte()));
}
}, false);
}
@Override
public Map toMap(ByteFunction extends K> keyExtractor, ByteFunction extends V> valueMapper) {
final Supplier
© 2015 - 2025 Weber Informatics LLC | Privacy Policy