खोज…


जनरेटर के लाभ

PHP 5.5 जनरेटर और उपज कीवर्ड का परिचय देता है, जो हमें अतुल्यकालिक कोड लिखने की अनुमति देता है जो तुल्यकालिक कोड की तरह दिखता है।

yield अभिव्यक्ति कॉलिंग कोड पर नियंत्रण वापस देने और उस स्थान पर फिर से शुरू करने का बिंदु प्रदान करने के लिए जिम्मेदार है। yield निर्देश के साथ एक मूल्य भेज सकते हैं। इस अभिव्यक्ति का रिटर्न मान या तो null या वह मान जो Generator::send() को भेजा गया था Generator::send()

function reverse_range($i) {
    // the mere presence of the yield keyword in this function makes this a Generator
    do {
        // $i is retained between resumptions
        print yield $i;
    } while (--$i > 0);
}

$gen = reverse_range(5);
print $gen->current();
$gen->send("injected!"); // send also resumes the Generator

foreach ($gen as $val) { // loops over the Generator, resuming it upon each iteration
    echo $val;
}

// Output: 5injected!4321

जेनरेटर द्वारा प्राप्त किए गए Awaitables की प्रतीक्षा करने के लिए (संकल्प के लिए कॉलबैक के रूप में खुद को पंजीकृत करके) और जेनरेटर के निष्पादन को जारी रखने के लिए इस तंत्र का उपयोग किया जा सकता है

इकोल इवेंट लूप का उपयोग करना

हिमलंब Coroutines बनाने के लिए Awaitables और जनरेटर का उपयोग करता है।

require __DIR__ . '/vendor/autoload.php';

use Icicle\Awaitable;
use Icicle\Coroutine\Coroutine;
use Icicle\Loop;

$generator = function (float $time) {
    try {
        // Sets $start to the value returned by microtime() after approx. $time seconds.
        $start = yield Awaitable\resolve(microtime(true))->delay($time);

        echo "Sleep time: ", microtime(true) - $start, "\n";

        // Throws the exception from the rejected awaitable into the coroutine.
        return yield Awaitable\reject(new Exception('Rejected awaitable'));
    } catch (Throwable $e) { // Catches awaitable rejection reason.
        echo "Caught exception: ", $e->getMessage(), "\n";
    }

    return yield Awaitable\resolve('Coroutine completed');
};

// Coroutine sleeps for 1.2 seconds, then will resolve with a string.
$coroutine = new Coroutine($generator(1.2));
$coroutine->done(function (string $data) {
    echo $data, "\n";
});

Loop\run();

Amp इवेंट लूप का उपयोग करना

Amp हार्नेस का वादा करता है [Awaitables का दूसरा नाम] और कॉरआउट निर्माण के लिए जेनरेटर।

require __DIR__ . '/vendor/autoload.php';

use Amp\Dns;

// Try our system defined resolver or googles, whichever is fastest
function queryStackOverflow($recordtype) {
    $requests = [
        Dns\query("stackoverflow.com", $recordtype),
        Dns\query("stackoverflow.com", $recordtype, ["server" => "8.8.8.8"]),
    ];
    // returns a Promise resolving when the first one of the requests resolves
    return yield Amp\first($request);
}

\Amp\run(function() { // main loop, implicitly a coroutine
    try {
        // convert to coroutine with Amp\resolve()
        $promise = Amp\resolve(queryStackOverflow(Dns\Record::NS));
        list($ns, $type, $ttl) = // we need only one NS result, not all
            current(yield Amp\timeout($promise, 2000 /* milliseconds */));
        echo "The result of the fastest server to reply to our query was $ns";
    } catch (Amp\TimeoutException $e) {
        echo "We've heard no answer for 2 seconds! Bye!";
    } catch (Dns\NoRecordException $e) {
        echo "No NS records there? Stupid DNS nameserver!";
    }
});

Proc_open () के साथ गैर-अवरोधक प्रक्रियाएं पैदा करना

