19 declare(strict_types=1);
35 $this->
result =
new Result\Error(
'No XML parsed, yet');
40 if (0 === count($this->errorStack)) {
41 $this->xmlErrorState = libxml_use_internal_errors(
true);
42 libxml_clear_errors();
47 $this->errorStack[] = [];
52 $currentErrors = libxml_get_errors();
53 libxml_clear_errors();
55 $level = count($this->errorStack) - 1;
56 $this->errorStack[$level] = array_merge($this->errorStack[$level], $currentErrors);
66 $errors = array_pop($this->errorStack);
68 if (0 === count($this->errorStack)) {
69 libxml_use_internal_errors($this->xmlErrorState);
75 public function parse(
string $xmlString): void
80 $xml =
new SimpleXMLElement($xmlString);
82 $this->
result = $this->dataFactory->ok($xmlString);
85 $this->
result = $this->dataFactory->error(implode(
87 array_map(
static function (
LibXMLError $error):
string {
89 'level=' . $error->level,
90 'code=' . $error->code,
91 'line=' . $error->line,
92 'col=' . $error->column,
93 'msg=' . trim($error->message)
A result encapsulates a value or an error and simplifies the handling of those.
__construct(DataTypeFactory $dataFactory)
DataTypeFactory $dataFactory