Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: build/bazel/remote/execution/v2/remote_execution.proto
// Protobuf Java Version: 3.25.3
package build.bazel.remote.execution.v2;
/**
*
* An `OutputFile` is similar to a
* [FileNode][build.bazel.remote.execution.v2.FileNode], but it is used as an
* output in an `ActionResult`. It allows a full file path rather than
* only a name.
*
*
* Protobuf type {@code build.bazel.remote.execution.v2.OutputFile}
*/
public final class OutputFile extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:build.bazel.remote.execution.v2.OutputFile)
OutputFileOrBuilder {
private static final long serialVersionUID = 0L;
// Use OutputFile.newBuilder() to construct.
private OutputFile(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private OutputFile() {
path_ = "";
contents_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new OutputFile();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_OutputFile_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_OutputFile_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.bazel.remote.execution.v2.OutputFile.class, build.bazel.remote.execution.v2.OutputFile.Builder.class);
}
private int bitField0_;
public static final int PATH_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object path_ = "";
/**
*
* The full path of the file relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
* The full path of the file relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @return The bytes for path.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getPathBytes() {
java.lang.Object ref = path_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
path_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int DIGEST_FIELD_NUMBER = 2;
private build.bazel.remote.execution.v2.Digest digest_;
/**
*
* The digest of the file's content.
*
*
* .build.bazel.remote.execution.v2.Digest digest = 2;
* @return Whether the digest field is set.
*/
@java.lang.Override
public boolean hasDigest() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
* .build.bazel.remote.execution.v2.Digest digest = 2;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.DigestOrBuilder getDigestOrBuilder() {
return digest_ == null ? build.bazel.remote.execution.v2.Digest.getDefaultInstance() : digest_;
}
public static final int IS_EXECUTABLE_FIELD_NUMBER = 4;
private boolean isExecutable_ = false;
/**
*
* True if file is executable, false otherwise.
*
*
* bool is_executable = 4;
* @return The isExecutable.
*/
@java.lang.Override
public boolean getIsExecutable() {
return isExecutable_;
}
public static final int CONTENTS_FIELD_NUMBER = 5;
private com.google.protobuf.ByteString contents_ = com.google.protobuf.ByteString.EMPTY;
/**
*
* The contents of the file if inlining was requested. The server SHOULD NOT inline
* file contents unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
*
* bytes contents = 5;
* @return The contents.
*/
@java.lang.Override
public com.google.protobuf.ByteString getContents() {
return contents_;
}
public static final int NODE_PROPERTIES_FIELD_NUMBER = 7;
private build.bazel.remote.execution.v2.NodeProperties nodeProperties_;
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 7;
* @return Whether the nodeProperties field is set.
*/
@java.lang.Override
public boolean hasNodeProperties() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 7;
* @return The nodeProperties.
*/
@java.lang.Override
public build.bazel.remote.execution.v2.NodeProperties getNodeProperties() {
return nodeProperties_ == null ? build.bazel.remote.execution.v2.NodeProperties.getDefaultInstance() : nodeProperties_;
}
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 7;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.NodePropertiesOrBuilder getNodePropertiesOrBuilder() {
return nodeProperties_ == null ? build.bazel.remote.execution.v2.NodeProperties.getDefaultInstance() : nodeProperties_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, path_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(2, getDigest());
}
if (isExecutable_ != false) {
output.writeBool(4, isExecutable_);
}
if (!contents_.isEmpty()) {
output.writeBytes(5, contents_);
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(7, getNodeProperties());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, path_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getDigest());
}
if (isExecutable_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(4, isExecutable_);
}
if (!contents_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(5, contents_);
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(7, getNodeProperties());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof build.bazel.remote.execution.v2.OutputFile)) {
return super.equals(obj);
}
build.bazel.remote.execution.v2.OutputFile other = (build.bazel.remote.execution.v2.OutputFile) obj;
if (!getPath()
.equals(other.getPath())) return false;
if (hasDigest() != other.hasDigest()) return false;
if (hasDigest()) {
if (!getDigest()
.equals(other.getDigest())) return false;
}
if (getIsExecutable()
!= other.getIsExecutable()) return false;
if (!getContents()
.equals(other.getContents())) return false;
if (hasNodeProperties() != other.hasNodeProperties()) return false;
if (hasNodeProperties()) {
if (!getNodeProperties()
.equals(other.getNodeProperties())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + PATH_FIELD_NUMBER;
hash = (53 * hash) + getPath().hashCode();
if (hasDigest()) {
hash = (37 * hash) + DIGEST_FIELD_NUMBER;
hash = (53 * hash) + getDigest().hashCode();
}
hash = (37 * hash) + IS_EXECUTABLE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getIsExecutable());
hash = (37 * hash) + CONTENTS_FIELD_NUMBER;
hash = (53 * hash) + getContents().hashCode();
if (hasNodeProperties()) {
hash = (37 * hash) + NODE_PROPERTIES_FIELD_NUMBER;
hash = (53 * hash) + getNodeProperties().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static build.bazel.remote.execution.v2.OutputFile parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.OutputFile parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.OutputFile parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(build.bazel.remote.execution.v2.OutputFile prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* An `OutputFile` is similar to a
* [FileNode][build.bazel.remote.execution.v2.FileNode], but it is used as an
* output in an `ActionResult`. It allows a full file path rather than
* only a name.
*
*
* Protobuf type {@code build.bazel.remote.execution.v2.OutputFile}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:build.bazel.remote.execution.v2.OutputFile)
build.bazel.remote.execution.v2.OutputFileOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_OutputFile_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_OutputFile_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.bazel.remote.execution.v2.OutputFile.class, build.bazel.remote.execution.v2.OutputFile.Builder.class);
}
// Construct using build.bazel.remote.execution.v2.OutputFile.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getDigestFieldBuilder();
getNodePropertiesFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
path_ = "";
digest_ = null;
if (digestBuilder_ != null) {
digestBuilder_.dispose();
digestBuilder_ = null;
}
isExecutable_ = false;
contents_ = com.google.protobuf.ByteString.EMPTY;
nodeProperties_ = null;
if (nodePropertiesBuilder_ != null) {
nodePropertiesBuilder_.dispose();
nodePropertiesBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_OutputFile_descriptor;
}
@java.lang.Override
public build.bazel.remote.execution.v2.OutputFile getDefaultInstanceForType() {
return build.bazel.remote.execution.v2.OutputFile.getDefaultInstance();
}
@java.lang.Override
public build.bazel.remote.execution.v2.OutputFile build() {
build.bazel.remote.execution.v2.OutputFile result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public build.bazel.remote.execution.v2.OutputFile buildPartial() {
build.bazel.remote.execution.v2.OutputFile result = new build.bazel.remote.execution.v2.OutputFile(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(build.bazel.remote.execution.v2.OutputFile result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.path_ = path_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.digest_ = digestBuilder_ == null
? digest_
: digestBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.isExecutable_ = isExecutable_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.contents_ = contents_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.nodeProperties_ = nodePropertiesBuilder_ == null
? nodeProperties_
: nodePropertiesBuilder_.build();
to_bitField0_ |= 0x00000002;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof build.bazel.remote.execution.v2.OutputFile) {
return mergeFrom((build.bazel.remote.execution.v2.OutputFile)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(build.bazel.remote.execution.v2.OutputFile other) {
if (other == build.bazel.remote.execution.v2.OutputFile.getDefaultInstance()) return this;
if (!other.getPath().isEmpty()) {
path_ = other.path_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasDigest()) {
mergeDigest(other.getDigest());
}
if (other.getIsExecutable() != false) {
setIsExecutable(other.getIsExecutable());
}
if (other.getContents() != com.google.protobuf.ByteString.EMPTY) {
setContents(other.getContents());
}
if (other.hasNodeProperties()) {
mergeNodeProperties(other.getNodeProperties());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
path_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getDigestFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 32: {
isExecutable_ = input.readBool();
bitField0_ |= 0x00000004;
break;
} // case 32
case 42: {
contents_ = input.readBytes();
bitField0_ |= 0x00000008;
break;
} // case 42
case 58: {
input.readMessage(
getNodePropertiesFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000010;
break;
} // case 58
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object path_ = "";
/**
*
* The full path of the file relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
* The full path of the file relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @return The bytes for path.
*/
public com.google.protobuf.ByteString
getPathBytes() {
java.lang.Object ref = path_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
path_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The full path of the file relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @param value The path to set.
* @return This builder for chaining.
*/
public Builder setPath(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
path_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The full path of the file relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
* The full path of the file relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @param value The bytes for path to set.
* @return This builder for chaining.
*/
public Builder setPathBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
path_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private build.bazel.remote.execution.v2.Digest digest_;
private com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.Digest, build.bazel.remote.execution.v2.Digest.Builder, build.bazel.remote.execution.v2.DigestOrBuilder> digestBuilder_;
/**
*
* The digest of the file's content.
*
*
* .build.bazel.remote.execution.v2.Digest digest = 2;
* @return Whether the digest field is set.
*/
public boolean hasDigest() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
* The contents of the file if inlining was requested. The server SHOULD NOT inline
* file contents unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
* The contents of the file if inlining was requested. The server SHOULD NOT inline
* file contents unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
*
* bytes contents = 5;
* @param value The contents to set.
* @return This builder for chaining.
*/
public Builder setContents(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
contents_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
* The contents of the file if inlining was requested. The server SHOULD NOT inline
* file contents unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*