Class: GroongaQueryLog::Command::RunRegressionTest::GroongaServer
- Inherits:
-
Object
- Object
- GroongaQueryLog::Command::RunRegressionTest::GroongaServer
- Includes:
- Loggable
- Defined in:
- lib/groonga-query-log/command/run-regression-test.rb
Instance Attribute Summary collapse
-
#host ⇒ Object
readonly
Returns the value of attribute host.
-
#port ⇒ Object
readonly
Returns the value of attribute port.
Instance Method Summary collapse
- #ensure_database ⇒ Object
-
#initialize(groonga, groonga_options, groonga_env, database_path, options) ⇒ GroongaServer
constructor
A new instance of GroongaServer.
- #n_leaked_objects ⇒ Object
- #run ⇒ Object
- #shutdown ⇒ Object
- #use_persistent_cache? ⇒ Boolean
Methods included from Loggable
Constructor Details
#initialize(groonga, groonga_options, groonga_env, database_path, options) ⇒ GroongaServer
Returns a new instance of GroongaServer.
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 |
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 556 def initialize(groonga, , groonga_env, database_path, ) @input_directory = [:input_directory] || Pathname.new(".") @working_directory = [:working_directory] || Pathname.new(".") @groonga = groonga @groonga_options = @groonga_env = groonga_env @database_path = @working_directory + database_path @host = "127.0.0.1" @port = find_unused_port @options = @pid = nil end |
Instance Attribute Details
#host ⇒ Object (readonly)
Returns the value of attribute host.
555 556 557 |
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 555 def host @host end |
#port ⇒ Object (readonly)
Returns the value of attribute port.
555 556 557 |
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 555 def port @port end |
Instance Method Details
#ensure_database ⇒ Object
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 |
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 615 def ensure_database if @options[:recreate_database] FileUtils.rm_rf(@database_path.dirname.to_s) end return if @database_path.exist? FileUtils.mkdir_p(@database_path.dirname.to_s) create_db_command = [@groonga, "-n", @database_path.to_s, "quit"] unless system(*create_db_command) create_db_command_line = create_db_command.join(" ") raise "Failed to run: #{create_db_command_line}" end load_files.each do |load_file| filter_command = nil case load_file.extname when ".rb" env = { "GROONGA_LOG_PATH" => log_path.to_s, } command = [ RbConfig.ruby, load_file.to_s, @database_path.to_s, ] when ".zst" env = {} command = [ @groonga, "--log-path", log_path.to_s, @database_path.to_s, ] filter_command = [ "zstdcat", load_file.to_s, ] else env = {} command = [ @groonga, "--log-path", log_path.to_s, "--file", load_file.to_s, @database_path.to_s, ] end command_line = command.join(" ") if filter_command filter_command_line = filter_command.join(" ") command_line = "#{filter_command_line} | #{command_line}" end puts("Running...: #{command_line}") status = nil if filter_command IO.pipe do |input, output| filter_pid = spawn(*filter_command, out: output) output.close pid = spawn(env, *command, in: input) input.close begin pid, status = Process.waitpid2(pid) filter_pid, _filter_status = Process.waitpid2(filter_pid) rescue Interrupt Process.kill(:TERM, pid) Process.kill(:TERM, filter_pid) pid, status = Process.waitpid2(pid) filter_pid, _filter_status = Process.waitpid2(filter_pid) end end else pid = spawn(env, *command) begin pid, status = Process.waitpid2(pid) rescue Interrupt Process.kill(:TERM, pid) pid, status = Process.waitpid2(pid) end end unless status.success? raise "Failed to run: #{command_line}" end end end |
#n_leaked_objects ⇒ Object
713 714 715 716 717 718 719 720 721 722 723 724 725 |
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 713 def n_leaked_objects n = 0 File.open(log_path, encoding: "UTF-8") do |log| log.each_line do |line| next unless line.valid_encoding? case line when /grn_fin \((\d+)\)/ n += Integer($1, 10) end end end n end |
#run ⇒ Object
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 |
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 573 def run return unless @options[:run_queries] spawn_args = [] spawn_args << @groonga_env if @groonga_env spawn_args << @groonga spawn_args.concat(@groonga_options) spawn_args.concat(["--bind-address", @host]) spawn_args.concat(["--port", @port.to_s]) spawn_args.concat(["--protocol", "http"]) spawn_args.concat(["--log-path", log_path.to_s]) if @options[:output_query_log] spawn_args.concat(["--query-log-path", query_log_path.to_s]) end spawn_args << "-s" spawn_args << @database_path.to_s @pid = spawn(*spawn_args) begin n_retries = 60 begin send_command("status") rescue SystemCallError sleep(1) n_retries -= 1 raise if n_retries.zero? retry end if @options[:warm_up] send_command("dump?dump_records=no") warm_up_commands = @options[:warm_up_commands] || [] warm_up_commands.each do |command| send_command(command) end end rescue shutdown raise end end |
#shutdown ⇒ Object
702 703 704 705 706 707 708 709 710 711 |
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 702 def shutdown return if @pid.nil? begin send_command("shutdown") rescue SystemCallError Process.kill(:KILL, @pid) end Process.waitpid(@pid) @pid = nil end |
#use_persistent_cache? ⇒ Boolean
698 699 700 |
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 698 def use_persistent_cache? @groonga_options.include?("--cache-base-path") end |