PHP में समवर्ती रूप से कोड चलाने के लिए कोई समर्थन नहीं है जब तक कि आप pthread जैसे एक्सटेंशन इंस्टॉल नहीं करते हैं। यह कभी कभी का उपयोग करके नजरअंदाज किया जा सकता है proc_open() और stream_set_blocking() और अतुल्यकालिक रूप से अपने उत्पादन में पढ़ने।

अगर हम कोड को छोटे विखंडू में विभाजित करते हैं तो हम इसे कई सुपररोसेस के रूप में चला सकते हैं। फिर stream_set_blocking() फ़ंक्शन का उपयोग करके हम प्रत्येक stream_set_blocking() गैर-अवरोधक भी बना सकते हैं। इसका मतलब है कि हम कई सबप्रोसेस को स्पॉन कर सकते हैं और फिर एक लूप में उनके आउटपुट की जांच कर सकते हैं (समान रूप से एक लूप पर) और तब तक इंतजार करें जब तक कि सभी खत्म न हो जाएं।

एक उदाहरण के रूप में हमारे पास एक छोटा उपप्रकार हो सकता है जो बस एक लूप चलाता है और प्रत्येक पुनरावृत्ति में 100 - 1000ms (नोट के लिए अनियमित रूप से सोता है, देरी हमेशा एक उपप्रकार के लिए समान होती है)।

<?php
// subprocess.php
$name = $argv[1];
$delay = rand(1, 10) * 100;
printf("$name delay: ${delay}ms\n");

for ($i = 0; $i < 5; $i++) {
    usleep($delay * 1000);
    printf("$name: $i\n");
}

फिर मुख्य प्रक्रिया उपप्रकारों को फैलाएगी और उनका आउटपुट पढ़ेगी। हम इसे छोटे ब्लॉकों में विभाजित कर सकते हैं:

  • Proc_open () के साथ स्पॉन सबप्रोसेस।
  • प्रत्येक stream_set_blocking() को stream_set_blocking() साथ गैर-अवरुद्ध करें।
  • एक लूप चलाएँ जब तक सभी proc_get_status() का उपयोग कर समाप्त नहीं हो proc_get_status()
  • सही तरीके से बंद फ़ाइल प्रत्येक उपप्रक्रिया के लिए उत्पादन पाइप के साथ हैंडल का उपयोग करके fclose() और के साथ निकट प्रक्रिया हैंडल proc_close()
<?php
// non-blocking-proc_open.php
// File descriptors for each subprocess.
$descriptors = [
    0 => ['pipe', 'r'], // stdin
    1 => ['pipe', 'w'], // stdout
];

$pipes = [];
$processes = [];
foreach (range(1, 3) as $i) {
    // Spawn a subprocess.
    $proc = proc_open('php subprocess.php proc' . $i, $descriptors, $procPipes);
    $processes[$i] = $proc;
    // Make the subprocess non-blocking (only output pipe).
    stream_set_blocking($procPipes[1], 0);
    $pipes[$i] = $procPipes;
}

// Run in a loop until all subprocesses finish.
while (array_filter($processes, function($proc) { return proc_get_status($proc)['running']; })) {
    foreach (range(1, 3) as $i) {
        usleep(10 * 1000); // 100ms
        // Read all available output (unread output is buffered).
        $str = fread($pipes[$i][1], 1024);
        if ($str) {
            printf($str);
        }
    }
}

// Close all pipes and processes.
foreach (range(1, 3) as $i) {
    fclose($pipes[$i][1]);
    proc_close($processes[$i]);
}

आउटपुट में सभी तीन उपप्रकारों से मिश्रण होता है जैसा कि हम पढ़ते हैं, जैसे कि proc1 () (ध्यान दें, कि इस मामले में proc1 अन्य दो की तुलना में बहुत पहले समाप्त हो गया):

$ php non-blocking-proc_open.php 
proc1 delay: 200ms
proc2 delay: 1000ms
proc3 delay: 800ms
proc1: 0
proc1: 1
proc1: 2
proc1: 3
proc3: 0
proc1: 4
proc2: 0
proc3: 1
proc2: 1
proc3: 2
proc2: 2
proc3: 3
proc2: 3
proc3: 4
proc2: 4

