File size: 1,061 Bytes
9552aa0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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::sync::Arc;

use super::preforked_process_pool::PreforkedProcessPool;

pub struct WsgidApplicationWrap {
  pub domain: Option<String>,
  pub ip: Option<String>,
  pub wsgi_process_pool: Option<Arc<PreforkedProcessPool>>,
  pub wsgi_path: Option<String>,
  pub locations: Vec<WsgidApplicationLocationWrap>,
}

impl WsgidApplicationWrap {
  pub fn new(
    domain: Option<String>,
    ip: Option<String>,
    wsgi_process_pool: Option<Arc<PreforkedProcessPool>>,
    wsgi_path: Option<String>,
    locations: Vec<WsgidApplicationLocationWrap>,
  ) -> Self {
    Self {
      domain,
      ip,
      wsgi_process_pool,
      wsgi_path,
      locations,
    }
  }
}

pub struct WsgidApplicationLocationWrap {
  pub path: String,
  pub wsgi_process_pool: Arc<PreforkedProcessPool>,
  pub wsgi_path: Option<String>,
}

impl WsgidApplicationLocationWrap {
  pub fn new(
    path: String,
    wsgi_process_pool: Arc<PreforkedProcessPool>,
    wsgi_path: Option<String>,
  ) -> Self {
    Self {
      path,
      wsgi_process_pool,
      wsgi_path,
    }
  }
}