Top Level Namespace
Defined Under Namespace
Modules: CppUmlClass, Output Classes: AppMainBase, CStruct, IfdefProcess, MyApp, Search, WsServer
Constant Summary collapse
- ARGV =
[]
Instance Method Summary collapse
- #check_word(buf, check_word) ⇒ Object
- #composition_list_create(pifdef, in_dir, out_list) ⇒ Object
- #config_json_hash(json) ⇒ Object
- #create_uml_class(pifdef, in_dir, out_file) ⇒ Object
- #get_clang_format_path ⇒ Object
- #get_gcc_path ⇒ Object
- #get_unifdef_path ⇒ Object
-
#get_unused_port ⇒ Object
空きポートを取得.
- #print_uml(out, out_list) ⇒ Object
-
#update_source(pifdef, file) ⇒ Object
ソースコードの整形 フォーマット変更(clang-format) コメント削除(gcc) ifdefの処理(unifdef).
Instance Method Details
#check_word(buf, check_word) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'lib/check_word.rb', line 3 def check_word(buf, check_word) # 正規表現を使って単語を抽出する words = buf.scan(/\b\w+\b/) # 抽出した単語を表示する words.each do |word| #puts "#{word} == #{check_word}" # 完全一致 return true if word == check_word end return false end |
#composition_list_create(pifdef, in_dir, out_list) ⇒ Object
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
# File 'lib/create_uml_class.rb', line 154 def composition_list_create(pifdef,in_dir, out_list) # composition_list Dir.glob("#{in_dir}/**/*.{h,cpp,hpp,cc}") do |file| if @config["exclude_path"].to_s != "" and file =~ Regexp.new(@config["exclude_path"]) #puts "skip #{file}" next end #puts "file=#{file}" # ソースコードの整形 buf = update_source(pifdef, file) # ソースを解析 cstruct_list = [] block_count = 0 buf.each_line do |line| next if line =~ /^[\r\n]*$/ # 空行は対象外 next if line =~ /^#/ # #から始まる行は対象外 line.gsub!(/["'].*?["']/, '') # "/'囲まれた文字列を削除 #puts "comp:#{line}" # ブロックの開始/終了 if line.match(/\{/) block_count += line.each_char.select { |c| c == "{" }.size start_block = true else start_block = false end # ブロックの終了 if line.match(/\}/) block_count -= line.each_char.select { |c| c == "}" }.size end_block = true else end_block = false end #puts "comp:block_count=#{block_count}" # classの開始 #if line =~ /^\s*(class)\s/ and File.extname(file) == ".h" if line =~ /^\s*(class|struct)\s/ and File.extname(file) == ".h" next if line =~ /;$/ work = line.gsub(/(class|struct)/, "") class_name = work.split(" : ")[0].to_s.chomp.match(/ [A-Za-z0-9_:]+/).to_s.split(" ")[0] #base_name = work.split(" : ")[1].to_s.split(" ")[1].to_s.gsub(/<.*>/, "") #puts "start class #{class_name}" if class_name.to_s != "" cstruct_list.push CStruct.new(:class_start, class_name, block_count, [], [], [], []) end end # 関数の開始 #if line =~ /^\S+::\S+/ if line.gsub(/<.*>/, "") =~ /^\S.*(\S+)::(\S+).*\(.*{/ and (File.extname(file) == ".cpp" or File.extname(file) == ".hpp") line.gsub(/<.*>/, "").match(/(\w+)(?=\S+\()/) do |m| #puts "comp:class_name=#{m}" cstruct_list.push CStruct.new(:method_start, m.to_s, block_count, [], [], [], []) break end end if cstruct_list.size != 0 class_block_count = cstruct_list[-1].block_count #puts "comp:#{File.basename(file)}:#{block_count}:line3=#{line}" if block_count == (class_block_count - 1) # block_countが一致 # 関数の終了 #puts "comp:#{File.basename(file)}:comp:method end #{cstruct_list[-1].name}" cstruct_list.slice!(-1) # 最後の要素を削除 else #puts "#{start_block} : #{end_block}" my_class_name = cstruct_list[-1].name my_cstruct = out_list.select { |m| m.name == my_class_name }[1] #pp my_cstruct if my_cstruct # 使用しているクラスの検索 out_list.each do |clist| next if clist.name == my_cstruct.name use_class_name = clist.name #puts "my_class_name=#{my_class_name} : use_class_name=#{use_class_name}" if check_word(line, use_class_name) #if line.include?(use_class_name) my_cstruct.composition_list.push use_class_name end end end if start_block and end_block # 1行関数 if block_count == (class_block_count - 1) # block_countが一致 cstruct_list.slice!(-1) # 最後の要素を削除 #puts "comp:#{File.basename(file)}:cstruct size=#{cstruct_list.size}" end end end end end end #pp out_list return out_list end |
#config_json_hash(json) ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/wsserver.rb', line 6 def config_json_hash(json) config = {} json["setting_list"].each do |j| config[j["name"]] = j["value"] end return config end |
#create_uml_class(pifdef, in_dir, out_file) ⇒ Object
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 |
# File 'lib/create_uml_class.rb', line 250 def create_uml_class(pifdef, in_dir, out_file) out = [] out.push "@startuml" #puts "in_dir = #{in_dir}" main_composition_list = [] main_method_list = [] global_var = [] out_list = [] #Dir.glob("#{in_dir}/**/*.{cpp,hpp,h}") do |file| Dir.glob("#{in_dir}/**/*.{h}") do |file| if @config["exclude_path"].to_s != "" and file =~ Regexp.new(@config["exclude_path"]) #puts "skip #{file}" next end #puts file # ソースコードの整形 buf = update_source(pifdef, file) cstruct_list = [] block_count = 0 method_type = :public class_name = "" # ソースを解析 buf.each_line do |line| next if line =~ /^[\r\n]*$/ # 空行は対象外 next if line =~ /^#/ # #から始まる行は対象外 line.gsub!(/["'].*?["']/, '') # "/'囲まれた文字列を削除 #puts line # ブロックの開始/終了 if line.match(/\{/) block_count += line.each_char.select { |c| c == "{" }.size start_block = true else start_block = false end # ブロックの終了 if line.match(/\}/) block_count -= line.each_char.select { |c| c == "}" }.size end_block = true else end_block = false end #puts "block_count=#{block_count}" # classの開始 #if line =~ /^\s*(class)\s/ if line =~ /^\s*(class|struct)\s/ next if line =~ /;$/ work = line.gsub(/(class|struct)/, "") class_name = work.split(" : ")[0].to_s.chomp.match(/ [A-Za-z0-9_:]+/).to_s.split(" ")[0] base_name = [] work.split(" : ")[1].to_s.gsub(/(public |private |protected )/, "").to_s.gsub(/<.*>/, "").split(" ").each do |name| base_name.push name if name =~ /\w+/ end #puts "start class [#{class_name}]" if class_name.to_s == "" puts file next end out_list.push CStruct.new(:class_start, class_name, block_count, [], [], [], []) if @config["class_color_path1"].to_s != "" and file =~ Regexp.new(@config["class_color_path1"]) cstruct_list.push CStruct.new(:class_end, class_name, block_count, [], [], [], [], @config["class_color1"]) elsif @config["class_color_path2"].to_s != "" and file =~ Regexp.new(@config["class_color_path2"]) cstruct_list.push CStruct.new(:class_end, class_name, block_count, [], [], [], [], @config["class_color2"]) elsif @config["class_color_path3"].to_s != "" and file =~ Regexp.new(@config["class_color_path3"]) #pp file cstruct_list.push CStruct.new(:class_end, class_name, block_count, [], [], [], [], @config["class_color3"]) else cstruct_list.push CStruct.new(:class_end, class_name, block_count, [], [], [], [], @config["default_class_color"]) end base_name.each do |name| name.gsub!(/,/, "") #puts "base_name=#{name}" cstruct_list[-1].inherit_list.push name end end if line =~ /^\s*private:$/ method_type = :private elsif line =~ /^\s*protected:$/ method_type = :protected elsif line =~ /^\s*public:$/ method_type = :public end if cstruct_list.size != 0 and (block_count == cstruct_list[-1].block_count or (start_block == true and block_count - 1 == cstruct_list[-1].block_count)) if line =~ /\(.*\)/ #puts "#{block_count}:line2=#{line}" # 関数名を取り出す method = line.split(" : ")[0].gsub(/^\s+/, "") method = method.split(";")[0].split("{")[0] #puts "method=#{method}" method_list = cstruct_list[-1].method_list case method_type when :public method_list.push "+ #{method}" when :private method_list.push "- #{method}" when :protected method_list.push "# #{method}" end end end # class変数 # 括弧を含まない、かつtemplateを含まない文字列 if cstruct_list.size != 0 and (block_count == cstruct_list[-1].block_count or (end_block == true and block_count + 1 == cstruct_list[-1].block_count)) if line =~ /^[^(){}]*$/ and line =~ /^((?!\/tmp\/).)*$/ and line =~ /^((?!namespace).)*$/ and line =~ /^((?!template).)*$/ and line =~ /^((?!public:).)*$/ and line =~ /^((?!private:).)*$/ and line =~ /^((?!protected:).)*$/ #puts "class member=#{line}" #val = line.split("=")[0].split(" ")[-1] val = line.split("=")[0] val = val.split(";")[0] instance_var = cstruct_list[-1].var_list case method_type when :public instance_var.push "+ #{val}" when :private instance_var.push "- #{val}" when :protected instance_var.push "# #{val}" end end end # クラスの終了 if cstruct_list.size != 0 class_block_count = cstruct_list[-1].block_count if block_count == (class_block_count - 1) # block_countが一致 #puts "class end #{cstruct_list[-1].name}" out_list.push cstruct_list[-1] cstruct_list.slice!(-1) # 最後の要素を削除 end end #puts "#{block_count} #{line.chomp}" end if block_count != 0 # エラー puts "error block_count=#{block_count}" puts file return "" end end # compositon_listの作成 out_list = composition_list_create(pifdef, in_dir, out_list) # UMLの出力 out = print_uml(out, out_list) if main_method_list.size != 0 or main_composition_list.size != 0 or main_method_list.size != 0 out.push "class main {" main_method_list.each do |mml| out.push mml end # グローバル変数の出力 global_var.uniq.each do |gv| out.push gv end out.push "}" main_composition_list.uniq.each do |mcl| out.push mcl end end out.push "@enduml" return out.join("\n") end |
#get_clang_format_path ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/create_uml_class.rb', line 47 def get_clang_format_path dir = File.dirname(File.(__FILE__)) + "/" kernel = Facter.value(:kernel) if kernel == "windows" ENV["PATH"].split(";").each do |path| clang_format_path = "#{path}\\clang-format" if File.exists? clang_format_path return "rubyw " + clang_format_path + " --style=file:'#{dir}.clang-format' " end end return "" else end #puts "clang-format --style=file:'#{dir}.clang-format' " return "clang-format --style=file:'#{dir}.clang-format' " end |
#get_gcc_path ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/create_uml_class.rb', line 17 def get_gcc_path kernel = Facter.value(:kernel) if kernel == "windows" ENV["PATH"].split(";").each do |path| gcc_path = "#{path}\\gcc" if File.exists? gcc_path return "rubyw " + gcc_path + "w1 " end end return "" else return "gcc -fpreprocessed -E " end end |
#get_unifdef_path ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/create_uml_class.rb', line 32 def get_unifdef_path kernel = Facter.value(:kernel) if kernel == "windows" ENV["PATH"].split(";").each do |path| gcc_path = "#{path}\\unifdef" if File.exists? gcc_path return "rubyw " + gcc_path + " -k " end end return "" else return "unifdef -k " end end |
#get_unused_port ⇒ Object
空きポートを取得
67 68 69 70 71 72 |
# File 'lib/start.rb', line 67 def get_unused_port s = TCPServer.open(0) port = s.addr[1] s.close return port end |
#print_uml(out, out_list) ⇒ Object
93 94 95 96 97 98 99 100 101 102 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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/create_uml_class.rb', line 93 def print_uml(out, out_list) out_list.each do |o_list| if o_list.type == :class_start # nop elsif o_list.type == :module_start out.push "namespace #{o_list.name} {" elsif o_list.type == :class_end #pp o_list if o_list.name == "" out.push "class #{o_list.name} #{o_list.class_color}{" # インスタンス変数の出力 o_list.var_list.uniq.each do |iv| out.push iv end # メソッドの出力 o_list.method_list.each do |ml| out.push ml end out.push "}" # 継承リストの出力 o_list.inherit_list.each do |ih| out.push "#{o_list.name} -[#black]--|> #{ih}" end # compo o_list.composition_list.uniq.each do |co| out.push "#{o_list.name} *-[#{o_list.class_color}]-- #{co}" end elsif o_list.type == :module_end # インスタンス変数がある場合はモジュール名と同じクラスを定義 if o_list.var_list.size != 0 or o_list.method_list.size != 0 or o_list.inherit_list.size != 0 or o_list.composition_list.size != 0 #pp o_list if o_list.name == "" out.push "class #{o_list.name} {" # インスタンス変数の出力 o_list.var_list.uniq.each do |iv| out.push iv end # メソッドの出力 o_list.method_list.each do |ml| out.push ml end out.push "}" # 継承リストの出力 o_list.inherit_list.each do |ih| out.push "#{o_list.name} -[#black]--|> #{ih}" end # compo o_list.composition_list.uniq.each do |co| out.push "#{o_list.name} *-[#{o_list.class_color}]-- #{co}" end end out.push "}" else # error puts "error!" end end return out end |
#update_source(pifdef, file) ⇒ Object
ソースコードの整形フォーマット変更(clang-format) コメント削除(gcc) ifdefの処理(unifdef)
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/create_uml_class.rb', line 68 def update_source(pifdef, file) #puts "update_source=#{file}" # clang-format format_out_file = Tempfile.open(["clang_format", File.extname(file)]) open("|#{get_clang_format_path} #{file} > #{format_out_file.path}") do |f| if f.read =~ /No such/ puts "clang-format error #{f}" return "" end end # コメント削除 gcc_out_file = Tempfile.open(["gcc", File.extname(file)]) open("|#{get_gcc_path} #{format_out_file.path} > #{gcc_out_file.path}") do |f| if f.read =~ /error/ puts "gcc error #{f}" return "" end end buf = File.binread gcc_out_file.path #puts buf # ifdef処理 out_buf = pifdef.process_ifdef(buf, @config["define_hash"]) return out_buf.join("\n") end |