Skip to content

Commit 43e8c2d

Browse files
committed
patterns
1 parent dbefb3c commit 43e8c2d

21 files changed

+509
-55
lines changed

behavioral/Interpreter/interpreter.go

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
package Interpreter
2+
3+
import "strings"
4+
5+
type Expression interface {
6+
Interpret(variables map[string]Expression) int
7+
}
8+
9+
type Integer struct {
10+
integer int
11+
}
12+
13+
func (n *Integer) Interpret(variables map[string]Expression) int{
14+
return n.integer
15+
}
16+
17+
type Plus struct {
18+
leftOperand Expression
19+
rightOperand Expression
20+
}
21+
22+
func (p *Plus) Interpret(variables map[string]Expression) int{
23+
return p.leftOperand.Interpret(variables) + p.rightOperand.Interpret(variables)
24+
}
25+
26+
func (e *Evaluator) Interpret(context map[string]Expression) int {
27+
return e.syntaxTree.Interpret(context)
28+
}
29+
30+
type Variable struct {
31+
name string
32+
}
33+
34+
type Node struct {
35+
value interface{}
36+
next *Node
37+
}
38+
39+
type Stack struct {
40+
top *Node
41+
size int
42+
}
43+
44+
func (s *Stack) Push(value interface{}) {
45+
s.top= &Node{
46+
value: value,
47+
next: s.top,
48+
}
49+
s.size++
50+
}
51+
52+
func (v *Variable) Interpret(variables map[string]Expression) int{
53+
value,found := variables[v.name]
54+
if !found{
55+
return 0
56+
}
57+
return value.Interpret(variables)
58+
}
59+
60+
func (s *Stack) Pop() interface{} {
61+
if s.size==0{
62+
return nil
63+
}
64+
value:= s.top.value
65+
s.top=s.top.next
66+
s.size--
67+
return value
68+
}
69+
70+
type Evaluator struct {
71+
syntaxTree Expression
72+
}
73+
74+
75+
76+
func NewEvaluator(expression string) *Evaluator{
77+
expressionStack := new(Stack)
78+
for _,token := range strings.Split(expression," "){
79+
switch token {
80+
case "+":
81+
right := expressionStack.Pop().(Expression)
82+
left := expressionStack.Pop().(Expression)
83+
subExpression := &Plus{left,right}
84+
expressionStack.Push(subExpression)
85+
default:
86+
expressionStack.Push(&Variable{token})
87+
}
88+
}
89+
syntaxTree := expressionStack.Pop().(Expression)
90+
return &Evaluator{syntaxTree:syntaxTree}
91+
}
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package Interpreter
2+
3+
import (
4+
"github.com/stretchr/testify/assert"
5+
"testing"
6+
)
7+
8+
func TestInterpreter(t *testing.T) {
9+
expression := "w x z +"
10+
sentence := NewEvaluator(expression)
11+
variables := make(map[string]Expression)
12+
variables["w"] = &Integer{6}
13+
variables["x"] = &Integer{10}
14+
variables["z"] = &Integer{41}
15+
result := sentence.Interpret(variables)
16+
assert.Equal(t, 51,result)
17+
}

behavioral/Mediator/mediator.go

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
package Mediator
2+
3+
import "fmt"
4+
5+
type Mediator interface {
6+
Communicate(who string)
7+
}
8+
9+
type WildStallion interface{
10+
SetMediator(mediator Mediator)
11+
}
12+
13+
type Bill struct {
14+
mediator Mediator
15+
}
16+
17+
func (b *Bill) SetMediator(mediator Mediator){
18+
b.mediator=mediator
19+
}
20+
21+
func (b *Bill) Respond(){
22+
fmt.Println( "Bill: What?")
23+
b.mediator.Communicate("Bill")
24+
}
25+
26+
type Ted struct {
27+
mediator Mediator
28+
}
29+
30+
func (t *Ted) Talk(){
31+
fmt.Println("Ted: Bill?")
32+
t.mediator.Communicate("Ted")
33+
}
34+
35+
func (t *Ted) SetMediator(mediator Mediator){
36+
t.mediator=mediator
37+
}
38+
39+
func(t *Ted) Respond(){
40+
fmt.Println("Ted: Strange things are afoot at the Circle K.")
41+
}
42+
43+
type ConcreteMediator struct {
44+
Bill
45+
Ted
46+
}
47+
48+
func NewMediator() *ConcreteMediator{
49+
mediator:=&ConcreteMediator{}
50+
mediator.Bill.SetMediator(mediator)
51+
mediator.Ted.SetMediator(mediator)
52+
return mediator
53+
}
54+
55+
func (m *ConcreteMediator) Communicate(who string) {
56+
if who=="Ted"{
57+
m.Bill.Respond()
58+
}else{
59+
m.Ted.Respond()
60+
}
61+
}
62+
63+

