Skip to content

Commit

Permalink
Use internal exceptions
Browse files Browse the repository at this point in the history
Fixes #254
  • Loading branch information
ramsey committed Dec 24, 2019
1 parent 56c0d54 commit 21fdb2a
Show file tree
Hide file tree
Showing 36 changed files with 336 additions and 40 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* Allow use of the [GMP extension](https://www.php.net/gmp) for number and time
conversion through the addition of `Converter\Number\GmpConverter` and
`Converter\Time\GmpTimeConverter`.
* Add an internal `InvalidArgumentException` that descends from the built-in
PHP `\InvalidArgumentException`. All places that used to throw
`\InvalidArgumentException` now throw `Ramsey\Uuid\Exception\InvalidArgumentException`.
This should not cause any BC breaks, however.

### Changed

Expand All @@ -37,6 +41,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* `NumberConverterInterface::toHex(string $number): string`
* `TimeConverterInterface::calculateTime(string $seconds, string $microSeconds): array`
* `TimeConverterInterface::convertTime(string $timestamp): string`
* `UnsatisfiedDependencyException` and `UnsupportedOperationException` are now
descended from `\LogicException`. Previously, they descended from `\RuntimeException`.

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion src/Codec/GuidStringCodec.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace Ramsey\Uuid\Codec;

use InvalidArgumentException;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Exception\InvalidUuidStringException;
use Ramsey\Uuid\UuidInterface;

Expand Down
2 changes: 1 addition & 1 deletion src/Codec/OrderedTimeCodec.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace Ramsey\Uuid\Codec;

use InvalidArgumentException;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\UuidInterface;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Codec/StringCodec.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

namespace Ramsey\Uuid\Codec;

use InvalidArgumentException;
use Ramsey\Uuid\Builder\UuidBuilderInterface;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Exception\InvalidUuidStringException;
use Ramsey\Uuid\Uuid;
use Ramsey\Uuid\UuidInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/Codec/TimestampFirstCombCodec.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace Ramsey\Uuid\Codec;

use InvalidArgumentException;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Exception\InvalidUuidStringException;
use Ramsey\Uuid\UuidInterface;

Expand Down
2 changes: 1 addition & 1 deletion src/Converter/Number/BigNumberConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

namespace Ramsey\Uuid\Converter\Number;

use InvalidArgumentException;
use Moontoast\Math\BigNumber;
use Ramsey\Uuid\Converter\DependencyCheckTrait;
use Ramsey\Uuid\Converter\NumberConverterInterface;
use Ramsey\Uuid\Converter\NumberStringTrait;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Exception\UnsatisfiedDependencyException;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Converter/Number/GmpConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

namespace Ramsey\Uuid\Converter\Number;

use InvalidArgumentException;
use Ramsey\Uuid\Converter\DependencyCheckTrait;
use Ramsey\Uuid\Converter\NumberConverterInterface;
use Ramsey\Uuid\Converter\NumberStringTrait;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Exception\UnsatisfiedDependencyException;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Converter/NumberStringTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace Ramsey\Uuid\Converter;

use InvalidArgumentException;
use Ramsey\Uuid\Exception\InvalidArgumentException;

/**
* Provides shared functionality to check the values of string numbers for
Expand Down
2 changes: 1 addition & 1 deletion src/Converter/Time/BigNumberTimeConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

namespace Ramsey\Uuid\Converter\Time;

use InvalidArgumentException;
use Moontoast\Math\BigNumber;
use Ramsey\Uuid\Converter\DependencyCheckTrait;
use Ramsey\Uuid\Converter\NumberStringTrait;
use Ramsey\Uuid\Converter\TimeConverterInterface;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Exception\UnsatisfiedDependencyException;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Converter/Time/GmpTimeConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

namespace Ramsey\Uuid\Converter\Time;

use InvalidArgumentException;
use Ramsey\Uuid\Converter\DependencyCheckTrait;
use Ramsey\Uuid\Converter\NumberStringTrait;
use Ramsey\Uuid\Converter\TimeConverterInterface;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Exception\UnsatisfiedDependencyException;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Converter/Time/PhpTimeConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

namespace Ramsey\Uuid\Converter\Time;

use InvalidArgumentException;
use Ramsey\Uuid\Converter\DependencyCheckTrait;
use Ramsey\Uuid\Converter\NumberStringTrait;
use Ramsey\Uuid\Converter\TimeConverterInterface;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Exception\UnsatisfiedDependencyException;

/**
Expand Down
22 changes: 17 additions & 5 deletions src/DegradedUuid.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

use DateTimeImmutable;
use DateTimeInterface;
use Exception;
use Ramsey\Uuid\Exception\DateTimeException;
use Ramsey\Uuid\Exception\UnsatisfiedDependencyException;
use Ramsey\Uuid\Exception\UnsupportedOperationException;

Expand All @@ -31,6 +33,8 @@ class DegradedUuid extends Uuid
/**
* @return DateTimeImmutable An immutable instance of DateTimeInterface
*
* @throws DateTimeException if DateTime throws an exception/error
* @throws UnsatisfiedDependencyException if large integer support is not available
* @throws UnsupportedOperationException if UUID is not time-based
*/
public function getDateTime(): DateTimeInterface
Expand All @@ -42,11 +46,19 @@ public function getDateTime(): DateTimeInterface
$time = $this->numberConverter->fromHex($this->getTimestampHex());
$unixTime = $this->timeConverter->convertTime($time);

return new DateTimeImmutable("@{$unixTime}");
try {
return new DateTimeImmutable("@{$unixTime}");
} catch (Exception $exception) {
throw new DateTimeException(
$exception->getMessage(),
$exception->getCode(),
$exception
);
}
}

