
org.elasticsearch.common.bytes.ReleasableBytesReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch Show documentation
Show all versions of elasticsearch Show documentation
Elasticsearch - Open Source, Distributed, RESTful Search Engine
/*
* Licensed to Elasticsearch under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch 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.elasticsearch.common.bytes;
import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.BytesRefIterator;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.lease.Releasable;
import org.elasticsearch.common.util.concurrent.AbstractRefCounted;
import org.elasticsearch.common.xcontent.XContentBuilder;
import java.io.IOException;
import java.io.OutputStream;
/**
* An extension to {@link BytesReference} that requires releasing its content. This
* class exists to make it explicit when a bytes reference needs to be released, and when not.
*/
public final class ReleasableBytesReference implements Releasable, BytesReference {
public static final Releasable NO_OP = () -> {};
private final BytesReference delegate;
private final AbstractRefCounted refCounted;
public ReleasableBytesReference(BytesReference delegate, Releasable releasable) {
this.delegate = delegate;
this.refCounted = new RefCountedReleasable(releasable);
}
private ReleasableBytesReference(BytesReference delegate, AbstractRefCounted refCounted) {
this.delegate = delegate;
this.refCounted = refCounted;
refCounted.incRef();
}
public static ReleasableBytesReference wrap(BytesReference reference) {
return new ReleasableBytesReference(reference, NO_OP);
}
public int refCount() {
return refCounted.refCount();
}
public ReleasableBytesReference retain() {
refCounted.incRef();
return this;
}
public ReleasableBytesReference retainedSlice(int from, int length) {
return new ReleasableBytesReference(delegate.slice(from, length), refCounted);
}
@Override
public void close() {
refCounted.decRef();
}
@Override
public byte get(int index) {
return delegate.get(index);
}
@Override
public int getInt(int index) {
return delegate.getInt(index);
}
@Override
public int indexOf(byte marker, int from) {
return delegate.indexOf(marker, from);
}
@Override
public int length() {
return delegate.length();
}
@Override
public BytesReference slice(int from, int length) {
return delegate.slice(from, length);
}
@Override
public long ramBytesUsed() {
return delegate.ramBytesUsed();
}
@Override
public StreamInput streamInput() throws IOException {
return delegate.streamInput();
}
@Override
public void writeTo(OutputStream os) throws IOException {
delegate.writeTo(os);
}
@Override
public String utf8ToString() {
return delegate.utf8ToString();
}
@Override
public BytesRef toBytesRef() {
return delegate.toBytesRef();
}
@Override
public BytesRefIterator iterator() {
return delegate.iterator();
}
@Override
public int compareTo(BytesReference o) {
return delegate.compareTo(o);
}
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
return delegate.toXContent(builder, params);
}
@Override
public boolean isFragment() {
return delegate.isFragment();
}
@Override
public boolean equals(Object obj) {
return delegate.equals(obj);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
private static final class RefCountedReleasable extends AbstractRefCounted {
private final Releasable releasable;
RefCountedReleasable(Releasable releasable) {
super("bytes-reference");
this.releasable = releasable;
}
@Override
protected void closeInternal() {
releasable.close();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy