1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
// WORKING.rs
// by Lut99
//
// Created:
// 06 Jan 2023, 15:01:17
// Last edited:
// 07 Mar 2024, 11:58:09
// Auto updated?
// Yes
//
// Description:
//! Contains prost messages for interacting with the job service /
//! worker.
//
use std::convert::TryFrom;
use std::error;
use std::fmt::{Display, Formatter, Result as FResult};
use std::sync::Arc;
pub use JobServiceError as Error;
use async_trait::async_trait;
use futures::Stream;
use prost::{Enumeration, Message, Oneof};
use tonic::body::{BoxBody, empty_body};
use tonic::client::Grpc as GrpcClient;
use tonic::codec::{ProstCodec, Streaming};
use tonic::codegen::{Body, BoxFuture, Context, Poll, Service, StdError, http};
use tonic::server::{Grpc as GrpcServer, NamedService, ServerStreamingService, UnaryService};
use tonic::transport::{Channel, Endpoint};
use tonic::{Code, Request, Response, Status};
/***** ERRORS *****/
/// Defines the errors occurring when juggling [`PreprocessKind`]s.
#[derive(Debug)]
pub enum PreprocessKindConvertError {
/// The given [`PreprocessKind`] did not have a successfully parsed `dataname`-field.
NoDataName,
}
impl Display for PreprocessKindConvertError {
fn fmt(&self, f: &mut Formatter<'_>) -> FResult {
use PreprocessKindConvertError::*;
match self {
NoDataName => write!(f, "Missing 'dataname' in given gRPC version of PreprocessKind"),
}
}
}
impl error::Error for PreprocessKindConvertError {}
/// Defines the errors occuring in the JobServiceClient or JobServiceServer.
#[derive(Debug)]
pub enum JobServiceError {
/// Failed to create an endpoint with the given address.
EndpointError { address: String, err: tonic::transport::Error },
/// Failed to connect to the given address.
ConnectError { address: String, err: tonic::transport::Error },
}
impl Display for JobServiceError {
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> FResult {
use JobServiceError::*;
match self {
EndpointError { address, err } => write!(f, "Failed to create a new Endpoint from '{address}': {err}"),
ConnectError { address, err } => write!(f, "Failed to connect to gRPC endpoint '{address}': {err}"),
}
}
}
impl error::Error for JobServiceError {}
/***** AUXILLARY MESSAGES *****/
// /// Auxillary enum that defines the possible kinds of datasets.
// #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, Enumeration)]
// #[repr(i32)]
// pub enum DataKind {
// /// A full-fledged, persistent dataset.
// Data = 0,
// /// An intermediate result that will not outlive the scope of the workflow.
// IntermediateResult = 1,
// }
// /// Auxillary message for carrying a dataset with its associated name.
// #[derive(Clone, Message)]
// pub struct DataName {
// /// The name of the dataset.
// #[prost(tag = "1", required, string)]
// pub name : String,
// /// The kind of the dataset (i.e., Data or IntermediateResult).
// #[prost(tag = "2", required, enumeration = "DataKind")]
// pub kind : i32,
// }
/// Auxillary message for carrying a data kind with its associated name.
#[derive(Clone, Oneof)]
pub enum DataName {
/// The piece of data is a dataset.
#[prost(tag = "2", string)]
Data(String),
/// The piece of data is an intermediate result.
#[prost(tag = "3", string)]
IntermediateResult(String),
}
impl From<crate::data::DataName> for DataName {
#[inline]
fn from(value: crate::data::DataName) -> Self {
match value {
crate::data::DataName::Data(name) => DataName::Data(name),
crate::data::DataName::IntermediateResult(name) => DataName::IntermediateResult(name),
}
}
}
impl From<DataName> for crate::data::DataName {
#[inline]
fn from(value: DataName) -> Self {
match value {
DataName::Data(name) => Self::Data(name),
DataName::IntermediateResult(name) => Self::IntermediateResult(name),
}
}
}
/// Auxillary message that implements the fields for a TransferRegistryTar PreprocessKind.
#[derive(Clone, Message)]
pub struct TransferRegistryTar {
/// The location where the address is from.
#[prost(tag = "1", required, string)]
pub location: String,
/// The name of the dataset that we aim to retrieve.
#[prost(tags = "2,3", oneof = "DataName")]
pub dataname: Option<DataName>,
}
/// Auxillary enum that defines the possible kinds of datasets.
#[derive(Clone, Oneof)]
pub enum PreprocessKind {
/// We want to transfer it as a tar.gz from a local registry.
#[prost(tag = "1", message)]
TransferRegistryTar(TransferRegistryTar),
}
impl From<crate::data::PreprocessKind> for PreprocessKind {
#[inline]
fn from(value: crate::data::PreprocessKind) -> Self {
match value {
crate::data::PreprocessKind::TransferRegistryTar { location, dataname } => {
Self::TransferRegistryTar(TransferRegistryTar { location, dataname: Some(dataname.into()) })
},
}
}
}
impl TryFrom<PreprocessKind> for crate::data::PreprocessKind {
type Error = PreprocessKindConvertError;
#[inline]
fn try_from(value: PreprocessKind) -> Result<Self, Self::Error> {
match value {
PreprocessKind::TransferRegistryTar(TransferRegistryTar { location, dataname }) => match dataname {
Some(dataname) => Ok(crate::data::PreprocessKind::TransferRegistryTar { location, dataname: dataname.into() }),
None => Err(PreprocessKindConvertError::NoDataName),
},
}
}
}
/// Auxillary enum that defines the possible states a task can have.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, Enumeration)]
#[repr(i32)]
pub enum TaskStatus {
// Meta events
/// No status yet / unknown
Unknown = 0,
// Job events
/// The job has been received by the job node.
Received = 1,
// Checker events
/// The job has been authorized by the job's checker(s).
Authorized = 2,
/// The job has been denied by the job's checker(s).
Denied = 3,
/// Authorization has failed. If seen, the `value` field is also populated with the error message.
AuthorizationFailed = 4,
// Creation events
/// The job container has been created.
Created = 5,
/// We failed to create the job container. If seen, the `value` field is also populated with the error message.
CreationFailed = 6,
// Initialization events
/// The branelet has been booted (first event it sends).
Ready = 7,
/// The branelet node has been initialized; now only to spawn the job itself.
Initialized = 8,
/// We failed to initialize branelet. If seen, the `value` field is also populated with the error message.
InitializationFailed = 9,
/// The actual subcall executeable / script has started
Started = 10,
/// The subprocess executable did not want to start (calling it failed) If seen, the `value` field is also populated with the error message.
StartingFailed = 11,
// Progress events
/// Occassional message to let the user know the container is alive and running.
Heartbeat = 12,
/// The package call went successfully from the branelet's side.
Completed = 13,
/// The package call went wrong from the branelet's side. If seen, the `value` field is also populated with the error message.
CompletionFailed = 14,
// Finish events
/// The container has exited with a zero status code and return a value. If seen, then the `value` field is populated with the JSON-encoded FullValue returned.
Finished = 15,
/// The container was interrupted by the Job node
Stopped = 16,
/// brane-let could not decode the output from the package call. If seen, the `value` field is also populated with the error message.
DecodingFailed = 17,
/// The container has exited with a non-zero status code. If seen, the `value` field is populated with a JSON-encoded triplet of the error code, the container's stdout and the container's stderr.
Failed = 18,
}
/***** MESSAGES *****/
/// Request for checking workflow validity with the worker's checker.
#[derive(Clone, Message)]
pub struct CheckWorkflowRequest {
/// Some identifier relating to the worker which use-case (registry) is being used.
#[prost(tag = "1", required, string)]
pub use_case: String,
/// The workflow that should be checked.
#[prost(tag = "2", required, string)]
pub workflow: String,
}
/// Request for checking workflow validity with the worker's checker.
#[derive(Clone, Message)]
pub struct CheckTaskRequest {
/// Some identifier relating to the worker which use-case (registry) is being used.
#[prost(tag = "1", required, string)]
pub use_case: String,
/// The workflow that should be checked.
#[prost(tag = "2", required, string)]
pub workflow: String,
/// A pointer to the task in the `workflow` that should be specifically permitted.
#[prost(tag = "3", required, string)]
pub task_id: String,
}
/// The reply sent by the worker if a workflow- or task is permitted (i.e., as response to [`CheckWorkflowRequest`] or [`CheckTaskRequest`]).
#[derive(Clone, Message)]
pub struct CheckReply {
/// Whether the checker approved or denied
#[prost(tag = "1", required, bool)]
pub verdict: bool,
/// If `verdict` is false, then this _may_ denote a list of reasons for denying it.
#[prost(tag = "2", repeated, string)]
pub reasons: Vec<String>,
}
/// Request for preprocessing a given dataset.
#[derive(Clone, Message)]
pub struct PreprocessRequest {
/// Some identifier relating to the worker which use-case (registry) is being used.
#[prost(tag = "1", required, string)]
pub use_case: String,
// /// The dataset's name (and kind)
// #[prost(tags = "2,3", oneof = "DataName")]
// pub data: Option<DataName>,
/// The type of preprocessing that will need to happen.
// #[prost(tags = "2", oneof = "PreprocessKind")]
// pub kind: Option<PreprocessKind>,
#[prost(tag = "2", required, message)]
pub kind: TransferRegistryTar,
/// The workflow provided as context of the data transfer.
#[prost(tag = "3", required, string)]
pub workflow: String,
/// The function in which we do the call.
#[prost(tag = "4", message)]
pub pc: Option<ProgramCounter>,
}
/// Defines two numbers that make up a program counter.
#[derive(Clone, Message)]
pub struct ProgramCounter {
/// The function ID of the PC.
#[prost(tag = "1", required, uint64)]
pub func_id: u64,
/// The edge index of the PC.
#[prost(tag = "2", required, uint64)]
pub edge_idx: u64,
}
/// The reply sent by the worker when the preprocessing of a dataset has been done.
#[derive(Clone, Message)]
pub struct PreprocessReply {
/// The method of accessing this dataset from now on.
#[prost(tag = "1", required, string)]
pub access: String,
}
/// Request for executing a task on some domain.
#[derive(Clone, Message)]
pub struct ExecuteRequest {
/// Some identifier relating to the worker which use-case (registry) is being used.
#[prost(tag = "1", required, string)]
pub use_case: String,
/// The workflow of which the task to execute is a part.
#[prost(tag = "2", required, string)]
pub workflow: String,
/// The function & edge in which we do the call.
#[prost(tag = "3", required, message)]
pub call_pc: ProgramCounter,
/// The index of the task to execute in the workflow's task table.
#[prost(tag = "4", required, uint64)]
pub task_def: u64,
/// The input (i.e., datasets/intermediate results) that are used in this call. It is a map encoded as JSON.
#[prost(tag = "5", required, string)]
pub input: String,
/// The intermediat result returned by this call, if any.
#[prost(tag = "6", optional, string)]
pub result: Option<String>,
/// The arguments to run the request with. Given as a JSON-encoded map of names to FullValues.
#[prost(tag = "7", required, string)]
pub args: String,
}
/// The reply sent by the worker while a task has executing.
#[derive(Clone, Message)]
pub struct ExecuteReply {
/// The current status of the task. May also indicate a failure status.
#[prost(tag = "1", required, enumeration = "TaskStatus")]
pub status: i32,
/// An optional value that may be carried along with some of the statusses. See the `TaskStatus` enum for more information.
#[prost(tag = "2", optional, string)]
pub value: Option<String>,
}
/// Request for committing a result to a full dataset.
#[derive(Clone, Message)]
pub struct CommitRequest {
/// The name of the intermediate result to commit.
#[prost(tag = "1", string)]
pub result_name: String,
/// The name that the result should have once it is committed.
#[prost(tag = "2", string)]
pub data_name: String,
}
/// The reply sent by the worker when the comittation was successfull.
#[derive(Clone, Message)]
pub struct CommitReply {}
/***** SERVICES *****/
/// The JobServiceClient can connect to a remote server implementing the DriverService protocol.
#[derive(Debug, Clone)]
pub struct JobServiceClient {
/// The client with which we actually do everything
client: GrpcClient<Channel>,
}
impl JobServiceClient {
/// Attempts to connect to the remote endpoint.
///
/// # Arguments
/// - `address`: The address of the remote endpoint to connect to.
///
/// # Returns
/// A new JobServiceClient instance that is connected to the remove endpoint.
///
/// # Errors
/// This function errors if the connection could not be established for whatever reason.
pub async fn connect(address: impl Into<String>) -> Result<Self, Error> {
let address: String = address.into();
// Attempt to make the connection
let conn: Channel = match Endpoint::new(address.clone()) {
Ok(endpoint) => match endpoint.connect().await {
Ok(conn) => conn,
Err(err) => {
return Err(Error::ConnectError { address, err });
},
},
Err(err) => {
return Err(Error::EndpointError { address, err });
},
};
// Store it internally
Ok(Self { client: GrpcClient::new(conn) })
}
/// Send a request to validate a workflow to the connected endpoint.
///
/// # Arguments
/// - `request`: The [`CheckWorkflowRequest`] to send to the endpoint.
///
/// # Returns
/// The [`CheckReply`] the endpoint returns.
///
/// # Errors
/// This function errors if either we failed to send the request or the endpoint itself failed to process it.
pub async fn check_workflow(&mut self, request: impl tonic::IntoRequest<CheckWorkflowRequest>) -> Result<Response<CheckReply>, Status> {
// Assert the client is ready to get the party started
if let Err(err) = self.client.ready().await {
return Err(Status::new(Code::Unknown, format!("Service was not ready: {err}")));
}
// Set the default stuff
let codec: ProstCodec<_, _> = ProstCodec::default();
let path: http::uri::PathAndQuery = http::uri::PathAndQuery::from_static("/job.JobService/CheckWorkflow");
self.client.unary(request.into_request(), path, codec).await
}
/// Send a request to validate a task in a workflow to the connected endpoint.
///
/// # Arguments
/// - `request`: The [`CheckTaskRequest`] to send to the endpoint.
///
/// # Returns
/// The [`CheckReply`] the endpoint returns.
///
/// # Errors
/// This function errors if either we failed to send the request or the endpoint itself failed to process it.
pub async fn check_task(&mut self, request: impl tonic::IntoRequest<CheckTaskRequest>) -> Result<Response<CheckReply>, Status> {
// Assert the client is ready to get the party started
if let Err(err) = self.client.ready().await {
return Err(Status::new(Code::Unknown, format!("Service was not ready: {err}")));
}
// Set the default stuff
let codec: ProstCodec<_, _> = ProstCodec::default();
let path: http::uri::PathAndQuery = http::uri::PathAndQuery::from_static("/job.JobService/CheckTask");
self.client.unary(request.into_request(), path, codec).await
}
/// Send a PreprocessRequest to the connected endpoint.
///
/// # Arguments
/// - `request`: The PreprocessRequest to send to the endpoint.
///
/// # Returns
/// The PreprocessReply the endpoint returns.
///
/// # Errors
/// This function errors if either we failed to send the request or the endpoint itself failed to process it.
pub async fn preprocess(&mut self, request: impl tonic::IntoRequest<PreprocessRequest>) -> Result<Response<PreprocessReply>, Status> {
// Assert the client is ready to get the party started
if let Err(err) = self.client.ready().await {
return Err(Status::new(Code::Unknown, format!("Service was not ready: {err}")));
}
// Set the default stuff
let codec: ProstCodec<_, _> = ProstCodec::default();
let path: http::uri::PathAndQuery = http::uri::PathAndQuery::from_static("/job.JobService/Preprocess");
self.client.unary(request.into_request(), path, codec).await
}
/// Send an ExecuteRequest to the connected endpoint.
///
/// # Arguments
/// - `request`: The ExecuteRequest to send to the endpoint.
///
/// # Returns
/// The ExecuteReply the endpoint returns.
///
/// # Errors
/// This function errors if either we failed to send the request or the endpoint itself failed to process it.
pub async fn execute(&mut self, request: impl tonic::IntoRequest<ExecuteRequest>) -> Result<Response<Streaming<ExecuteReply>>, Status> {
// Assert the client is ready to get the party started
if let Err(err) = self.client.ready().await {
return Err(Status::new(Code::Unknown, format!("Service was not ready: {err}")));
}
// Set the default stuff
let codec: ProstCodec<_, _> = ProstCodec::default();
let path: http::uri::PathAndQuery = http::uri::PathAndQuery::from_static("/job.JobService/Execute");
self.client.server_streaming(request.into_request(), path, codec).await
}
/// Send a CommitRequest to the connected endpoint.
///
/// # Arguments
/// - `request`: The CommitRequest to send to the endpoint.
///
/// # Returns
/// The CommitReply the endpoint returns.
///
/// # Errors
/// This function errors if either we failed to send the request or the endpoint itself failed to process it.
pub async fn commit(&mut self, request: impl tonic::IntoRequest<CommitRequest>) -> Result<Response<CommitReply>, Status> {
// Assert the client is ready to get the party started
if let Err(err) = self.client.ready().await {
return Err(Status::new(Code::Unknown, format!("Service was not ready: {err}")));
}
// Set the default stuff
let codec: ProstCodec<_, _> = ProstCodec::default();
let path: http::uri::PathAndQuery = http::uri::PathAndQuery::from_static("/job.JobService/Commit");
self.client.unary(request.into_request(), path, codec).await
}
}
/// The JobService is a trait for easily writing a service for the driver communication protocol.
///
/// Implementation based on the auto-generated version from tonic.
#[async_trait]
pub trait JobService: 'static + Send + Sync {
/// The response type for stream returned by `JobService::execute()`.
type ExecuteStream: 'static + Send + Stream<Item = Result<ExecuteReply, Status>>;
/// Handle for when a [`CheckWorkflowRequest`] comes in.
///
/// # Arguments
/// - `request`: The ([`tonic::Request`]-wrapped) [`CheckWorkflowRequest`] containing the relevant details.
///
/// # Returns
/// A [`CheckReply`] for this request, wrapped in a [`tonic::Response`].
///
/// # Errors
/// This function may error (i.e., send back a `tonic::Status`) whenever it fails.
async fn check_workflow(&self, request: Request<CheckWorkflowRequest>) -> Result<Response<CheckReply>, Status>;
/// Handle for when a [`CheckTaskRequest`] comes in.
///
/// # Arguments
/// - `request`: The ([`tonic::Request`]-wrapped) [`CheckTaskRequest`] containing the relevant details.
///
/// # Returns
/// A [`CheckReply`] for this request, wrapped in a [`tonic::Response`].
///
/// # Errors
/// This function may error (i.e., send back a `tonic::Status`) whenever it fails.
async fn check_task(&self, request: Request<CheckTaskRequest>) -> Result<Response<CheckReply>, Status>;
/// Handle for when a PreprocessRequest comes in.
///
/// # Arguments
/// - `request`: The (`tonic::Request`-wrapped) PreprocessRequest containing the relevant details.
///
/// # Returns
/// A PreprocessReply for this request, wrapped in a `tonic::Response`.
///
/// # Errors
/// This function may error (i.e., send back a `tonic::Status`) whenever it fails.
async fn preprocess(&self, request: Request<PreprocessRequest>) -> Result<Response<PreprocessReply>, Status>;
/// Handle for when an ExecuteRequest comes in.
///
/// # Arguments
/// - `request`: The (`tonic::Request`-wrapped) ExecuteRequest containing the relevant details.
///
/// # Returns
/// A stream of ExecuteReply messages, updating the client and eventually sending back the workflow result.
///
/// # Errors
/// This function may error (i.e., send back a `tonic::Status`) whenever it fails.
async fn execute(&self, request: Request<ExecuteRequest>) -> Result<Response<Self::ExecuteStream>, Status>;
/// Handle for when a CommitRequest comes in.
///
/// # Arguments
/// - `request`: The (`tonic::Request`-wrapped) CommitRequest containing the relevant details.
///
/// # Returns
/// A CommitReply for this request, wrapped in a `tonic::Response`.
///
/// # Errors
/// This function may error (i.e., send back a `tonic::Status`) whenever it fails.
async fn commit(&self, request: Request<CommitRequest>) -> Result<Response<CommitReply>, Status>;
}
/// The JobServiceServer hosts the server part of the JobService protocol.
#[derive(Clone, Debug)]
pub struct JobServiceServer<T> {
/// The service that we host.
service: Arc<T>,
}
impl<T> JobServiceServer<T> {
/// Constructor for the JobServiceServer.
///
/// # Arguments
/// - `service`: The Service to serve.
///
/// # Returns
/// A new JobServiceServer instance.
#[inline]
pub fn new(service: T) -> Self { Self { service: Arc::new(service) } }
}
impl<T, B> Service<http::Request<B>> for JobServiceServer<T>
where
T: JobService,
B: 'static + Send + Body,
B::Error: 'static + Send + Into<StdError>,
{
type Error = std::convert::Infallible;
type Future = BoxFuture<Self::Response, Self::Error>;
type Response = http::Response<BoxBody>;
#[inline]
fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { Poll::Ready(Ok(())) }
fn call(&mut self, req: http::Request<B>) -> Self::Future {
match req.uri().path() {
// Incoming CheckRequest
"/job.JobService/CheckWorkflow" => {
/// Helper struct for the given JobService that focusses specifically on this request.
struct CheckWorkflowSvc<T>(Arc<T>);
impl<T: JobService> UnaryService<CheckWorkflowRequest> for CheckWorkflowSvc<T> {
type Future = BoxFuture<Response<Self::Response>, Status>;
type Response = CheckReply;
fn call(&mut self, req: Request<CheckWorkflowRequest>) -> Self::Future {
// Return the service function as the future to run
let service = self.0.clone();
let fut = async move { (*service).check_workflow(req).await };
Box::pin(fut)
}
}
// Create a future that creates the service
let service = self.service.clone();
Box::pin(async move {
let method: CheckWorkflowSvc<T> = CheckWorkflowSvc(service);
let codec: ProstCodec<_, _> = ProstCodec::default();
let mut grpc: GrpcServer<ProstCodec<_, _>> = GrpcServer::new(codec);
Ok(grpc.unary(method, req).await)
})
},
// Incoming CheckRequest
"/job.JobService/CheckTask" => {
/// Helper struct for the given JobService that focusses specifically on this request.
struct CheckTaskSvc<T>(Arc<T>);
impl<T: JobService> UnaryService<CheckTaskRequest> for CheckTaskSvc<T> {
type Future = BoxFuture<Response<Self::Response>, Status>;
type Response = CheckReply;
fn call(&mut self, req: Request<CheckTaskRequest>) -> Self::Future {
// Return the service function as the future to run
let service = self.0.clone();
let fut = async move { (*service).check_task(req).await };
Box::pin(fut)
}
}
// Create a future that creates the service
let service = self.service.clone();
Box::pin(async move {
let method: CheckTaskSvc<T> = CheckTaskSvc(service);
let codec: ProstCodec<_, _> = ProstCodec::default();
let mut grpc: GrpcServer<ProstCodec<_, _>> = GrpcServer::new(codec);
Ok(grpc.unary(method, req).await)
})
},
// Incoming PreprocessRequest
"/job.JobService/Preprocess" => {
/// Helper struct for the given JobService that focusses specifically on this request.
struct PreprocessSvc<T>(Arc<T>);
impl<T: JobService> UnaryService<PreprocessRequest> for PreprocessSvc<T> {
type Future = BoxFuture<Response<Self::Response>, Status>;
type Response = PreprocessReply;
fn call(&mut self, req: Request<PreprocessRequest>) -> Self::Future {
// Return the service function as the future to run
let service = self.0.clone();
let fut = async move { (*service).preprocess(req).await };
Box::pin(fut)
}
}
// Create a future that creates the service
let service = self.service.clone();
Box::pin(async move {
let method: PreprocessSvc<T> = PreprocessSvc(service);
let codec: ProstCodec<_, _> = ProstCodec::default();
let mut grpc: GrpcServer<ProstCodec<_, _>> = GrpcServer::new(codec);
Ok(grpc.unary(method, req).await)
})
},
// Incoming ExecuteRequest
"/job.JobService/Execute" => {
/// Helper struct for the given DriverService that focusses specifically on this request.
struct ExecuteSvc<T>(Arc<T>);
impl<T: JobService> ServerStreamingService<ExecuteRequest> for ExecuteSvc<T> {
type Future = BoxFuture<Response<Self::ResponseStream>, Status>;
type Response = ExecuteReply;
type ResponseStream = T::ExecuteStream;
fn call(&mut self, req: Request<ExecuteRequest>) -> Self::Future {
// Return the service function as the future to run
let service = self.0.clone();
let fut = async move { (*service).execute(req).await };
Box::pin(fut)
}
}
// Create a future that creates the service
let service = self.service.clone();
Box::pin(async move {
let method: ExecuteSvc<T> = ExecuteSvc(service);
let codec: ProstCodec<_, _> = ProstCodec::default();
let mut grpc: GrpcServer<ProstCodec<_, _>> = GrpcServer::new(codec);
Ok(grpc.server_streaming(method, req).await)
})
},
// Incoming CommitRequest
"/job.JobService/Commit" => {
/// Helper struct for the given JobService that focusses specifically on this request.
struct CommitSvc<T>(Arc<T>);
impl<T: JobService> UnaryService<CommitRequest> for CommitSvc<T> {
type Future = BoxFuture<Response<Self::Response>, Status>;
type Response = CommitReply;
fn call(&mut self, req: Request<CommitRequest>) -> Self::Future {
// Return the service function as the future to run
let service = self.0.clone();
let fut = async move { (*service).commit(req).await };
Box::pin(fut)
}
}
// Create a future that creates the service
let service = self.service.clone();
Box::pin(async move {
let method: CommitSvc<T> = CommitSvc(service);
let codec: ProstCodec<_, _> = ProstCodec::default();
let mut grpc: GrpcServer<ProstCodec<_, _>> = GrpcServer::new(codec);
Ok(grpc.unary(method, req).await)
})
},
// Other (boring) request types
_ => {
// Return a future that simply does ¯\_(ツ)_/¯
Box::pin(async move {
Ok(http::Response::builder()
.status(200)
.header("grpc-status", "12")
.header("content-type", "application/grpc")
.body(empty_body())
.unwrap())
})
},
}
}
}
impl<T: JobService> NamedService for JobServiceServer<T> {
const NAME: &'static str = "job.JobService";
}