Class: GroongaQueryLog::Command::DetectMemoryLeak

Inherits:
Object
  • Object
show all
Defined in:
lib/groonga-query-log/command/detect-memory-leak.rb

Instance Method Summary collapse

Constructor Details

#initializeDetectMemoryLeak

Returns a new instance of DetectMemoryLeak.



25
26
27
# File 'lib/groonga-query-log/command/detect-memory-leak.rb', line 25

def initialize
  @options = MemoryLeakDetector::Options.new
end

Instance Method Details

#run(command_line) ⇒ Object



29
30
31
32
33
34
35
36
37
38
# File 'lib/groonga-query-log/command/detect-memory-leak.rb', line 29

def run(command_line)
  input_paths = create_parser.parse(command_line)
  detector = MemoryLeakDetector.new(@options)
  input_paths.each do |input_path|
    File.open(input_path) do |input|
      detector.detect(input)
    end
  end
  true
end