Class: Redmine::Scm::Adapters::DarcsAdapter
- Inherits:
-
AbstractAdapter
show all
- Defined in:
- lib/redmine/scm/adapters/darcs_adapter.rb
Constant Summary
- DARCS_BIN =
Redmine::Configuration['scm_darcs_command'] || "darcs"
Class Method Summary
(collapse)
Instance Method Summary
(collapse)
-
- (Object) cat(path, identifier = nil)
-
- (Object) diff(path, identifier_from, identifier_to = nil)
-
- (Object) entries(path = nil, identifier = nil)
Returns an Entries collection or nil if the given path doesn't exist in
the repository.
-
- (Object) info
Get info about the darcs repository.
-
- (DarcsAdapter) initialize(url, root_url = nil, login = nil, password = nil, path_encoding = nil)
constructor
A new instance of DarcsAdapter.
-
- (Object) revisions(path = nil, identifier_from = nil, identifier_to = nil, options = {})
-
- (Boolean) supports_cat?
#adapter_name, #branches, client_version_above?, client_version_string, #default_branch, #entry, #properties, #root_url, shell_quote, #shell_quote, #supports_annotate?, #tags, #url, #with_leading_slash, #with_trailling_slash, #without_leading_slash, #without_trailling_slash
Constructor Details
- (DarcsAdapter) initialize(url, root_url = nil, login = nil, password = nil, path_encoding = nil)
A new instance of DarcsAdapter
57
58
59
60
61
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 57
def initialize(url, root_url=nil, login=nil, password=nil,
path_encoding=nil)
@url = url
@root_url = url
end
|
Class Method Details
+ (Object) client_available
38
39
40
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 38
def client_available
!client_version.empty?
end
|
+ (Object) client_command
26
27
28
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 26
def client_command
@@bin ||= DARCS_BIN
end
|
+ (Object) client_version
34
35
36
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 34
def client_version
@@client_version ||= (darcs_binary_version || [])
end
|
+ (Object) darcs_binary_version
42
43
44
45
46
47
48
49
50
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 42
def darcs_binary_version
darcsversion = darcs_binary_version_from_command_line.dup
if darcsversion.respond_to?(:force_encoding)
darcsversion.force_encoding('ASCII-8BIT')
end
if m = darcsversion.match(%r{\A(.*?)((\d+\.)+\d+)})
m[2].scan(%r{\d+}).collect(&:to_i)
end
end
|
+ (Object) darcs_binary_version_from_command_line
52
53
54
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 52
def darcs_binary_version_from_command_line
shellout("#{sq_bin} --version") { |io| io.read }.to_s
end
|
+ (Object) sq_bin
30
31
32
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 30
def sq_bin
@@sq_bin ||= shell_quote(DARCS_BIN)
end
|
Instance Method Details
- (Object) cat(path, identifier = nil)
150
151
152
153
154
155
156
157
158
159
160
161
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 150
def cat(path, identifier=nil)
cmd = "#{self.class.sq_bin} show content --repodir #{shell_quote @url}"
cmd << " --match #{shell_quote("hash #{identifier}")}" if identifier
cmd << " #{shell_quote path}"
cat = nil
shellout(cmd) do |io|
io.binmode
cat = io.read
end
return nil if $? && $?.exitstatus != 0
cat
end
|
- (Object) diff(path, identifier_from, identifier_to = nil)
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 130
def diff(path, identifier_from, identifier_to=nil)
path = '*' if path.blank?
cmd = "#{self.class.sq_bin} diff --repodir #{shell_quote @url}"
if identifier_to.nil?
cmd << " --match #{shell_quote("hash #{identifier_from}")}"
else
cmd << " --to-match #{shell_quote("hash #{identifier_from}")}"
cmd << " --from-match #{shell_quote("hash #{identifier_to}")}"
end
cmd << " -u #{shell_quote path}"
diff = []
shellout(cmd) do |io|
io.each_line do |line|
diff << line
end
end
return nil if $? && $?.exitstatus != 0
diff
end
|
- (Object) entries(path = nil, identifier = nil)
Returns an Entries collection or nil if the given path doesn't exist in
the repository
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
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 76
def entries(path=nil, identifier=nil)
path_prefix = (path.blank? ? '' : "#{path}/")
if path.blank?
path = ( self.class.client_version_above?([2, 2, 0]) ? @url : '.' )
end
entries = Entries.new
cmd = "#{self.class.sq_bin} annotate --repodir #{shell_quote @url} --xml-output"
cmd << " --match #{shell_quote("hash #{identifier}")}" if identifier
cmd << " #{shell_quote path}"
shellout(cmd) do |io|
begin
doc = REXML::Document.new(io)
if doc.root.name == 'directory'
doc.elements.each('directory/*') do |element|
next unless ['file', 'directory'].include? element.name
entries << entry_from_xml(element, path_prefix)
end
elsif doc.root.name == 'file'
entries << entry_from_xml(doc.root, path_prefix)
end
rescue
end
end
return nil if $? && $?.exitstatus != 0
entries.compact.sort_by_name
end
|
- (Object) info
Get info about the darcs repository
69
70
71
72
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 69
def info
rev = revisions(nil,nil,nil,{:limit => 1})
rev ? Info.new({:root_url => @url, :lastrev => rev.last}) : nil
end
|
- (Object) revisions(path = nil, identifier_from = nil, identifier_to = nil, options = {})
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
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 103
def revisions(path=nil, identifier_from=nil, identifier_to=nil, options={})
path = '.' if path.blank?
revisions = Revisions.new
cmd = "#{self.class.sq_bin} changes --repodir #{shell_quote @url} --xml-output"
cmd << " --from-match #{shell_quote("hash #{identifier_from}")}" if identifier_from
cmd << " --last #{options[:limit].to_i}" if options[:limit]
shellout(cmd) do |io|
begin
doc = REXML::Document.new(io)
doc.elements.each("changelog/patch") do |patch|
message = patch.elements['name'].text
message << "\n" + patch.elements['comment'].text.gsub(/\*\*\*END OF DESCRIPTION\*\*\*.*\z/m, '') if patch.elements['comment']
revisions << Revision.new({:identifier => nil,
:author => patch.attributes['author'],
:scmid => patch.attributes['hash'],
:time => Time.parse(patch.attributes['local_date']),
:message => message,
:paths => (options[:with_path] ? get_paths_for_patch(patch.attributes['hash']) : nil)
})
end
rescue
end
end
return nil if $? && $?.exitstatus != 0
revisions
end
|
- (Boolean) supports_cat?
63
64
65
66
|
# File 'lib/redmine/scm/adapters/darcs_adapter.rb', line 63
def supports_cat?
self.class.client_version_above?([2, 0, 0])
end
|