summaryrefslogtreecommitdiffstats
path: root/vendor/gipfl/cli/src/Process.php
blob: 45c67b517caef9114fcdf80b8d6932e5c1dfe76e (plain)
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
<?php

namespace gipfl\Cli;

class Process
{
    /** @var string|null */
    protected static $initialCwd;

    /**
     * Set the command/process title for this process
     *
     * @param $title
     */
    public static function setTitle($title)
    {
        if (function_exists('cli_set_process_title')) {
            \cli_set_process_title($title);
        }
    }

    /**
     * Replace this process with a new instance of itself by executing the
     * very same binary with the very same parameters
     */
    public static function restart()
    {
        // _ is only available when executed via shell
        $binary = static::getEnv('_');
        $argv = $_SERVER['argv'];
        if (\strlen($binary) === 0) {
            // Problem: this doesn't work if we changed working directory and
            // called the binary with a relative path. Something that doesn't
            // happen when started as a daemon, and when started manually we
            // should have $_ from our shell.
            $binary = static::absoluteFilename(\array_shift($argv));
        } else {
            \array_shift($argv);
        }
        \pcntl_exec($binary, $argv, static::getEnv());
    }

    /**
     * Get the given ENV variable, null if not available
     *
     * Returns an array with all ENV variables if no $key is given
     *
     * @param string|null $key
     * @return array|string|null
     */
    public static function getEnv($key = null)
    {
        if ($key !== null) {
            return \getenv($key);
        }

        if (PHP_VERSION_ID > 70100) {
            return \getenv();
        } else {
            $env = $_SERVER;
            unset($env['argv'], $env['argc']);

            return $env;
        }
    }

    /**
     * Get the path to the executed binary when starting this command
     *
     * This fails if we changed working directory and called the binary with a
     * relative path. Something that doesn't happen when started as a daemon.
     * When started manually we should have $_ from our shell.
     *
     * To be always on the safe side please call Process::getInitialCwd() once
     * after starting your process and before switching directory. That way we
     * preserve our initial working directory.
     *
     * @return mixed|string
     */
    public static function getBinaryPath()
    {
        if (isset($_SERVER['_'])) {
            return $_SERVER['_'];
        } else {
            global $argv;

            return static::absoluteFilename($argv[0]);
        }
    }

    /**
     * The working directory as given by getcwd() the very first time we
     * called this method
     *
     * @return string
     */
    public static function getInitialCwd()
    {
        if (self::$initialCwd === null) {
            self::$initialCwd = \getcwd();
        }

        return self::$initialCwd;
    }

    /**
     * Returns the absolute filename for the given file
     *
     * If relative, it's calculated in relation to the given working directory.
     * The current working directory is being used if null is given.
     *
     * @param $filename
     * @param null $cwd
     * @return string
     */
    public static function absoluteFilename($filename, $cwd = null)
    {
        $filename = \str_replace(
            DIRECTORY_SEPARATOR . DIRECTORY_SEPARATOR,
            DIRECTORY_SEPARATOR,
            $filename
        );
        if ($filename[0] === '.') {
            $filename = ($cwd ?: \getcwd()) . DIRECTORY_SEPARATOR . $filename;
        }
        $parts = \explode(DIRECTORY_SEPARATOR, $filename);
        $result = [];
        foreach ($parts as $part) {
            if ($part === '.') {
                continue;
            }
            if ($part === '..') {
                \array_pop($result);
                continue;
            }
            $result[] = $part;
        }

        return \implode(DIRECTORY_SEPARATOR, $result);
    }
}