From f0beca6ab431aa60eaebd026f378b14a753c86ad Mon Sep 17 00:00:00 2001 From: inux Date: Thu, 3 Aug 2017 20:11:06 +0200 Subject: [PATCH] adding abstract-factory.go & abstract-factory.md --- creational/abstract-factory.go | 86 ++++++++++++++++++++++++++++++++++ creational/abstract-factory.md | 7 +++ 2 files changed, 93 insertions(+) create mode 100644 creational/abstract-factory.go create mode 100644 creational/abstract-factory.md diff --git a/creational/abstract-factory.go b/creational/abstract-factory.go new file mode 100644 index 0000000..c8889ca --- /dev/null +++ b/creational/abstract-factory.go @@ -0,0 +1,86 @@ +//Source code adapted from https://en.wikipedia.org/wiki/Abstract_factory_pattern +//Added "otherOS" in case this code is executed on other os than windows, mac os x +package main + +import ( + "fmt" + "runtime" +) + +type iButton interface { + paint() +} + +type iGUIFactory interface { + createButton() iButton +} + +type winFactory struct { +} + +func (WF *winFactory) createButton() iButton { + return newWinButton() +} + +type osxFactory struct { +} + +func (WF *osxFactory) createButton() iButton { + return newOSXButton() +} + +type otherOSFactory struct { +} + +func (WF *otherOSFactory) createButton() iButton { + return newOtherOSButton() +} + +type winButton struct { +} + +func (wb *winButton) paint() { + fmt.Println("WinButton") +} + +func newWinButton() *winButton { + return &winButton{} +} + +type osxButton struct { +} + +func (ob *osxButton) paint() { + fmt.Println("OSXButton") +} + +func newOSXButton() *osxButton { + return &osxButton{} +} + +type otherOSButton struct { +} + +func (ob *otherOSButton) paint() { + fmt.Println("OtherOSButton") +} + +func newOtherOSButton() *otherOSButton { + return &otherOSButton{} +} + +func main() { + var factory iGUIFactory + + switch runtime.GOOS { + case "windows": + factory = &winFactory{} + case "darwin": + factory = &osxFactory{} + default: + factory = &otherOSFactory{} + } + + button := factory.createButton() + button.paint() +} diff --git a/creational/abstract-factory.md b/creational/abstract-factory.md new file mode 100644 index 0000000..18274bf --- /dev/null +++ b/creational/abstract-factory.md @@ -0,0 +1,7 @@ +# Abstract Factory Pattern + +The [abstract factory design pattern](https://en.wikipedia.org/wiki/Abstract_factory_pattern) provides an interface for creating families of releated objects + +# Implementation and Example + +An example with implementation and usage can be found in [abstract_factory.go](abstract_factory.go). \ No newline at end of file