fxmlrpc: really fast XML/RPC for PHP

A convenient, object oriented API (similar to the XML/RPC client in Zend Framework) Very fast serializing and parsing of the XML payloads involved Stick to the HTTP client you already use provided by HTTPlug Licensed under the terms of the liberal MIT license Supports modern standards: easy installation via composer, fully PSR-0, PSR-1 and PSR-2 compatible Relentlessly unit- and integration tested Implements all known XML/RPC extensions

Upgrading to 0.23.x

Instead of php-http/message-factory, we now use the PSR-7 compatible RequestFactoryInterface. You will have to change your custom HTTP client implementation and pass a PsrHttpMessageRequestFactoryInterface implementation, a PsrHttpMessageStreamFactoryInterface and a HttpClientHttpClient to the HttpAdapterTransport. See below for details.

Installation

To install fxmlrpc run this command:

composer require lstrojny/fxmlrpc

Install dependencies

You must choose three packages for for the business of HTTP:

A PSR-7 compatible HTTP message (request / response) implementation A compatible HTTP RequestFactoryInterface and StreamFactoryInterface implementations to create HTTP messages A PSR-7 compatible HTTP client Two widespread message implementations are laminas/laminas-diactoros and guzzle/psr7. Message factories for both implementations are available in php-http/message. For HTTP clients you can pick e.g.php-http/guzzle7-adapter, php-http/guzzle6-adapter, php-http/guzzle5-adapter, php-http/curl-client or php-http/buzz-adapter.

Example:

composer require php-http/message php-http/guzzle7-adapter

Instantiating HttpAdapterTransport

An example instantiation using Guzzle6:

$httpClient = new GuzzleHttpClient(); $httpClient->...(); $client = new fXmlRpcClient( 'http://endpoint.com', new fXmlRpcTransportHttpAdapterTransport( new HttpMessageMessageFactoryDiactorosMessageFactory(), new HttpMessageStreamFactoryDiactorosStreamFactory(), new HttpAdapterGuzzle7Client($httpClient) ) );

Upgrading to 0.12.x

Instead of egeloen/http-adapter, we now use the PSR-7 compatible php-http/httplug. You will have to change your custom HTTP client implementation and pass a HttpMessageMessageFactory implementation and a HttpClientHttpClient to the HttpAdapterTransport. See below for details.

Installation

To install fxmlrpc run this command:

composer require lstrojny/fxmlrpc

Install dependencies

You must choose three packages for for the business of HTTP:

A PSR-7 compatible HTTP message (request / response) implementation A compatible HTTP message factory implementation to create HTTP messages A PSR-7 compatible HTTP client Two widespread message implementations are zend-diactoros and guzzle/psr7. Message factories for both implementations are available in php-http/message. For HTTP clients you can pick e.g. php-http/guzzle6-adapter, php-http/guzzle5-adapter, php-http/curl-client or php-http/buzz-adapter.

Example:

composer require zendframework/zend-diactoros php-http/message php-http/guzzle6-adapter

Instantiating HttpAdapterTransport

An example instantiation using Guzzle6:

$httpClient = new GuzzleHttpClient(); $httpClient->...(); $client = new fXmlRpcClient( 'http://endpoint.com', new fXmlRpcTransportHttpAdapterTransport( new HttpMessageMessageFactoryDiactorosMessageFactory(), new HttpAdapterGuzzle6Client($httpClient) ) );

Upgrading to 0.11.x

We change ParserInterface::parse() method interface, now isn't required to pass second parameter ($isFault), parser should throw an exception FaultException when fault message is encountered in server response.

Upgrading to 0.10.x

0.10.x comes with a couple of breaking changes: We used to ship our own bridges for interoperability with various HTTP clients but moved that responsibility to a 3rd party library called Ivory HTTP Adapter. IMPORTANT NOTE: the library is not installed by default as you could choose to use fxmlrpc with just your own implementation of the fXmlRpcTransportTransportInterface. To install the library – and that’s what you most likely want – add this line to your composer.json

"egeloen/http-adapter": "~0.6"

… and run composer update

Instantiating an HTTP transport

