1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 10:28:01 +01:00
Commit Graph

65 Commits

Author SHA1 Message Date
Niklas Keller
665cc7fc5b Instantiate driver if none exists upon Loop::setFactory to support sync waits 2016-05-20 10:06:50 +02:00
Niklas Keller
f66cb4a66f Check that factory returns an instance of LoopDriver 2016-05-20 10:06:50 +02:00
Niklas Keller
30254b2a36 Change namespace of LoopDriverFactory 2016-05-20 10:06:50 +02:00
Niklas Keller
bf1d42365f Fix createDriver call to be static 2016-05-20 10:06:50 +02:00
Niklas Keller
0e4194bfe8 Add LoopDriverFactory
The LoopDriverFactory SHOULD be used by driver implementations
to set a default event loop driver.

This can be achieved by having a Composer autoloader like that:

{
    "autoload": {
        "files": ["src/bootstrap.php"]
    }
}

Where src/bootstrap.php contains the following code:

use Interop\Async\EventLoop\LoopDriverFactory;

class MyDriverFactory implements LoopDriverFactory
{
    public function create()
    {
        return new MyDriver();
    }
}

Loop::setFactory(new MyDriverFactory());

This ensures the user doesn't have to care about setting the actual
driver. A user just has to require the specific event loop driver
package he / she wants to use.
2016-05-20 10:06:50 +02:00
Andrew Carter
662cfdc045 Merge pull request #49 from async-interop/travis
Add Travis configuration
2016-05-20 09:03:15 +01:00
Niklas Keller
2530ff0efe Add HHVM to Travis 2016-05-20 09:41:25 +02:00
Niklas Keller
6794dd8e9c Remove now standard --installed flag for 'composer show' 2016-05-20 09:41:25 +02:00
Niklas Keller
32597c4491 Don't delete xdebug config, so we have coverage data for PHP 5 2016-05-20 09:41:25 +02:00
Niklas Keller
88d65a5caa Add Travis configuration 2016-05-20 09:41:25 +02:00
Cees-Jan Kiewiet
c258d67969 Merge pull request #45 from async-interop/single-on-error-handler
Changed onError() to setErrorHandler()
2016-05-20 09:40:06 +02:00
Andrew Carter
23284e56f1 Changed onError() to setErrorHandler()
Previously this code allowed multiple error handlers. This change
would allow for only a single error handler that is overwritten by
future calls and can be cleared by passing a null parameter.
2016-05-20 09:31:56 +02:00
Bob Weinand
6a13263198 Merge pull request #35 from trowski/watcher-data
Add watcher data parameter
2016-05-19 17:42:54 +02:00
Aaron Piotrowski
ffde57f0d1 Make watcher ID first parameter 2016-05-19 10:30:38 -05:00
Bob Weinand
78de0c947b Merge pull request #31 from async-interop/registry
Add loop bound state registry
2016-05-19 12:40:37 +02:00
Niklas Keller
3992374209 Apply ugly FIG braces style 2016-05-16 11:33:58 +02:00
Niklas Keller
54915e31bc Add phpunit to require-dev again 2016-05-16 11:33:04 +02:00
Niklas Keller
698d292d2c Add test to autoload-dev 2016-05-16 11:02:14 +02:00
Niklas Keller
8b3555c552 Change namespace of Registry 2016-05-16 11:02:14 +02:00
Niklas Keller
2555defa58 Fixup registry reset after execution of the loop 2016-05-16 11:02:13 +02:00
Niklas Keller
679651b242 Refactor Registry into a trait, so it can be tested separately 2016-05-16 11:02:13 +02:00
Niklas Keller
333a9daf5a Add loop bound state registry
The registry allows to store information bound to a specific loop.
This can be useful to store state of globals like a DNS resolver.

Rationale for a global DNS resolver:

Nobody wants to inject a resolver into everything that does some sort of I/O.
Using IP addresses everywhere instead of hostnames also doesn't make sense.

Therefore there should be a global default DNS resolver. But this resolver
needs a read watcher for the response. If the loop gets swapped and a DNS
request is made, the resolver would never get the read event, since the
stream is only watched in the old loop. The resolver also doesn't get any
info about the loop swap, so it can't use a new watcher.

