forked from pkolt/design_patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prototype.py
40 lines (26 loc) · 1012 Bytes
/
prototype.py
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
# coding: utf-8
"""
Прототип - паттерн, порождающий объекты.
Задает виды создаваемых объектов с помощью экземпляра-прототипа
и создает новые объекты путем копирования этого прототипа.
"""
import copy
class Prototype(object):
def __init__(self):
self._objects = {}
def register(self, name, obj):
self._objects[name] = obj
def unregister(self, name):
del self._objects[name]
def clone(self, name, attrs):
obj = copy.deepcopy(self._objects[name])
obj.__dict__.update(attrs)
return obj
class Bird(object):
"""Птица"""
prototype = Prototype()
prototype.register('bird', Bird())
owl = prototype.clone('bird', {'name': 'Owl'})
print type(owl), owl.name # <class '__main__.Bird'> Owl
duck = prototype.clone('bird', {'name': 'Duck'})
print type(duck), duck.name # <class '__main__.Bird'> Duck