In order to use the new adapters, you need to change how you instantiate fXmlRpc and its transport. This is how instantiating a custom transport looked before:

$httpClient = new GuzzleHttpClient(); $client = new fXmlRpcClient( 'http://endpoint.com', new fXmlRpcTransportGuzzle4Bridge($httpClient) );

This is how you do it now:

$httpClient = new GuzzleHttpClient(); $httpClient->...(); $client = new fXmlRpcClient( 'http://endpoint.com', new fXmlRpcTransportHttpAdapterTransport(new IvoryHttpAdapterGuzzleHttpHttpAdapter($httpClient)) );

Latest improvements

[BC] PSR-7 support [IMPROVEMENT] PHP7 compatibility [IMPROVEMENT] Refactor parsers throw fault exception instead of client (see #53, contribution by Piotr Olaszewski) [FEATURE] Add XML validation on the client side. Configurable but enabled per default [FEATURE] Transport decorator which contains XML of the last request, response and exception (see #47, contribution by Piotr Olaszewski) [BC] PSR-4 for autoloading (see #29) [BC] Rename fXmlRpcMulticall to fXmlRpcMulticallBuilder [BC] Make the surface of the ClientInterface signifcantly smaller (see #24 for details) [BC] Replaces built-in transports with Ivory HTTP Adapter. PECL HTTP is no longer supported. Contribution by Márk Sági-Kazár [BUG] Fix serialization issue with XmlWriterSerializer (see #19 for details) [FEATURE] New bridge for artax (with contributions by Markus Staab) [FEATURE] New bridge for Guzzle 4 (contribution by Robin van der Vleuten) [FEATURE] Allow HTTP transport headers to be controlled [FEATURE] Allow transport content type and charset to be controlled (see #9) [BC] Removing outdated PeclHttpBridge [BC] Requiring PHP 5.4 [BUG] Fixing huge issue in XmlWriterSerializer (see #4 for details) [FEATURE] Special API for multicall [FEATURE] Supports all Java XML/RPC extensions [BC] fXmlRpcAbstractDecorator and fXmlRpcClientInterface now includes methods to prepend and append parameters [BC] fXmlRpcClient is marked as final. Properties marked as private. Extend via decorator. [BC] Marked deprecated constructor of fXmlRpcValueBase64 as private. Additionally, the value object is final now [TESTING] Integration test suite against Java XML/RPC and Python XML/RPC [BUG] Fixing implicit string type handling (where string is no child of value) [IMPROVEMENT] Improved exception handling [BC] Changing naming scheme to studly caps [BUG] Fixing various array/struct edge cases [IMPROVEMENT] Small memory and performance improvements for serializers and parsers [BC] Deprecated constructor of fXmlRpcValueBase64 and introduced ::serialize() an ::deserialize() instead. [FEATURE] Adding fXmlRpcClient::prependParams() and fXmlRpcClient::appendParams() to set default params. This helps e.g. when you need to add authorization information for every call [FEATURE] Timing Loggers now support threshold based logging to ease controlling your servers responds in a certain time [TESTING] Travis now runs the test suite against various versions of supported HTTP clients and logging components.

How fast is it really?

IO performance is out of reach from a userspace perspective, but parsing and serialization speed is what matters. How fast can we generate the XML payload from PHP data structures and how fast can we parse the servers response? fXmlRpc uses stream based XML writers/readers to achieve it’s performance and heavily optimizes (read uglifies) for it. As as result the userland version is only around 2x slower than the native C implementation (ext/xmlrpc).

Parser

ZendXmlRpcValue (ZF2): 249.02972793579 sec Zend_XmlRpc_Value (ZF1): 253.88145494461 sec fXmlRpcParserXmlReaderParser: 36.274516105652 sec fXmlRpcParserNativeParser: 18.652323007584 sec

Serializer

ZendXmlRpcRequest (ZF2): 52.004573106766 sec Zend_XmlRpc_Request (ZF1): 65.042532920837 sec fXmlRpcSerializerXmlWriterSerializer: 23.652673006058 sec fXmlRpcSerializerNativeSerializer: 9.0790779590607 sec

Usage

Basic Usage

<?php $client = new fXmlRpcClient('http://endpoint.com'); $client->call('remoteMethod', array('arg1', true));

Using native (ext/xmlrpc based) serializer/parser (for even better performance)

<?php $client = new fXmlRpcClient( 'http://endpoint.com', null, new fXmlRpcParserNativeParser(), new fXmlRpcSerializerNativeSerializer() ); $client->call('remoteMethod', array('arg1', true));

Prepending and appending arguments

<?php $client = new fXmlRpcClient('http://endpoint.com'); $client->prependParams(array('username', 'password')); $client->appendParams(array('appended')); ...

Using a convenient Proxy object

<?php $proxy = new fXmlRpcProxy(new fXmlRpcClient('http://endpoint.com')); // Call system.echo $proxy->system->echo('Hello World!');

Tracking XML of the request and response

<?php $transport = new fXmlRpcTransportHttpAdapterTransport(...); $recorder = new Recorder($transport); $client = new Client('http://foo.com', $recorder); $client->call('TestMethod', ['param1', 2, ['param3' => true]]); $lastRequest = $recorder->getLastRequest(); $lastResponse = $recorder->getLastResponse();

If exception occur in the transport layer you can get it using getLastException().

Helpful abstraction for multicall requests

<?php $result = $client->multicall() ->addCall('system.add', array(1, 2)) ->addCall( 'system.add', array(2, 3), function ($result) { echo "Result was: " . $result; }, function($result) { echo "An error occured: " . var_export($result, true); } ) ->onSuccess(function ($result) {echo "Success";}) // Success handler for each call ->onError(function ($result) {echo "Error";}) // Error handler for each call ->execute();

Integration for various HTTP clients using Ivory

<?php /** Buzz (https://github.com/kriswallsmith/Buzz) */ $browser = new BuzzBrowser(); $browser->...(); $client = new fXmlRpcClient( 'http://endpoint.com', new fXmlRpcTransportHttpAdapterTransport(new IvoryHttpAdapterBuzzHttpAdapter($browser)) ); /** Zend Framework 1 (http://framework.zend.com/) */ $httpClient = new Zend_Http_Client(); $httpClient->...(); $client = new fXmlRpcClient( 'http://endpoint.com', new fXmlRpcTransportHttpAdapterTransport(new IvoryHttpAdapterZend1HttpAdapter($httpClient)) ); /** Zend Framework 2 (http://framework.zend.com/zf2) */ $httpClient = new ZendHttpClient(); $httpClient->...(); $client = new fXmlRpcClient( 'http://endpoint.com', new fXmlRpcTransportHttpAdapterTransport(new IvoryHttpAdapterZend2HttpAdapter($httpClient)) ); /** Guzzle (http://guzzlephp.org/) */ $httpClient = new GuzzleHttpClient(); $httpClient->...(); $client = new fXmlRpcClient( 'http://endpoint.com', new fXmlRpcTransportHttpAdapterTransport(new IvoryHttpAdapterGuzzleAdapter($httpClient)) ); /** Guzzle 4+ (http://guzzlephp.org/) */ $httpClient = new GuzzleHttpClient(); $httpClient->...(); $client = new fXmlRpcClient( 'http://endpoint.com', new fXmlRpcTransportHttpAdapterTransport(new IvoryHttpAdapterGuzzleHttpHttpAdapter($httpClient)) );

Timing XML/RPC requests to find problematic calls

fXmlRpc allows you to time your XML/RPC request, to find out which took how long. It provides a fXmlRpcTimingTimingDecorator which can be used with various timers implementing fXmlRpcTimingTimerInterface. Currently implemented are bridges for Monolog, Zend Framework 1 Zend_Log and Zend Framework 2 ZendLog.

Usage:

<?php $client = new fXmlRpcTimingTimingDecorator( new fXmlRpcClient(...), new fXmlRpcTimingMonologTimerBridge( $monolog, MonologLogger::ALERT, 'My custom log message template %F' ) );

版权声明:

1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。
2、网站不提供资料下载,如需下载请到原作者页面进行下载。
3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考学习用!
4、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。