nur-sery/src/schema/schemas/AssocSchema.php

57 lines
1.6 KiB
PHP
Raw Normal View History

2023-11-24 16:50:05 +04:00
<?php
2023-11-27 22:39:35 +04:00
namespace nur\sery\schema\schemas;
2023-11-24 16:50:05 +04:00
use nulib\cl;
2023-11-27 22:39:35 +04:00
use nur\sery\schema\input\Input;
use nur\sery\schema\Schema;
use nur\sery\schema\Value;
use nur\sery\schema\values\AssocValue;
use nur\sery\schema\values\ScalarValue;
2023-11-24 16:50:05 +04:00
class AssocSchema extends Schema {
/** @var array meta-schema d'un schéma de nature tableau associatif */
const METASCHEMA = [];
/**
* indiquer si $definition est une définition de schéma de nature tableau
* associatif que {@link normalize()} pourrait normaliser
*/
static function isa_definition($definition): bool {
if (!is_array($definition)) return false;
# nature explicitement spécifiée
if (array_key_exists("", $definition)) {
$nature = $definition[""];
if ($nature === "assoc") return true;
if (is_array($nature)
&& array_key_exists(0, $nature)
&& $nature[0] === "assoc") {
return true;
}
return false;
}
# un tableau associatif
return !cl::have_num_keys($definition);
}
static function normalize($definition): array {
}
function __construct($definition=null, bool $normalize=true) {
if ($definition === null) $definition = static::SCHEMA;
if ($normalize) $definition = self::normalize($definition);
$this->definition = $definition;
}
2023-11-24 22:36:33 +04:00
2023-11-25 10:04:24 +04:00
function isAssoc(?AssocSchema &$assoc=null): bool {
$assoc = $this;
2023-11-24 22:36:33 +04:00
return true;
}
2023-11-27 22:39:35 +04:00
function nv(?Value &$value=null, &$dest=null, $key=null): Value {
if (!($value instanceof AssocValue)) $value = new AssocValue($this);
if ($dest instanceof Input) $input = $dest;
else $input = new Input($dest);
return $value->reset($input, $key);
}
2023-11-24 16:50:05 +04:00
}