-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
88 lines (70 loc) · 1.56 KB
/
main.go
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
package main
import (
"fmt"
"github.com/bluejack17-1/go-dpattern/behavioral"
"github.com/bluejack17-1/go-dpattern/behavioral/observer"
"github.com/bluejack17-1/go-dpattern/creational"
"github.com/bluejack17-1/go-dpattern/structural"
adapter2 "github.com/bluejack17-1/go-dpattern/structural/adapter"
)
func main() {
//singleton()
//builder()
//factory()
//adapter()
//strategy()
//decorator()
//templateMethod()
observable()
}
func singleton() {
a := creational.GetInstance()
b := creational.GetInstance()
fmt.Println(&a, &b)
}
func builder() {
q := &creational.Query{}
qs := q.
From("users").
Select("id", "name", "role").
Where("role", "=", "creator").
OrWhere("name", "ILIKE", "a%").
Build()
fmt.Println(qs)
}
func factory() {
storage := creational.NewStorage("postgres")
storage.Open()
}
func adapter() {
cart1 := adapter2.ShopingCart{
PaymentMethod: adapter2.PaypalAdapter{Paypal: adapter2.PaypalPayment{}},
}
cart2 := adapter2.ShopingCart{
PaymentMethod: adapter2.BankAdapter{Bank: adapter2.BankPayment{}},
}
cart1.PaymentMethod.Pay("A", "B", 10000)
fmt.Println("")
cart2.PaymentMethod.Pay("C", "D", 50000)
}
func strategy() {
impl := behavioral.Implementation{
ReportStrat: behavioral.PDF{},
}
impl.Export()
}
func decorator() {
structural.LogDecorator(func () {
for i := 0 ; i < 100 ; i++ {
fmt.Println( i )
}
})()
}
func templateMethod() {
exporter := behavioral.NewExporter(behavioral.TemplateImpl{})
exporter.ExportReport()
}
func observable() {
service := observer.NewCheckoutService()
service.Checkout()
}