blob: 5c2c1fc9508ce11f40bf0d42ef118a0bd67d8580 [file] [log] [blame]
#**************************************************************
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#**************************************************************
package SvnRevision;
sub DetectRevisionIdFromGit ($)
{
my $path = shift;
my $id = undef;
open my $proc, "cd $path && git show HEAD 2>\&1|";
while (<$proc>)
{
if (/^fatal: Not a git repository/)
{
# Not in a GIT repository.
last;
}
elsif (/^\s*git-svn-id:.*?@([0-9]+)\s+/)
{
$id = $1;
last;
}
}
close $proc;
return $id;
}
sub DetectRevisionId ($)
{
my $path = shift;
my $id = undef;
open my $proc, "cd $path && svn info 2>\&1 |";
while (<$proc>)
{
if (/svn: E155007:/ || /svn: '.' is not a working copy/)
{
# Not in an SVN repository.
$id = DetectRevisionIdFromGit($path);
last;
}
else
{
if (/Last Changed Rev:\s+([0-9]+)/)
{
$id = $1;
last;
}
}
}
close $proc;
return $id;
}
1;