Class: MetricFu::Saikuro::SFile
- Inherits:
-
Object
- Object
- MetricFu::Saikuro::SFile
- Defined in:
- lib/generators/saikuro.rb
Instance Attribute Summary collapse
-
#elements ⇒ Object
readonly
Returns the value of attribute elements.
Class Method Summary collapse
Instance Method Summary collapse
- #filename ⇒ Object
- #get_class_names ⇒ Object
- #get_elements ⇒ Object
-
#initialize(path) ⇒ SFile
constructor
A new instance of SFile.
- #merge_classes ⇒ Object
- #to_h ⇒ Object
Constructor Details
#initialize(path) ⇒ SFile
Returns a new instance of SFile.
84 85 86 87 88 89 |
# File 'lib/generators/saikuro.rb', line 84 def initialize(path) @path = path @file_handle = File.open(@path, "r") @elements = [] get_elements end |
Instance Attribute Details
#elements ⇒ Object (readonly)
Returns the value of attribute elements.
82 83 84 |
# File 'lib/generators/saikuro.rb', line 82 def elements @elements end |
Class Method Details
.is_valid_text_file?(path) ⇒ Boolean
91 92 93 94 95 96 97 98 99 |
# File 'lib/generators/saikuro.rb', line 91 def self.is_valid_text_file?(path) File.open(path, "r") do |f| if f.eof? || !f.readline.match(/--/) return false else return true end end end |
Instance Method Details
#filename ⇒ Object
101 102 103 |
# File 'lib/generators/saikuro.rb', line 101 def filename File.basename(@path, '_cyclo.html') end |
#get_class_names ⇒ Object
161 162 163 164 165 166 167 168 169 |
# File 'lib/generators/saikuro.rb', line 161 def get_class_names class_names = [] @elements.each do |element| unless class_names.include?(element.name) class_names << element.name end end class_names end |
#get_elements ⇒ Object
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/generators/saikuro.rb', line 110 def get_elements begin while (line = @file_handle.readline) do return [] if line.nil? || line !~ /\S/ element ||= nil if line.match /START/ unless element.nil? @elements << element element = nil end line = @file_handle.readline element = Saikuro::ParsingElement.new(line) elsif line.match /END/ @elements << element if element element = nil else element << line if element end end rescue EOFError nil end end |
#merge_classes ⇒ Object
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/generators/saikuro.rb', line 135 def merge_classes new_elements = [] get_class_names.each do |target_class| elements = @elements.find_all {|el| el.name == target_class } complexity = 0 lines = 0 defns = [] elements.each do |el| complexity += el.complexity.to_i lines += el.lines.to_i defns << el.defs end new_element = {:class_name => target_class, :complexity => complexity, :lines => lines, :methods => defns.flatten.map {|d| d.to_h}} new_element[:methods] = new_element[:methods]. sort_by {|x| x[:complexity] }. reverse new_elements << new_element end @elements = new_elements if new_elements end |
#to_h ⇒ Object
105 106 107 108 |
# File 'lib/generators/saikuro.rb', line 105 def to_h merge_classes {:classes => @elements} end |