Merge pull request #8472 from annando/prevent-loop
[friendica.git/.git] / bin / wait-for-connection
1 #!/usr/bin/php
2 <?php
3 /**
4  * @copyright Copyright (C) 2020, Friendica
5  *
6  * @license GNU AGPL version 3 or any later version
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Affero General Public License as
10  * published by the Free Software Foundation, either version 3 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Affero General Public License for more details.
17  *
18  * You should have received a copy of the GNU Affero General Public License
19  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20  *
21  * This script tries to connect to a database for a given interval
22  * Useful in case of installation e.g. to wait for the database to not generate unnecessary errors
23  *
24  * Usage: php bin/wait-for-connection {HOST} {PORT} [{TIMEOUT}]
25  */
26
27 $timeout = 60;
28 switch ($argc) {
29         case 4:
30                 $timeout = (float)$argv[3];
31         case 3:
32                 $host = $argv[1];
33                 $port = (int)$argv[2];
34                 break;
35         default:
36                 fwrite(STDERR, 'Usage: '.$argv[0].' host port [timeout]'."\n");
37                 exit(2);
38 }
39 if ($timeout < 0) {
40         fwrite(STDERR, 'Timeout must be greater than zero'."\n");
41         exit(2);
42 }
43 if ($port < 1) {
44         fwrite(STDERR, 'Port must be an integer greater than zero'."\n");
45         exit(2);
46 }
47 $socketTimeout = (float)ini_get('default_socket_timeout');
48 if ($socketTimeout > $timeout) {
49         $socketTimeout = $timeout;
50 }
51 $stopTime = time() + $timeout;
52 do {
53         $sock = @fsockopen($host, $port, $errno, $errstr, $socketTimeout);
54         if ($sock !== false) {
55                 fclose($sock);
56                 fwrite(STDOUT, "\n");
57                 exit(0);
58         }
59         sleep(1);
60         fwrite(STDOUT, '.');
61 } while (time() < $stopTime);
62 fwrite(STDOUT, "\n");
63 exit(1);