-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathTasks.php
More file actions
194 lines (164 loc) · 4.98 KB
/
Tasks.php
File metadata and controls
194 lines (164 loc) · 4.98 KB
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<?php
use packager\cli\Console;
use packager\JavaExec;
use php\io\IOException;
use php\io\Stream;
use php\lang\System;
use php\lib\arr;
use php\lib\fs;
class Tasks
{
/**
* @param string $name
* @param array $args
* @param array $flags
*/
static function run(string $name, array $args = [], ...$flags)
{
global $app;
$app->invokeTask($name, $args, ...arr::combine($flags, $flags));
}
/**
* @param string $dir
* @param string $name
* @param array $args
* @param array ...$flags
*/
static function runExternal(string $dir, string $name, array $args = [], ...$flags)
{
Console::log("-> {0} for '{1}'", $name, $dir);
$exec = new JavaExec();
$exec->addClassPath(System::getProperty("jppm.home") . "/packager-all.jar");
$exec->addClassPath(System::getProperty("jppm.home") . "/buildSrc");
$array = flow([$name], $args, flow($flags)->map(function ($e) {
return "-$e";
}))->toArray();
$process = $exec->run($array, $dir);
$process = $process->inheritIO()->startAndWait();
if ($process->getExitValue() != 0) {
exit($process->getExitValue());
}
}
/**
* Copy file or directory.
*
* @param string $path
* @param string $intoDir
* @param bool $ignoreErrs
*/
static function copy(string $path, string $intoDir, bool $ignoreErrs = false)
{
if (fs::isFile($path)) {
if (fs::copy($path, "$intoDir/" . fs::name($path), 1024 * 128) < 0) {
Console::error("Failed to copy file '{0}' into dir '{1}'", $path, $intoDir);
if (!$ignoreErrs) {
exit(-1);
}
}
} else if (fs::isDir($path)) {
fs::scan($path, function ($file) use ($path, $intoDir, $ignoreErrs) {
$name = fs::relativize($file, $path);
if (fs::isDir($file)) {
fs::makeDir("$intoDir/$name");
return;
}
fs::ensureParent("$intoDir/$name");
if (fs::copy($file, "$intoDir/$name", 1024 * 128) < 0) {
Console::error("Failed to copy file '{0}' into dir '{1}'", $path, $intoDir);
if (!$ignoreErrs) {
exit(-1);
}
}
});
}
}
/**
* @param string $path
* @param string $content
* @param bool $ignoreErrs
* @return bool
*/
static function createFile(string $path, string $content = '', bool $ignoreErrs = false): bool
{
Console::log("-> create new file '{0}'", $path);
try {
fs::ensureParent($path);
Stream::putContents($path, $content);
return true;
} catch (IOException $e) {
Console::error("Failed to create file '{0}', cause = {1}", $path, $e->getMessage());
if (!$ignoreErrs) {
exit(-1);
}
return false;
}
}
/**
* @param string $path
* @param bool $ignoreErrs
* @return bool
*/
static function deleteFile(string $path, bool $ignoreErrs = true): bool
{
if (fs::exists($path)) {
Console::log("-> delete file '{0}'", $path);
if (fs::delete($path)) {
return true;
} else {
Console::error("Failed to delete file '{0}'", $path);
if (!$ignoreErrs) {
exit(-1);
}
return false;
}
}
return true;
}
/**
* @param string $path
* @param array $filter
* @param bool $ignoreErrs
* @return bool
*/
static function cleanDir(string $path, array $filter = [], bool $ignoreErrs = false): bool
{
if (fs::isDir($path)) {
Console::log("-> clean dir '{0}'", $path);
$result = fs::clean($path, $filter);
if (!$result['error']) {
return true;
} else {
Console::error("Failed to clean dir '{0}'", $path);
foreach ($result['error'] as $file) {
Console::log("--> unable to delete file '{0}'", $file);
}
if (!$ignoreErrs) {
exit(-1);
}
return false;
}
}
return true;
}
/**
* @param string $path
* @param bool $ignoreErrs
* @return bool
*/
static function createDir(string $path, bool $ignoreErrs = false): bool
{
if (fs::isDir($path)) {
return true;
}
Console::log("-> create dir '{0}'", $path);
if (fs::makeDir($path)) {
return true;
} else {
Console::error("Failed to create dir '{0}'", $path);
if (!$ignoreErrs) {
exit(-1);
}
return false;
}
}
}