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
use std::{
    fmt::Debug,
    pin::Pin,
    task::{Context, Poll},
};

use actix::clock::Instant;
use futures::Future;
use tower::Service;

use crate::{error::JobError, job::Job, request::JobRequest, response::JobResult};

/// Represents the default [JobService].
/// Used to spawn all jobs that implement [Job]
#[derive(Clone)]
pub struct JobService;

impl<Request> Service<JobRequest<Request>> for JobService
where
    Request: Debug + Job + 'static,
{
    type Response = JobResult;
    type Error = JobError;
    type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + 'static>>;

    fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        Poll::Ready(Ok(()))
    }

    fn call(&mut self, job: JobRequest<Request>) -> Self::Future {
        let id = job.id();
        let fut = async move {
            let now = Instant::now();
            log::debug!(
                target: Request::name(),
                "JobService: [{}] ready for processing.",
                id
            );
            let res = job.do_handle().await;
            log::debug!(
                "JobService: [{}] completed in {} μs",
                id,
                now.elapsed().as_micros()
            );

            res
        };
        Box::pin(fut)
    }
}