Class: Grit::GitRuby::Tree

Inherits:
GitObject show all
Defined in:
lib/grit/git-ruby/git_object.rb

Instance Attribute Summary collapse

Attributes inherited from GitObject

#repository, #sha

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from GitObject

#sha1

Constructor Details

#initialize(entries = [], repository = nil) ⇒ Tree

Returns a new instance of Tree.



214
215
216
217
# File 'lib/grit/git-ruby/git_object.rb', line 214

def initialize(entries=[], repository = nil)
  @entry = entries
  @repository = repository
end

Instance Attribute Details

#entryObject

Returns the value of attribute entry.



197
198
199
# File 'lib/grit/git-ruby/git_object.rb', line 197

def entry
  @entry
end

Class Method Details

.from_raw(rawobject, repository = nil) ⇒ Object



199
200
201
202
203
204
205
206
207
208
209
210
211
212
# File 'lib/grit/git-ruby/git_object.rb', line 199

def self.from_raw(rawobject, repository=nil)
  raw = StringIO.new(rawobject.content)

  entries = []
  while !raw.eof?
    mode      = Grit::GitRuby.read_bytes_until(raw, ' ')
    file_name = Grit::GitRuby.read_bytes_until(raw, "\0")
    raw_sha   = raw.read(20)
    sha = raw_sha.unpack("H*").first

    entries << DirectoryEntry.new(mode, file_name, sha)
  end
  new(entries, repository)
end

Instance Method Details

#actual_rawObject



229
230
231
# File 'lib/grit/git-ruby/git_object.rb', line 229

def actual_raw
  #@entry.collect { |e| e.raw.join(' '), e.name].join("\t") }.join("\n")
end

#raw_contentObject



223
224
225
226
227
# File 'lib/grit/git-ruby/git_object.rb', line 223

def raw_content
  # TODO: sort correctly
  #@entry.sort { |a,b| a.name <=> b.name }.
  @entry.collect { |e| [[e.format_mode, e.format_type, e.sha1].join(' '), e.name].join("\t") }.join("\n")
end

#typeObject



219
220
221
# File 'lib/grit/git-ruby/git_object.rb', line 219

def type
  :tree
end