-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacade.py
53 lines (39 loc) · 1.16 KB
/
facade.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
41
42
43
44
45
46
47
48
49
50
51
52
53
# --------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2024, A.A Suvorov
# All rights reserved.
# --------------------------------------------------------
# https://github.com/smartlegionlab/
# --------------------------------------------------------
"""Facade"""
class Paper:
def __init__(self, count):
self._count = count
def get_count(self):
return self._count
def draw(self, text):
if self.get_count() > 0:
self._count -= 1
print(text)
class Printer:
@staticmethod
def error(msg):
print(f'Error: {msg}')
def print_(self, paper, text):
if paper.get_count() > 0:
paper.draw(text)
else:
self.error('paper out')
class Facade:
def __init__(self):
self._printer = Printer()
self._paper = Paper(1)
def write(self, text):
self._printer.print_(self._paper, text)
def main():
f = Facade()
f.write('Hello world!') # Hello world!
f.write('Hello world!') # Error: paper out
if __name__ == '__main__':
main()