1
0
mirror of https://github.com/danog/dns.git synced 2024-11-26 20:14:51 +01:00
Go to file
Daniel Lowrey 704c35870c Update README.md
Change incorrect usage of "parallel" to "concurrent"
2014-10-02 12:29:03 -04:00
examples Initial amphp refactor 2014-09-24 00:04:46 -04:00
lib Allow leading digits in name labels 2014-10-02 16:41:33 +01:00
test Simplify directory structure 2014-09-24 13:35:10 -04:00
.gitignore Initial amphp refactor 2014-09-24 00:04:46 -04:00
.travis.yml Update travis 2014-09-24 10:38:34 -04:00
composer.json Simplify directory structure 2014-09-24 13:35:10 -04:00
phpunit.xml Simplify directory structure 2014-09-24 13:35:10 -04:00
README.md Update README.md 2014-10-02 12:29:03 -04:00

dns

Asynchronous DNS resolution built on the Amp concurrency framework

Examples

Synchronous Resolution Via wait()

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

$resolver = new Amp\Dns\Resolver;
$name = 'google.com';
list($address, $type) = $resolver->resolve($name)->wait();
printf("%s resolved to %s\n", $name, $address);

Concurrent Synchronous Resolution Via wait()

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

$resolver = new Amp\Dns\Resolver;
$names = [
    'github.com',
    'google.com',
    'stackoverflow.com',
];
$promises = [];
foreach ($names as $name) {
    $promises[$name] = $resolver->resolve($name);
}
$results = Amp\all($promises)->wait();
foreach ($results as $name => $resultArray) {
    list($addr, $type) = $resultArray;
    printf("%s => %s\n", $name, $addr);
}

Event Loop Async

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

Amp\run(function() {
    $resolver = new Amp\Dns\Resolver;
    $names = [
        'github.com',
        'google.com',
        'stackoverflow.com',
        'localhost',
        '192.168.0.1',
        '::1',
    ];

    $promises = [];
    foreach ($names as $name) {
        $promise = $resolver->resolve($name);
        $promises[$name] = $promise;
    }

    // Flatten multiple promises into a single promise
    $comboPromise = Amp\some($promises);

    // Yield control until the combo promise resolves
    list($errors, $successes) = (yield $comboPromise);

    foreach ($names as $name) {
        echo isset($errors[$name])
            ? "FAILED: {$name}\n"
            : "{$name} => {$successes[$name][0]}\n";
    }

    // Stop the event loop so we don't sit around forever
    Amp\stop();
});

Tests

Build Status

Tests can be run from the command line using:

php vendor/bin/phpunit -c phpunit.xml

or to exlude tests that require a working internet connection:

php vendor/bin/phpunit -c phpunit.xml --exclude-group internet