Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update composite.py #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 24 additions & 21 deletions composite.py
Original file line number Diff line number Diff line change
@@ -1,36 +1,39 @@
class Component(object):
def __init__(self, *args, **kw):
pass
import abc


class ComponentInterface(object):
__metaclass__ = abc.ABCMeta

@abc.abstractmethod
def component_function(self):
pass


class Leaf(Component):
def __init__(self, *args, **kw):
Component.__init__(self, *args, **kw)
class Leaf(ComponentInterface):
def __init__(self, number):
self.number = number

def component_function(self):
print "some function"
print("i'm leaf number: {}".format(self.number))


class Composite(Component):
def __init__(self, *args, **kw):
Component.__init__(self, *args, **kw)
self.children = []
class Composite(ComponentInterface):
def __init__(self):
self._children = set()

def append_child(self, child):
self.children.append(child)
self._children.add(child)

def remove_child(self, child):
self.children.remove(child)
self._children.remove(child)

def component_function(self):
map(lambda x: x.component_function(), self.children)

c = Composite()
l = Leaf()
l_two = Leaf()
c.append_child(l)
c.append_child(l_two)
c.component_function()
for child in self._children:
child.component_function()


if __name__ == '__main__':
composite = Composite()
for number in range(2):
composite.append_child(Leaf(number))
composite.component_function()