| 
									
										
										
										
											2019-03-17 16:36:34 +00:00
										 |  |  | # frozen_string_literal: true | 
					
						
							| 
									
										
										
										
											2019-03-15 01:32:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-06 12:57:32 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2023-01-01 06:19:35 +00:00
										 |  |  | # Copyright (C) 2006-2023  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # 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. | 
					
						
							| 
									
										
										
										
											2011-05-06 12:57:32 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  | # 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. | 
					
						
							| 
									
										
										
										
											2011-05-06 12:57:32 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  | # 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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-24 05:06:36 +00:00
										 |  |  | require 'redmine/scm/adapters/abstract_adapter' | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | module Redmine | 
					
						
							|  |  |  |   module Scm | 
					
						
							| 
									
										
										
										
											2011-02-14 06:14:34 +00:00
										 |  |  |     module Adapters | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |       class BazaarAdapter < AbstractAdapter | 
					
						
							|  |  |  |         # Bazaar executable name | 
					
						
							| 
									
										
										
										
											2011-02-04 10:24:10 +00:00
										 |  |  |         BZR_BIN = Redmine::Configuration['scm_bazaar_command'] || "bzr" | 
					
						
							| 
									
										
										
										
											2011-02-14 06:14:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         class << self | 
					
						
							|  |  |  |           def client_command | 
					
						
							|  |  |  |             @@bin    ||= BZR_BIN | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           def sq_bin | 
					
						
							| 
									
										
										
										
											2011-07-15 16:32:38 +00:00
										 |  |  |             @@sq_bin ||= shell_quote_command | 
					
						
							| 
									
										
										
										
											2011-02-14 06:14:34 +00:00
										 |  |  |           end | 
					
						
							| 
									
										
										
										
											2011-02-15 07:04:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |           def client_version | 
					
						
							|  |  |  |             @@client_version ||= (scm_command_version || []) | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           def client_available | 
					
						
							|  |  |  |             !client_version.empty? | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           def scm_command_version | 
					
						
							| 
									
										
										
										
											2019-03-20 01:36:44 +00:00
										 |  |  |             scm_version = scm_version_from_command_line.b | 
					
						
							| 
									
										
										
										
											2011-02-15 07:04:49 +00:00
										 |  |  |             if m = scm_version.match(%r{\A(.*?)((\d+\.)+\d+)}) | 
					
						
							|  |  |  |               m[2].scan(%r{\d+}).collect(&:to_i) | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           def scm_version_from_command_line | 
					
						
							| 
									
										
										
										
											2020-07-09 15:18:24 +00:00
										 |  |  |             shellout("#{sq_bin} --version") {|io| io.read}.to_s | 
					
						
							| 
									
										
										
										
											2011-02-15 07:04:49 +00:00
										 |  |  |           end | 
					
						
							| 
									
										
										
										
											2011-02-14 06:14:34 +00:00
										 |  |  |         end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-17 23:45:31 +00:00
										 |  |  |         def initialize(url, root_url=nil, login=nil, password=nil, path_encoding=nil) | 
					
						
							| 
									
										
										
										
											2012-09-18 10:10:29 +00:00
										 |  |  |           @url = url | 
					
						
							|  |  |  |           @root_url = url | 
					
						
							| 
									
										
										
										
											2012-09-17 23:45:31 +00:00
										 |  |  |           @path_encoding = 'UTF-8' | 
					
						
							| 
									
										
										
										
											2012-09-18 10:10:29 +00:00
										 |  |  |           # do not call *super* for non ASCII repository path | 
					
						
							| 
									
										
										
										
											2012-09-17 23:45:31 +00:00
										 |  |  |         end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-18 09:30:11 +00:00
										 |  |  |         def bzr_path_encodig=(encoding) | 
					
						
							|  |  |  |           @path_encoding = encoding | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         # Get info about the repository | 
					
						
							|  |  |  |         def info | 
					
						
							| 
									
										
										
										
											2011-05-25 23:51:44 +00:00
										 |  |  |           cmd_args = %w|revno| | 
					
						
							|  |  |  |           cmd_args << bzr_target('') | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |           info = nil | 
					
						
							| 
									
										
										
										
											2011-05-25 23:51:44 +00:00
										 |  |  |           scm_cmd(*cmd_args) do |io| | 
					
						
							| 
									
										
										
										
											2010-05-01 09:56:59 +00:00
										 |  |  |             if io.read =~ %r{^(\d+)\r?$} | 
					
						
							| 
									
										
										
										
											2020-10-26 13:34:44 +00:00
										 |  |  |               info = | 
					
						
							|  |  |  |                 Info.new( | 
					
						
							|  |  |  |                   { | 
					
						
							|  |  |  |                     :root_url => url, | 
					
						
							|  |  |  |                     :lastrev => | 
					
						
							|  |  |  |                     Revision.new({:identifier => $1}) | 
					
						
							|  |  |  |                   } | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |             end | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           info | 
					
						
							| 
									
										
										
										
											2011-05-25 23:51:44 +00:00
										 |  |  |         rescue ScmCommandAborted | 
					
						
							| 
									
										
										
										
											2020-12-12 15:50:14 +00:00
										 |  |  |           nil | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-02-14 06:14:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         # Returns an Entries collection | 
					
						
							|  |  |  |         # or nil if the given path doesn't exist in the repository | 
					
						
							| 
									
										
										
										
											2011-05-04 14:11:25 +00:00
										 |  |  |         def entries(path=nil, identifier=nil, options={}) | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |           path ||= '' | 
					
						
							|  |  |  |           entries = Entries.new | 
					
						
							| 
									
										
										
										
											2011-04-24 09:55:51 +00:00
										 |  |  |           identifier = -1 unless identifier && identifier.to_i > 0
 | 
					
						
							| 
									
										
										
										
											2011-05-26 07:13:10 +00:00
										 |  |  |           cmd_args = %w|ls -v --show-ids| | 
					
						
							|  |  |  |           cmd_args << "-r#{identifier.to_i}" | 
					
						
							|  |  |  |           cmd_args << bzr_target(path) | 
					
						
							|  |  |  |           scm_cmd(*cmd_args) do |io| | 
					
						
							| 
									
										
										
										
											2018-08-12 23:40:44 +00:00
										 |  |  |             prefix_utf8 = "#{url}/#{path}".tr('\\', '/') | 
					
						
							| 
									
										
										
										
											2012-09-17 23:46:53 +00:00
										 |  |  |             logger.debug "PREFIX: #{prefix_utf8}" | 
					
						
							| 
									
										
										
										
											2019-03-20 01:36:44 +00:00
										 |  |  |             prefix = scm_iconv(@path_encoding, 'UTF-8', prefix_utf8).b | 
					
						
							| 
									
										
										
										
											2010-05-01 09:56:59 +00:00
										 |  |  |             re = %r{^V\s+(#{Regexp.escape(prefix)})?(\/?)([^\/]+)(\/?)\s+(\S+)\r?$} | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |             io.each_line do |line| | 
					
						
							|  |  |  |               next unless line =~ re | 
					
						
							| 
									
										
										
										
											2020-07-09 15:18:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-27 10:50:19 +00:00
										 |  |  |               name_locale, slash, revision = $3.strip, $4, $5.strip | 
					
						
							| 
									
										
										
										
											2012-09-17 23:46:53 +00:00
										 |  |  |               name = scm_iconv('UTF-8', @path_encoding, name_locale) | 
					
						
							| 
									
										
										
										
											2020-10-26 13:34:44 +00:00
										 |  |  |               entries << | 
					
						
							|  |  |  |                 Entry.new( | 
					
						
							|  |  |  |                   { | 
					
						
							|  |  |  |                     :name => name, | 
					
						
							|  |  |  |                     :path => ((path.empty? ? "" : "#{path}/") + name), | 
					
						
							|  |  |  |                     :kind => (slash.blank? ? 'file' : 'dir'), | 
					
						
							|  |  |  |                     :size => nil, | 
					
						
							|  |  |  |                     :lastrev => Revision.new(:revision => revision) | 
					
						
							|  |  |  |                   } | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |             end | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2011-05-26 07:13:10 +00:00
										 |  |  |           if logger && logger.debug? | 
					
						
							|  |  |  |             logger.debug("Found #{entries.size} entries in the repository for #{target(path)}") | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |           entries.sort_by_name | 
					
						
							| 
									
										
										
										
											2011-05-26 07:13:10 +00:00
										 |  |  |         rescue ScmCommandAborted | 
					
						
							| 
									
										
										
										
											2020-12-12 15:50:14 +00:00
										 |  |  |           nil | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-02-14 06:14:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         def revisions(path=nil, identifier_from=nil, identifier_to=nil, options={}) | 
					
						
							|  |  |  |           path ||= '' | 
					
						
							| 
									
										
										
										
											2010-12-18 18:12:12 +00:00
										 |  |  |           identifier_from = (identifier_from and identifier_from.to_i > 0) ? identifier_from.to_i : 'last:1' | 
					
						
							|  |  |  |           identifier_to = (identifier_to and identifier_to.to_i > 0) ? identifier_to.to_i : 1
 | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |           revisions = Revisions.new | 
					
						
							| 
									
										
										
										
											2011-05-26 07:15:05 +00:00
										 |  |  |           cmd_args = %w|log -v --show-ids| | 
					
						
							|  |  |  |           cmd_args << "-r#{identifier_to}..#{identifier_from}" | 
					
						
							|  |  |  |           cmd_args << bzr_target(path) | 
					
						
							|  |  |  |           scm_cmd(*cmd_args) do |io| | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |             revision = nil | 
					
						
							| 
									
										
										
										
											2011-05-26 07:15:05 +00:00
										 |  |  |             parsing  = nil | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |             io.each_line do |line| | 
					
						
							| 
									
										
										
										
											2020-10-23 00:13:38 +00:00
										 |  |  |               if /^----/.match?(line) | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |                 revisions << revision if revision | 
					
						
							|  |  |  |                 revision = Revision.new(:paths => [], :message => '') | 
					
						
							|  |  |  |                 parsing = nil | 
					
						
							|  |  |  |               else | 
					
						
							|  |  |  |                 next unless revision | 
					
						
							| 
									
										
										
										
											2020-07-09 15:18:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-06 10:49:36 +00:00
										 |  |  |                 if line =~ /^revno: (\d+)($|\s\[merge\]$)/ | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |                   revision.identifier = $1.to_i | 
					
						
							|  |  |  |                 elsif line =~ /^committer: (.+)$/ | 
					
						
							|  |  |  |                   revision.author = $1.strip | 
					
						
							|  |  |  |                 elsif line =~ /^revision-id:(.+)$/ | 
					
						
							|  |  |  |                   revision.scmid = $1.strip | 
					
						
							|  |  |  |                 elsif line =~ /^timestamp: (.+)$/ | 
					
						
							|  |  |  |                   revision.time = Time.parse($1).localtime | 
					
						
							| 
									
										
										
										
											2020-10-23 00:13:38 +00:00
										 |  |  |                 elsif /^    -----/.match?(line) | 
					
						
							| 
									
										
										
										
											2007-12-07 17:51:54 +00:00
										 |  |  |                   # partial revisions | 
					
						
							|  |  |  |                   parsing = nil unless parsing == 'message' | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |                 elsif line =~ /^(message|added|modified|removed|renamed):/ | 
					
						
							|  |  |  |                   parsing = $1 | 
					
						
							| 
									
										
										
										
											2007-12-07 17:51:54 +00:00
										 |  |  |                 elsif line =~ /^  (.*)$/ | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |                   if parsing == 'message' | 
					
						
							| 
									
										
										
										
											2019-03-17 16:36:34 +00:00
										 |  |  |                     revision.message += "#{$1}\n" | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |                   else | 
					
						
							|  |  |  |                     if $1 =~ /^(.*)\s+(\S+)$/ | 
					
						
							| 
									
										
										
										
											2012-09-17 23:46:27 +00:00
										 |  |  |                       path_locale = $1.strip | 
					
						
							|  |  |  |                       path = scm_iconv('UTF-8', @path_encoding, path_locale) | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |                       revid = $2 | 
					
						
							|  |  |  |                       case parsing | 
					
						
							|  |  |  |                       when 'added' | 
					
						
							|  |  |  |                         revision.paths << {:action => 'A', :path => "/#{path}", :revision => revid} | 
					
						
							|  |  |  |                       when 'modified' | 
					
						
							|  |  |  |                         revision.paths << {:action => 'M', :path => "/#{path}", :revision => revid} | 
					
						
							|  |  |  |                       when 'removed' | 
					
						
							|  |  |  |                         revision.paths << {:action => 'D', :path => "/#{path}", :revision => revid} | 
					
						
							|  |  |  |                       when 'renamed' | 
					
						
							|  |  |  |                         new_path = path.split('=>').last | 
					
						
							| 
									
										
										
										
											2012-09-17 07:58:31 +00:00
										 |  |  |                         if new_path | 
					
						
							|  |  |  |                           revision.paths << {:action => 'M', :path => "/#{new_path.strip}", | 
					
						
							|  |  |  |                                              :revision => revid} | 
					
						
							|  |  |  |                         end | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |                       end | 
					
						
							|  |  |  |                     end | 
					
						
							|  |  |  |                   end | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                   parsing = nil | 
					
						
							|  |  |  |                 end | 
					
						
							|  |  |  |               end | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |             revisions << revision if revision | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           revisions | 
					
						
							| 
									
										
										
										
											2011-05-26 07:15:05 +00:00
										 |  |  |         rescue ScmCommandAborted | 
					
						
							| 
									
										
										
										
											2020-12-12 15:50:14 +00:00
										 |  |  |           nil | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-02-14 06:14:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-08 16:28:42 +00:00
										 |  |  |         def diff(path, identifier_from, identifier_to=nil) | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |           path ||= '' | 
					
						
							|  |  |  |           if identifier_to | 
					
						
							| 
									
										
										
										
											2011-04-24 09:55:51 +00:00
										 |  |  |             identifier_to = identifier_to.to_i | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |           else | 
					
						
							|  |  |  |             identifier_to = identifier_from.to_i - 1
 | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2010-12-18 18:12:12 +00:00
										 |  |  |           if identifier_from | 
					
						
							|  |  |  |             identifier_from = identifier_from.to_i | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |           diff = [] | 
					
						
							| 
									
										
										
										
											2011-05-26 06:16:44 +00:00
										 |  |  |           cmd_args = %w|diff| | 
					
						
							|  |  |  |           cmd_args << "-r#{identifier_to}..#{identifier_from}" | 
					
						
							|  |  |  |           cmd_args << bzr_target(path) | 
					
						
							|  |  |  |           scm_cmd_no_raise(*cmd_args) do |io| | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |             io.each_line do |line| | 
					
						
							|  |  |  |               diff << line | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2008-06-08 16:28:42 +00:00
										 |  |  |           diff | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-02-14 06:14:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         def cat(path, identifier=nil) | 
					
						
							|  |  |  |           cat = nil | 
					
						
							| 
									
										
										
										
											2011-05-26 05:07:55 +00:00
										 |  |  |           cmd_args = %w|cat| | 
					
						
							|  |  |  |           cmd_args << "-r#{identifier.to_i}" if identifier && identifier.to_i > 0
 | 
					
						
							|  |  |  |           cmd_args << bzr_target(path) | 
					
						
							|  |  |  |           scm_cmd(*cmd_args) do |io| | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |             io.binmode | 
					
						
							|  |  |  |             cat = io.read | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           cat | 
					
						
							| 
									
										
										
										
											2011-05-26 05:07:55 +00:00
										 |  |  |         rescue ScmCommandAborted | 
					
						
							| 
									
										
										
										
											2020-12-12 15:50:14 +00:00
										 |  |  |           nil | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-02-14 06:14:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         def annotate(path, identifier=nil) | 
					
						
							|  |  |  |           blame = Annotate.new | 
					
						
							| 
									
										
										
										
											2011-05-26 01:13:43 +00:00
										 |  |  |           cmd_args = %w|annotate -q --all| | 
					
						
							| 
									
										
										
										
											2011-05-26 01:11:25 +00:00
										 |  |  |           cmd_args << "-r#{identifier.to_i}" if identifier && identifier.to_i > 0
 | 
					
						
							|  |  |  |           cmd_args << bzr_target(path) | 
					
						
							|  |  |  |           scm_cmd(*cmd_args) do |io| | 
					
						
							|  |  |  |             author     = nil | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |             identifier = nil | 
					
						
							|  |  |  |             io.each_line do |line| | 
					
						
							|  |  |  |               next unless line =~ %r{^(\d+) ([^|]+)\| (.*)$} | 
					
						
							| 
									
										
										
										
											2020-07-09 15:18:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 08:33:32 +00:00
										 |  |  |               rev = $1 | 
					
						
							| 
									
										
										
										
											2020-07-12 11:35:58 +00:00
										 |  |  |               blame. | 
					
						
							|  |  |  |                 add_line( | 
					
						
							|  |  |  |                   $3.rstrip, | 
					
						
							|  |  |  |                   Revision.new( | 
					
						
							|  |  |  |                     :identifier => rev, | 
					
						
							|  |  |  |                     :revision   => rev, | 
					
						
							|  |  |  |                     :author     => $2.strip | 
					
						
							|  |  |  |                   ) | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |             end | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           blame | 
					
						
							| 
									
										
										
										
											2011-05-26 01:11:25 +00:00
										 |  |  |         rescue ScmCommandAborted | 
					
						
							| 
									
										
										
										
											2020-12-12 15:50:14 +00:00
										 |  |  |           nil | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-05-25 07:46:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def self.branch_conf_path(path) | 
					
						
							| 
									
										
										
										
											2019-03-21 00:45:56 +00:00
										 |  |  |           return if path.nil? | 
					
						
							| 
									
										
										
										
											2020-07-09 15:18:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-25 07:46:03 +00:00
										 |  |  |           m = path.match(%r{^(.*[/\\])\.bzr.*$}) | 
					
						
							| 
									
										
										
										
											2019-03-21 00:45:56 +00:00
										 |  |  |           bcp = (m ? m[1] : path).gsub(%r{[\/\\]$}, "") | 
					
						
							| 
									
										
										
										
											2019-03-20 15:02:35 +00:00
										 |  |  |           File.join(bcp, ".bzr", "branch", "branch.conf") | 
					
						
							| 
									
										
										
										
											2011-05-25 07:46:03 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-05-25 08:05:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def append_revisions_only | 
					
						
							| 
									
										
										
										
											2019-09-24 05:13:35 +00:00
										 |  |  |           return @aro unless @aro.nil? | 
					
						
							| 
									
										
										
										
											2020-07-09 15:18:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-25 08:05:58 +00:00
										 |  |  |           @aro = false | 
					
						
							|  |  |  |           bcp = self.class.branch_conf_path(url) | 
					
						
							| 
									
										
										
										
											2011-05-25 08:51:38 +00:00
										 |  |  |           if bcp && File.exist?(bcp) | 
					
						
							| 
									
										
										
										
											2011-05-25 08:05:58 +00:00
										 |  |  |             begin | 
					
						
							| 
									
										
										
										
											2019-09-24 05:13:24 +00:00
										 |  |  |               f = File.open(bcp, "r") | 
					
						
							| 
									
										
										
										
											2011-05-25 08:05:58 +00:00
										 |  |  |               cnt = 0
 | 
					
						
							|  |  |  |               f.each_line do |line| | 
					
						
							|  |  |  |                 l = line.chomp.to_s | 
					
						
							|  |  |  |                 if l =~ /^\s*append_revisions_only\s*=\s*(\w+)\s*$/ | 
					
						
							|  |  |  |                   str_aro = $1 | 
					
						
							| 
									
										
										
										
											2019-09-21 15:54:38 +00:00
										 |  |  |                   if str_aro.casecmp("TRUE") == 0
 | 
					
						
							| 
									
										
										
										
											2011-05-25 08:05:58 +00:00
										 |  |  |                     @aro = true | 
					
						
							|  |  |  |                     cnt += 1
 | 
					
						
							| 
									
										
										
										
											2019-09-21 15:54:38 +00:00
										 |  |  |                   elsif str_aro.casecmp("FALSE") == 0
 | 
					
						
							| 
									
										
										
										
											2011-05-25 08:05:58 +00:00
										 |  |  |                     @aro = false | 
					
						
							|  |  |  |                     cnt += 1
 | 
					
						
							|  |  |  |                   end | 
					
						
							|  |  |  |                   if cnt > 1
 | 
					
						
							|  |  |  |                     @aro = false | 
					
						
							|  |  |  |                     break | 
					
						
							|  |  |  |                   end | 
					
						
							|  |  |  |                 end | 
					
						
							|  |  |  |               end | 
					
						
							|  |  |  |             ensure | 
					
						
							|  |  |  |               f.close | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           @aro | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-05-25 23:50:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def scm_cmd(*args, &block) | 
					
						
							| 
									
										
										
										
											2011-07-15 16:33:02 +00:00
										 |  |  |           full_args = [] | 
					
						
							| 
									
										
										
										
											2011-05-25 23:50:35 +00:00
										 |  |  |           full_args += args | 
					
						
							| 
									
										
										
										
											2012-09-17 23:45:59 +00:00
										 |  |  |           full_args_locale = [] | 
					
						
							|  |  |  |           full_args.map do |e| | 
					
						
							|  |  |  |             full_args_locale << scm_iconv(@path_encoding, 'UTF-8', e) | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2020-10-26 13:34:44 +00:00
										 |  |  |           ret = | 
					
						
							|  |  |  |             shellout( | 
					
						
							|  |  |  |               self.class.sq_bin + ' ' + | 
					
						
							|  |  |  |                 full_args_locale.map {|e| shell_quote e.to_s}.join(' '), | 
					
						
							|  |  |  |               &block | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											2011-05-25 23:50:35 +00:00
										 |  |  |           if $? && $?.exitstatus != 0
 | 
					
						
							|  |  |  |             raise ScmCommandAborted, "bzr exited with non-zero status: #{$?.exitstatus}" | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2020-07-09 15:18:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-25 23:50:35 +00:00
										 |  |  |           ret | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         private :scm_cmd | 
					
						
							| 
									
										
										
										
											2011-05-25 23:51:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-26 06:15:37 +00:00
										 |  |  |         def scm_cmd_no_raise(*args, &block) | 
					
						
							| 
									
										
										
										
											2011-07-15 16:33:24 +00:00
										 |  |  |           full_args = [] | 
					
						
							| 
									
										
										
										
											2011-05-26 06:15:37 +00:00
										 |  |  |           full_args += args | 
					
						
							| 
									
										
										
										
											2012-09-17 23:45:59 +00:00
										 |  |  |           full_args_locale = [] | 
					
						
							|  |  |  |           full_args.map do |e| | 
					
						
							|  |  |  |             full_args_locale << scm_iconv(@path_encoding, 'UTF-8', e) | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2020-10-26 13:34:44 +00:00
										 |  |  |           ret = | 
					
						
							|  |  |  |             shellout( | 
					
						
							|  |  |  |               self.class.sq_bin + ' ' + | 
					
						
							|  |  |  |                 full_args_locale.map {|e| shell_quote e.to_s}.join(' '), | 
					
						
							|  |  |  |               &block | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											2011-05-26 06:15:37 +00:00
										 |  |  |           ret | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         private :scm_cmd_no_raise | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-25 23:51:22 +00:00
										 |  |  |         def bzr_target(path) | 
					
						
							|  |  |  |           target(path, false) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         private :bzr_target | 
					
						
							| 
									
										
										
										
											2007-12-03 17:40:43 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |