blob: e7fa1af263215a4328e83f0562e013a6e5cb4f50 (
plain) (
blame)
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
|
<?php
/**
* This file is part of the Twig Gettext utility.
*
* (c) Саша Стаменковић <umpirsky@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Twig\Gettext;
use Symfony\Component\Filesystem\Filesystem;
/**
* Extracts translations from twig templates.
*
* @author Саша Стаменковић <umpirsky@gmail.com>
*/
class Extractor
{
/**
* @var \Twig_Environment
*/
protected $environment;
/**
* Template cached file names.
*
* @var string[]
*/
protected $templates;
/**
* Gettext parameters.
*
* @var string[]
*/
protected $parameters;
public function __construct(\Twig_Environment $environment)
{
$this->environment = $environment;
$this->reset();
}
protected function reset()
{
$this->templates = array();
$this->parameters = array();
}
public function addTemplate($path)
{
$this->environment->loadTemplate($path);
$this->templates[] = $this->environment->getCacheFilename($path);
}
public function addGettextParameter($parameter)
{
$this->parameters[] = $parameter;
}
public function setGettextParameters(array $parameters)
{
$this->parameters = $parameters;
}
public function extract()
{
$command = 'xgettext';
$command .= ' '.join(' ', $this->parameters);
$command .= ' '.join(' ', $this->templates);
$error = 0;
$output = system($command, $error);
if (0 !== $error) {
throw new \RuntimeException(sprintf(
'Gettext command "%s" failed with error code %s and output: %s',
$command,
$error,
$output
));
}
$this->reset();
}
public function __destruct()
{
$filesystem = new Filesystem();
$filesystem->remove($this->environment->getCache());
}
}
|