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.
* The Remote Execution API is used to execute an
* [Action][build.bazel.remote.execution.v2.Action] on the remote
* workers.
* As with other services in the Remote Execution API, any call may return an
* error with a [RetryInfo][google.rpc.RetryInfo] error detail providing
* information about when the client should retry the request; clients SHOULD
* respect the information provided.
*
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler (version 1.65.0)",
comments = "Source: build/bazel/remote/execution/v2/remote_execution.proto")
@io.grpc.stub.annotations.GrpcGenerated
public final class ExecutionGrpc {
private ExecutionGrpc() {}
public static final java.lang.String SERVICE_NAME = "build.bazel.remote.execution.v2.Execution";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor getExecuteMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "Execute",
requestType = build.bazel.remote.execution.v2.ExecuteRequest.class,
responseType = com.google.longrunning.Operation.class,
methodType = io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING)
public static io.grpc.MethodDescriptor getExecuteMethod() {
io.grpc.MethodDescriptor getExecuteMethod;
if ((getExecuteMethod = ExecutionGrpc.getExecuteMethod) == null) {
synchronized (ExecutionGrpc.class) {
if ((getExecuteMethod = ExecutionGrpc.getExecuteMethod) == null) {
ExecutionGrpc.getExecuteMethod = getExecuteMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "Execute"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
build.bazel.remote.execution.v2.ExecuteRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.google.longrunning.Operation.getDefaultInstance()))
.setSchemaDescriptor(new ExecutionMethodDescriptorSupplier("Execute"))
.build();
}
}
}
return getExecuteMethod;
}
private static volatile io.grpc.MethodDescriptor getWaitExecutionMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "WaitExecution",
requestType = build.bazel.remote.execution.v2.WaitExecutionRequest.class,
responseType = com.google.longrunning.Operation.class,
methodType = io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING)
public static io.grpc.MethodDescriptor getWaitExecutionMethod() {
io.grpc.MethodDescriptor getWaitExecutionMethod;
if ((getWaitExecutionMethod = ExecutionGrpc.getWaitExecutionMethod) == null) {
synchronized (ExecutionGrpc.class) {
if ((getWaitExecutionMethod = ExecutionGrpc.getWaitExecutionMethod) == null) {
ExecutionGrpc.getWaitExecutionMethod = getWaitExecutionMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "WaitExecution"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
build.bazel.remote.execution.v2.WaitExecutionRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.google.longrunning.Operation.getDefaultInstance()))
.setSchemaDescriptor(new ExecutionMethodDescriptorSupplier("WaitExecution"))
.build();
}
}
}
return getWaitExecutionMethod;
}
/**
* Creates a new async stub that supports all call types for the service
*/
public static ExecutionStub newStub(io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public ExecutionStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ExecutionStub(channel, callOptions);
}
};
return ExecutionStub.newStub(factory, channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static ExecutionBlockingStub newBlockingStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public ExecutionBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ExecutionBlockingStub(channel, callOptions);
}
};
return ExecutionBlockingStub.newStub(factory, channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static ExecutionFutureStub newFutureStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public ExecutionFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ExecutionFutureStub(channel, callOptions);
}
};
return ExecutionFutureStub.newStub(factory, channel);
}
/**
*
* The Remote Execution API is used to execute an
* [Action][build.bazel.remote.execution.v2.Action] on the remote
* workers.
* As with other services in the Remote Execution API, any call may return an
* error with a [RetryInfo][google.rpc.RetryInfo] error detail providing
* information about when the client should retry the request; clients SHOULD
* respect the information provided.
*
*/
public interface AsyncService {
/**
*
* Execute an action remotely.
* In order to execute an action, the client must first upload all of the
* inputs, the
* [Command][build.bazel.remote.execution.v2.Command] to run, and the
* [Action][build.bazel.remote.execution.v2.Action] into the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
* It then calls `Execute` with an `action_digest` referring to them. The
* server will run the action and eventually return the result.
* The input `Action`'s fields MUST meet the various canonicalization
* requirements specified in the documentation for their types so that it has
* the same digest as other logically equivalent `Action`s. The server MAY
* enforce the requirements and return errors if a non-canonical input is
* received. It MAY also proceed without verifying some or all of the
* requirements, such as for performance reasons. If the server does not
* verify the requirement, then it will treat the `Action` as distinct from
* another logically equivalent action if they hash differently.
* Returns a stream of
* [google.longrunning.Operation][google.longrunning.Operation] messages
* describing the resulting execution, with eventual `response`
* [ExecuteResponse][build.bazel.remote.execution.v2.ExecuteResponse]. The
* `metadata` on the operation is of type
* [ExecuteOperationMetadata][build.bazel.remote.execution.v2.ExecuteOperationMetadata].
* If the client remains connected after the first response is returned after
* the server, then updates are streamed as if the client had called
* [WaitExecution][build.bazel.remote.execution.v2.Execution.WaitExecution]
* until the execution completes or the request reaches an error. The
* operation can also be queried using [Operations
* API][google.longrunning.Operations.GetOperation].
* The server NEED NOT implement other methods or functionality of the
* Operations API.
* Errors discovered during creation of the `Operation` will be reported
* as gRPC Status errors, while errors that occurred while running the
* action will be reported in the `status` field of the `ExecuteResponse`. The
* server MUST NOT set the `error` field of the `Operation` proto.
* The possible errors include:
* * `INVALID_ARGUMENT`: One or more arguments are invalid.
* * `FAILED_PRECONDITION`: One or more errors occurred in setting up the
* action requested, such as a missing input or command or no worker being
* available. The client may be able to fix the errors and retry.
* * `RESOURCE_EXHAUSTED`: There is insufficient quota of some resource to run
* the action.
* * `UNAVAILABLE`: Due to a transient condition, such as all workers being
* occupied (and the server does not support a queue), the action could not
* be started. The client should retry.
* * `INTERNAL`: An internal error occurred in the execution engine or the
* worker.
* * `DEADLINE_EXCEEDED`: The execution timed out.
* * `CANCELLED`: The operation was cancelled by the client. This status is
* only possible if the server implements the Operations API CancelOperation
* method, and it was called for the current execution.
* In the case of a missing input or command, the server SHOULD additionally
* send a [PreconditionFailure][google.rpc.PreconditionFailure] error detail
* where, for each requested blob not present in the CAS, there is a
* `Violation` with a `type` of `MISSING` and a `subject` of
* `"blobs/{hash}/{size}"` indicating the digest of the missing blob.
* The server does not need to guarantee that a call to this method leads to
* at most one execution of the action. The server MAY execute the action
* multiple times, potentially in parallel. These redundant executions MAY
* continue to run, even if the operation is completed.
*
* Wait for an execution operation to complete. When the client initially
* makes the request, the server immediately responds with the current status
* of the execution. The server will leave the request stream open until the
* operation completes, and then respond with the completed operation. The
* server MAY choose to stream additional updates as execution progresses,
* such as to provide an update as to the state of the execution.
*
*/
default void waitExecution(build.bazel.remote.execution.v2.WaitExecutionRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getWaitExecutionMethod(), responseObserver);
}
}
/**
* Base class for the server implementation of the service Execution.
*
* The Remote Execution API is used to execute an
* [Action][build.bazel.remote.execution.v2.Action] on the remote
* workers.
* As with other services in the Remote Execution API, any call may return an
* error with a [RetryInfo][google.rpc.RetryInfo] error detail providing
* information about when the client should retry the request; clients SHOULD
* respect the information provided.
*
*/
public static abstract class ExecutionImplBase
implements io.grpc.BindableService, AsyncService {
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return ExecutionGrpc.bindService(this);
}
}
/**
* A stub to allow clients to do asynchronous rpc calls to service Execution.
*
* The Remote Execution API is used to execute an
* [Action][build.bazel.remote.execution.v2.Action] on the remote
* workers.
* As with other services in the Remote Execution API, any call may return an
* error with a [RetryInfo][google.rpc.RetryInfo] error detail providing
* information about when the client should retry the request; clients SHOULD
* respect the information provided.
*
*/
public static final class ExecutionStub
extends io.grpc.stub.AbstractAsyncStub {
private ExecutionStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected ExecutionStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ExecutionStub(channel, callOptions);
}
/**
*
* Execute an action remotely.
* In order to execute an action, the client must first upload all of the
* inputs, the
* [Command][build.bazel.remote.execution.v2.Command] to run, and the
* [Action][build.bazel.remote.execution.v2.Action] into the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
* It then calls `Execute` with an `action_digest` referring to them. The
* server will run the action and eventually return the result.
* The input `Action`'s fields MUST meet the various canonicalization
* requirements specified in the documentation for their types so that it has
* the same digest as other logically equivalent `Action`s. The server MAY
* enforce the requirements and return errors if a non-canonical input is
* received. It MAY also proceed without verifying some or all of the
* requirements, such as for performance reasons. If the server does not
* verify the requirement, then it will treat the `Action` as distinct from
* another logically equivalent action if they hash differently.
* Returns a stream of
* [google.longrunning.Operation][google.longrunning.Operation] messages
* describing the resulting execution, with eventual `response`
* [ExecuteResponse][build.bazel.remote.execution.v2.ExecuteResponse]. The
* `metadata` on the operation is of type
* [ExecuteOperationMetadata][build.bazel.remote.execution.v2.ExecuteOperationMetadata].
* If the client remains connected after the first response is returned after
* the server, then updates are streamed as if the client had called
* [WaitExecution][build.bazel.remote.execution.v2.Execution.WaitExecution]
* until the execution completes or the request reaches an error. The
* operation can also be queried using [Operations
* API][google.longrunning.Operations.GetOperation].
* The server NEED NOT implement other methods or functionality of the
* Operations API.
* Errors discovered during creation of the `Operation` will be reported
* as gRPC Status errors, while errors that occurred while running the
* action will be reported in the `status` field of the `ExecuteResponse`. The
* server MUST NOT set the `error` field of the `Operation` proto.
* The possible errors include:
* * `INVALID_ARGUMENT`: One or more arguments are invalid.
* * `FAILED_PRECONDITION`: One or more errors occurred in setting up the
* action requested, such as a missing input or command or no worker being
* available. The client may be able to fix the errors and retry.
* * `RESOURCE_EXHAUSTED`: There is insufficient quota of some resource to run
* the action.
* * `UNAVAILABLE`: Due to a transient condition, such as all workers being
* occupied (and the server does not support a queue), the action could not
* be started. The client should retry.
* * `INTERNAL`: An internal error occurred in the execution engine or the
* worker.
* * `DEADLINE_EXCEEDED`: The execution timed out.
* * `CANCELLED`: The operation was cancelled by the client. This status is
* only possible if the server implements the Operations API CancelOperation
* method, and it was called for the current execution.
* In the case of a missing input or command, the server SHOULD additionally
* send a [PreconditionFailure][google.rpc.PreconditionFailure] error detail
* where, for each requested blob not present in the CAS, there is a
* `Violation` with a `type` of `MISSING` and a `subject` of
* `"blobs/{hash}/{size}"` indicating the digest of the missing blob.
* The server does not need to guarantee that a call to this method leads to
* at most one execution of the action. The server MAY execute the action
* multiple times, potentially in parallel. These redundant executions MAY
* continue to run, even if the operation is completed.
*
* Wait for an execution operation to complete. When the client initially
* makes the request, the server immediately responds with the current status
* of the execution. The server will leave the request stream open until the
* operation completes, and then respond with the completed operation. The
* server MAY choose to stream additional updates as execution progresses,
* such as to provide an update as to the state of the execution.
*
*/
public void waitExecution(build.bazel.remote.execution.v2.WaitExecutionRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ClientCalls.asyncServerStreamingCall(
getChannel().newCall(getWaitExecutionMethod(), getCallOptions()), request, responseObserver);
}
}
/**
* A stub to allow clients to do synchronous rpc calls to service Execution.
*
* The Remote Execution API is used to execute an
* [Action][build.bazel.remote.execution.v2.Action] on the remote
* workers.
* As with other services in the Remote Execution API, any call may return an
* error with a [RetryInfo][google.rpc.RetryInfo] error detail providing
* information about when the client should retry the request; clients SHOULD
* respect the information provided.
*
*/
public static final class ExecutionBlockingStub
extends io.grpc.stub.AbstractBlockingStub {
private ExecutionBlockingStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected ExecutionBlockingStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ExecutionBlockingStub(channel, callOptions);
}
/**
*
* Execute an action remotely.
* In order to execute an action, the client must first upload all of the
* inputs, the
* [Command][build.bazel.remote.execution.v2.Command] to run, and the
* [Action][build.bazel.remote.execution.v2.Action] into the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
* It then calls `Execute` with an `action_digest` referring to them. The
* server will run the action and eventually return the result.
* The input `Action`'s fields MUST meet the various canonicalization
* requirements specified in the documentation for their types so that it has
* the same digest as other logically equivalent `Action`s. The server MAY
* enforce the requirements and return errors if a non-canonical input is
* received. It MAY also proceed without verifying some or all of the
* requirements, such as for performance reasons. If the server does not
* verify the requirement, then it will treat the `Action` as distinct from
* another logically equivalent action if they hash differently.
* Returns a stream of
* [google.longrunning.Operation][google.longrunning.Operation] messages
* describing the resulting execution, with eventual `response`
* [ExecuteResponse][build.bazel.remote.execution.v2.ExecuteResponse]. The
* `metadata` on the operation is of type
* [ExecuteOperationMetadata][build.bazel.remote.execution.v2.ExecuteOperationMetadata].
* If the client remains connected after the first response is returned after
* the server, then updates are streamed as if the client had called
* [WaitExecution][build.bazel.remote.execution.v2.Execution.WaitExecution]
* until the execution completes or the request reaches an error. The
* operation can also be queried using [Operations
* API][google.longrunning.Operations.GetOperation].
* The server NEED NOT implement other methods or functionality of the
* Operations API.
* Errors discovered during creation of the `Operation` will be reported
* as gRPC Status errors, while errors that occurred while running the
* action will be reported in the `status` field of the `ExecuteResponse`. The
* server MUST NOT set the `error` field of the `Operation` proto.
* The possible errors include:
* * `INVALID_ARGUMENT`: One or more arguments are invalid.
* * `FAILED_PRECONDITION`: One or more errors occurred in setting up the
* action requested, such as a missing input or command or no worker being
* available. The client may be able to fix the errors and retry.
* * `RESOURCE_EXHAUSTED`: There is insufficient quota of some resource to run
* the action.
* * `UNAVAILABLE`: Due to a transient condition, such as all workers being
* occupied (and the server does not support a queue), the action could not
* be started. The client should retry.
* * `INTERNAL`: An internal error occurred in the execution engine or the
* worker.
* * `DEADLINE_EXCEEDED`: The execution timed out.
* * `CANCELLED`: The operation was cancelled by the client. This status is
* only possible if the server implements the Operations API CancelOperation
* method, and it was called for the current execution.
* In the case of a missing input or command, the server SHOULD additionally
* send a [PreconditionFailure][google.rpc.PreconditionFailure] error detail
* where, for each requested blob not present in the CAS, there is a
* `Violation` with a `type` of `MISSING` and a `subject` of
* `"blobs/{hash}/{size}"` indicating the digest of the missing blob.
* The server does not need to guarantee that a call to this method leads to
* at most one execution of the action. The server MAY execute the action
* multiple times, potentially in parallel. These redundant executions MAY
* continue to run, even if the operation is completed.
*
* Wait for an execution operation to complete. When the client initially
* makes the request, the server immediately responds with the current status
* of the execution. The server will leave the request stream open until the
* operation completes, and then respond with the completed operation. The
* server MAY choose to stream additional updates as execution progresses,
* such as to provide an update as to the state of the execution.
*
*/
public java.util.Iterator waitExecution(
build.bazel.remote.execution.v2.WaitExecutionRequest request) {
return io.grpc.stub.ClientCalls.blockingServerStreamingCall(
getChannel(), getWaitExecutionMethod(), getCallOptions(), request);
}
}
/**
* A stub to allow clients to do ListenableFuture-style rpc calls to service Execution.
*
* The Remote Execution API is used to execute an
* [Action][build.bazel.remote.execution.v2.Action] on the remote
* workers.
* As with other services in the Remote Execution API, any call may return an
* error with a [RetryInfo][google.rpc.RetryInfo] error detail providing
* information about when the client should retry the request; clients SHOULD
* respect the information provided.
*
*/
public static final class ExecutionFutureStub
extends io.grpc.stub.AbstractFutureStub {
private ExecutionFutureStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected ExecutionFutureStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ExecutionFutureStub(channel, callOptions);
}
}
private static final int METHODID_EXECUTE = 0;
private static final int METHODID_WAIT_EXECUTION = 1;
private static final class MethodHandlers implements
io.grpc.stub.ServerCalls.UnaryMethod,
io.grpc.stub.ServerCalls.ServerStreamingMethod,
io.grpc.stub.ServerCalls.ClientStreamingMethod,
io.grpc.stub.ServerCalls.BidiStreamingMethod {
private final AsyncService serviceImpl;
private final int methodId;
MethodHandlers(AsyncService serviceImpl, int methodId) {
this.serviceImpl = serviceImpl;
this.methodId = methodId;
}
@java.lang.Override
@java.lang.SuppressWarnings("unchecked")
public void invoke(Req request, io.grpc.stub.StreamObserver responseObserver) {
switch (methodId) {
case METHODID_EXECUTE:
serviceImpl.execute((build.bazel.remote.execution.v2.ExecuteRequest) request,
(io.grpc.stub.StreamObserver) responseObserver);
break;
case METHODID_WAIT_EXECUTION:
serviceImpl.waitExecution((build.bazel.remote.execution.v2.WaitExecutionRequest) request,
(io.grpc.stub.StreamObserver) responseObserver);
break;
default:
throw new AssertionError();
}
}
@java.lang.Override
@java.lang.SuppressWarnings("unchecked")
public io.grpc.stub.StreamObserver invoke(
io.grpc.stub.StreamObserver responseObserver) {
switch (methodId) {
default:
throw new AssertionError();
}
}
}
public static final io.grpc.ServerServiceDefinition bindService(AsyncService service) {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getExecuteMethod(),
io.grpc.stub.ServerCalls.asyncServerStreamingCall(
new MethodHandlers<
build.bazel.remote.execution.v2.ExecuteRequest,
com.google.longrunning.Operation>(
service, METHODID_EXECUTE)))
.addMethod(
getWaitExecutionMethod(),
io.grpc.stub.ServerCalls.asyncServerStreamingCall(
new MethodHandlers<
build.bazel.remote.execution.v2.WaitExecutionRequest,
com.google.longrunning.Operation>(
service, METHODID_WAIT_EXECUTION)))
.build();
}
private static abstract class ExecutionBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier {
ExecutionBaseDescriptorSupplier() {}
@java.lang.Override
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.getDescriptor();
}
@java.lang.Override
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() {
return getFileDescriptor().findServiceByName("Execution");
}
}
private static final class ExecutionFileDescriptorSupplier
extends ExecutionBaseDescriptorSupplier {
ExecutionFileDescriptorSupplier() {}
}
private static final class ExecutionMethodDescriptorSupplier
extends ExecutionBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier {
private final java.lang.String methodName;
ExecutionMethodDescriptorSupplier(java.lang.String methodName) {
this.methodName = methodName;
}
@java.lang.Override
public com.google.protobuf.Descriptors.MethodDescriptor getMethodDescriptor() {
return getServiceDescriptor().findMethodByName(methodName);
}
}
private static volatile io.grpc.ServiceDescriptor serviceDescriptor;
public static io.grpc.ServiceDescriptor getServiceDescriptor() {
io.grpc.ServiceDescriptor result = serviceDescriptor;
if (result == null) {
synchronized (ExecutionGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.setSchemaDescriptor(new ExecutionFileDescriptorSupplier())
.addMethod(getExecuteMethod())
.addMethod(getWaitExecutionMethod())
.build();
}
}
}
return result;
}
}