Class: SVNx::Status::Entry

Inherits:
Entry
  • Object
show all
Includes:
Comparable, Logue::Loggable
Defined in:
lib/svnx/status/entry.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Entry

#get_attribute, #get_element_text, #set_attr_var, #set_elmt_var, #set_from_xml, #set_var

Constructor Details

#initialize(args) ⇒ Entry

Returns a new instance of Entry.



20
21
22
23
24
# File 'lib/svnx/status/entry.rb', line 20

def initialize args
  @rootpath = args[:rootpath]
  super
  @action = SVNx::Action.new @status
end

Instance Attribute Details

#actionObject (readonly)

Returns the value of attribute action.



16
17
18
# File 'lib/svnx/status/entry.rb', line 16

def action
  @action
end

#commit_revisionObject (readonly)

Returns the value of attribute commit_revision.



17
18
19
# File 'lib/svnx/status/entry.rb', line 17

def commit_revision
  @commit_revision
end

#nameObject (readonly)

Returns the value of attribute name.



18
19
20
# File 'lib/svnx/status/entry.rb', line 18

def name
  @name
end

#pathObject (readonly)

Returns the value of attribute path.



14
15
16
# File 'lib/svnx/status/entry.rb', line 14

def path
  @path
end

#statusObject (readonly)

Returns the value of attribute status.



13
14
15
# File 'lib/svnx/status/entry.rb', line 13

def status
  @status
end

#status_revisionObject (readonly)

Returns the value of attribute status_revision.



15
16
17
# File 'lib/svnx/status/entry.rb', line 15

def status_revision
  @status_revision
end

Instance Method Details

#<=>(other) ⇒ Object



51
52
53
# File 'lib/svnx/status/entry.rb', line 51

def <=> other
  path <=> other.path
end

#set_from_element(elmt) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/svnx/status/entry.rb', line 26

def set_from_element elmt
  set_attr_var elmt, 'path'

  wcstatus = elmt.elements['wc-status']
  @status = SVNx::Action.new(wcstatus.attributes['item'])
  @status_revision = wcstatus.attributes['revision']
  
  commit = wcstatus.elements['commit']
  @commit_revision = commit && commit.attributes['revision']
  @name = @path.dup

  info "@name: #{@name}"
  info "@path: #{@path}"
  info "@rootpath: #{@rootpath}"

  if @rootpath
    # name is prefixed with directory unless '.' is used as the argument
    @name.sub! Regexp.new('^' + @rootpath), ''
  end
end

#to_sObject



47
48
49
# File 'lib/svnx/status/entry.rb', line 47

def to_s
  "path: #{@path}; status: #{@status}"
end