bitandblack / xmlprocessor
Fastest handling of huge XML data.
Requires
- php: >=7.4
- ext-dom: *
- psr/log: ^1.0 || ^2.0 || ^3.0
Requires (Dev)
- bitandblack/measurement: ^0
- monolog/monolog: ^3.0
- phpstan/phpstan: ^1.0
- phpunit/phpunit: ^9.0
- rector/rector: ^0.12
- symfony/console: ^6.0
- symplify/easy-coding-standard: ^10.2
README
XMLProcessor
Fastest handling of huge XML data.
The Bit&Black XML Processor is up to 20 times faster in parsing huge xml data.
This is because it doesn't make use of foreach
to handle XML nodes. Instead, the processor uses a while
loop and a copy of the DOMElements.
Installation
This library is made for the use with Composer. Add it to your project by running $ composer require bitandblack/xmlprocessor
.
Usage
Set up the processor with your xml data:
<?php
use DOMDocument;
use BitAndBlack\XML\XMLProcessor;
$domDocument = new DOMDocument();
$domDocument->load('your_huge_file.xml');
$xmlProcessor = new XMLProcessor($domDocument);
Use eachElement()
now instead of foreach
:
<?php
//$nodes = $domDocument->getElementsByTagName('some_node'):
//
//foreach ($nodes as $key => $node) {
// var_dump('Found at position ' . $key . ' node with id ' . $node->getAttribute('id'));
//}
$xmlProcessor->eachElement(
static function(DOMDocument $domDocument) {
return $domDocument->getElementsByTagName('some_node');
},
static function(DOMNode $node, int $key) {
var_dump('Found at position ' . $key . ' node with id ' . $node->getAttribute('id'));
}
);
The first attribute is a function where you can set up the statement with whom you can select the nodes you want to.
The second attribute is a callback function which is called for every processed item.
eachElement()
makes a clone of the DOM to reach a fast processing so modifying the original DOM at the same time will not target the processed data.
Help
If you have questions feel free to contact us under hello@bitandblack.com
.
Further information about Bit&Black can be found under www.bitandblack.com.