/**
* svn list
*
* @param $repository string
* @return boolean
*
*/
public static function ls($repository) {
$command = "sudo svn ls " . $repository;
$output = self::runCmd ( $command );
$output = implode ( "
", $output );
if (strpos ( $output, 'そのリビジョンには存在しない' )) {
return false;
}
return "
" 。 $コマンド 。 "
" 。 $output;
}
/**
* svn copy
*
* @param $src string
* @param $dst string
* @param $comment string
* @return boolean
*
*/
public static function copy($src, $dst, $comment) {
$command = "sudo svn cp $src $dst -m '$comment'";
$output = self::runCmd ( $command );
$output = implode ( "
", $output );
if (strpos ( $output, 'コミットされたリビジョン' )) {
return true ;
}
「
」を返す。 $コマンド 。 "
" 。 $output;
}
/**
* svn delete
*
* @param $url string
* @param $comment string
* @return boolean
*
*/
public static function delete($url, $comment) {
$command = "sudo svn del $url -m '$comment'";
$output = self ::runCmd ( $command );
$output = implode ( '
', $output );
if (strpos ( $output, 'コミットされたリビジョン' )) {
return true;
}
戻る"
" 。 $コマンド 。 "
" 。 $output;
}
/**
* svn move
*
* @param $src string
* @param $dst string
* @param $comment string
* @return boolean
*/
public static function move($src, $dst, $comment) {
$command = "sudo svn mv $src $dst -m '$comment'";
$output = self::runCmd ( $command );
$output = implode ( '
', $output );
if (strpos ( $output, 'コミットされたリビジョン' )) {
return true ;
}
「
」を返す。 $コマンド 。 「
」 。 $output;
}
/**
* svn mkdir
*
* @param $url string
* @param $comment string
* @return boolean
*/
public static function mkdir($url, $comment) {
$command = "sudo svn mkdir $url -m '$comment'";
$output = self ::runCmd ( $command );
$output = implode ( '
', $output );
if (strpos ( $output, 'コミットされたリビジョン' )) {
return true;
}
"
" を返す。 $コマンド 。 「
」 。 $output;
}
/**
* svn diff
* @param $pathA string
* @param $pathB string
* @return string
*/
public static function diff($pathA, $pathB) {
$output = self::runCmd ( "sudo svn diff $pathA $pathB" );
return implode ( '
', $output );
}
/**
* svn checkout
* @param $url string
* @param $dir string
* @return boolean
*/
public static function checkout($url, $dir) {
$command = "cd $dir && sudo svn co $url";
$output = self::runCmd ( $command );
$output = implode ( '
', $output );
if (strstr ( $output, 'チェックアウトされたリビジョン' ) ) {
return true;
}
return "
" 。 $コマンド 。 「
」 。 $output;
}
/**
* svn update
* @param $path string
*/
public static function update($path) {
$command = "cd $path && sudo svn up";
$output = self::runCmd ( $command ) ;
$output = implode ( '
', $output );
preg_match_all ( "/[0-9]+/", $output, $ret );
if (! $ret [0] [0]) {
「
」を返す。 $コマンド 。 「
」 。 $output;
}
return $ret [0] [0];
}
/**
* svn merge
*
* @param $revision string
* @param $url string
* @param $dir string
*
* @return boolean
*/
public static function merge($revision, $url, $dir) {
$command = "cd $ dir && sudo svn merge -r1:$revision $url";
$output = implode ( '
', self::runCmd ( $command ) );
if (strstr ( $output, 'テキストの競合' )) {
return 'コマンド: ' 。 $コマンド 。 '
' 。 $output;
}
return true;
}
/**
* svn commit
*
* @param $dir string
* @param $comment string
*
* @return boolean
*/
public static function commit($dir, $comment) {
$command = "cd $dir && sudo svn commit -m'$comment '";
$output = implode ( '
', self::runCmd ( $command ) );
if (strpos ( $output, 'コミットされたリビジョン' ) || empty ( $output )) {
return true;
}
return $output;
}
/**
* svn status (WC内のファイルやディレクトリの状態を出力)
*/
public static function getStatus($dir) {
$command = "cd $dir && sudo svn st";
自分自身を返す: :runCmd ( $command );
}
/**
* SVN の競合
*
* @param $dir string
*/
public static function hasConflict($dir) {
$output = self::getStatus ( $dir );
foreach ( $output as $line ) {
if ( substr (rim( $ line ), 0, 1 ) == 'C' || (substr (rim ( $line ), 0, 1 ) == '!')) {
return true;
}
}
return false;
}
/**
* svn log
*
* @param $path string
* @return string
*
*/
public static function getLog($path) {
$command = "sudo svn log $path --xml";
$output = self::runCmd ( $command );
return implode ( '', $output );
}
/**
* svn info
* @param $path string
*/
public static function getPathRevision($path) {
$command = "sudo svn info $path --xml";
$output = self:: runCmd ( $command );
$string = implode ( '', $output );
$xml = new SimpleXMLElement ( $string );
foreach ( $xml->entry [0]->attributes () as $ key => $value ) {
if ( $key == 'リビジョン' ) {
return $value;
}
}
}
/**
* 最新のバージョン番号を取得します
* @param $path string
*/
public static function getHeadRevision($path) {
$command = "cd $path && sudo svn up";
$output = self::runCmd ( $command );
$output = implode ( '
', $output );
preg_match_all ( " /[0-9]+/", $output, $ret );
if (! $ret [0] [0]) {
return "
" 。 $コマンド 。 「
」 。 $output;
}
return $ret [0] [0];
}
/**
* ファイルの最も古いバージョン番号を取得します
*
* @param $filePath string
*
**/
public static function getFileFirstVersion($filePath){
$command = "sudo svn log {$filePath}" ;
$output = self::runCmd ( $command , "|grep -i ^r[0-9]* |awk '{print $1}'");
if(empty($output)){
return false ;
}
return str_replace("r", '', $output[count($output)-1]);
}
/**
* 2つのバージョンの間に変更されたファイル情報のリストを取得します *
*/
public static function getChangedFiles($path, $fromVersion, $headRevision ){
$files = array();
$pipe = "|grep -i ^Index:|awk -F : '{print $2}'";
$command = "svn diff -r {$fromVersion}:{$headRevision} $path";
$output = self::runCmd ( $command ,$pipe);
$files = array_merge($files, $output);
$command = "svn diff -r {$headRevision}:{$fromVersion} $path"; //文件删除可用逆对比
$output = self::runCmd ( $command ,$pipe);
$files = array_merge($files, $output);
return array_unique($files);
}
/**
* 2 つのバージョン間で変更されたファイルの内容を取得します
*
* @param $filePath string
* @param $fromVersion int
」*/
public static function getChangedInfo( $filePath, $fromVersion, $headRevision ){
$command = "sudo svn diff -r {$fromVersion}:{$headRevision} $filePath";
$output = self::runCmd ( $command );
return $output;
}
/**
*ファイルコンテンツの表示*/
public static function getFileContent($filePath, $version){
$command = "sudo svn cat -r {$version} $filePath";
$output = self::runCmd ( $command );
return $output;
}
/**
* cmdを実行してreturnresults
* @param $ commandstring
* @param $ pipe string(パイプラインを追加することができます。*/
保護された静的関数 runCmd($command , $pipe ="") {
$authCommand = ' --username ' . self::SVN_USERNAME 。 self::SVN_PASSWORD 。 「 --no-auth-cache --non-interactive --config-dir 」。 self::SVN_CONFIG_DIR 。 '.subversion';
exec ( $command . $authCommand . " 2>&1" . $pipe, $output );
return $output;
}
}
http://www.bkjia.com/PHPjc/328034.html
www.bkjia.com
true