U wilt een streaming-parser gebruiken. Deze halen slechts kleine delen van uw bestand tegelijk in het geheugen.
Ze zijn er in een aantal verschillende smaken:SAX-achtige push-parsers en pull-parsers. XML-lezermodellen:SAX versus XML-pullparser geeft een overzicht van het verschil.
Push-parser
Dit is een snel voorbeeld van het gebruik van schorseneren/json-streaming-parser.
Terwijl het door het bestand rolt, houden we de summonerId
bij , championId
, en staat. Het is allemaal op gebeurtenissen gebaseerd - je krijgt geen willekeurige toegang met een sequentiële parser, dus je moet dingen zelf bijhouden. Elke keer dat een totalSessionsPlayed
komt, echoot het de summonerId , championId , en totalSessionsPlayed .
data.json
Dit is een gekoppeld json-bestand voor demonstratiedoeleinden.
[
{
"_id": "53b29644aafd413977b23b7e",
"summonerId": 24570940,
"region": "euw",
"stats": {
"110": {
"totalSessionsPlayed": 3,
"totalSessionsLost": 2,
"totalSessionsWon": 1
},
"112": {
"totalSessionsPlayed": 45,
"totalSessionsLost": 2,
"totalSessionsWon": 1
}
}
},
{
"_id": "asdfasdfasdf",
"summonerId": 555555,
"region": "euw",
"stats": {
"42": {
"totalSessionsPlayed": 65,
"totalSessionsLost": 2,
"totalSessionsWon": 1
},
"88": {
"totalSessionsPlayed": 99,
"totalSessionsLost": 2,
"totalSessionsWon": 1
}
}
}
]
Voorbeeld:
class ListMatchUps extends JsonStreamingParser\Listener\IdleListener
{
private $key;
private $summonerId;
private $championId;
private $inStats;
public function start_document()
{
$this->key = null;
$this->summonerId = null;
$this->championId = null;
$this->inStats = false;
}
public function start_object()
{
if ($this->key === 'stats') {
$this->inStats = true;
} else if ($this->inStats) {
$this->championId = $this->key;
}
}
public function end_object()
{
if ($this->championId !== null) {
$this->championId = null;
} else if ($this->inStats) {
$this->inStats = false;
} else {
$this->summonerId = null;
}
}
public function key($key)
{
$this->key = $key;
}
public function value($value)
{
switch ($this->key) {
case 'summonerId':
$this->summonerId = $value;
break;
case 'totalSessionsPlayed':
echo "{$this->summonerId},{$this->championId},$value\n";
break;
}
}
}
$stream = fopen('data.json', 'r');
$listener = new ListMatchUps();
try {
$parser = new JsonStreamingParser_Parser($stream, $listener);
$parser->parse();
} catch (Exception $e) {
fclose($stream);
throw $e;
}
Uitvoer:
24570940,110,3
24570940,112,45
555555,42,65
555555,88,99
Trek Parser
Dit gebruikt een parser die ik onlangs heb geschreven, pcrov/jsonreader (vereist PHP 7.)
Zelfde data.json als hierboven.
Voorbeeld:
use pcrov\JsonReader\JsonReader;
$reader = new JsonReader();
$reader->open("data.json");
while($reader->read("summonerId")) {
$summonerId = $reader->value();
$reader->next("stats");
foreach($reader->value() as $championId => $stats) {
echo "$summonerId, $championId, {$stats['totalSessionsPlayed']}\n";
}
}
$reader->close();
Uitvoer:
24570940, 110, 3
24570940, 112, 45
555555, 42, 65
555555, 88, 99