# Phusion Passenger - https://www.phusionpassenger.com/ # Copyright (c) 2010-2014 Phusion Holding B.V. # # "Passenger", "Phusion Passenger" and "Union Station" are registered # trademarks of Phusion Holding B.V. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. require 'optparse' PhusionPassenger.require_passenger_lib 'constants' PhusionPassenger.require_passenger_lib 'standalone/command' PhusionPassenger.require_passenger_lib 'standalone/config_utils' PhusionPassenger.require_passenger_lib 'standalone/control_utils' PhusionPassenger.require_passenger_lib 'ruby_core_enhancements' module PhusionPassenger module Standalone class StopCommand < Command def run @options = { :port => 3000 } parse_options find_pid_file create_controller begin running = @controller.running? rescue SystemCallError, IOError running = false end if running @controller.stop else Standalone::ControlUtils.warn_pid_file_not_found(@options) exit 1 end end private def self.create_option_parser(options) OptionParser.new do |opts| nl = "\n" + ' ' * 37 opts.banner = "Usage: passenger stop [OPTIONS]\n" opts.separator "Stops a running #{PROGRAM_NAME} Standalone instance." opts.separator "" opts.separator "Options:" opts.on("-p", "--port NUMBER", Integer, "The port number of the #{PROGRAM_NAME}#{nl}" + "instance. Default: 3000") do |value| options[:port] = value end opts.on("--pid-file FILE", String, "PID file of the running #{PROGRAM_NAME}#{nl}" + "Standalone instance") do |value| options[:pid_file] = value end opts.on("--ignore-pid-not-found", "-i", "Don't abort with an error if PID file cannot be found") do options[:ignore_pid_not_found] = true end end end def find_pid_file return if @options[:pid_file] logical_pwd = Dir.logical_pwd ["tmp/pids", "."].each do |dir| path = File.absolute_logical_path( "#{dir}/passenger.#{@options[:port]}.pid", logical_pwd) if File.exist?(path) @options[:pid_file] = path return end end if @options[:ignore_pid_not_found] exit else Standalone::ControlUtils.warn_pid_file_not_found(@options) exit 1 end end def create_controller Standalone::ControlUtils.require_daemon_controller @controller = DaemonController.new( :identifier => "#{PROGRAM_NAME} Standalone engine", :start_command => "true", # Doesn't matter :ping_command => "true", # Doesn't matter :pid_file => @options[:pid_file], :log_file => "/dev/null", :timeout => 25 ) end end end end