2017 © Pedro Peláez
 

library gphpthread

Generic PHP Threads library using only pure PHP

image

zhgzhg/gphpthread

Generic PHP Threads library using only pure PHP

  • Wednesday, October 18, 2017
  • by zhgzhg
  • Repository
  • 1 Watchers
  • 1 Stars
  • 35 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 2 Versions
  • 9 % Grown

The README.md

GPhpThread - Generic PHP Threads library

build status badge, (*1)

A heavy threads library implementation written using only pure PHP. A fully functional component that might come in handy when the host system does not have PHP threads module installed and for some reason it cannot be installed (lack of privileges, legacy system, et cetera)., (*2)

Features

  • OO thread creation and management ideology
  • Thread execution control:
    • start
    • stop
    • join - blocking or non-blocking mode
    • pause
    • resume
    • sleep with interruption detection
  • Thread priority and niceness control
  • Support for thread exit codes
  • Critical section for sharing data among the threads or for locking purposes
    • reliable containers
    • faster, unreliable containers
  • Extensible and customizable
  • Distributed under MIT license

Requirements/Dependencies

  • PHP version 5.3+
  • PHP shell execution context
  • PHP pcntl
  • PHP POSIX
  • OS Linux family

How To Use

In essence you need to extend class GPhpThread and implement the abstract method run(). Here is an example:, (*3)

 0; ) {
            echo $this->getPid() . " sings:\n";
            echo "{$i} bottles of beer on the wall, {$i} bottles of beer.\n";
            --$i;
            echo "Take one down and pass it around, {$i} bottles of beer on the wall.\n\n";
        }

        echo "No more bottles of beer on the wall, no more bottles of beer.\n";
        echo "Go to the store and buy some more, {$j} bottles of beer on the wall.\n\n";
    }
}

echo "PID " . getmypid() . " is the director! Let's sing!\n\n";
sleep(3);

$sharedCriticalSection = null;
$allowThreadExitCodes = false;

$st = new SingingThread($sharedCriticalSection, $allowThreadExitCodes);
$st->start(); // start the GPhpThread
$st->join();  // wait for the generic thread to finish

echo "Director " . getmypid() . " is done!\n";
?>

For more information see the files inside "examples" and "tests" directories. An html documentation is available at zhgzhg.github.io/GPhpThread/, (*4)

Installation

You can use composer to integrate the library in you project:, (*5)

php composer.phar require zhgzhg/gphpthread:^1.0.7

Alternatively you can also manually download GPhpThread.php file and place it in your project's directory., (*6)

The Versions

18/10 2017

dev-master

9999999-dev https://github.com/zhgzhg/gphpthread

Generic PHP Threads library using only pure PHP

  Sources   Download

MIT

The Requires

  • php >=5.3
  • ext-pcntl *
  • ext-posix *

 

asynchronous async thread shell pcntl parallel fork posix concurrent multithreading

18/10 2017

1.0.0

1.0.0.0 https://github.com/zhgzhg/gphpthread

Generic PHP Threads library using only pure PHP

  Sources   Download

MIT

The Requires

  • php >=5.3
  • ext-pcntl *
  • ext-posix *

 

asynchronous async thread shell pcntl parallel fork posix concurrent multithreading