1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 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 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
# Phusion Passenger - http://www.modrails.com/
# Copyright (c) 2010 Phusion
#
# "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
#
# 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.
module PhusionPassenger
class NativeSupportLoader
def supported?
return !defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby" || RUBY_ENGINE == "rbx"
end
def start
require 'phusion_passenger'
load_from_source_dir ||
load_from_load_path ||
load_from_home ||
compile_and_load
end
private
def archdir
@archdir ||= begin
require 'phusion_passenger/platform_info/binary_compatibility'
PlatformInfo.ruby_extension_binary_compatibility_ids.join("-")
end
end
def libext
@libext ||= begin
require 'phusion_passenger/platform_info/operating_system'
PlatformInfo.library_extension
end
end
def home
@home ||= begin
require 'etc' if !defined?(Etc)
home = Etc.getpwuid(Process.uid).dir
end
end
def library_name
return "passenger_native_support.#{libext}"
end
def extconf_rb
File.join(SOURCE_ROOT, "ext", "ruby", "extconf.rb")
end
def load_from_source_dir
if defined?(NATIVE_SUPPORT_DIR)
begin
require "#{NATIVE_SUPPORT_DIR}/#{archdir}/#{library_name}"
return true
rescue LoadError
return false
end
else
return false
end
end
def load_from_load_path
require 'passenger_native_support'
return true
rescue LoadError
return false
end
def load_from_home
begin
require "#{home}/#{LOCAL_DIR}/native_support/#{VERSION_STRING}/#{archdir}/#{library_name}"
return true
rescue LoadError
return false
end
end
def compile_and_load
STDERR.puts "*** Phusion Passenger: no #{library_name} found for " +
"the current Ruby interpreter. Compiling one..."
require 'fileutils'
require 'phusion_passenger/platform_info/ruby'
target_dirs = []
if defined?(NATIVE_SUPPORT_DIR)
target_dirs << "#{NATIVE_SUPPORT_DIR}/#{archdir}"
end
target_dirs << "#{home}/#{LOCAL_DIR}/native_support/#{VERSION_STRING}/#{archdir}"
target_dir = compile(target_dirs)
require "#{target_dir}/#{library_name}"
end
def mkdir(dir)
begin
STDERR.puts "# mkdir -p #{dir}"
FileUtils.mkdir_p(dir)
rescue Errno::EEXIST
end
end
def sh(*args)
command_string = args.join(' ')
STDERR.puts "# #{command_string}"
if !system(*args)
raise "Could not compile #{library_name} ('#{command_string}' failed)"
end
end
def compile(target_dirs)
result = nil
target_dirs.each_with_index do |target_dir, i|
begin
mkdir(target_dir)
File.open("#{target_dir}/.permission_test", "w").close
File.unlink("#{target_dir}/.permission_test")
STDERR.puts "# cd #{target_dir}"
Dir.chdir(target_dir) do
sh("#{PlatformInfo.ruby_command} '#{extconf_rb}'")
sh("make")
end
result = target_dir
break
rescue Errno::EACCES
# If we encountered a permission error, then try
# the next target directory. If we get a permission
# error on the last one too then propagate the
# exception.
if i == target_dirs.size - 1
raise
else
STDERR.puts "Encountered permission error, " +
"trying a different directory..."
STDERR.puts "-------------------------------"
end
end
end
return result
end
end
end
loader = PhusionPassenger::NativeSupportLoader.new
loader.start if loader.supported?
|