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
68b3a6a9
Commit
68b3a6a9
authored
Jun 19, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new classes Doctrine_Event, Doctrine_Connection_Profiler_Exception and Doctrine_Util
parent
113ac3b9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
265 additions
and
0 deletions
+265
-0
Exception.php
lib/Doctrine/Connection/Profiler/Exception.php
+35
-0
Event.php
lib/Doctrine/Event.php
+194
-0
Util.php
lib/Doctrine/Util.php
+36
-0
No files found.
lib/Doctrine/Connection/Profiler/Exception.php
0 → 100644
View file @
68b3a6a9
<?php
/*
* $Id: Exception.php 1345 2007-05-14 13:00:14Z meus $
*
* 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.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Connection_Profiler_Exception'
);
/**
* Doctrine_Connection_Profiler_Exception
*
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision: 1345 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/
class
Doctrine_Connection_Profiler_Exception
extends
Doctrine_Exception
{
}
lib/Doctrine/Event.php
0 → 100644
View file @
68b3a6a9
<?php
/*
* $Id$
*
* 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.phpdoctrine.com>.
*/
/**
* Doctrine_Event
*
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/
class
Doctrine_Event
{
/**
* EVENT CODE CONSTANTS
*/
const
QUERY
=
1
;
const
EXEC
=
2
;
const
EXECUTE
=
3
;
const
PREPARE
=
4
;
const
BEGIN
=
5
;
const
COMMIT
=
6
;
const
ROLLBACK
=
7
;
const
CONNECT
=
8
;
const
FETCH
=
9
;
const
FETCHALL
=
10
;
/**
* @var Doctrine_Db $invoker the handler which invoked this event
*/
protected
$invoker
;
/**
* @var string $query the sql query associated with this event (if any)
*/
protected
$query
;
/**
* @var string $params the parameters associated with the query (if any)
*/
protected
$params
;
/**
* @see Doctrine_Db_Event constants
* @var integer $code the event code
*/
protected
$code
;
/**
* @var integer $startedMicrotime the time point in which this event was started
*/
protected
$startedMicrotime
;
/**
* @var integer $endedMicrotime the time point in which this event was ended
*/
protected
$endedMicrotime
;
/**
* constructor
*
* @param Doctrine_Db $invoker the handler which invoked this event
* @param integer $code the event code
* @param string $query the sql query associated with this event (if any)
*/
public
function
__construct
(
$invoker
,
$code
,
$query
=
null
,
$params
=
array
())
{
$this
->
invoker
=
$invoker
;
$this
->
code
=
$code
;
$this
->
query
=
$query
;
$this
->
params
=
$params
;
}
/**
* getQuery
*
* @return string returns the query associated with this event (if any)
*/
public
function
getQuery
()
{
return
$this
->
query
;
}
/**
* getName
* returns the name of this event
*
* @return string the name of this event
*/
public
function
getName
()
{
switch
(
$this
->
code
)
{
case
self
::
QUERY
:
return
'query'
;
case
self
::
EXEC
:
return
'exec'
;
case
self
::
EXECUTE
:
return
'execute'
;
case
self
::
PREPARE
:
return
'prepare'
;
case
self
::
BEGIN
:
return
'begin'
;
case
self
::
COMMIT
:
return
'commit'
;
case
self
::
ROLLBACK
:
return
'rollback'
;
case
self
::
CONNECT
:
return
'connect'
;
}
}
/**
* getCode
*
* @return integer returns the code associated with this event
*/
public
function
getCode
()
{
return
$this
->
code
;
}
/**
* start
* starts the internal timer of this event
*
* @return void
*/
public
function
start
()
{
$this
->
startedMicrotime
=
microtime
(
true
);
}
/**
* hasEnded
* whether or not this event has ended
*
* @return boolean
*/
public
function
hasEnded
()
{
return
(
$this
->
endedMicrotime
!=
null
);
}
/**
* end
* ends the internal timer of this event
*
* @return void
*/
public
function
end
()
{
$this
->
endedMicrotime
=
microtime
(
true
);
}
/**
* getInvoker
* returns the handler that invoked this event
*
* @return Doctrine_Db the handler that invoked this event
*/
public
function
getInvoker
()
{
return
$this
->
invoker
;
}
/**
* getParams
* returns the parameters of the query
*
* @return array parameters of the query
*/
public
function
getParams
()
{
return
$this
->
params
;
}
/**
* Get the elapsed time (in microseconds) that the event ran. If the event has
* not yet ended, return false.
*
* @return mixed
*/
public
function
getElapsedSecs
()
{
if
(
is_null
(
$this
->
endedMicrotime
))
{
return
false
;
}
return
(
$this
->
endedMicrotime
-
$this
->
startedMicrotime
);
}
}
lib/Doctrine/Util.php
0 → 100644
View file @
68b3a6a9
<?php
/*
* $Id$
*
* 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.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Connection_Module'
);
/**
* Doctrine_Util
*
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/
class
Doctrine_Util
extends
Doctrine_Connection_Module
{
}
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