2014-11-11 17:11:58 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp;
|
|
|
|
|
2015-01-29 04:30:02 +01:00
|
|
|
/**
|
2015-04-03 17:56:16 +02:00
|
|
|
* A "safe" struct trait for public property aggregators
|
2015-02-05 18:17:05 +01:00
|
|
|
*
|
2015-04-03 17:56:16 +02:00
|
|
|
* This trait is intended to make using public properties a little safer by throwing when
|
|
|
|
* nonexistent property names are read or written.
|
2015-01-29 04:30:02 +01:00
|
|
|
*/
|
2015-04-03 17:56:16 +02:00
|
|
|
trait Struct {
|
2015-05-13 16:05:23 +02:00
|
|
|
/**
|
|
|
|
* The minimum percentage [0-100] at which to recommend a similar property
|
|
|
|
* name when generating error messages.
|
|
|
|
*/
|
|
|
|
private $__propertySuggestThreshold = 70;
|
|
|
|
|
2016-08-14 04:41:47 +02:00
|
|
|
public function __get($property) {
|
2016-08-12 23:58:53 +02:00
|
|
|
throw new \Error(
|
2015-04-03 17:56:16 +02:00
|
|
|
$this->generateStructPropertyError($property)
|
2014-11-11 17:11:58 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-08-14 04:41:47 +02:00
|
|
|
public function __set($property, $value) {
|
2016-08-12 23:58:53 +02:00
|
|
|
throw new \Error(
|
2015-04-03 17:56:16 +02:00
|
|
|
$this->generateStructPropertyError($property)
|
2014-11-11 17:11:58 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-04-03 17:56:16 +02:00
|
|
|
private function generateStructPropertyError($property) {
|
2015-05-13 16:05:23 +02:00
|
|
|
$suggestion = $this->suggestPropertyName($property);
|
|
|
|
$suggestStr = ($suggestion == "") ? "" : " ... did you mean \"{$suggestion}?\"";
|
|
|
|
|
|
|
|
return sprintf(
|
|
|
|
"%s property \"%s\" does not exist%s",
|
|
|
|
get_class($this),
|
|
|
|
$property,
|
|
|
|
$suggestStr
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function suggestPropertyName($badProperty) {
|
|
|
|
$badProperty = strtolower($badProperty);
|
|
|
|
$bestMatch = "";
|
|
|
|
$bestMatchPercentage = 0.00;
|
|
|
|
$byRefPercentage = 0.00;
|
|
|
|
foreach ($this as $property => $value) {
|
|
|
|
// Never suggest properties that begin with an underscore
|
|
|
|
if ($property[0] === "_") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
\similar_text($badProperty, strtolower($property), $byRefPercentage);
|
|
|
|
if ($byRefPercentage > $bestMatchPercentage) {
|
|
|
|
$bestMatchPercentage = $byRefPercentage;
|
|
|
|
$bestMatch = $property;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ($bestMatchPercentage >= $this->__propertySuggestThreshold) ? $bestMatch : "";
|
2014-11-11 17:11:58 +01:00
|
|
|
}
|
|
|
|
}
|