Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103360561
PhabricatorStorageFixtureScopeGuard.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Mar 1, 11:13
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Mar 3, 11:13 (2 d)
Engine
blob
Format
Raw Data
Handle
24542410
Attached To
rPH Phabricator
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'
;
}
}
Event Timeline
Log In to Comment