behavioral/Mediator/mediator_test.go

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package Mediator
2+
3+
import "testing"
4+
5+
func TestMediator(t *testing.T) {
6+
mediator:=NewMediator()
7+
mediator.Ted.Talk()
8+
9+
}

behavioral/Memento/memento.go

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package Memento
2+
3+
type Memento struct {
4+
state int
5+
}
6+
7+
func NewMemento(value int) *Memento {
8+
return &Memento{value}
9+
}
10+
11+
type Number struct {
12+
value int
13+
}
14+
15+
func NewNUmber(value int) *Number {
16+
return &Number{value: value}
17+
}
18+
19+
func (n *Number) Double() {
20+
n.value = 2 * n.value
21+
}
22+
23+
func (n *Number) Half() {
24+
n.value /= 2
25+
}
26+
27+
func (n *Number) Value() int {
28+
return n.value
29+
}
30+
31+
func (n *Number) CreateMemento() *Memento{
32+
return NewMemento(n.value)
33+
}
34+
35+
func (n *Number) ReinstateMemento(memento *Memento){
36+
n.value=memento.state
37+
}

behavioral/Memento/memento_test.go

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package Memento
2+
3+
import "testing"
4+
5+
func TestMemento(t *testing.T) {
6+
n:= NewNUmber(10)
7+
n.Double()
8+
memento:=n.CreateMemento()
9+
n.Half()
10+
n.ReinstateMemento(memento)
11+
}

behavioral/State/state.go

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
package State
2+
3+
import "fmt"
4+
5+
type State interface {
6+
On(m *Machine)
7+
Off(m *Machine)
8+
}
9+
10+
type Machine struct {
11+
current State
12+
}
13+
14+
func NewMachine() *Machine{
15+
return &Machine{NewOFF()}
16+
}
17+
18+
func (m *Machine) setCurrent(s State){
19+
m.current=s
20+
}
21+
22+
func (m *Machine) On(){
23+
m.current.On(m)
24+
}
25+
26+
func (m *Machine) Off() {
27+
m.current.Off(m)
28+
}
29+
30+
type ON struct {
31+
32+
}
33+
34+
func NewON() State {
35+
return &ON{}
36+
}
37+
38+
func (o *ON) On(m *Machine){
39+
fmt.Println("已经开启")
40+
}
41+
42+
func (o *ON) Off(m *Machine){
43+
fmt.Println("从On的状态到Off")
44+
m.setCurrent(NewOFF())
45+
}
46+
47+
type OFF struct {
48+
49+
}
50+
51+
func NewOFF() State{
52+
return &OFF{}
53+
}
54+
55+
func (o *OFF) On(m *Machine){
56+
fmt.Println("从OFF的状态到ON")
57+
m.setCurrent(NewON())
58+
}
59+
60+
func (o *OFF) Off(m *Machine){
61+
fmt.Println("已经关闭")
62+
}
63+

behavioral/State/state_test.go

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package State
2+
3+
import "testing"
4+
5+
func TestState(t *testing.T) {
6+
machine := NewMachine()
7+
machine.Off()
8+
machine.On()
9+
machine.On()
10+
machine.Off()
11+
}

behavioral/Strategy/strategry.go

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
package strategy
2+
3+
import "fmt"
4+
5+
type Strategy interface {
6+
Execute()
7+
}
8+
9+
type strategyA struct {
10+
11+
}
12+
13+
func (s *strategyA) Execute(){
14+
fmt.Println("A plan executed.")
15+
}
16+
17+
func NewStrategyA() Strategy{
18+
return &strategyA{}
19+
}
20+
21+
type strategyB struct {
22+
23+
}
24+
func (s *strategyB) Execute(){
25+
fmt.Println("B plan executed.")
26+
}
27+
28+
func NewStrategyB() Strategy {
29+
return &strategyB{}
30+
}
31+
32+
type Context struct {
33+
strategy Strategy
34+
}
35+
36+
func NewContext() *Context{
37+
return &Context{}
38+
}
39+
40+
func (c *Context) SetStrategy(strategy Strategy){
41+
c.strategy=strategy
42+
}
43+
44+
func (c *Context) Execute(){
45+
c.strategy.Execute()
46+
}

behavioral/Strategy/strategy_test.go

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package strategy
2+
3+
import "testing"
4+
5+
func TestContext_Execute(t *testing.T) {
6+
strategyA:= NewStrategyA()
7+
c:=NewContext()
8+
c.SetStrategy(strategyA)
9+
c.Execute()
10+
11+
strategyB := NewStrategyB()
12+
c.SetStrategy(strategyB)
13+
c.Execute()
14+
}

0 commit comments

Comments
 (0)