ईवेंट और डीआईओ के साथ सीरियल पोर्ट पढ़ना

DIO स्ट्रीम वर्तमान में ईवेंट एक्सटेंशन द्वारा मान्यता प्राप्त नहीं हैं। डीआईओ संसाधन में संलग्न फाइल डिस्क्रिप्टर प्राप्त करने का कोई साफ तरीका नहीं है। लेकिन एक समाधान है:

  • fopen() साथ पोर्ट के लिए खुली धारा;
  • स्ट्रीम को गैर-अवरुद्ध करना stream_set_blocking() साथ stream_set_blocking() ;
  • EventUtil::getSocketFd() साथ स्ट्रीम से संख्यात्मक फाइल डिस्क्रिप्टर प्राप्त करें EventUtil::getSocketFd() ;
  • dio_fdopen() (वर्तमान में dio_fdopen() लिए संख्यात्मक फ़ाइल विवरणक पास करें और DIO संसाधन प्राप्त करें;
  • फ़ाइल डिस्क्रिप्टर पर पढ़ने की घटनाओं को सुनने के लिए कॉलबैक के साथ एक Event जोड़ें;
  • कॉलबैक में उपलब्ध डेटा को हटा दें और इसे अपने एप्लिकेशन के तर्क के अनुसार संसाधित करें।

dio.php

<?php
class Scanner {
  protected $port; // port path, e.g. /dev/pts/5
  protected $fd; // numeric file descriptor
  protected $base; // EventBase
  protected $dio; // dio resource
  protected $e_open; // Event
  protected $e_read; // Event

  public function __construct ($port) {
    $this->port = $port;
    $this->base = new EventBase();
  }

  public function __destruct() {
    $this->base->exit();

    if ($this->e_open)
      $this->e_open->free();
    if ($this->e_read)
      $this->e_read->free();
    if ($this->dio)
      dio_close($this->dio);
  }

  public function run() {
    $stream = fopen($this->port, 'rb');
    stream_set_blocking($stream, false);

    $this->fd = EventUtil::getSocketFd($stream);
    if ($this->fd < 0) {
      fprintf(STDERR, "Failed attach to port, events: %d\n", $events);
      return;
    }

    $this->e_open = new Event($this->base, $this->fd, Event::WRITE, [$this, '_onOpen']);
    $this->e_open->add();
    $this->base->dispatch();

    fclose($stream);
  }

  public function _onOpen($fd, $events) {
    $this->e_open->del();

    $this->dio = dio_fdopen($this->fd);
    // Call other dio functions here, e.g.
    dio_tcsetattr($this->dio, [
      'baud' => 9600,
      'bits' => 8,
      'stop'  => 1,
      'parity' => 0
    ]);

    $this->e_read = new Event($this->base, $this->fd, Event::READ | Event::PERSIST,
      [$this, '_onRead']);
    $this->e_read->add();
  }

  public function _onRead($fd, $events) {
    while ($data = dio_read($this->dio, 1)) {
      var_dump($data);
    }
  }
}

// Change the port argument
$scanner = new Scanner('/dev/pts/5');
$scanner->run();

परिक्षण

टर्मिनल A में निम्न कमांड चलाएँ:

$ socat -d -d pty,raw,echo=0 pty,raw,echo=0
2016/12/01 18:04:06 socat[16750] N PTY is /dev/pts/5
2016/12/01 18:04:06 socat[16750] N PTY is /dev/pts/8
2016/12/01 18:04:06 socat[16750] N starting data transfer loop with FDs [5,5] and [7,7]

आउटपुट अलग हो सकता है। पंक्तियों के पहले जोड़े से PTYs का उपयोग करें ( /dev/pts/5 और /dev/pts/8 , विशेष रूप से)।

टर्मिनल बी में उपर्युक्त स्क्रिप्ट चलाएं। आपको रूट विशेषाधिकार की आवश्यकता हो सकती है:

$ sudo php dio.php

टर्मिनल C में पहले PTY के लिए एक स्ट्रिंग भेजें:

$ echo test > /dev/pts/8

उत्पादन

string(1) "t"
string(1) "e"
string(1) "s"
string(1) "t"
string(1) "
"

HTTP क्लाइंट इवेंट एक्सटेंशन के आधार पर

यह ईवेंट एक्सटेंशन के आधार पर एक नमूना HTTP क्लाइंट क्लास है।

वर्ग कई HTTP अनुरोधों को शेड्यूल करने की अनुमति देता है, फिर उन्हें अतुल्यकालिक रूप से चलाएं।

http-client.php

<?php
class MyHttpClient {
  /// @var EventBase
  protected $base;
  /// @var array Instances of EventHttpConnection
  protected $connections = [];

  public function __construct() {
    $this->base = new EventBase();
  }

  /**
   * Dispatches all pending requests (events)
   *
   * @return void
   */
  public function run() {
    $this->base->dispatch();
  }

  public function __destruct() {
    // Destroy connection objects explicitly, don't wait for GC.
    // Otherwise, EventBase may be free'd earlier.
    $this->connections = null;
  }

  /**
   * @brief Adds a pending HTTP request
   *
   * @param string $address Hostname, or IP
   * @param int $port Port number
   * @param array $headers Extra HTTP headers
   * @param int $cmd A EventHttpRequest::CMD_* constant
   * @param string $resource HTTP request resource, e.g. '/page?a=b&c=d'
   *
   * @return EventHttpRequest|false
   */
  public function addRequest($address, $port, array $headers,
    $cmd = EventHttpRequest::CMD_GET, $resource = '/')
  {
    $conn = new EventHttpConnection($this->base, null, $address, $port);
    $conn->setTimeout(5);

    $req = new EventHttpRequest([$this, '_requestHandler'], $this->base);

    foreach ($headers as $k => $v) {
      $req->addHeader($k, $v, EventHttpRequest::OUTPUT_HEADER);
    }
    $req->addHeader('Host', $address, EventHttpRequest::OUTPUT_HEADER);
    $req->addHeader('Connection', 'close', EventHttpRequest::OUTPUT_HEADER);
    if ($conn->makeRequest($req, $cmd, $resource)) {
      $this->connections []= $conn;
      return $req;
    }

    return false;
  }


  /**
   * @brief Handles an HTTP request
   *
   * @param EventHttpRequest $req
   * @param mixed $unused
   *
   * @return void
   */
  public function _requestHandler($req, $unused) {
    if (is_null($req)) {
      echo "Timed out\n";
    } else {
      $response_code = $req->getResponseCode();

      if ($response_code == 0) {
        echo "Connection refused\n";
      } elseif ($response_code != 200) {
        echo "Unexpected response: $response_code\n";
      } else {
        echo "Success: $response_code\n";
        $buf = $req->getInputBuffer();
        echo "Body:\n";
        while ($s = $buf->readLine(EventBuffer::EOL_ANY)) {
          echo $s, PHP_EOL;
        }
      }
    }
  }
}


$address = "my-host.local";
$port = 80;
$headers = [ 'User-Agent' => 'My-User-Agent/1.0', ];

$client = new MyHttpClient();

// Add pending requests
for ($i = 0; $i < 10; $i++) {
  $client->addRequest($address, $port, $headers,
    EventHttpRequest::CMD_GET, '/test.php?a=' . $i);
}

// Dispatch pending requests
$client->run();

test.php

यह सर्वर पर एक नमूना स्क्रिप्ट है।

<?php
echo 'GET: ', var_export($_GET, true), PHP_EOL;
echo 'User-Agent: ', $_SERVER['HTTP_USER_AGENT'] ?? '(none)', PHP_EOL;

प्रयोग

php http-client.php

नमूना आउटपुट

Success: 200
Body:
GET: array (
  'a' => '1',
)
User-Agent: My-User-Agent/1.0
Success: 200
Body:
GET: array (
  'a' => '0',
)
User-Agent: My-User-Agent/1.0
Success: 200
Body:
GET: array (
  'a' => '3',
)
...

(काट दिया था।)

ध्यान दें, कोड CLI SAPI में दीर्घकालिक प्रसंस्करण के लिए डिज़ाइन किया गया है।

HTTP क्लाइंट ईवी एक्सटेंशन पर आधारित है

यह एवी एक्सटेंशन पर आधारित एक नमूना HTTP क्लाइंट है।

ईवी एक्सटेंशन एक सरल लेकिन शक्तिशाली सामान्य प्रयोजन ईवेंट लूप लागू करता है। यह नेटवर्क-विशिष्ट वॉचर्स प्रदान नहीं करता है, लेकिन इसके I / O वॉचर का उपयोग सॉकेट्स के अतुल्यकालिक प्रसंस्करण के लिए किया जा सकता है।

निम्न कोड दिखाता है कि समानांतर प्रसंस्करण के लिए HTTP अनुरोधों को कैसे निर्धारित किया जा सकता है।

http-client.php

<?php
class MyHttpRequest {
  /// @var MyHttpClient
  private $http_client;
  /// @var string
  private $address;
  /// @var string HTTP resource such as /page?get=param
  private $resource;
  /// @var string HTTP method such as GET, POST etc.
  private $method;
  /// @var int
  private $service_port;
  /// @var resource Socket
  private $socket;
  /// @var double Connection timeout in seconds.
  private $timeout = 10.;
  /// @var int Chunk size in bytes for socket_recv()
  private $chunk_size = 20;
  /// @var EvTimer
  private $timeout_watcher;
  /// @var EvIo
  private $write_watcher;
  /// @var EvIo
  private $read_watcher;
  /// @var EvTimer
  private $conn_watcher;
  /// @var string buffer for incoming data
  private $buffer;
  /// @var array errors reported by sockets extension in non-blocking mode.
  private static $e_nonblocking = [
    11, // EAGAIN or EWOULDBLOCK
    115, // EINPROGRESS
  ];

  /**
   * @param MyHttpClient $client
   * @param string $host Hostname, e.g. google.co.uk
   * @param string $resource HTTP resource, e.g. /page?a=b&c=d
   * @param string $method HTTP method: GET, HEAD, POST, PUT etc.
   * @throws RuntimeException
   */
  public function __construct(MyHttpClient $client, $host, $resource, $method) {
    $this->http_client = $client;
    $this->host        = $host;
    $this->resource    = $resource;
    $this->method      = $method;

    // Get the port for the WWW service
    $this->service_port = getservbyname('www', 'tcp');

    // Get the IP address for the target host
    $this->address = gethostbyname($this->host);

    // Create a TCP/IP socket
    $this->socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
    if (!$this->socket) {
      throw new RuntimeException("socket_create() failed: reason: " .
        socket_strerror(socket_last_error()));
    }

    // Set O_NONBLOCK flag
    socket_set_nonblock($this->socket);

    $this->conn_watcher = $this->http_client->getLoop()
      ->timer(0, 0., [$this, 'connect']);
  }

  public function __destruct() {
    $this->close();
  }

  private function freeWatcher(&$w) {
    if ($w) {
      $w->stop();
      $w = null;
    }
  }

  /**
   * Deallocates all resources of the request
   */
  private function close() {
    if ($this->socket) {
      socket_close($this->socket);
      $this->socket = null;
    }

    $this->freeWatcher($this->timeout_watcher);
    $this->freeWatcher($this->read_watcher);
    $this->freeWatcher($this->write_watcher);
    $this->freeWatcher($this->conn_watcher);
  }

  /**
   * Initializes a connection on socket
   * @return bool
   */
  public function connect() {
    $loop = $this->http_client->getLoop();

    $this->timeout_watcher = $loop->timer($this->timeout, 0., [$this, '_onTimeout']);
    $this->write_watcher = $loop->io($this->socket, Ev::WRITE, [$this, '_onWritable']);

    return socket_connect($this->socket, $this->address, $this->service_port);
  }

  /**
   * Callback for timeout (EvTimer) watcher
   */
  public function _onTimeout(EvTimer $w) {
    $w->stop();
    $this->close();
  }

  /**
   * Callback which is called when the socket becomes wriable
   */
  public function _onWritable(EvIo $w) {
    $this->timeout_watcher->stop();
    $w->stop();

    $in = implode("\r\n", [
      "{$this->method} {$this->resource} HTTP/1.1",
      "Host: {$this->host}",
      'Connection: Close',
    ]) . "\r\n\r\n";

    if (!socket_write($this->socket, $in, strlen($in))) {
      trigger_error("Failed writing $in to socket", E_USER_ERROR);
      return;
    }

    $loop = $this->http_client->getLoop();
    $this->read_watcher = $loop->io($this->socket,
      Ev::READ, [$this, '_onReadable']);

    // Continue running the loop
    $loop->run();
  }

  /**
   * Callback which is called when the socket becomes readable
   */
  public function _onReadable(EvIo $w) {
    // recv() 20 bytes in non-blocking mode
    $ret = socket_recv($this->socket, $out, 20, MSG_DONTWAIT);

    if ($ret) {
      // Still have data to read. Append the read chunk to the buffer.
      $this->buffer .= $out;
    } elseif ($ret === 0) {
      // All is read
      printf("\n<<<<\n%s\n>>>>", rtrim($this->buffer));
      fflush(STDOUT);
      $w->stop();
      $this->close();
      return;
    }

    // Caught EINPROGRESS, EAGAIN, or EWOULDBLOCK
    if (in_array(socket_last_error(), static::$e_nonblocking)) {
      return;
    }

    $w->stop();
    $this->close();
  }
}

/////////////////////////////////////
class MyHttpClient {
  /// @var array Instances of MyHttpRequest
  private $requests = [];
  /// @var EvLoop
  private $loop;

  public function __construct() {
    // Each HTTP client runs its own event loop
    $this->loop = new EvLoop();
  }

  public function __destruct() {
    $this->loop->stop();
  }

  /**
   * @return EvLoop
   */
  public function getLoop() {
    return $this->loop;
  }

  /**
   * Adds a pending request
   */
  public function addRequest(MyHttpRequest $r) {
    $this->requests []= $r;
  }

  /**
   * Dispatches all pending requests
   */
  public function run() {
    $this->loop->run();
  }
}


/////////////////////////////////////
// Usage
$client = new MyHttpClient();
foreach (range(1, 10) as $i) {
  $client->addRequest(new MyHttpRequest($client, 'my-host.local', '/test.php?a=' . $i, 'GET'));
}
$client->run();

परिक्षण

मान लीजिए कि http://my-host.local/test.php स्क्रिप्ट $_GET के डंप को प्रिंट कर रही है:

<?php
echo 'GET: ', var_export($_GET, true), PHP_EOL;

फिर php http-client.php कमांड का आउटपुट निम्न के जैसा होगा:

<<<<
HTTP/1.1 200 OK
Server: nginx/1.10.1
Date: Fri, 02 Dec 2016 12:39:54 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
X-Powered-By: PHP/7.0.13-pl0-gentoo

1d
GET: array (
  'a' => '3',
)

0
>>>>
<<<<
HTTP/1.1 200 OK
Server: nginx/1.10.1
Date: Fri, 02 Dec 2016 12:39:54 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
X-Powered-By: PHP/7.0.13-pl0-gentoo

1d
GET: array (
  'a' => '2',
)

0
>>>>
...

(छंटनी)

ध्यान दें, PHP 5 में सॉकेट विस्तार के लिए चेतावनी लॉग इन कर सकते EINPROGRESS , EAGAIN , और EWOULDBLOCK errno मूल्यों। इसके साथ लॉग को बंद करना संभव है

error_reporting(E_ERROR);


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow