-
Notifications
You must be signed in to change notification settings - Fork 111
/
abstract_factory.rs
87 lines (75 loc) · 1.96 KB
/
abstract_factory.rs
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
//! Abstract Factory is a creational design pattern that lets you produce families of related objects without specifying their concrete classes.
trait GUIFactory {
fn create_button(&self) -> Box<dyn Button>;
fn create_checkbox(&self) -> Box<dyn Checkbox>;
}
struct WinFactory;
impl GUIFactory for WinFactory {
fn create_button(&self) -> Box<dyn Button> {
Box::new(WinButton {})
}
fn create_checkbox(&self) -> Box<dyn Checkbox> {
Box::new(WinCheckbox {})
}
}
struct MacFactory;
impl GUIFactory for MacFactory {
fn create_button(&self) -> Box<dyn Button> {
Box::new(MacButton {})
}
fn create_checkbox(&self) -> Box<dyn Checkbox> {
Box::new(MacCheckbox {})
}
}
trait Button {
fn paint(&self);
}
struct WinButton;
impl Button for WinButton {
fn paint(&self) {
println!("windows os button");
}
}
struct MacButton;
impl Button for MacButton {
fn paint(&self) {
println!("mac os button");
}
}
trait Checkbox {
fn paint(&self);
}
struct WinCheckbox;
impl Checkbox for WinCheckbox {
fn paint(&self) {
println!("windows os checkbox");
}
}
struct MacCheckbox;
impl Checkbox for MacCheckbox {
fn paint(&self) {
println!("mac os checkbox");
}
}
struct Application;
impl Application {
fn new_gui_factory(os: &str) -> Box<dyn GUIFactory> {
match os {
"mac" => Box::new(MacFactory {}),
"win" => Box::new(WinFactory {}),
_ => panic!("error"),
}
}
}
fn main() {
let mac_app = Application::new_gui_factory("mac");
let btn = mac_app.create_button();
btn.paint(); // output: mac os button
let cb = mac_app.create_checkbox();
cb.paint(); // output: mac os checkbox
let win_app = Application::new_gui_factory("win");
let btn = win_app.create_button();
btn.paint(); // output: windows os button
let cb = win_app.create_checkbox();
cb.paint(); // output: windows os checkbox
}