Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F989315
DiffusionGitSSHWorkflow.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
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
);
}
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
));
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 8:14 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
233417
Default Alt Text
DiffusionGitSSHWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment