show package info
[pharext/replicator.pharext.org] / bin / pecl+sig
1 #!/usr/bin/php -dphar.readonly=0
2 <?php
3
4 ini_set("display_errors", 0);
5 ini_set("log_errors", 1);
6
7 /* needed for the packager, so the pharstub task can find includes */
8 set_include_path(__DIR__."/../vendor/m6w6/pharext/src:".get_include_path());
9
10 $what = !empty($argv[1]) ? $argv[1] : "latest";
11 $pids = [];
12
13 function skip($skp) {
14 $dir = dirname($skp);
15 if (is_dir($dir) || mkdir(dirname($skp), 0755, true)) {
16 touch($skp);
17 }
18 }
19
20 function fail($pkg, $ver, $skp, $fmt) {
21 $msg = call_user_func_array("sprintf", array_slice(func_get_args(), 3));
22 fprintf(STDERR, "FAILURE: %s-%s, %s; skipping next time\n", $pkg, $ver, $msg);
23 skip($skp);
24 }
25
26 function sign($pkg, $ext) {
27 $fmt = "%s/%s-sign %s %s";
28 foreach (["rsa", "gpg"] as $sig) {
29 passthru(sprintf($fmt, __DIR__, $sig, $pkg, $ext));
30 }
31 }
32
33 function info($pkg, $dir) {
34 $inf = file_get_contents("https://pecl.php.net/rest/p/$pkg/info.xml");
35 if ($inf) {
36 file_put_contents("$dir/info.xml", $inf);
37 }
38 }
39
40 function wait(&$pids) {
41 $status = null;
42 switch ($pid = pcntl_wait($status)) {
43 case -1:
44 // meh
45 break;
46 default:
47 extract($pids[$pid]);
48 unset($pids[$pid]);
49 if (pcntl_wifexited($status) && ($rc = pcntl_wexitstatus($status))) {
50 fail($pkg, $ver, $skp, "exit code: %d", $rc);
51 } elseif (pcntl_wifsignaled($status) && ($rc = pcntl_wtermsig($status))) {
52 fail($pkg, $ver, $skp, "signal: %d", $rc);
53 } else {
54 printf("SUCCESS: %s-%s\n", $pkg, $ver);
55 /* create skipfile, ensuring we do not build a package with
56 * different name in registry/package.xml again
57 */
58 skip($skp);
59 /* create signatures */
60 sign($pkg, $ext);
61 }
62 break;
63 }
64 return $pid > 0;
65 };
66
67 function work($url, $dir) {
68 is_dir($dir) || mkdir($dir, 0777, true);
69 require_once __DIR__."/../vendor/autoload.php";
70 $packager = new pharext\Packager;
71 $packager->run(5, [
72 $_SERVER["argv"][0],
73 "-qps",
74 $url,
75 "-Zzd",
76 $dir
77 ]);
78 };
79
80 if (($sxe = simplexml_load_file("https://pecl.php.net/feeds/$what.rss"))) {
81 foreach ($sxe->item as $item) {
82 list($pkg, $ver) = explode(" ", (string) $item->title);
83 $url = sprintf("https://pecl.php.net/get/%s/%s", $pkg, $ver);
84 $skp = sprintf("%s/../skip/%s/%s", __DIR__, $pkg, $ver);
85 $ext = sprintf("%s/../public/phars/%s/%s-%s.ext.phar", __DIR__, $pkg, $pkg, $ver);
86 $dir = dirname($ext);
87
88 if (!is_file($skp) && !is_file($ext)) {
89 switch ($pid = pcntl_fork()) {
90 case -1:
91 exit;
92 case 0:
93 work($url, $dir);
94 info($pkg, $dir);
95 exit;
96 default:
97 $pids[$pid] = compact("url", "pkg", "ver", "skp", "ext", "dir");
98 break;
99 }
100 }
101
102 if (count($pids) > 5) {
103 wait($pids);
104 }
105 }
106 while (wait($pids))
107 ;
108
109 }
110
111