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
//! # Service execution utilities.
//!
//! Provides methods to start the server and handle the application

use config::{Config, MinimalConfig};
#[cfg(feature = "pgsql")]
use config::DefaultConfig;
#[cfg(feature = "pgsql")]
use database::{initialize_database_pool, test_database_connection};
use ErrorResult;
use rocket::Route;
use rocket::ignite;
use std::process;
use std::marker::PhantomData;
use config::EnvironmentConfigurable;

/*   -------------------------------------------------------------
     Service

     Allow to define config and routes. Launch a server.
     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

pub trait Service {
    fn get_config(&self) -> &dyn Config;

    fn get_routes(&self) -> &[Route];

    fn launch_server(&mut self) -> ErrorResult<()>;

    fn check_service_configuration(&self) -> ErrorResult<()>;

    fn run (&mut self) -> ErrorResult<()> {
        info!(target: "runner", "Server started.");

        {
            self.check_service_configuration()?
        }

        self.launch_server()?;

        Ok(())
    }
}

/*   -------------------------------------------------------------
     Default service

     Allow to define config and routes. Launch a server.
     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/// The default service offers a pgsql database connection with Diesel and r2d2.
#[cfg(feature = "pgsql")]
pub struct DefaultService {
    pub config: DefaultConfig,
    pub routes: Vec<Route>,
}

#[cfg(feature = "pgsql")]
impl Service for DefaultService {
    fn get_config(&self) -> &dyn Config { &self.config }

    fn get_routes(&self) -> &[Route] { self.routes.as_slice() }

    fn launch_server(&mut self) -> ErrorResult<()> {
        let config = self.get_config();
        let routes = self.get_routes();

        let mut server = ignite();

        if config.with_database() {
            server = server.manage(
                initialize_database_pool(config.get_database_url(), config.get_database_pool_size())?
            );
        }

        server
            .mount(config.get_entry_point(), routes.to_vec())
            .launch();

        Ok(())
    }

    fn check_service_configuration(&self) -> ErrorResult<()> {
        let config = self.get_config();
        if config.with_database() {
            test_database_connection(config.get_database_url())?;
            info!(target: "runner", "Connection to database established.");
        }

        Ok(())
    }
}

/*   -------------------------------------------------------------
     Minimal service

     Allow to define config and routes. Launch a server.
     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/// The minimal service allows to spawn a server without any extra feature.
pub struct MinimalService {
    pub config: MinimalConfig,
    pub routes: Vec<Route>,
}

impl Service for MinimalService {
    fn get_config(&self) -> &dyn Config { &self.config }

    fn get_routes(&self) -> &[Route] { self.routes.as_slice() }

    fn launch_server(&mut self) -> ErrorResult<()> {
        let config = self.get_config();
        let routes = self.get_routes();

        ignite()
            .mount(config.get_entry_point(), routes.to_vec())
            .launch();

        Ok(())
    }

    fn check_service_configuration(&self) -> ErrorResult<()> { Ok(()) }
}

/*   -------------------------------------------------------------
     Base application as concrete implementation

     :: Application
     :: sui generis implementation
     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/// The application structure allows to encapsulate the service into a CLI application.
///
/// The application takes care to run the service and quits with a correct exit code.
///
/// It also takes care of initialisation logic like parse the environment to extract
/// the configuration.
pub struct Application<U>
    where U: Config
{
    service: Box<dyn Service>,
    config_type: PhantomData<U>,
}

impl<U> Application<U>
    where U: Config + EnvironmentConfigurable
{
    pub fn new (config: U, routes: Vec<Route>) -> Self {
        Application {
            service: config.into_service(routes),
            config_type: PhantomData,
        }
    }

    /// Starts the application
    ///
    /// # Exit codes
    ///
    /// The software will exit with the following error codes:
    ///
    ///   - 0: Graceful exit (currently not in use, as the application never stops)
    ///   - 1: Error during the application run (e.g. routes conflict or Rocket fairings issues)
    ///   - 2: Error parsing the configuration (e.g. no database URL has been defined)
    pub fn start (&mut self) {
        info!(target: "runner", "Server initialized.");

        if let Err(error) = self.service.run() {
            error!(target: "runner", "{}", error);
            process::exit(1);
        }

        process::exit(0);
    }

    pub fn start_application (routes: Vec<Route>) {
        let config = <U>::parse_environment().unwrap_or_else(|_error| {
            process::exit(2);
        });

        let mut app = Application::new(config, routes);
        app.start();
    }
}

/*   -------------------------------------------------------------
     Default application

     :: Application
     :: sui generis implementation, wrapper for Application
     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/// The default application implements CLI program behavior to prepare a configuration from the
/// `DefaultConfig` implementation, test if it's possible to connect to the database, and if so,
/// launch a Rocket server.
///
/// # Examples
///
/// To run an application with some routes in a `requests` module:
///
/// ```
/// use limiting_factor::kernel::DefaultApplication;
/// use requests::*;
///
/// pub fn main () {
///     let routes = routes![
///         status,
///         favicon,
///         users::register,
///         users::get_player,
///     ];
///
///     DefaultApplication::start_application(routes);
/// }
/// ```
///
/// The default configuration will be used and the server started.
#[cfg(feature = "pgsql")]
pub struct DefaultApplication {}

#[cfg(feature = "pgsql")]
impl DefaultApplication {
    pub fn start_application (routes: Vec<Route>) {
        Application::<DefaultConfig>::start_application(routes);
    }
}

/*   -------------------------------------------------------------
     Minimal application

     :: Application
     :: sui generis implementation, wrapper for Application
     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

pub struct MinimalApplication {}

impl MinimalApplication {
    pub fn start_application (routes: Vec<Route>) {
        Application::<MinimalConfig>::start_application(routes);
    }
}