1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* PHP version 7.1 |
4
|
|
|
* |
5
|
|
|
* This source file is subject to the license that is bundled with this package in the file LICENSE. |
6
|
|
|
*/ |
7
|
|
|
namespace PhUml\Actions; |
8
|
|
|
|
9
|
|
|
use PhUml\Parser\CodeFinder; |
10
|
|
|
use PhUml\Parser\TokenParser; |
11
|
|
|
use PhUml\Processors\GraphvizProcessor; |
12
|
|
|
use PhUml\Processors\ImageProcessor; |
13
|
|
|
use Symfony\Component\Process\Exception\LogicException; |
14
|
|
|
|
15
|
|
|
class GenerateClassDiagram |
16
|
|
|
{ |
17
|
|
|
/** @var TokenParser */ |
18
|
|
|
private $parser; |
19
|
|
|
|
20
|
|
|
/** @var GraphvizProcessor */ |
21
|
|
|
private $dotProcessor; |
22
|
|
|
|
23
|
|
|
/** @var ImageProcessor */ |
24
|
|
|
private $imageProcessor; |
25
|
|
|
|
26
|
|
|
/** @var CanGenerateClassDiagram */ |
27
|
|
|
private $command; |
28
|
|
|
|
29
|
6 |
|
public function __construct(TokenParser $parser, GraphvizProcessor $dotProcessor) { |
30
|
6 |
|
$this->parser = $parser; |
31
|
6 |
|
$this->dotProcessor = $dotProcessor; |
32
|
6 |
|
} |
33
|
|
|
|
34
|
3 |
|
public function attach(CanGenerateClassDiagram $action): void |
35
|
|
|
{ |
36
|
3 |
|
$this->command = $action; |
37
|
3 |
|
} |
38
|
|
|
|
39
|
|
|
public function setImageProcessor(ImageProcessor $imageProcessor): void |
40
|
|
|
{ |
41
|
|
|
$this->imageProcessor = $imageProcessor; |
42
|
|
|
} |
43
|
|
|
|
44
|
6 |
|
public function generate(CodeFinder $finder, string $imagePath): void |
45
|
|
|
{ |
46
|
6 |
|
$this->command()->runningParser(); |
47
|
3 |
|
$structure = $this->parser->parse($finder); |
48
|
3 |
|
$this->command()->runningProcessor($this->dotProcessor); |
49
|
3 |
|
$dotLanguage = $this->dotProcessor->process($structure); |
50
|
3 |
|
$this->command()->runningProcessor($this->imageProcessor()); |
51
|
|
|
$image = $this->imageProcessor()->process($dotLanguage); |
52
|
|
|
$this->command()->savingResult(); |
53
|
|
|
$this->imageProcessor->writeToDisk($image, $imagePath); |
54
|
|
|
} |
55
|
|
|
|
56
|
6 |
|
private function command(): CanGenerateClassDiagram |
57
|
|
|
{ |
58
|
6 |
|
if (!$this->command) { |
59
|
3 |
|
throw new LogicException('No command was attached'); |
60
|
|
|
} |
61
|
3 |
|
return $this->command; |
62
|
|
|
} |
63
|
|
|
|
64
|
3 |
|
private function imageProcessor(): ImageProcessor |
65
|
|
|
{ |
66
|
3 |
|
if (!$this->imageProcessor) { |
67
|
3 |
|
throw new LogicException('No image processor was provided'); |
68
|
|
|
} |
69
|
|
|
return $this->imageProcessor; |
70
|
|
|
} |
71
|
|
|
} |
72
|
|
|
|