/**
* @throws UnsatisfiedDependencyException if called on a 32-bit system
* @throws UnsatisfiedDependencyException if large integer support is not available
*
* @inheritDoc
*/
Expand All @@ -60,7 +72,7 @@ public function getFields(): array
}

/**
* @throws UnsatisfiedDependencyException if called on a 32-bit system
* @throws UnsatisfiedDependencyException if large integer support is not available
*/
public function getNode(): int
{
Expand All @@ -73,7 +85,7 @@ public function getNode(): int
}

/**
* @throws UnsatisfiedDependencyException if called on a 32-bit system
* @throws UnsatisfiedDependencyException if large integer support is not available
*/
public function getTimeLow(): int
{
Expand All @@ -86,7 +98,7 @@ public function getTimeLow(): int
}

/**
* @throws UnsatisfiedDependencyException if called on a 32-bit system
* @throws UnsatisfiedDependencyException if large integer support is not available
* @throws UnsupportedOperationException if UUID is not time-based
*/
public function getTimestamp(): int
Expand Down
24 changes: 24 additions & 0 deletions src/Exception/DateTimeException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

/**
* This file is part of the ramsey/uuid library
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
* @license http://opensource.org/licenses/MIT MIT
*/

declare(strict_types=1);

namespace Ramsey\Uuid\Exception;

use RuntimeException as PhpRuntimeException;

/**
* Thrown to indicate that the PHP DateTime extension encountered an exception/error
*/
class DateTimeException extends PhpRuntimeException
{
}
24 changes: 24 additions & 0 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

/**
* This file is part of the ramsey/uuid library
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
* @license http://opensource.org/licenses/MIT MIT
*/

declare(strict_types=1);

namespace Ramsey\Uuid\Exception;

use InvalidArgumentException as PhpInvalidArgumentException;

/**
* Thrown to indicate that the argument received is not valid
*/
class InvalidArgumentException extends PhpInvalidArgumentException
{
}
7 changes: 4 additions & 3 deletions src/Exception/InvalidUuidStringException.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@

namespace Ramsey\Uuid\Exception;

use InvalidArgumentException;

/**
* Thrown to indicate that the parsed UUID string is invalid.
* Thrown to indicate that the string received is not a valid UUID
*
* The InvalidArgumentException that this extends is the ramsey/uuid version
* of this exception. It exists in the same namespace as this class.
*/
class InvalidUuidStringException extends InvalidArgumentException
{
Expand Down
27 changes: 27 additions & 0 deletions src/Exception/RandomSourceException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

/**
* This file is part of the ramsey/uuid library
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
* @license http://opensource.org/licenses/MIT MIT
*/

declare(strict_types=1);

namespace Ramsey\Uuid\Exception;

use RuntimeException as PhpRuntimeException;

/**
* Thrown to indicate that the source of random data encountered an error
*
* This exception is used mostly to indicate that random_bytes() or random_int()
* threw an exception. However, it may be used for other sources of random data.
*/
class RandomSourceException extends PhpRuntimeException
{
}
6 changes: 3 additions & 3 deletions src/Exception/UnsatisfiedDependencyException.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

namespace Ramsey\Uuid\Exception;

use RuntimeException;
use LogicException as PhpLogicException;

/**
* Thrown to indicate that the requested operation has dependencies that have not
* been satisfied.
* been satisfied
*/
class UnsatisfiedDependencyException extends RuntimeException
class UnsatisfiedDependencyException extends PhpLogicException
{
}
6 changes: 3 additions & 3 deletions src/Exception/UnsupportedOperationException.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

namespace Ramsey\Uuid\Exception;

use RuntimeException;
use LogicException as PhpLogicException;

/**
* Thrown to indicate that the requested operation is not supported.
* Thrown to indicate that the requested operation is not supported
*/
class UnsupportedOperationException extends RuntimeException
class UnsupportedOperationException extends PhpLogicException
{
}
2 changes: 1 addition & 1 deletion src/Generator/CombGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

namespace Ramsey\Uuid\Generator;

use InvalidArgumentException;
use Ramsey\Uuid\Converter\NumberConverterInterface;
use Ramsey\Uuid\Exception\InvalidArgumentException;

/**
* CombGenerator generates COMBs (combined UUID/timestamp)
Expand Down
17 changes: 14 additions & 3 deletions src/Generator/DefaultTimeGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@

namespace Ramsey\Uuid\Generator;

use InvalidArgumentException;
use Exception;
use Ramsey\Uuid\BinaryUtils;
use Ramsey\Uuid\Converter\TimeConverterInterface;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Exception\RandomSourceException;
use Ramsey\Uuid\Provider\NodeProviderInterface;
use Ramsey\Uuid\Provider\TimeProviderInterface;

Expand Down Expand Up @@ -53,6 +55,7 @@ public function __construct(

/**
* @throws InvalidArgumentException if the parameters contain invalid values
* @throws RandomSourceException if random_int() throws an exception/error
*
* @inheritDoc
*/
Expand All @@ -61,8 +64,16 @@ public function generate($node = null, ?int $clockSeq = null): string
$node = $this->getValidNode($node);

if ($clockSeq === null) {
// This does not use "stable storage"; see RFC 4122, Section 4.2.1.1.
$clockSeq = random_int(0, 0x3fff);
try {
// This does not use "stable storage"; see RFC 4122, Section 4.2.1.1.
$clockSeq = random_int(0, 0x3fff);
} catch (Exception $exception) {
throw new RandomSourceException(
$exception->getMessage(),
$exception->getCode(),
$exception
);
}
}

// Create a 60-bit time value as a count of 100-nanosecond intervals
Expand Down
Loading

0 comments on commit 21fdb2a

Please sign in to comment.