Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
842243af
Commit
842243af
authored
Jun 13, 2012
by
Benjamin Eberlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Sharding] Change license from LGPL to MIT.
parent
1f4eebf4
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
18 additions
and
334 deletions
+18
-334
DefaultSchemaSynchronizer.php
lib/Doctrine/DBAL/Sharding/DefaultSchemaSynchronizer.php
+0
-220
PoolingShardConnection.php
lib/Doctrine/DBAL/Sharding/PoolingShardConnection.php
+1
-1
PoolingShardManager.php
lib/Doctrine/DBAL/Sharding/PoolingShardManager.php
+1
-1
SQLAzureFederationsSynchronizer.php
...BAL/Sharding/SQLAzure/SQLAzureFederationsSynchronizer.php
+6
-6
SQLAzureShardManager.php
lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php
+1
-1
MultiTenantVisitor.php
...rine/DBAL/Sharding/SQLAzure/Schema/MultiTenantVisitor.php
+1
-1
SchemaSynchronizer.php
lib/Doctrine/DBAL/Sharding/SchemaSynchronizer.php
+0
-96
MultiTenantShardChoser.php
...rine/DBAL/Sharding/ShardChoser/MultiTenantShardChoser.php
+1
-1
ShardChoser.php
lib/Doctrine/DBAL/Sharding/ShardChoser/ShardChoser.php
+1
-1
ShardManager.php
lib/Doctrine/DBAL/Sharding/ShardManager.php
+1
-1
ShardingException.php
lib/Doctrine/DBAL/Sharding/ShardingException.php
+1
-1
JsonArrayType.php
lib/Doctrine/DBAL/Types/JsonArrayType.php
+2
-2
SimpleArrayType.php
lib/Doctrine/DBAL/Types/SimpleArrayType.php
+2
-2
No files found.
lib/Doctrine/DBAL/Sharding/DefaultSchemaSynchronizer.php
deleted
100644 → 0
View file @
1f4eebf4
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace
Doctrine\DBAL\Sharding
;
use
Doctrine\DBAL\Connection
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Comparator
;
use
Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector
;
/**
* Schema Synchronizer for Default DBAL Connection
*
* @author Benjamin Eberlei <kontakt@beberlei.de>
*/
class
DefaultSchemaSynchronizer
implements
SchemaSynchronizer
{
/**
* @var Doctrine\DBAL\Connection
*/
private
$conn
;
/**
* @var Doctrine\DBAL\Platforms\AbstractPlatform
*/
private
$platform
;
public
function
__construct
(
Connection
$conn
)
{
$this
->
conn
=
$conn
;
$this
->
platform
=
$conn
->
getDatabasePlatform
();
}
/**
* Get the SQL statements that can be executed to create the schema.
*
* @param Schema $createSchema
* @return array
*/
public
function
getCreateSchema
(
Schema
$createSchema
)
{
return
$createSchema
->
toSql
(
$this
->
platform
);
}
/**
* Get the SQL Statements to update given schema with the underlying db.
*
* @param Schema $toSchema
* @param bool $noDrops
* @return array
*/
public
function
getUpdateSchema
(
Schema
$toSchema
,
$noDrops
=
false
)
{
$comparator
=
new
Comparator
();
$sm
=
$this
->
conn
->
getSchemaManager
();
$fromSchema
=
$sm
->
createSchema
();
$schemaDiff
=
$comparator
->
compare
(
$fromSchema
,
$toSchema
);
if
(
$noDrops
)
{
return
$schemaDiff
->
toSaveSql
(
$this
->
platform
);
}
else
{
return
$schemaDiff
->
toSql
(
$this
->
platform
);
}
}
/**
* Get the SQL Statements to drop the given schema from underlying db.
*
* @param Schema $dropSchema
* @return array
*/
public
function
getDropSchema
(
Schema
$dropSchema
)
{
$visitor
=
new
DropSchemaSqlCollector
(
$this
->
platform
);
$sm
=
$this
->
conn
->
getSchemaManager
();
$fullSchema
=
$sm
->
createSchema
();
foreach
(
$fullSchema
->
getTables
()
as
$table
)
{
if
(
$dropSchema
->
hasTable
(
$table
->
getName
()))
{
$visitor
->
acceptTable
(
$table
);
}
foreach
(
$table
->
getForeignKeys
()
as
$foreignKey
)
{
if
(
!
$dropSchema
->
hasTable
(
$table
->
getName
()))
{
continue
;
}
if
(
!
$dropSchema
->
hasTable
(
$foreignKey
->
getForeignTableName
()))
{
continue
;
}
$visitor
->
acceptForeignKey
(
$table
,
$foreignKey
);
}
}
if
(
!
$this
->
platform
->
supportsSequences
())
{
return
$visitor
->
getQueries
();
}
foreach
(
$dropSchema
->
getSequences
()
as
$sequence
)
{
$visitor
->
acceptSequence
(
$sequence
);
}
foreach
(
$dropSchema
->
getTables
()
as
$table
)
{
/* @var $sequence Table */
if
(
!
$table
->
hasPrimaryKey
())
{
continue
;
}
$columns
=
$table
->
getPrimaryKey
()
->
getColumns
();
if
(
count
(
$columns
)
>
1
)
{
continue
;
}
$checkSequence
=
$table
->
getName
()
.
"_"
.
$columns
[
0
]
.
"_seq"
;
if
(
$fullSchema
->
hasSequence
(
$checkSequence
))
{
$visitor
->
acceptSequence
(
$fullSchema
->
getSequence
(
$checkSequence
));
}
}
return
$visitor
->
getQueries
();
}
/**
* Get the SQL statements to drop all schema assets from underlying db.
*
* @return array
*/
public
function
getDropAllSchema
()
{
$sm
=
$this
->
conn
->
getSchemaManager
();
$visitor
=
new
\Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector
(
$this
->
platform
);
/* @var $schema \Doctrine\DBAL\Schema\Schema */
$schema
=
$sm
->
createSchema
();
$schema
->
visit
(
$visitor
);
return
$visitor
->
getQueries
();
}
/**
* Create the Schema
*
* @param Schema $createSchema
* @return void
*/
public
function
createSchema
(
Schema
$createSchema
)
{
$this
->
processSql
(
$this
->
getCreateSchema
(
$createSchema
));
}
/**
* Update the Schema to new schema version.
*
* @param Schema $toSchema
* @param bool $noDrops
* @return void
*/
public
function
updateSchema
(
Schema
$toSchema
,
$noDrops
=
false
)
{
$this
->
processSql
(
$this
->
getUpdateSchema
(
$toSchema
,
$noDrops
));
}
/**
* Drop the given database schema from the underlying db.
*
* @param Schema $dropSchema
* @return void
*/
public
function
dropSchema
(
Schema
$dropSchema
)
{
$this
->
processSqlSafely
(
$this
->
getDropSchema
(
$dropSchema
));
}
/**
* Drop all assets from the underyling db.
*
* @return void
*/
public
function
dropAllSchema
()
{
$this
->
processSql
(
$this
->
getDropAllSchema
());
}
private
function
processSqlSafely
(
array
$sql
)
{
foreach
(
$sql
as
$s
)
{
try
{
$this
->
conn
->
exec
(
$s
);
}
catch
(
\Exception
$e
)
{
}
}
}
private
function
processSql
(
array
$sql
)
{
foreach
(
$sql
as
$s
)
{
$this
->
conn
->
exec
(
$s
);
}
}
}
lib/Doctrine/DBAL/Sharding/PoolingShardConnection.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
lib/Doctrine/DBAL/Sharding/PoolingShardManager.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzure
Schema
Synchronizer.php
→
lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzure
Federations
Synchronizer.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
@@ -23,8 +23,8 @@ use Doctrine\DBAL\Schema\Schema;
use
Doctrine\DBAL\Connection
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\S
harding
\SchemaSynchronizer
;
use
Doctrine\DBAL\Sharding\
DefaultSchema
Synchronizer
;
use
Doctrine\DBAL\S
chema\Synchronizer
\SchemaSynchronizer
;
use
Doctrine\DBAL\Sharding\
SingleDatabase
Synchronizer
;
/**
* SQL Azure Schema Synchronizer
...
...
@@ -32,11 +32,11 @@ use Doctrine\DBAL\Sharding\DefaultSchemaSynchronizer;
* Will iterate over all shards when performing schema operations. This is done
* by partioning the passed schema into subschemas for the federation and the
* global database and then applying the operations step by step using the
* {@see \Doctrine\DBAL\Sharding\
DefaultSchema
Synchronizer}.
* {@see \Doctrine\DBAL\Sharding\
SingleDatabase
Synchronizer}.
*
* @author Benjamin Eberlei <kontakt@beberlei.de>
*/
class
SQLAzure
Schema
Synchronizer
implements
SchemaSynchronizer
class
SQLAzure
Federations
Synchronizer
implements
SchemaSynchronizer
{
/**
* @var Connection
...
...
@@ -60,7 +60,7 @@ class SQLAzureSchemaSynchronizer implements SchemaSynchronizer
{
$this
->
conn
=
$conn
;
$this
->
shardManager
=
$shardManager
;
$this
->
synchronizer
=
$sync
?:
new
DefaultSchema
Synchronizer
(
$conn
);
$this
->
synchronizer
=
$sync
?:
new
SingleDatabase
Synchronizer
(
$conn
);
}
...
...
lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
lib/Doctrine/DBAL/Sharding/SQLAzure/Schema/MultiTenantVisitor.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
lib/Doctrine/DBAL/Sharding/SchemaSynchronizer.php
deleted
100644 → 0
View file @
1f4eebf4
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace
Doctrine\DBAL\Sharding
;
use
Doctrine\DBAL\Schema\Schema
;
/**
* The synchronizer knows how to synchronize a schema with the configured
* database.
*
* @author Benjamin Eberlei <kontakt@beberlei.de>
*/
interface
SchemaSynchronizer
{
/**
* Get the SQL statements that can be executed to create the schema.
*
* @param Schema $createSchema
* @return array
*/
function
getCreateSchema
(
Schema
$createSchema
);
/**
* Get the SQL Statements to update given schema with the underlying db.
*
* @param Schema $toSchema
* @param bool $noDrops
* @return array
*/
function
getUpdateSchema
(
Schema
$toSchema
,
$noDrops
=
false
);
/**
* Get the SQL Statements to drop the given schema from underlying db.
*
* @param Schema $dropSchema
* @return array
*/
function
getDropSchema
(
Schema
$dropSchema
);
/**
* Get the SQL statements to drop all schema assets from underlying db.
*
* @return array
*/
function
getDropAllSchema
();
/**
* Create the Schema
*
* @param Schema $createSchema
* @return void
*/
function
createSchema
(
Schema
$createSchema
);
/**
* Update the Schema to new schema version.
*
* @param Schema $toSchema
* @param bool $noDrops
* @return void
*/
function
updateSchema
(
Schema
$toSchema
,
$noDrops
=
false
);
/**
* Drop the given database schema from the underlying db.
*
* @param Schema $dropSchema
* @return void
*/
function
dropSchema
(
Schema
$dropSchema
);
/**
* Drop all assets from the underyling db.
*
* @return void
*/
function
dropAllSchema
();
}
lib/Doctrine/DBAL/Sharding/ShardChoser/MultiTenantShardChoser.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
lib/Doctrine/DBAL/Sharding/ShardChoser/ShardChoser.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
lib/Doctrine/DBAL/Sharding/ShardManager.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
lib/Doctrine/DBAL/Sharding/ShardingException.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
lib/Doctrine/DBAL/Types/JsonArrayType.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
@@ -56,4 +56,4 @@ class JsonArrayType extends Type
{
return
Type
::
JSON_ARRAY
;
}
}
\ No newline at end of file
}
lib/Doctrine/DBAL/Types/SimpleArrayType.php
View file @
842243af
...
...
@@ -13,7 +13,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the
LGPL
. For more information, see
* and is licensed under the
MIT license
. For more information, see
* <http://www.doctrine-project.org>.
*/
...
...
@@ -58,4 +58,4 @@ class SimpleArrayType extends Type
{
return
Type
::
SIMPLE_ARRAY
;
}
}
\ No newline at end of file
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment