commit 1b83852d0abce97f05658719122930bc8bf7b1a9 Author: prolic Date: Tue Jun 26 19:14:24 2018 +0800 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c4c133 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.php_cs.cache +.idea +build +composer.lock +phpunit.xml +vendor +*.pid diff --git a/README.md b/README.md new file mode 100644 index 0000000..c8742b1 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Amp SQL + +## About + +This package provides interfaces and common classes shared by [amp/mysql](https://github.com/amphp/mysql/) and [amp/postgres](https://github.com/amphp/postgres/). + +## Requirements + +- PHP 7.0+ + +## Versioning + +`amphp/sql` follows the [semver](http://semver.org/) semantic versioning specification like all other `amphp` packages. + +## Security + +If you discover any security related issues, please email [`contact@amphp.org`](mailto:contact@amphp.org) instead of using the issue tracker. + +## License + +The MIT License (MIT). Please see [`LICENSE`](./LICENSE) for more information. diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b398408 --- /dev/null +++ b/composer.json @@ -0,0 +1,26 @@ +{ + "name": "amphp/sql", + "description": "Asynchronous SQL client for Amp.", + "keywords": [ + "database", + "db", + "sql", + "asynchronous", + "async" + ], + "homepage": "http://amphp.org", + "license": "MIT", + "require": { + "amphp/amp": "^2" + }, + "autoload": { + "psr-4": { + "Amp\\Sql\\": "src" + } + }, + "config": { + "platform": { + "php": "7.0.0" + } + } +} diff --git a/src/CommandResult.php b/src/CommandResult.php new file mode 100644 index 0000000..cdc86ed --- /dev/null +++ b/src/CommandResult.php @@ -0,0 +1,12 @@ + + */ + public function connect(string $connectionString): Promise; +} diff --git a/src/Executor.php b/src/Executor.php new file mode 100644 index 0000000..50a2c31 --- /dev/null +++ b/src/Executor.php @@ -0,0 +1,53 @@ + + * + * @throws \Amp\Sql\FailureException If the operation fails due to unexpected condition. + * @throws \Amp\Sql\ConnectionException If the connection to the database is lost. + * @throws \Amp\Sql\QueryError If the operation fails due to an error in the query (such as a syntax error). + */ + public function query(string $sql): Promise; + + /** + * @param string $sql SQL query to prepare. + * + * @return \Amp\Promise<\Amp\Mysql\Statement> + * + * @throws \Amp\Sql\FailureException If the operation fails due to unexpected condition. + * @throws \Amp\Sql\ConnectionException If the connection to the database is lost. + * @throws \Amp\Sql\QueryError If the operation fails due to an error in the query (such as a syntax error). + */ + public function prepare(string $sql): Promise; + + /** + * @param string $sql SQL query to prepare and execute. + * @param mixed[] $params Query parameters. + * + * @return \Amp\Promise<\Amp\Sql\CommandResult|\Amp\Sql\ResultSet> + * + * @throws \Amp\Sql\FailureException If the operation fails due to unexpected condition. + * @throws \Amp\Sql\ConnectionException If the connection to the database is lost. + * @throws \Amp\Sql\QueryError If the operation fails due to an error in the query (such as a syntax error). + */ + public function execute(string $sql, array $params = []): Promise; + + /** + * Indicates if the connection to the database is still alive. + * + * @return bool + */ + public function isAlive(): bool; + + /** + * Closes the executor. No further queries may be performed. + */ + public function close(); +} diff --git a/src/FailureException.php b/src/FailureException.php new file mode 100644 index 0000000..31171ea --- /dev/null +++ b/src/FailureException.php @@ -0,0 +1,6 @@ + + */ + public function extractConnection(): Promise; + + /** + * {@inheritdoc} + */ + public function transaction(int $isolation = Transaction::COMMITTED): Promise; +} diff --git a/src/PoolError.php b/src/PoolError.php new file mode 100644 index 0000000..150e1ca --- /dev/null +++ b/src/PoolError.php @@ -0,0 +1,6 @@ +query = $query; + } + parent::__construct($message, 0, $previous); + } + + final public function getQuery(): string { + return $this->query; + } + + public function __toString(): string { + if ($this->query == "") { + return parent::__toString(); + } + + $msg = $this->message; + $this->message .= "\nCurrent query was {$this->query}"; + $str = parent::__toString(); + $this->message = $msg; + return $str; + } +} diff --git a/src/ResultSet.php b/src/ResultSet.php new file mode 100644 index 0000000..8f14ba7 --- /dev/null +++ b/src/ResultSet.php @@ -0,0 +1,19 @@ + + */ + public function execute(array $params = []): Promise; + + /** + * @return bool True if the statement can still be executed, false if the connection has died. + */ + public function isAlive(): bool; + + /** + * @return string The SQL string used to prepare the statement. + */ + public function getQuery(): string; + + /** + * @return int Timestamp of when the statement was last used. + */ + public function lastUsedAt(): int; +} diff --git a/src/Transaction.php b/src/Transaction.php new file mode 100644 index 0000000..5a800cb --- /dev/null +++ b/src/Transaction.php @@ -0,0 +1,106 @@ + + * + * @throws \Amp\Sql\TransactionError If the transaction has been committed or rolled back. + */ + public function commit(): Promise; + + /** + * Rolls back the transaction and makes it inactive. + * + * @return \Amp\Promise<\Amp\Sql\CommandResult> + * + * @throws \Amp\Sql\TransactionError If the transaction has been committed or rolled back. + */ + public function rollback(): Promise; + + /** + * Creates a savepoint with the given identifier. + * + * @param string $identifier Savepoint identifier. + * + * @return \Amp\Promise<\Amp\Sql\CommandResult> + * + * @throws \Amp\Sql\TransactionError If the transaction has been committed or rolled back. + */ + public function savepoint(string $identifier): Promise; + + /** + * Rolls back to the savepoint with the given identifier. + * + * @param string $identifier Savepoint identifier. + * + * @return \Amp\Promise<\Amp\Sql\CommandResult> + * + * @throws \Amp\Sql\TransactionError If the transaction has been committed or rolled back. + */ + public function rollbackTo(string $identifier): Promise; + + /** + * Releases the savepoint with the given identifier. + * + * @param string $identifier Savepoint identifier. + * + * @return \Amp\Promise<\Amp\Sql\CommandResult> + * + * @throws \Amp\Sql\TransactionError If the transaction has been committed or rolled back. + */ + public function release(string $identifier): Promise; +} diff --git a/src/TransactionError.php b/src/TransactionError.php new file mode 100644 index 0000000..05faa12 --- /dev/null +++ b/src/TransactionError.php @@ -0,0 +1,6 @@ +