comparison .svn/pristine/21/21f67f445a6c5a2512b4712ac66209391d37efdc.svn-base @ 909:cbb26bc654de redmine-1.3

Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author Chris Cannam
date Fri, 24 Feb 2012 19:09:32 +0000
parents
children
comparison
equal deleted inserted replaced
908:c6c2cbd0afee 909:cbb26bc654de
1 # Redmine - project management software
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 require 'redmine/scm/adapters/abstract_adapter'
19 require 'rexml/document'
20
21 module Redmine
22 module Scm
23 module Adapters
24 class DarcsAdapter < AbstractAdapter
25 # Darcs executable name
26 DARCS_BIN = Redmine::Configuration['scm_darcs_command'] || "darcs"
27
28 class << self
29 def client_command
30 @@bin ||= DARCS_BIN
31 end
32
33 def sq_bin
34 @@sq_bin ||= shell_quote_command
35 end
36
37 def client_version
38 @@client_version ||= (darcs_binary_version || [])
39 end
40
41 def client_available
42 !client_version.empty?
43 end
44
45 def darcs_binary_version
46 darcsversion = darcs_binary_version_from_command_line.dup
47 if darcsversion.respond_to?(:force_encoding)
48 darcsversion.force_encoding('ASCII-8BIT')
49 end
50 if m = darcsversion.match(%r{\A(.*?)((\d+\.)+\d+)})
51 m[2].scan(%r{\d+}).collect(&:to_i)
52 end
53 end
54
55 def darcs_binary_version_from_command_line
56 shellout("#{sq_bin} --version") { |io| io.read }.to_s
57 end
58 end
59
60 def initialize(url, root_url=nil, login=nil, password=nil,
61 path_encoding=nil)
62 @url = url
63 @root_url = url
64 end
65
66 def supports_cat?
67 # cat supported in darcs 2.0.0 and higher
68 self.class.client_version_above?([2, 0, 0])
69 end
70
71 # Get info about the darcs repository
72 def info
73 rev = revisions(nil,nil,nil,{:limit => 1})
74 rev ? Info.new({:root_url => @url, :lastrev => rev.last}) : nil
75 end
76
77 # Returns an Entries collection
78 # or nil if the given path doesn't exist in the repository
79 def entries(path=nil, identifier=nil, options={})
80 path_prefix = (path.blank? ? '' : "#{path}/")
81 if path.blank?
82 path = ( self.class.client_version_above?([2, 2, 0]) ? @url : '.' )
83 end
84 entries = Entries.new
85 cmd = "#{self.class.sq_bin} annotate --repodir #{shell_quote @url} --xml-output"
86 cmd << " --match #{shell_quote("hash #{identifier}")}" if identifier
87 cmd << " #{shell_quote path}"
88 shellout(cmd) do |io|
89 begin
90 doc = REXML::Document.new(io)
91 if doc.root.name == 'directory'
92 doc.elements.each('directory/*') do |element|
93 next unless ['file', 'directory'].include? element.name
94 entries << entry_from_xml(element, path_prefix)
95 end
96 elsif doc.root.name == 'file'
97 entries << entry_from_xml(doc.root, path_prefix)
98 end
99 rescue
100 end
101 end
102 return nil if $? && $?.exitstatus != 0
103 entries.compact.sort_by_name
104 end
105
106 def revisions(path=nil, identifier_from=nil, identifier_to=nil, options={})
107 path = '.' if path.blank?
108 revisions = Revisions.new
109 cmd = "#{self.class.sq_bin} changes --repodir #{shell_quote @url} --xml-output"
110 cmd << " --from-match #{shell_quote("hash #{identifier_from}")}" if identifier_from
111 cmd << " --last #{options[:limit].to_i}" if options[:limit]
112 shellout(cmd) do |io|
113 begin
114 doc = REXML::Document.new(io)
115 doc.elements.each("changelog/patch") do |patch|
116 message = patch.elements['name'].text
117 message << "\n" + patch.elements['comment'].text.gsub(/\*\*\*END OF DESCRIPTION\*\*\*.*\z/m, '') if patch.elements['comment']
118 revisions << Revision.new({:identifier => nil,
119 :author => patch.attributes['author'],
120 :scmid => patch.attributes['hash'],
121 :time => Time.parse(patch.attributes['local_date']),
122 :message => message,
123 :paths => (options[:with_path] ? get_paths_for_patch(patch.attributes['hash']) : nil)
124 })
125 end
126 rescue
127 end
128 end
129 return nil if $? && $?.exitstatus != 0
130 revisions
131 end
132
133 def diff(path, identifier_from, identifier_to=nil)
134 path = '*' if path.blank?
135 cmd = "#{self.class.sq_bin} diff --repodir #{shell_quote @url}"
136 if identifier_to.nil?
137 cmd << " --match #{shell_quote("hash #{identifier_from}")}"
138 else
139 cmd << " --to-match #{shell_quote("hash #{identifier_from}")}"
140 cmd << " --from-match #{shell_quote("hash #{identifier_to}")}"
141 end
142 cmd << " -u #{shell_quote path}"
143 diff = []
144 shellout(cmd) do |io|
145 io.each_line do |line|
146 diff << line
147 end
148 end
149 return nil if $? && $?.exitstatus != 0
150 diff
151 end
152
153 def cat(path, identifier=nil)
154 cmd = "#{self.class.sq_bin} show content --repodir #{shell_quote @url}"
155 cmd << " --match #{shell_quote("hash #{identifier}")}" if identifier
156 cmd << " #{shell_quote path}"
157 cat = nil
158 shellout(cmd) do |io|
159 io.binmode
160 cat = io.read
161 end
162 return nil if $? && $?.exitstatus != 0
163 cat
164 end
165
166 private
167
168 # Returns an Entry from the given XML element
169 # or nil if the entry was deleted
170 def entry_from_xml(element, path_prefix)
171 modified_element = element.elements['modified']
172 if modified_element.elements['modified_how'].text.match(/removed/)
173 return nil
174 end
175
176 Entry.new({:name => element.attributes['name'],
177 :path => path_prefix + element.attributes['name'],
178 :kind => element.name == 'file' ? 'file' : 'dir',
179 :size => nil,
180 :lastrev => Revision.new({
181 :identifier => nil,
182 :scmid => modified_element.elements['patch'].attributes['hash']
183 })
184 })
185 end
186
187 def get_paths_for_patch(hash)
188 paths = get_paths_for_patch_raw(hash)
189 if self.class.client_version_above?([2, 4])
190 orig_paths = paths
191 paths = []
192 add_paths = []
193 add_paths_name = []
194 mod_paths = []
195 other_paths = []
196 orig_paths.each do |path|
197 if path[:action] == 'A'
198 add_paths << path
199 add_paths_name << path[:path]
200 elsif path[:action] == 'M'
201 mod_paths << path
202 else
203 other_paths << path
204 end
205 end
206 add_paths_name.each do |add_path|
207 mod_paths.delete_if { |m| m[:path] == add_path }
208 end
209 paths.concat add_paths
210 paths.concat mod_paths
211 paths.concat other_paths
212 end
213 paths
214 end
215
216 # Retrieve changed paths for a single patch
217 def get_paths_for_patch_raw(hash)
218 cmd = "#{self.class.sq_bin} annotate --repodir #{shell_quote @url} --summary --xml-output"
219 cmd << " --match #{shell_quote("hash #{hash}")} "
220 paths = []
221 shellout(cmd) do |io|
222 begin
223 # Darcs xml output has multiple root elements in this case (tested with darcs 1.0.7)
224 # A root element is added so that REXML doesn't raise an error
225 doc = REXML::Document.new("<fake_root>" + io.read + "</fake_root>")
226 doc.elements.each('fake_root/summary/*') do |modif|
227 paths << {:action => modif.name[0,1].upcase,
228 :path => "/" + modif.text.chomp.gsub(/^\s*/, '')
229 }
230 end
231 rescue
232 end
233 end
234 paths
235 rescue CommandFailed
236 paths
237 end
238 end
239 end
240 end
241 end