With a loop bound registry, it can just store the connection in the loop and
will use a new connection when the loop is swapped, because the state doesn't
exist any longer. Once the loop is put back, it can use the old connection
again.

This API should only be used by real global objects. Most packages won't need
to use this API, but it's required for the mentioned use cases.
2016-05-16 11:02:13 +02:00
Andrew Carter
30fc5464cc Merge pull request #38 from async-interop/description
Change package description to include 'for interoperability'
2016-05-16 10:00:08 +01:00
Niklas Keller
017f1d2149 Change package description to include 'for interoperability' 2016-05-15 17:21:56 +02:00
Bob Weinand
ff9d6fb61d Merge pull request #36 from async-interop/namespace
Shorten namespace to Interop\Async and correct PHP version requirement
2016-05-15 16:51:59 +02:00
Niklas Keller
992b3e4e5a Remove 'for interoperability' from the description 2016-05-15 16:47:51 +02:00
Niklas Keller
a32c1c36d2 Shorten namespace to Interop\Async and correct PHP version requirement 2016-05-15 14:40:07 +02:00
Aaron Piotrowski
d5126870c4 Event -> Watcher
Methods return watchers for events, not events.
2016-05-14 17:19:05 -05:00
Aaron Piotrowski
5b283d69e9 Define watcher callback signatures 2016-05-14 17:14:33 -05:00
Aaron Piotrowski
38a3da4889 Add $data parameter to watchers 2016-05-14 17:13:35 -05:00
Andrew Carter
95c2f35e60 Merge pull request #32 from async-interop/support
Add Loop::supports to check for optional features
2016-05-14 16:59:17 +01:00
Niklas Keller
5a84c8336e Add Loop::supports to check for optional features 2016-05-13 23:41:54 +02:00
Bob Weinand
deb801b941 Merge pull request #26 from async-interop/loop-name
Rename EventLoop → Loop and EventLoopDriver → LoopDriver
2016-05-12 18:26:14 +02:00
Niklas Keller
ef68e03c52 Rename EventLoop → Loop and EventLoopDriver → LoopDriver 2016-05-12 17:57:02 +02:00
Andrew Carter
4b3a8411b3 Merge pull request #17 from AndrewCarterUK/static-class-protot
Static Class Prototype
2016-05-12 12:52:45 +01:00
Andrew Carter
83596a6b7a Disabled constructor by maknig private (removed LogicException) 2016-05-12 12:27:24 +01:00
Andrew Carter
4195b46440 Changed time delays from int to float 2016-05-12 11:40:24 +01:00
Andrew Carter
19e4c8f58b Merge pull request #21 from kelunik/time-units
Change time units to integer and milliseconds
2016-05-12 11:33:35 +01:00
Niklas Keller
8baea83f30 Change time units to integer and milliseconds 2016-05-12 12:28:46 +02:00
Andrew Carter
d781ac94d6 Merge pull request #20 from async-interop/AndrewCarterUK-php5-patch
Removed scalar type hints
2016-04-15 11:51:56 +01:00
Andrew Carter
89332e5b0f Removed scalar type hints 2016-04-11 11:31:30 +01:00
Andrew Carter
624060c67f Removed inScope() 2016-04-11 11:30:42 +01:00
Andrew Carter
882723d7e2 Update EventLoopDriver.php 2016-04-11 11:22:54 +01:00
Andrew Carter
dace2d8226 Removed scalar type hints 2016-04-11 11:19:52 +01:00
Andrew Carter
6113525227 Merge pull request #18 from async-interop/readme
README
2016-03-31 22:21:57 +01:00
Andrew Carter
7d15156f97 Create README.md 2016-03-31 15:33:44 +01:00
Andrew Carter
71fcb29126 Merge branch 'master' of github.com:async-interop/event-loop into HEAD 2016-03-29 22:20:07 +01:00
Aaron Piotrowski
eca2278de2 Merge pull request #3 from AndrewCarterUK/prototype
Event Loop Driver Prototype
2016-03-29 14:35:54 -05:00
Andrew Carter
54c4ded85b Missing static's 2016-03-23 16:47:37 +00:00
Andrew Carter
c6184ed91b Scope validation and driver retrieval 2016-03-23 10:22:54 +00:00