forked from ezimuel/PHP-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Facade.php
60 lines (52 loc) · 1.31 KB
/
Facade.php
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
54
55
56
57
58
59
60
<?php
/**
* Facade design pattern (example of implementation)
*
* @author Enrico Zimuel ([email protected])
* @see http://en.wikipedia.org/wiki/Facade_pattern
*/
class CPU {
public function freeze() {
echo "Freeze the CPU\n";
}
public function jump($address) {
echo "Jump to $address\n";
}
public function execute() {
echo "Execute\n";
}
}
class Memory {
public function load($address, $data) {
echo "Loading address $address with data: $data\n";
}
}
class Disk {
public function read($sector, $size) {
return "data from sector $sector ($size)";
}
}
// Facade
class Computer {
const BOOT_ADDRESS = 0;
const BOOT_SECTOR = 1;
const SECTOR_SIZE = 16;
protected $cpu;
protected $mem;
protected $hd;
public function __construct(CPU $cpu, Memory $mem, Disk $hd) {
$this->cpu = $cpu;
$this->mem = $mem;
$this->hd = $hd;
}
public function startComputer() {
$this->cpu->freeze();
$this->mem->load(self::BOOT_ADDRESS,
$this->hd->read(self::BOOT_SECTOR, self::SECTOR_SIZE));
$this->cpu->jump(self::BOOT_ADDRESS);
$this->cpu->execute();
}
}
// Usage example
$pc = new Computer(new CPU, new Memory, new Disk);
$pc->startComputer();