1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
|
<?php
/**
* Sorting options
*/
define('VC_SORT_NONE', 0); // don't sort
define('VC_SORT_AGE', 1); // sort by age
define('VC_SORT_NAME', 2); // sort by filename
define('VC_SORT_REV', 3); // sort by revision number
define('VC_SORT_AUTHOR', 4); // sort by author name
define('VC_SORT_ASCENDING', 0); // ascending order
define('VC_SORT_DESCENDING', 1); // descending order
define('VC_WINDOWS', substr(PHP_OS, 0, 3) == 'WIN');
/**
* Version Control generalized library.
*
* $Horde: framework/VC/VC.php,v 1.12.8.12 2006/05/31 17:06:37 selsky Exp $
*
* @package VC
*/
class VC {
/**
* The source root of the repository.
*
* @access protected
* @var string
*/
var $_sourceroot;
/**
* Hash with the locations of all necessary binaries.
* @var array
*/
var $_paths = array();
/**
* Hash caching the parsed users file.
* @var array
*/
var $_users;
/**
* Return the source root for this repository, with no trailing /
*
* @return string Source root for this repository.
*/
function sourceroot()
{
return $this->_sourceroot;
}
/**
* Returns the location of the specified binary.
*
* @param string $binary An external program name.
*
* @return boolean|string The location of the external program or false if
* it wasn't specified.
*/
function getPath($binary)
{
if (isset($this->_paths[$binary])) {
if (VC_WINDOWS) {
return $this->_paths[$binary];
} else {
return is_executable($this->_paths[$binary]) ? $this->_paths[$binary] : false;
}
}
return false;
}
/**
* Parse the users file, if present in the source root, and return
* a hash containing the requisite information, keyed on the
* username, and with the 'desc','name', and 'mail' values inside.
*
* @return boolean|array False if the file is not present, otherwise
* $this->_users populated with the data
*/
function getUsers($usersfile)
{
/* Check that we haven't already parsed users. */
if (isset($this->_users) && is_array($this->_users)) {
return $this->_users;
}
if (!@is_file($usersfile) || !($fl = @fopen($usersfile, VC_WINDOWS ? 'rb' : 'r'))) {
return false;
}
$this->_users = array();
/* Discard the first line, since it'll be the header info. */
fgets($fl, 4096);
/* Parse the rest of the lines into a hash, keyed on
* username. */
while ($line = fgets($fl, 4096)) {
if (preg_match('/^\s*$/', $line)) {
continue;
}
if (!preg_match('/^(\w+)\s+(.+)\s+([\w\.\-\_]+@[\w\.\-\_]+)\s+(.*)$/', $line, $regs)) {
continue;
}
$this->_users[$regs[1]]['name'] = trim($regs[2]);
$this->_users[$regs[1]]['mail'] = trim($regs[3]);
$this->_users[$regs[1]]['desc'] = trim($regs[4]);
}
return $this->_users;
}
/**
* Attempts to return a concrete VC instance based on $driver.
*
* @param mixed $driver The type of concrete VC subclass to return.
* The code is dynamically included.
* @param array $params A hash containing any additional configuration
* or parameters a subclass might need.
*
* @return VC The newly created concrete VC instance, or PEAR_Error on
* failure.
*/
function &factory($driver, $params = array())
{
include_once 'VC/' . $driver . '.php';
$class = 'VC_' . $driver;
if (class_exists($class)) {
$vc = new $class($params);
} else {
$vc = PEAR::raiseError($class . ' not found.');
}
return $vc;
}
/**
* Attempts to return a reference to a concrete VC instance based
* on $driver. It will only create a new instance if no VC
* instance with the same parameters currently exists.
*
* This should be used if multiple types of file backends (and,
* thus, multiple VC instances) are required.
*
* This method must be invoked as: $var = &VC::singleton()
*
* @param mixed $driver The type of concrete VC subclass to return.
* The code is dynamically included.
* @param array $params A hash containing any additional configuration
* or parameters a subclass might need.
*
* @return VC The concrete VC reference, or PEAR_Error on failure.
*/
function &singleton($driver, $params = array())
{
static $instances;
if (!isset($instances)) {
$instances = array();
}
$signature = serialize(array($driver, $params));
if (!isset($instances[$signature])) {
$instances[$signature] = VC::factory($driver, $params);
}
return $instances[$signature];
}
}
/**
* @package VC
*/
class VC_Diff {
/**
* Obtain a tree containing information about the changes between
* two revisions.
*
* @param array $raw An array of lines of the raw unified diff,
* normally obtained through VC_Diff::get().
*
* @return array
*
* @todo document this thoroughly, as the format is a bit complex.
*/
function humanReadable($raw)
{
$ret = array();
/* Hold the left and right columns of lines for change
* blocks. */
$cols = array(array(), array());
$state = 'empty';
/* Iterate through every line of the diff. */
foreach ($raw as $line) {
/* Look for a header which indicates the start of a diff
* chunk. */
if (preg_match('/^@@ \-([0-9]+).*\+([0-9]+).*@@(.*)/', $line, $regs)) {
/* Push any previous header information to the return
* stack. */
if (isset($data)) {
$ret[] = $data;
}
$data = array('type' => 'header', 'oldline' => $regs[1],
'newline' => $regs[2], 'contents'> array());
$data['function'] = isset($regs[3]) ? $regs[3] : '';
$state = 'dump';
} elseif ($state != 'empty') {
/* We are in a chunk, so split out the action (+/-)
* and the line. */
preg_match('/^([\+\- ])(.*)/', $line, $regs);
if (count($regs) > 2) {
$action = $regs[1];
$content = $regs[2];
} else {
$action = ' ';
$content = '';
}
if ($action == '+') {
/* This is just an addition line. */
if ($state == 'dump' || $state == 'add') {
/* Start adding to the addition stack. */
$cols[0][] = $content;
$state = 'add';
} else {
/* This is inside a change block, so start
* accumulating lines. */
$state = 'change';
$cols[1][] = $content;
}
} elseif ($action == '-') {
/* This is a removal line. */
$state = 'remove';
$cols[0][] = $content;
} else {
/* An empty block with no action. */
switch ($state) {
case 'add':
$data['contents'][] = array('type' => 'add', 'lines' => $cols[0]);
break;
case 'remove':
/* We have some removal lines pending in our
* stack, so flush them. */
$data['contents'][] = array('type' => 'remove', 'lines' => $cols[0]);
break;
case 'change':
/* We have both remove and addition lines, so
* this is a change block. */
$data['contents'][] = array('type' => 'change', 'old' => $cols[0], 'new' => $cols[1]);
break;
}
$cols = array(array(), array());
$data['contents'][] = array('type' => 'empty', 'line' => $content);
$state = 'dump';
}
}
}
/* Just flush any remaining entries in the columns stack. */
switch ($state) {
case 'add':
$data['contents'][] = array('type' => 'add', 'lines' => $cols[0]);
break;
case 'remove':
/* We have some removal lines pending in our stack, so
* flush them. */
$data['contents'][] = array('type' => 'remove', 'lines' => $cols[0]);
break;
case 'change':
/* We have both remove and addition lines, so this is a
* change block. */
$data['contents'][] = array('type' => 'change', 'old' => $cols[0], 'new' => $cols[1]);
break;
}
if (isset($data)) {
$ret[] = $data;
}
return $ret;
}
}
/**
* @package VC
*/
class VC_File {
var $rep;
var $dir;
var $name;
var $logs;
var $revs;
var $head;
var $quicklog;
var $symrev;
var $revsym;
var $branches;
function setRepository($rep)
{
$this->rep = $rep;
}
}
/**
* VC patchset class.
*
* @package VC
*/
class VC_Patchset {
var $_rep;
var $_patchsets = array();
function setRepository($rep)
{
$this->_rep = $rep;
}
}
/**
* VC revisions class.
*
* Copyright Anil Madhavapeddy, <anil@recoil.org>
*
* @author Anil Madhavapeddy <anil@recoil.org>
* @package VC
*/
class VC_Revision {
/**
* Validation function to ensure that a revision number is of the
* right form.
*
* @param string $val Value to check.
*
* @return boolean True if it is a revision number
*/
function valid($val)
{
return $val && preg_match('/^[\d\.]+$/', $val);
}
/**
* Given a revision number, remove a given number of portions from
* it. For example, if we remove 2 portions of 1.2.3.4, we are
* left with 1.2.
*
* @param string $val Input revision
* @param integer $amount Number of portions to strip
*
* @return string Stripped revision number
*/
function strip($val, $amount)
{
if (!VC_Revision::valid($val)) {
return false;
}
$pos = 0;
while ($amount-- > 0 && ($pos = strrpos($val, '.')) !== false) {
$val = substr($val, 0, $pos);
}
return $pos !== false ? $val : false;
}
/**
* The size of a revision number is the number of portions it has.
* For example, 1,2.3.4 is of size 4.
*
* @param string $val Revision number to determine size of
*
* @return integer Size of revision number
*/
function sizeof($val)
{
if (!VC_Revision::valid($val)) {
return false;
}
return (substr_count($val, '.') + 1);
}
/**
* Given a valid revision number, this will return the revision
* number from which it branched. If it cannot be determined, then
* false is returned.
*
* @param string $val Revision number.
*
* @return string|boolean Branch point revision, or false.
*/
function branchPoint($val)
{
/* Check if we have a valid revision number */
if (!VC_Revision::valid($val)) {
return false;
}
/* If its on the trunk, or is an odd size, ret false */
if (VC_Revision::sizeof($val) < 3 || (VC_Revision::sizeof($val) % 2)) {
return false;
}
/* Strip off two revision portions, and return it */
return VC_Revision::strip($val, 2);
}
/**
* Given two SVN revision numbers, this figures out which one is
* greater than the other by stepping along the decimal points
* until a difference is found, at which point a sign comparison
* of the two is returned.
*
* @param string $rev1 Period delimited revision number
* @param string $rev2 Second period delimited revision number
*
* @return integer 1 if the first is greater, -1 if the second if greater,
* and 0 if they are equal
*/
function cmp($rev1, $rev2)
{
return version_compare($rev1, $rev2);
}
/**
* Return the logical revision before this one. Normally, this
* will be the revision minus one, but in the case of a new
* branch, we strip off the last two decimal places to return the
* original branch point.
*
* @param string $rev Revision number to decrement.
*
* @return string|boolean Revision number, or false if none could be
* determined.
*/
function prev($rev)
{
$last_dot = strrpos($rev, '.');
$val = substr($rev, ++$last_dot);
if (--$val > 0) {
return substr($rev, 0, $last_dot) . $val;
} else {
$last_dot--;
while (--$last_dot) {
if ($rev[$last_dot] == '.') {
return substr($rev, 0, $last_dot);
} elseif ($rev[$last_dot] == null) {
return false;
}
}
}
}
/**
* Given a revision number of the form x.y.0.z, this remaps it
* into the appropriate branch number, which is x.y.z
*
* @param string $rev Even-digit revision number of a branch
*
* @return string Odd-digit Branch number
*/
function toBranch($rev)
{
/* Check if we have a valid revision number */
if (!VC_Revision::valid($rev)) {
return false;
}
if (($end = strrpos($rev, '.')) === false) {
return false;
}
$rev[$end] = 0;
if (($end2 = strrpos($rev, '.')) === false) {
return substr($rev, ++$end);
}
return substr_replace($rev, '.', $end2, ($end-$end2+1));
}
}
|