Method: Xcselect::NKIssue.parse

Defined in:
lib/xcselect/nkissue.rb

.parse(file_name) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/xcselect/nkissue.rb', line 19

def self.parse file_name
  begin      
    ns_plist = Plist::parse_xml(read_bin_plist_to_xml(file_name))
    # this is the integer that we will use to filter all archived nkissue objects
    nk_issue_key =  find_class_key(ns_plist)

    # filter just the nkissue hashes
    object_array = ns_plist['$objects']
    obj_key_hashs = object_array.select{|o| o.class == Hash && o['$class'] && nk_issue_key == o['$class']['CF$UID'] }
  
    issues = {}
    obj_key_hashs.each do |nskey|
      issue = NKIssue.new
      issue.name = object_array[nskey['name']['CF$UID']]
      issue.uuid = object_array[nskey['directory']['CF$UID']]
      issue.date = self.archive_time_to_time(object_array[nskey['date']['CF$UID']]['NS.time'])
      issues[issue.name] = issue # unless name.nil?
    end
    return issues        
  rescue Exception => e
    return {}
  end
end