mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* tool/file2lastrev.rb: refactord. fixed changed revision of git.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26908 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
05d4516145
commit
0e9620fd38
2 changed files with 81 additions and 41 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Sat Mar 13 17:48:43 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* tool/file2lastrev.rb: refactord. fixed changed revision of git.
|
||||||
|
|
||||||
Sat Mar 13 15:44:20 2010 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Sat Mar 13 15:44:20 2010 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* io.c (rb_io_print): should not print field separator at the end
|
* io.c (rb_io_print): should not print field separator at the end
|
||||||
|
@ -11,7 +15,7 @@ Sat Mar 13 14:49:55 2010 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
Sat Mar 13 12:26:13 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Mar 13 12:26:13 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* include/ruby/io.h (MakeOpenFile): finalize fptr get rid of
|
* include/ruby/io.h (MakeOpenFile): finalize fptr to get rid of
|
||||||
memory leak.
|
memory leak.
|
||||||
|
|
||||||
Sat Mar 13 11:14:26 2010 Shugo Maeda <shugo@ruby-lang.org>
|
Sat Mar 13 11:14:26 2010 Shugo Maeda <shugo@ruby-lang.org>
|
||||||
|
|
|
@ -5,47 +5,77 @@ ENV.delete('PWD')
|
||||||
require 'optparse'
|
require 'optparse'
|
||||||
require 'pathname'
|
require 'pathname'
|
||||||
|
|
||||||
SRCDIR = Pathname(File.dirname($0)).parent.freeze
|
Program = Pathname($0)
|
||||||
class VCSNotFoundError < RuntimeError; end
|
|
||||||
|
|
||||||
def detect_vcs(path)
|
class VCS
|
||||||
path = SRCDIR
|
class NotFoundError < RuntimeError; end
|
||||||
return :svn, path.relative_path_from(SRCDIR) if File.directory?("#{path}/.svn")
|
|
||||||
return :git_svn, path.relative_path_from(SRCDIR) if File.directory?("#{path}/.git/svn")
|
|
||||||
return :git, path.relative_path_from(SRCDIR) if File.directory?("#{path}/.git")
|
|
||||||
raise VCSNotFoundError, "does not seem to be under a vcs"
|
|
||||||
end
|
|
||||||
|
|
||||||
# return a pair of strings, the last revision and the last revision in which
|
@@dirs = []
|
||||||
# +path+ was modified.
|
def self.register(dir)
|
||||||
def get_revisions(path)
|
@@dirs << [dir, self]
|
||||||
vcs, path = detect_vcs(path)
|
end
|
||||||
|
|
||||||
info = case vcs
|
def self.detect(path)
|
||||||
when :svn
|
@@dirs.sort.reverse_each do |dir, klass|
|
||||||
info_xml = `cd "#{SRCDIR}" && svn info --xml "#{path}"`
|
return klass.new(path) if File.directory?("#{path}/#{dir}")
|
||||||
_, last, _, changed, _ = info_xml.split(/revision="(\d+)"/)
|
end
|
||||||
|
raise VCS::NotFoundError, "does not seem to be under a vcs: #{path}"
|
||||||
|
end
|
||||||
|
|
||||||
|
def initialize(path)
|
||||||
|
@srcdir = path
|
||||||
|
end
|
||||||
|
|
||||||
|
# return a pair of strings, the last revision and the last revision in which
|
||||||
|
# +path+ was modified.
|
||||||
|
def get_revisions(path)
|
||||||
|
path = relative_to(path)
|
||||||
|
last, changed = Dir.chdir(@srcdir) {yield path}
|
||||||
|
last or raise "last revision not found"
|
||||||
|
changed or raise "changed revision not found"
|
||||||
return last, changed
|
return last, changed
|
||||||
when :git_svn
|
|
||||||
`cd "#{SRCDIR}" && git svn info "#{path}"`
|
|
||||||
when :git
|
|
||||||
git_log = `cd "#{SRCDIR}" && git log HEAD~1..HEAD "#{path}"`
|
|
||||||
git_log =~ /git-svn-id: .*?@(\d+)/
|
|
||||||
return $1, $1
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if /^Revision: (\d+)/ =~ info
|
def relative_to(path)
|
||||||
last = $1
|
path ? Pathname(path).relative_path_from(@srcdir) : '.'
|
||||||
else
|
|
||||||
raise "last revision not found"
|
|
||||||
end
|
|
||||||
if /^Last Changed Rev: (\d+)/ =~ info
|
|
||||||
changed = $1
|
|
||||||
else
|
|
||||||
raise "changed revision not found"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return last, changed
|
class SVN < self
|
||||||
|
register(".svn")
|
||||||
|
|
||||||
|
def get_revisions(path)
|
||||||
|
super do
|
||||||
|
info_xml = `svn info --xml "#{path}"`
|
||||||
|
_, last, _, changed, _ = info_xml.split(/revision="(\d+)"/)
|
||||||
|
[last, changed]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
class GIT_SVN < self
|
||||||
|
register(".git/svn")
|
||||||
|
|
||||||
|
def get_revisions(path)
|
||||||
|
super do
|
||||||
|
info = `git svn info "#{path}"`
|
||||||
|
[info[/^Revision: (\d+)/, 1], info[/^Last Changed Rev: (\d+)/, 1]]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
class GIT < self
|
||||||
|
register(".git")
|
||||||
|
|
||||||
|
def get_revisions(path)
|
||||||
|
logcmd = %Q[git log -n1 --grep='^ *git-svn-id: .*@[0-9][0-9]* ']
|
||||||
|
idpat = /git-svn-id: .*?@(\d+) \S+\Z/
|
||||||
|
super do
|
||||||
|
last = `#{logcmd}`[idpat, 1]
|
||||||
|
changed = path ? `#{logcmd} "#{path}"`[idpat, 1] : last
|
||||||
|
[last, changed]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@output = nil
|
@output = nil
|
||||||
|
@ -57,27 +87,33 @@ def self.output=(output)
|
||||||
end
|
end
|
||||||
@suppress_not_found = false
|
@suppress_not_found = false
|
||||||
|
|
||||||
|
srcdir = nil
|
||||||
parser = OptionParser.new {|opts|
|
parser = OptionParser.new {|opts|
|
||||||
|
opts.on("--srcdir=PATH", "use PATH as source directory") do |path|
|
||||||
|
srcdir = path
|
||||||
|
end
|
||||||
opts.on("--changed", "changed rev") do
|
opts.on("--changed", "changed rev") do
|
||||||
self.output = :changed
|
self.output = :changed
|
||||||
end
|
end
|
||||||
opts.on("--revision.h") do
|
opts.on("--revision.h", "RUBY_REVISION macro") do
|
||||||
self.output = :revision_h
|
self.output = :revision_h
|
||||||
end
|
end
|
||||||
opts.on("--doxygen") do
|
opts.on("--doxygen", "Doxygen format") do
|
||||||
self.output = :doxygen
|
self.output = :doxygen
|
||||||
end
|
end
|
||||||
opts.on("-q", "--suppress_not_found") do
|
opts.on("-q", "--suppress_not_found") do
|
||||||
@suppress_not_found = true
|
@suppress_not_found = true
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
parser.parse!
|
parser.parse! rescue abort "#{Program.basename}: #{$!}\n#{parser}"
|
||||||
|
|
||||||
|
|
||||||
|
srcdir = (srcdir ? Pathname(srcdir) : Program.parent.parent).freeze
|
||||||
begin
|
begin
|
||||||
last, changed = get_revisions(ARGV.shift)
|
vcs = VCS.detect(srcdir)
|
||||||
rescue VCSNotFoundError
|
rescue VCS::NotFoundError => e
|
||||||
raise unless @suppress_not_found
|
abort "#{Program.basename}: #{e.message}" unless @suppress_not_found
|
||||||
|
else
|
||||||
|
last, changed = vcs.get_revisions(ARGV.shift)
|
||||||
end
|
end
|
||||||
|
|
||||||
case @output
|
case @output
|
||||||
|
|
Loading…
Add table
Reference in a new issue