forked from schmittjoh/JMSTranslationBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExtractorManager.php
153 lines (130 loc) · 4.49 KB
/
ExtractorManager.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
/*
* Copyright 2011 Johannes M. Schmitt <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace JMS\TranslationBundle\Translation;
use JMS\TranslationBundle\Exception\InvalidArgumentException;
use Psr\Log\LoggerInterface;
use JMS\TranslationBundle\Model\MessageCatalogue;
use JMS\TranslationBundle\Translation\Extractor\FileExtractor;
use JMS\TranslationBundle\Logger\LoggerAwareInterface;
class ExtractorManager implements ExtractorInterface
{
private $fileExtractor;
private $customExtractors;
private $directories = array();
private $enabledExtractors = array();
private $logger;
/**
* @param Extractor\FileExtractor $extractor
* @param LoggerInterface $logger
* @param array $customExtractors
*/
public function __construct(FileExtractor $extractor, LoggerInterface $logger, array $customExtractors = array())
{
$this->fileExtractor = $extractor;
$this->customExtractors = $customExtractors;
$this->logger = $logger;
}
public function reset()
{
$this->directories = array();
$this->enabledExtractors = array();
$this->fileExtractor->reset();
}
/**
* @param LoggerInterface $logger
*/
public function setLogger(LoggerInterface $logger)
{
$this->logger = $logger;
$this->fileExtractor->setLogger($logger);
foreach ($this->customExtractors as $extractor) {
if (!$extractor instanceof LoggerAwareInterface) {
continue;
}
$extractor->setLogger($logger);
}
}
/**
* @param array $directories
*/
public function setDirectories(array $directories)
{
$this->directories = array();
foreach ($directories as $dir) {
$this->addDirectory($dir);
}
}
/**
* @param $directory
* @throws \JMS\TranslationBundle\Exception\InvalidArgumentException
*/
public function addDirectory($directory)
{
if (!is_dir($directory)) {
throw new InvalidArgumentException(sprintf('The directory "%s" does not exist.', $directory));
}
$this->directories[] = $directory;
}
/**
* @param array $dirs
*/
public function setExcludedDirs(array $dirs)
{
$this->fileExtractor->setExcludedDirs($dirs);
}
/**
* @param array $names
*/
public function setExcludedNames(array $names)
{
$this->fileExtractor->setExcludedNames($names);
}
/**
* @param array $aliases
* @throws \JMS\TranslationBundle\Exception\InvalidArgumentException
*/
public function setEnabledExtractors(array $aliases)
{
foreach ($aliases as $alias => $true) {
if (!isset($this->customExtractors[$alias])) {
throw new InvalidArgumentException(sprintf('There is no extractor with alias "%s". Available extractors: %s', $alias, $this->customExtractors ? implode(', ', array_keys($this->customExtractors)) : '# none #'));
}
}
$this->enabledExtractors = $aliases;
}
/**
* @return \JMS\TranslationBundle\Model\MessageCatalogue
*/
public function extract()
{
$catalogue = new MessageCatalogue();
foreach ($this->directories as $directory) {
$this->logger->info(sprintf('Extracting messages from directory : %s', $directory));
$this->fileExtractor->setDirectory($directory);
$catalogue->merge($this->fileExtractor->extract());
}
foreach ($this->customExtractors as $alias => $extractor) {
if (!isset($this->enabledExtractors[$alias])) {
$this->logger->debug(sprintf('Skipping custom extractor "%s" as it is not enabled.', $alias));
continue;
}
$this->logger->info(sprintf('Extracting messages with custom extractor : %s', $alias));
$catalogue->merge($extractor->extract());
}
return $catalogue;
}
}