以前は、大規模なプロジェクトを開発するときは、同期に svn を使用していました。プロダクトを開発する人が多すぎるため、ソフトウェアを使用して管理していました。今日、実際に php を使用して管理できることがわかりました。見てみましょう。
コードは次のとおりです | コードをコピー |
/** * * svnの外部プログラムを実行するためのクラスです * * @auth Seven Yang http://www.bKjia.c0m * */ クラスSvnPeer { /** * リポジトリ内のディレクトリ エントリを一覧表示します * * @param 文字列は特定のプロジェクト リポジトリ パス * @return bool 検証が成功した場合は true、それ以外の場合は false */ 静的パブリック関数 ls($repository) { $command = "svn ls" $output = SvnPeer::runCmd($command); $output = implode(" ", $output); if (strpos($output, 'そのリビジョンには存在しません')) { false を返します。 } " " を返します。 } /** * 履歴を記憶しながら、作業コピーまたはリポジトリに何かを複製します * * @param $src * @param $dst * @param $comment 文字列はログメッセージを指定します * @return bool true、コピーが成功した場合は、それ以外の場合はエラー メッセージを返します * * @todo コメントには svn commit 用のラッシュを追加する必要があります */ 静的パブリック関数コピー($src, $dst, $comment) { $command = "svn cp $src $dst -m '$comment'"; $output = SvnPeer::runCmd($command); $output = implode(" ", $output); if (strpos($output, 'コミットされたリビジョン')) { true を返します。 } " " を返します。 } /** * バージョン管理からファイルとディレクトリを削除します * * @param $url * @return bool true、削除が成功した場合は、それ以外の場合はエラー メッセージを返します * * @todo コメントには svn commit 用のラッシュを追加する必要があります */ 静的パブリック関数 delete($url, $comment) { $command = "svn del $url -m '$comment'"; $output = SvnPeer::runCmd($command); $output = implode(' ', $output); if (strpos($output, 'コミットされたリビジョン')) { true を返します。 } " " を返します。 } /** * 作業コピーまたはリポジトリ内の何かを移動および/または名前変更します * * @param $src 文字列トランク パス * @param $dst string 新しい分岐パス * @param $comment 文字列はログメッセージを指定します * @return bool true、移動が成功した場合は、それ以外の場合はエラー メッセージを返します * * @todo コメントには SVN コミット用のスラッシュを追加する必要があります */ 静的パブリック関数 move($src, $dst, $comment) { $command = "svn mv $src $dst -m '$comment'"; $output = SvnPeer::runCmd($command); $output = implode(' ', $output); if (strpos($output, 'コミットされたリビジョン')) { true を返します。 } " " を返します。 } /** * バージョン管理下に新しいディレクトリを作成します * * @param $url 文字列 * @param $comment 文字列 SVN メッセージ * @return bool true、作成が成功した場合は、それ以外の場合はエラー メッセージを返します * * @todo コメントには svn commit 用のラッシュを追加する必要があります */ 静的パブリック関数 mkdir($url, $comment) { $command = "svn mkdir $url -m '$comment'"; $output = SvnPeer::runCmd($command); $output = implode(' ', $output); if (strpos($output, 'コミットされたリビジョン')) { true を返します。 } " " を返します。 } 静的パブリック関数 diff($pathA, $pathB) { $output = SvnPeer::runCmd("svn diff $pathA $pathB"); return implode(' ', $output); } 静的パブリック関数チェックアウト($url, $dir) { $command = "cd $dir && svn co $url"; $output = SvnPeer::runCmd($command); $output = implode(' ', $output); if (strstr($output, 'チェックアウトされたリビジョン')) { true を返します。 } 「 」を返します。 $コマンド 。 " " 。 $output; } 静的パブリック関数の更新($path) { $command = "cd $path && svn up"; $output = SvnPeer::runCmd($command); $output = implode(' ', $output); preg_match_all("/[0-9]+/", $output, $ret); if (!$ret[0][0]){ 「 」を返します。 $コマンド 。 " " 。 $output; } $ret[0][0] を返します; } 静的パブリック関数 merge($revision, $url, $dir) { $command = "cd $dir && svn merge -r1:$revision $url"; $output = implode(' ', SvnPeer::runCmd($command)); if (strstr($output, 'テキストの競合')) { 'コマンド: ' を返します。 $command .' '。 $output; } true を返します。 } 静的パブリック関数 commit($dir, $comment) { $command = "cd $dir && svn commit -m'$comment'"; $output = implode(' ', SvnPeer::runCmd($command)); if (strpos($output, 'コミットされたリビジョン') || empty($output)) { true を返します。 } $output を返します。 } 静的パブリック関数 getStatus($dir) { $command = "cd $dir && svn st"; SvnPeer::runCmd($command) を返します。 } 静的パブリック関数 hasConflict($dir) { $output = SvnPeer::getStatus($dir); foreach ($output as $line){ if ('C' == substr(trim($line), 0, 1) || ('!' == substr(trim($line), 0, 1))){ true を返します。 } } false を返します。 } /** * XML を使用して一連のパスのログ メッセージを表示します * * @param パス文字列 * @return ログメッセージ文字列 */ 静的パブリック関数 getLog($path) { $command = "svn log $path --xml"; $output = SvnPeer::runCmd($command); return implode('', $output); } 静的パブリック関数 getPathRevision($path) { $command = "svn info $path --xml"; $output = SvnPeer::runCmd($command); $string = implode('', $output); $xml = 新しい SimpleXMLElement($string); foreach ($xml->entry[0]->attributes() as $key=>$value){ if ('リビジョン' == $key) { $value を返します。 } } } 静的パブリック関数 getHeadRevision($path) { $command = "cd $path && svn up"; $output = SvnPeer::runCmd($command); $output = implode(' ', $output); preg_match_all("/[0-9]+/", $output, $ret); if (!$ret[0][0]){ 「 」を返します。 $コマンド 。 " " 。 $output; } $ret[0][0] を返します; } /** * cmd を実行して結果を返します * * @param 文字列コマンドライン * @param boolen true には SVN 認証を追加する必要があります * @return 配列 svn が実行する出力の内容 */ 静的保護関数 runCmd($command) { $authCommand = ' --username ' 。 SVN_USERNAME 。 「 --password 」。 SVN_PASSWORD 。 ' --no-auth-cache --non-interactive --config-dir '.SVN_CONFIG_DIR.'.subversion'; exec($command . $authCommand . " 2>&1", $output); $output を返します。 } } |