L'utilisation du processus d'enfant pcntl_fork ne peut pas accéder à l'instance de codeigniter créée à partir de parent

StackOverflow https://stackoverflow.com/questions/9458824

  •  13-11-2019
  •  | 
  •  

Question

J'essaie d'écrire un processus de démon à l'aide de la bibliothèque d'allumage du code, et le problème est que lorsque je débarque le processus de démon, il ne peut plus accéder à l'instance CI et que toutes les bibliothèques qui ont été initialisées dans __construct sont également inaccessibles plus si je crée un nouveau Instance CI Dans le processus enfant, je ne peux toujours accéder à aucune bibliothèque et j'obtiens des erreurs suivantes:

ERREUR - 2012-02-27 00:13:07 -> Gravité: avertissement -> inclure (application / erreurs / error_general.php): Impossible d'ouvrir le flux: aucun fichier ou répertoire / srv / http / freeFileConvert / système /Core/Exceptions.php 146 Erreur - 2012-02-27 00:13:07 -> Gravité: avertissement -> include (): ouverture échouée 'application / erreurs / error_general.php' pour l'inclusion (include_path = '. : / usr / share / pear ') /srv/http/freefileconvert/system/core/exceptions.php 146

Voici mon code:

class Conversion_workers
{
    function __construct() {
        $this->ci =& get_instance();
        $this->ci->load->library('Gearman');
    }

    private function is_locked($lock_file) {
        if(file_exists($lock_file)) {
            $lock = fopen($lock_file,"c+"); // open it for WRITING ("w")
            if (! flock($lock, LOCK_EX | LOCK_NB)) {
                flock($lock, LOCK_UN);
                return TRUE;
            }
        }
        return FALSE;
    }


    private function lock_file($lock_file, &$lock) {
        $lock = fopen($lock_file,"c+"); // open it for WRITING ("w")
        if (! flock($lock, LOCK_EX | LOCK_NB)) {
            //error_log('Unable to lock file.');
            return FALSE;
        }
        fseek($lock, 0);
        ftruncate($lock, 0);
        fwrite($lock, posix_getpid());
        fflush($lock);  
        return TRUE;
    }


    private function daemonize($lock_file, &$lock, &$parent)
    {

        // TODO: In the install check if pcntl_fork supported
        if($this->is_locked($lock_file)) {

            $parent = TRUE;
            return FALSE;
        }

        $pid = pcntl_fork();
        if($pid < 0) {
            log_message('error', 'Unable to fork process');
            return FALSE;
        }

        // If we got a good PID, then we can exit the parent process. 
        if($pid > 0) {
            log_message('info', 'Exiting parent as process forked successfully');
            $parent = TRUE;
            return FALSE;
        }

        ob_start();

        // Change the file mode mask 
        umask(0);

        // Create a new SID for the child process
        if (posix_setsid() < 0) {
            //error_log('Unable to create a new SID for child process');
            return FALSE;
        }

        // Change the current working directory 
        if(chdir("/tmp") < 0) {
            //error_log('Unable to change directory of the daemonize process');
            return FALSE;
        }

        // Lock in child process to get correct pid in lock file
        if(!$this->lock_file($lock_file, $lock)) {
            exit;
        }

        fclose(STDIN);  // Close all of the standard
        fclose(STDOUT); // file descriptors as we
        fclose(STDERR); // are running as a daemon.

        register_shutdown_function(create_function('$pars', 
            'ob_end_clean();posix_kill(posix_getpid(), SIGKILL);'), array());

        // Might be good idea to have register_shutdown_function() here if we want to 
        // check status when the daemon terminates.

        return TRUE;
    } 

   private function start_workers() {

        $lock_file  = $this->ci->config->item('lock_file');
        $parent     = FALSE; 

        if(! $this->daemonize($lock_file, $lock, $parent)) {
            if($parent)
                return;

        } else {

            // Start a worker
            $this->ci->gearman->gearman_worker();
            $this->ci->gearman->add_worker_function('some_function', 'some_function_fn'); 

            error_log('Starting worker ['.posix_getpid().']');

            while($this->ci->gearman->work());
        }

        error_log('Exiting worker');
        exit;
    }

    function add_to_queue($function_name, $params) {
        $this->start_workers();

        $this->ci->gearman->gearman_client();
        return $this->ci->gearman->do_job_background($function_name, serialize($params)); 
    }
} // END class Controller

La fonction "add_to_queue ()" fonctionne bien mais le problème est avec "start_worker" qui, après la mise en place, cesse de fonctionner, je ne peux même pas accéder aux fonctions de journal des journaux, c'est pourquoi j'utilise error_log () dans mon code.

Je serais reconnaissant si quelqu'un pouvait aider s'il vous plaît.

Était-ce utile?

La solution

Se pourrait-il que la méthode de démonize modifie le répertoire de travail pour /tmp? Dans ce cas, le système recherche les incluses dans .(/ tmp) et /usr/share/pear, ni l'un ni l'autre ne les tient?

Peut-être http://www.php.net/manual/en/ini.core.php#ini.include-path aidera.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top