All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.common.blobstore.OptionalBytesReference Maven / Gradle / Ivy

There is a newer version: 8.17.0
Show newest version
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.common.blobstore;

import org.apache.lucene.util.BytesRef;
import org.elasticsearch.common.Strings;
import org.elasticsearch.common.bytes.BytesArray;
import org.elasticsearch.common.bytes.BytesReference;

import java.io.IOException;

/**
 * A potentially-missing {@link BytesReference}, used to represent the contents of a blobstore register along with the possibility that the
 * register could not be read.
 */
public final class OptionalBytesReference {

    public static final OptionalBytesReference MISSING = new OptionalBytesReference(null);

    public static final OptionalBytesReference EMPTY = new OptionalBytesReference(BytesArray.EMPTY);

    private final BytesReference bytesReference;

    private OptionalBytesReference(BytesReference bytesReference) {
        this.bytesReference = bytesReference;
    }

    public static OptionalBytesReference of(BytesReference bytesReference) {
        if (bytesReference.length() == 0) {
            return EMPTY;
        } else {
            return new OptionalBytesReference(bytesReference);
        }
    }

    public boolean isPresent() {
        return bytesReference != null;
    }

    public BytesReference bytesReference() {
        if (bytesReference == null) {
            assert false : "missing";
            throw new IllegalStateException("cannot get bytesReference() on OptionalBytesReference#MISSING");
        }
        return bytesReference;
    }

    @Override
    public String toString() {
        if (bytesReference == null) {
            return "OptionalBytesReference[MISSING]";
        }

        final var stringBuilder = new StringBuilder("OptionalBytesReference[");
        final var iterator = bytesReference.iterator();
        BytesRef bytesRef;
        boolean first = true;
        try {
            while ((bytesRef = iterator.next()) != null) {
                for (int i = 0; i < bytesRef.length; i++) {
                    if (first) {
                        first = false;
                    } else {
                        stringBuilder.append(' ');
                    }
                    stringBuilder.append(Strings.format("%02x", bytesRef.bytes[bytesRef.offset + i]));
                }
            }
            return stringBuilder.append(']').toString();
        } catch (IOException e) {
            return e.getMessage();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy