Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F425087
PhabricatorStorageFixtureScopeGuard.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorStorageFixtureScopeGuard.php
View Options
<?php
/**
* Used by unit tests to build storage fixtures.
*/
final
class
PhabricatorStorageFixtureScopeGuard
extends
Phobject
{
private
$name
;
public
function
__construct
(
$name
)
{
$this
->
name
=
$name
;
execx
(
'php %s upgrade --force --namespace %s'
,
$this
->
getStorageBinPath
(),
$this
->
name
);
PhabricatorLiskDAO
::
pushStorageNamespace
(
$name
);
// Destructor is not called with fatal error.
register_shutdown_function
(
array
(
$this
,
'destroy'
));
}
public
function
destroy
()
{
PhabricatorLiskDAO
::
popStorageNamespace
();
// NOTE: We need to close all connections before destroying the databases.
// If we do not, the "DROP DATABASE ..." statements may hang, waiting for
// our connections to close.
PhabricatorLiskDAO
::
closeAllConnections
();
execx
(
'php %s destroy --force --namespace %s'
,
$this
->
getStorageBinPath
(),
$this
->
name
);
}
private
function
getStorageBinPath
()
{
$root
=
dirname
(
phutil_get_library_root
(
'phabricator'
));
return
$root
.
'/scripts/sql/manage_storage.php'
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 2, 11:15 PM (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
57478
Default Alt Text
PhabricatorStorageFixtureScopeGuard.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment