abstract class Measurement in Physical Fields 8
Same name in this branch
- 8 src/Measurement.php \Drupal\physical\Measurement
- 8 src/Element/Measurement.php \Drupal\physical\Element\Measurement
Provides a base class for measurement value objects.
Hierarchy
- class \Drupal\physical\Measurement
Expanded class hierarchy of Measurement
2 files declare their use of Measurement
- MeasurementComparator.php in src/
Comparator/ MeasurementComparator.php - MeasurementItem.php in src/
Plugin/ Field/ FieldType/ MeasurementItem.php
1 string reference to 'Measurement'
- physical.schema.yml in config/
schema/ physical.schema.yml - config/schema/physical.schema.yml
File
- src/
Measurement.php, line 8
Namespace
Drupal\physicalView source
abstract class Measurement {
/**
* The measurement type.
*
* Must be defined by each subclass.
*
* @var string
*/
protected $type = '';
/**
* The number.
*
* @var string
*/
protected $number;
/**
* The unit.
*
* @var string
*/
protected $unit;
/**
* Constructs a new Measurement object.
*
* @param string $number
* The number.
* @param string $unit
* The unit.
*/
public function __construct($number, $unit) {
Calculator::assertNumberFormat($number);
/** @var \Drupal\physical\UnitInterface $unit_class */
$unit_class = MeasurementType::getUnitClass($this->type);
$unit_class::assertExists($unit);
$this->number = (string) $number;
$this->unit = $unit;
}
/**
* Gets the number.
*
* @return string
* The number.
*/
public function getNumber() {
return $this->number;
}
/**
* Gets the unit.
*
* @return string
* The unit.
*/
public function getUnit() {
return $this->unit;
}
/**
* Gets the string representation of the measurement.
*
* @return string
* The string representation of the measurement.
*/
public function __toString() {
return Calculator::trim($this->number) . ' ' . $this->unit;
}
/**
* Gets the array representation of the measurement.
*
* @return array
* The array representation of the measurement.
*/
public function toArray() {
return [
'number' => $this->number,
'unit' => $this->unit,
];
}
/**
* Converts the current measurement to a new unit.
*
* @param string $new_unit
* The new unit.
*
* @return static
* The resulting length.
*/
public function convert($new_unit) {
/** @var \Drupal\physical\UnitInterface $unit_class */
$unit_class = MeasurementType::getUnitClass($this->type);
// Convert the number to the base unit, then from there to the new unit.
$base_number = Calculator::multiply($this->number, $unit_class::getBaseFactor($this->unit));
$new_number = Calculator::divide($base_number, $unit_class::getBaseFactor($new_unit));
return new static($new_number, $new_unit);
}
/**
* Adds the given measurement to the current one.
*
* @param \Drupal\physical\Measurement $measurement
* The measurement.
*
* @return static
* The resulting measurement.
*/
public function add(Measurement $measurement) {
if ($this->unit != $measurement
->getUnit()) {
$measurement = $measurement
->convert($this->unit);
}
$new_number = Calculator::add($this->number, $measurement
->getNumber());
return new static($new_number, $this->unit);
}
/**
* Subtracts the given measurement from the current one.
*
* @param \Drupal\physical\Measurement $measurement
* The measurement.
*
* @return static
* The resulting measurement.
*/
public function subtract(Measurement $measurement) {
if ($this->unit != $measurement
->getUnit()) {
$measurement = $measurement
->convert($this->unit);
}
$new_number = Calculator::subtract($this->number, $measurement
->getNumber());
return new static($new_number, $this->unit);
}
/**
* Multiplies the current measurement by the given number.
*
* @param string $number
* The number.
*
* @return static
* The resulting measurement.
*/
public function multiply($number) {
$new_number = Calculator::multiply($this->number, $number);
return new static($new_number, $this->unit);
}
/**
* Divides the current measurement by the given number.
*
* @param string $number
* The number.
*
* @return static
* The resulting measurement.
*/
public function divide($number) {
$new_number = Calculator::divide($this->number, $number);
return new static($new_number, $this->unit);
}
/**
* Rounds the current measurement.
*
* @param int $precision
* The number of decimals to round to.
* @param int $mode
* The rounding mode. One of the following constants: PHP_ROUND_HALF_UP,
* PHP_ROUND_HALF_DOWN, PHP_ROUND_HALF_EVEN, PHP_ROUND_HALF_ODD.
*
* @return static
* The rounded measurement.
*/
public function round($precision = 0, $mode = PHP_ROUND_HALF_UP) {
$new_number = Calculator::round($this->number, $precision, $mode);
return new static($new_number, $this->unit);
}
/**
* Compares the current measurement with the given one.
*
* @param \Drupal\physical\Measurement $measurement
* The measurement.
*
* @return int
* 0 if both measurements are equal, 1 if the first one is greater,
* -1 otherwise.
*/
public function compareTo(Measurement $measurement) {
if ($this->unit != $measurement
->getUnit()) {
$measurement = $measurement
->convert($this->unit);
}
return Calculator::compare($this->number, $measurement
->getNumber());
}
/**
* Gets whether the current measurement is zero.
*
* @return bool
* TRUE if the measurement is zero, FALSE otherwise.
*/
public function isZero() {
return Calculator::compare($this->number, '0') == 0;
}
/**
* Gets whether the current measurement is equivalent to the given one.
*
* @param \Drupal\physical\Measurement $measurement
* The measurement.
*
* @return bool
* TRUE if the measurements are equal, FALSE otherwise.
*/
public function equals(Measurement $measurement) {
return $this
->compareTo($measurement) == 0;
}
/**
* Gets whether the current measurement is greater than the given one.
*
* @param \Drupal\physical\Measurement $measurement
* The measurement.
*
* @return bool
* TRUE if the current measurement is greater than the given measurement,
* FALSE otherwise.
*/
public function greaterThan(Measurement $measurement) {
return $this
->compareTo($measurement) == 1;
}
/**
* Gets whether the current measurement is greater than or equal to the given one.
*
* @param \Drupal\physical\Measurement $measurement
* The measurement.
*
* @return bool
* TRUE if the current measurement is greater than or equal to the given
* one, FALSE otherwise.
*/
public function greaterThanOrEqual(Measurement $measurement) {
return $this
->greaterThan($measurement) || $this
->equals($measurement);
}
/**
* Gets whether the current measurement is lesser than the given measurement.
*
* @param \Drupal\physical\Measurement $measurement
* The measurement.
*
* @return bool
* TRUE if the current measurement is lesser than the given one,
* FALSE otherwise.
*/
public function lessThan(Measurement $measurement) {
return $this
->compareTo($measurement) == -1;
}
/**
* Gets whether the current measurement is lesser than or equal to the given measurement.
*
* @param \Drupal\physical\Measurement $measurement
* The measurement.
*
* @return bool
* TRUE if the current measurement is lesser than or equal to the given measurement,
* FALSE otherwise.
*/
public function lessThanOrEqual(Measurement $measurement) {
return $this
->lessThan($measurement) || $this
->equals($measurement);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Measurement:: |
protected | property | The number. | |
Measurement:: |
protected | property | The measurement type. | 5 |
Measurement:: |
protected | property | The unit. | |
Measurement:: |
public | function | Adds the given measurement to the current one. | |
Measurement:: |
public | function | Compares the current measurement with the given one. | |
Measurement:: |
public | function | Converts the current measurement to a new unit. | 1 |
Measurement:: |
public | function | Divides the current measurement by the given number. | |
Measurement:: |
public | function | Gets whether the current measurement is equivalent to the given one. | |
Measurement:: |
public | function | Gets the number. | |
Measurement:: |
public | function | Gets the unit. | |
Measurement:: |
public | function | Gets whether the current measurement is greater than the given one. | |
Measurement:: |
public | function | Gets whether the current measurement is greater than or equal to the given one. | |
Measurement:: |
public | function | Gets whether the current measurement is zero. | |
Measurement:: |
public | function | Gets whether the current measurement is lesser than the given measurement. | |
Measurement:: |
public | function | Gets whether the current measurement is lesser than or equal to the given measurement. | |
Measurement:: |
public | function | Multiplies the current measurement by the given number. | |
Measurement:: |
public | function | Rounds the current measurement. | |
Measurement:: |
public | function | Subtracts the given measurement from the current one. | |
Measurement:: |
public | function | Gets the array representation of the measurement. | |
Measurement:: |
public | function | Constructs a new Measurement object. | |
Measurement:: |
public | function | Gets the string representation of the measurement. |