Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93500181
DiffusionGitSSHWorkflow.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
Fri, Nov 29, 06:14
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 06:14 (2 d)
Engine
blob
Format
Raw Data
Handle
22655477
Attached To
rPH Phabricator
DiffusionGitSSHWorkflow.php
View Options
<?php
abstract
class
DiffusionGitSSHWorkflow
extends
DiffusionSSHWorkflow
implements
DiffusionRepositoryClusterEngineLogInterface
{
protected
function
writeError
(
$message
)
{
// Git assumes we'll add our own newlines.
return
parent
::
writeError
(
$message
.
"
\n
"
);
}
public
function
writeClusterEngineLogMessage
(
$message
)
{
parent
::
writeError
(
$message
);
$this
->
getErrorChannel
()->
update
();
}
protected
function
identifyRepository
()
{
$args
=
$this
->
getArgs
();
$path
=
head
(
$args
->
getArg
(
'dir'
));
return
$this
->
loadRepositoryWithPath
(
$path
,
PhabricatorRepositoryType
::
REPOSITORY_TYPE_GIT
);
}
protected
function
waitForGitClient
()
{
$io_channel
=
$this
->
getIOChannel
();
// If we don't wait for the client to close the connection, `git` will
// consider it an early abort and fail. Sit around until Git is comfortable
// that it really received all the data.
while
(
$io_channel
->
isOpenForReading
())
{
$io_channel
->
update
();
$this
->
getErrorChannel
()->
flush
();
PhutilChannel
::
waitForAny
(
array
(
$io_channel
));
}
}
}
Event Timeline
Log In to Comment