4 function getCmdOpt($aArg, $aSpec, &$aResult, $bExitOnError = false, $bExitOnUnknown = false)
9 foreach ($aSpec as $aLine) {
10 if (is_array($aLine)) {
11 if ($aLine[0]) $aQuick['--'.$aLine[0]] = $aLine;
12 if ($aLine[1]) $aQuick['-'.$aLine[1]] = $aLine;
13 $aCounts[$aLine[0]] = 0;
19 $iSize = count($aArg);
20 for ($i = 1; $i < $iSize; $i++) {
21 if (isset($aQuick[$aArg[$i]])) {
22 $aLine = $aQuick[$aArg[$i]];
23 $aCounts[$aLine[0]]++;
25 if ($aLine[4] == $aLine[5]) {
28 for ($n = $aLine[4]; $i < $iSize && $n; $n--) {
30 if ($i >= $iSize || $aArg[$i][0] == '-') showUsage($aSpec, $bExitOnError, 'Parameter of \''.$aLine[0].'\' is missing');
34 $xVal[] = realpath($aArg[$i]);
37 $sPath = realpath(dirname($aArg[$i]));
39 $xVal[] = $sPath . '/' . basename($aArg[$i]);
45 $xVal[] = (bool)$aArg[$i];
48 $xVal[] = (int)$aArg[$i];
51 $xVal[] = (float)$aArg[$i];
58 if ($aLine[4] == 1) $xVal = $xVal[0];
63 fail('Variable numbers of params not yet supported');
67 if (!array_key_exists($aLine[0], $aResult)) $aResult[$aLine[0]] = array();
68 $aResult[$aLine[0]][] = $xVal;
70 $aResult[$aLine[0]] = $xVal;
73 $bUnknown = $aArg[$i];
77 if (array_key_exists('help', $aResult)) showUsage($aSpec);
78 if ($bUnknown && $bExitOnUnknown) showUsage($aSpec, $bExitOnError, 'Unknown option \''.$bUnknown.'\'');
80 foreach ($aSpec as $aLine) {
81 if (is_array($aLine)) {
82 if ($aCounts[$aLine[0]] < $aLine[2]) showUsage($aSpec, $bExitOnError, 'Option \''.$aLine[0].'\' is missing');
83 if ($aCounts[$aLine[0]] > $aLine[3]) showUsage($aSpec, $bExitOnError, 'Option \''.$aLine[0].'\' is pressent too many times');
86 if (!array_key_exists($aLine[0], $aResult))
87 $aResult[$aLine[0]] = false;
95 function showUsage($aSpec, $bExit = false, $sError = false)
98 echo basename($_SERVER['argv'][0]).': '.$sError."\n";
99 echo 'Try `'.basename($_SERVER['argv'][0]).' --help` for more information.'."\n";
102 echo 'Usage: '.basename($_SERVER['argv'][0])."\n";
104 foreach ($aSpec as $aLine) {
105 if (is_array($aLine)) {
111 if ($aLine[1]) $aNames[] = '-'.$aLine[1];
112 if ($aLine[0]) $aNames[] = '--'.$aLine[0];
113 $sName = join(', ', $aNames);
114 echo ' '.$sName.str_repeat(' ', 30-strlen($sName)).$aLine[7]."\n";
125 echo date('Y-m-d H:i:s == ').$sMsg."\n";
128 $aWarnings = array();
133 $GLOBALS['aWarnings'][] = $sMsg;
134 echo date('Y-m-d H:i:s == ').'WARNING: '.$sMsg."\n";
138 function repeatWarnings()
140 foreach ($GLOBALS['aWarnings'] as $sMsg) {
141 echo ' * ',$sMsg."\n";
146 function runSQLScript($sScript, $bfatal = true, $bVerbose = false, $bIgnoreErrors = false)
148 // Convert database DSN to psql parameters
149 $aDSNInfo = \Nominatim\DB::parseDSN(CONST_Database_DSN);
150 if (!isset($aDSNInfo['port']) || !$aDSNInfo['port']) $aDSNInfo['port'] = 5432;
152 .' -p '.escapeshellarg($aDSNInfo['port'])
153 .' -d '.escapeshellarg($aDSNInfo['database']);
154 if (isset($aDSNInfo['hostspec']) && $aDSNInfo['hostspec']) {
155 $sCMD .= ' -h ' . escapeshellarg($aDSNInfo['hostspec']);
157 if (isset($aDSNInfo['username']) && $aDSNInfo['username']) {
158 $sCMD .= ' -U ' . escapeshellarg($aDSNInfo['username']);
161 if (isset($aDSNInfo['password']) && $aDSNInfo['password']) {
162 $aProcEnv = array_merge(array('PGPASSWORD' => $aDSNInfo['password']), $_ENV);
167 if ($bfatal && !$bIgnoreErrors) {
168 $sCMD .= ' -v ON_ERROR_STOP=1';
170 $aDescriptors = array(
171 0 => array('pipe', 'r'),
176 $hProcess = @proc_open($sCMD, $aDescriptors, $ahPipes, null, $aProcEnv);
177 if (!is_resource($hProcess)) {
178 fail('unable to start pgsql');
182 fwrite($ahPipes[0], 'set client_min_messages to WARNING;');
185 while (strlen($sScript)) {
186 $iWritten = fwrite($ahPipes[0], $sScript);
187 if ($iWritten <= 0) break;
188 $sScript = substr($sScript, $iWritten);
191 $iReturn = proc_close($hProcess);
192 if ($bfatal && $iReturn > 0) {
193 fail("pgsql returned with error code ($iReturn)");
198 function runWithEnv($sCmd, $aEnv)
201 0 => array('pipe', 'r'),
206 $hProc = @proc_open($sCmd, $aFDs, $aPipes, null, $aEnv);
207 if (!is_resource($hProc)) {
208 fail('unable to run command:' . $sCmd);
211 fclose($aPipes[0]); // no stdin
213 $iStat = proc_close($hProc);