Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92563126
clear_repository_symbols.php
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Nov 21, 12:27
Size
1 KB
Mime Type
text/plain
Expires
Sat, Nov 23, 12:27 (19 h, 20 m)
Engine
blob
Format
Raw Data
Handle
22458637
Attached To
rPH Phabricator
clear_repository_symbols.php
View Options
#!/usr/bin/env php
<?php
$root
=
dirname
(
dirname
(
dirname
(
__FILE__
)));
require_once
$root
.
'/scripts/__init_script__.php'
;
$args
=
new
PhutilArgumentParser
(
$argv
);
$args
->
setSynopsis
(
<<<EOSYNOPSIS
**clear_repository_symbols.php** [__options__] __repository__
Clear repository symbols.
EOSYNOPSIS
);
$args
->
parseStandardArguments
();
$args
->
parse
(
array
(
array
(
'name'
=>
'repository'
,
'wildcard'
=>
true
,
),
));
$identifiers
=
$args
->
getArg
(
'repository'
);
if
(
count
(
$identifiers
)
!==
1
)
{
$args
->
printHelpAndExit
();
}
$identifier
=
head
(
$identifiers
);
$repository
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withIdentifiers
(
$identifiers
)
->
executeOne
();
if
(!
$repository
)
{
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Repository "%s" does not exist.'
,
$identifier
));
exit
(
1
);
}
$input
=
file_get_contents
(
'php://stdin'
);
$normalized
=
array
();
foreach
(
explode
(
"
\n
"
,
trim
(
$input
))
as
$path
)
{
// Emulate the behavior of the symbol generation scripts.
$normalized
[]
=
'/'
.
ltrim
(
$path
,
'./'
);
}
$paths
=
PhabricatorRepositoryCommitChangeParserWorker
::
lookupOrCreatePaths
(
$normalized
);
$symbol
=
new
PhabricatorRepositorySymbol
();
$conn_w
=
$symbol
->
establishConnection
(
'w'
);
foreach
(
array_chunk
(
array_values
(
$paths
),
128
)
as
$chunk
)
{
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE repositoryPHID = %s AND pathID IN (%Ld)'
,
$symbol
->
getTableName
(),
$repository
->
getPHID
(),
$chunk
);
}
Event Timeline
Log In to Comment