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
|
#!/usr/bin/perl -w
# -*- cperl-indent-level: 2 -*-
###############################################################################
# Parses the KDE Projects XML Database and prints project protocol-url lines #
# for each project in the specified component/module. #
# #
# Copyright (C) 2011,2012,2014,2017 by Allen Winter <winter@kde.org> #
# Copyright (C) 2011 by David Faure <faure@kde.org> #
# #
# This program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License along #
# with this program; if not, write to the Free Software Foundation, Inc., #
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #
###############################################################################
# TODO
# - validation (once a DTD is available)
use strict;
use Getopt::Long;
use XML::Parser;
use LWP::Simple; # used to fetch the xml db
my($Prog) = 'kde-checkout-list.pl';
my($Version) = '0.97';
my($help) = '';
my($version) = '';
my($searchComponent) = '';
my($searchModule) = '';
my($searchProtocol) = "git";
my($allmatches) = 0;
my($printDesc) = 0;
my($doClone) = 0;
my($doPrune) = 0;
my($dryRun) = 0;
my($quitOnError) = 0;
my($gitSuffix) = 0;
my($branch) = '';
exit 1
if (!GetOptions('help' => \$help, 'version' => \$version,
'component=s' => \$searchComponent,
'module=s' => \$searchModule,
'protocol=s' => \$searchProtocol,
'all' => \$allmatches,
'desc' => \$printDesc,
'clone' => \$doClone,
'prune' => \$doPrune,
'dry-run' => \$dryRun,
'quit-on-error' => \$quitOnError,
'gitsuffix' => \$gitSuffix,
'branch=s' => \$branch
));
&Help() if ($help);
if ($searchProtocol ne "git" &&
$searchProtocol ne "http" &&
$searchProtocol ne "ssh" &&
$searchProtocol ne "tarball") {
print "Invalid protocol \"$searchProtocol\" specified.\n";
print "Run $Prog --help for more info\n";
exit 1;
}
&Version() if ($version);
if ($searchModule && !$searchComponent) {
print "Module specified, but not in which component. Please use --component kde for instance.\n";
print "Run $Prog --help for more info\n";
exit 1;
}
my $kdebranch='';
my $kdedash='';
if ($branch) {
$kdebranch = "KDE/" . $branch;
$kdedash = "kde-" . $branch;
}
my $curComponent = "";
my $curModule = "";
my $curProject = "";
my $curPath = "";
my $curUrl = "";
my $curActive = 1;
my $curDesc = "";
my $skipModule = 0;
my $inRepo = 0;
my $inPath = 0;
my $inUrl = 0;
my $inActive = 0;
my $inDesc = 0;
my @element_stack; # remember which elements are open
my %output; # project name -> project data
my %projectByPath; # project path -> project name
my $projects = get("https://projects.kde.org/kde_projects.xml");
die "Failed to download kde_projects.xml" unless defined $projects;
# sanity check
my @lines = split('\n',$projects);
if ($lines[0] !~ m/xml version/ || $lines[$#lines] !~ m+</kdeprojects>+) {
print "The kde_projects.xml downloaded is invalid somehow. Try again\n";
exit 1;
}
# initialize the parser
my $parser = XML::Parser->new( Handlers =>
{
Start=>\&handle_start,
End=>\&handle_end,
Char=>\&char_handler,
});
$parser->parse( $projects );
# print results
my($proj,$ret);
foreach $proj (sort keys %output) {
if ( $output{$proj}{'active'} || $allmatches ) {
my $subdir = $output{$proj}{'path'};
my $url = $output{$proj}{'url'};
my $desc = "";
if ( defined($output{$proj}{'desc'}) ) {
$desc = $output{$proj}{'desc'};
}
if ( !$printDesc ) {
print "$subdir $url\n";
} else {
print "$subdir $url $desc\n";
}
if ( $doClone ) {
my $command;
my $newCheckout = 0;
if ( ! -d "$subdir" ) {
$newCheckout = 1;
#modules without the "KDE/" in the branchname are:
# kdebase/kate => only KDE/4.7 and above
# kdeexamples => No branches
# superbuild => No branches
if ( $branch ) {
next if ( $subdir =~ m+/kdeexamples+ || $subdir =~ m+/superbuild+ );
if ( $subdir !~ m+/kdelibs+ ) {
$command = "git clone -b $kdebranch --single-branch $url $subdir && cd $subdir && git checkout $kdebranch";
# $command = "git clone $url $subdir && cd $subdir && git checkout -b $kdebranch origin/$kdebranch";
} else {
$command = "git clone $url $subdir && cd $subdir && git checkout $kdebranch";
}
} else {
$command = "git clone $url $subdir";
}
} else {
if ($branch) {
next if ( $subdir =~ m+/kdeexamples+ || $subdir =~ m+/superbuild+ );
$command = "cd $subdir && git config remote.origin.url $url && git checkout $kdebranch && git pull --ff";
} else {
$command = "cd $subdir && git config remote.origin.url $url && git pull --ff";
}
}
$ret = &runCommand( $command );
if ($ret) {
#check if there is a branch by this name in the repo. If not, then no error.
my($ohno) = 1;
if (-d "$subdir/.git" && $branch) {
$ret = &runCommand( "cd $subdir && git checkout $kdebranch" );
if ($ret) {
$ohno = 0;
}
}
if ($newCheckout) {
printf "REMOVING CLONE DUE TO GIT FAILURE\n";
runCommand("rm -rf $subdir");
}
if ($ohno) {
if ($quitOnError) {
printf "Exiting due to quit-on-error option\n";
} else {
printf "Continuing anyway\n"
}
} else {
printf "FYI: $subdir does not have a branch called $kdebranch. Continuing normally\n"
}
}
}
}
}
# wipe out old checkouts, if requested
if ( $doPrune ) {
my $startDir = ".";
if ( $searchComponent ) {
$startDir = $searchComponent;
if ($branch) {
my $foo = $searchComponent . "-" . $branch;
$startDir =~ s+$searchComponent+$foo+;
}
if ( $searchModule ) {
$startDir .= "/$searchModule";
}
}
if ( -d $startDir ) {
open(my $F, "find $startDir -name .git |");
while (my $line = <$F>) {
chomp $line;
$line =~ s,/\.git,,;
$line =~ s,^\./,,;
if ( not exists $projectByPath{$line} ) {
print STDERR "Deleting old git checkout: $line\n";
runCommand( "rm -rf \"$line\"" );
}
}
}
}
sub runCommand {
my ( $command ) = @_;
my $ret = 0;
if ( $dryRun ) {
print STDERR "$command\n";
} else {
$ret = system( $command );
$ret = $ret >> 8;
}
return $ret;
}
# process a start-of-element event: print message about element
#
sub handle_start {
my( $expat, $element, %attrs ) = @_;
# ask the expat object about our position
my $line = $expat->current_line;
# remember this element and its starting position by pushing a
# little hash onto the element stack
push( @element_stack, { element=>$element, line=>$line });
#print STDERR "-- $element\n";
if ( $element eq "component" ) {
my $value = $attrs{"identifier"};
#print STDERR "component identifier=$value\n";
if ( (!$searchComponent or ($value eq $searchComponent)) ) {
$curComponent = $value;
$curModule = "";
$curProject = "";
$inRepo = 0;
#print STDERR "BEGIN component $curComponent.\n";
}
}
if ( $curComponent && $element eq "module" ) {
my $value = $attrs{"identifier"};
$curProject = "";
if ( !$searchModule or ($value eq $searchModule) ) {
$curModule = $value;
#print STDERR "BEGIN module $curModule\n";
$skipModule = 0;
} else {
$skipModule = 1;
#print STDERR "SKIP module $value\n";
}
}
if ( $curComponent && !$skipModule && $element eq "project" ) {
$curProject = $attrs{"identifier"};
if (!$curModule) {
#print STDERR "project without a module! $curProject\n";
}
#print STDERR "BEGIN project $curProject\n";
}
if ($curComponent && !$skipModule) {
if ( $element eq "path" ) {
$inPath = 1;
} elsif ( $element eq "repo" ) {
$inRepo = 1;
$curActive = 1; # assume all repos are active by default
} elsif ( $inRepo && $element eq "url" ) {
my $value = $attrs{"protocol"};
if ( $value eq $searchProtocol ) {
$inUrl = 1;
}
} elsif ( $inRepo && $element eq "active" ) {
$inActive = 1;
} elsif ( $element eq "description" ) {
$inDesc = 1;
}
}
}
# process an end-of-element event
#
sub handle_end {
my( $expat, $element ) = @_;
# We'll just pop from the element stack with blind faith that
# we'll get the correct closing element, since XML::Parser will scream
# bloody murder if any well-formedness errors creep in.
my $element_record = pop( @element_stack );
if ( $element eq "component" && $curComponent ) {
#print "END of component $curComponent\n";
$curComponent = "";
}
if ( $element eq "module" && $curComponent && $curModule ) {
#print "END of module $curModule\n";
$curModule = "";
}
if ( $element eq "project" && $curComponent && $curModule && $curProject ) {
#print "END of project $curProject\n";
$curProject = "";
$curUrl = "";
}
if ( $element eq "repo" && $curComponent && $inRepo ) {
#print STDERR "repo in $curPath: $curUrl\n";
$inRepo = 0;
if ( $curUrl && $curPath ) {
if ($branch) {
my $foo = $curComponent . "-" . $branch;
$curPath =~ s+$curComponent+$foo+;
}
my $subdir = $curPath;
$curPath .= "-git" if ($gitSuffix && -d "$curPath/.svn");
# $subdir is the logical name (extragear/network/konversation)
# while $curPath is the physical path (extragear/network/konversation-git)
$output{$subdir}{'path'} = $curPath;
$output{$subdir}{'url'} = $curUrl;
$output{$subdir}{'active'} = $curActive;
$output{$subdir}{'desc'} = $curDesc;
$curDesc = "";
$projectByPath{$curPath} = $subdir;
} else {
if (!$curUrl) {
print STDERR "ERROR: repo without url! $curComponent $curModule $curProject $curPath\n";
} elsif (!$curPath) {
print STDERR "ERROR: repo without path! $curComponent $curModule $curProject $curUrl\n";
}
}
}
if ( $element eq "path" ) {
$inPath = 0;
} elsif ( $element eq "url" ) {
$inUrl = 0;
} elsif ( $element eq "active" ) {
$inActive = 0;
} elsif ( $element eq "description" ) {
$inDesc = 0;
}
}
sub char_handler
{
my ($p, $data) = @_;
$data =~ s/\n/\n\t/g;
if ( $inPath ) {
$curPath = $data;
} elsif ( $inUrl ) {
$curUrl = $data;
} elsif ( $inActive ) {
$curActive = !( $data =~ m/false/i || $data =~ m/off/i );
} elsif ( $inDesc && !$curDesc ) {
if ( $data !~ m/^\s*$/ ) {
$curDesc = $data;
}
}
} # End of default_handler
# Help function: print help message and exit.
sub Help {
&Version();
print "Parses the KDE Projects XML Database and prints project protocol-url lines\n";
print "for each project in the specified component/module.\n\n";
print " --help display help message and exit\n";
print " --version display version information and exit\n";
print " --component search for projects within this component\n";
print " --module search for projects within this module (requires --component)\n";
print " --branch git checkout the specified branch, i.e. 4.6\n";
print " --protocol print the URI for the specified protocol (default=\"git\")\n";
print " possible values are \"git\", \"http\", \"ssh\" or \"tarball\"\n";
print " --all print all projects, not just active-only projects\n";
print " --desc print the project description too\n";
print "\n";
print " --clone actually do a git clone or pull of every repo found\n";
print " Note: this is meant for servers like lxr/ebn rather than for developers.\n";
print " --gitsuffix append '-git' to the directory name when cloning, if a svn dir exists.\n";
print " --prune remove old git checkouts that are not listed anymore\n";
print " --dry-run show git and prune commands but don't execute them.\n";
print "\n";
print "Examples:\n\n";
print "To print the active projects in extragear network with git protocol:\n";
print "% $Prog --component=extragear --module=network\n";
print "\n";
print "To print all projects in playground utils with the ssh protocol:\n";
print "% $Prog --component=playground --module=utils --protocol=ssh --all\n";
print "\n";
exit 0 if $help;
}
# Version function: print the version number and exit.
sub Version {
print "$Prog, version $Version\n";
exit 0 if $version;
}
|