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
/*
 * Copyright 2020 UT OVERSEAS INC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
use std::sync::{Arc, Mutex};

use crate::concurrent::{agent_runner::Agent, logbuffer::term_reader::ErrorHandler};

pub struct AgentInvoker<T: Agent> {
    agent: Arc<Mutex<T>>,
    exception_handler: ErrorHandler,
    is_started: bool,
    is_running: bool,
    is_closed: bool,
}

impl<T: Agent> AgentInvoker<T> {
    pub fn new(agent: Arc<Mutex<T>>, exception_handler: ErrorHandler) -> Self {
        Self {
            agent,
            exception_handler,
            is_started: false,
            is_running: false,
            is_closed: false,
        }
    }

    /**
     * Has the Agent been started?
     *
     * @return has the Agent been started?
     */
    pub fn is_started(&self) -> bool {
        self.is_started
    }

    /**
     * Is the Agent running?
     *
     * @return is the Agent been started successfully and not closed?
     */
    pub fn is_running(&self) -> bool {
        self.is_running
    }

    /**
     * Has the Agent been closed?
     *
     * @return has the Agent been closed?
     */
    pub fn is_closed(&self) -> bool {
        self.is_closed
    }

    /**
     * Mark the invoker as started and call the Agent::onStart() method.
     * <p>
     * Startup logic will only be performed once.
     */
    pub fn start(&mut self) {
        if !self.is_started {
            self.is_started = true;
            let on_start_result = self.agent.lock().expect("Mutex poisoned").on_start();
            if let Err(error) = on_start_result {
                (self.exception_handler)(error);
                self.close();
            } else {
                self.is_running = true;
            }
        }
    }

    /**
     * Invoke the Agent::doWork() method and return the work count.
     *
     * If not successfully started or after closed then this method will return without invoking the {@link Agent}.
     *
     * @return the work count for the Agent::doWork() method.
     */
    pub fn invoke(&self) -> i32 {
        let mut work_count = 0;

        if self.is_running {
            match self.agent.lock().expect("Mutex poisoned").do_work() {
                Err(error) => (self.exception_handler)(error),
                Ok(wrk_cnt) => work_count = wrk_cnt,
            }
        }

        work_count
    }

    /**
     * Mark the invoker as closed and call the Agent::onClose() logic for clean up.
     *
     * The clean up logic will only be performed once.
     */
    pub fn close(&mut self) {
        if !self.is_closed {
            self.is_running = false;
            self.is_closed = true;
            if let Err(error) = self.agent.lock().expect("Mutex poisoned").on_close() {
                (self.exception_handler)(error);
            }
        }
    }
}