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 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 249 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
|
# 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.
require 'tmpdir'
module PhusionPassenger
# This module autodetects various platform-specific information, and
# provides that information through constants.
module PlatformInfo
private
@@cache_dir = nil
def self.cache_dir=(value)
@@cache_dir = value
end
def self.private_class_method(name)
metaclass = class << self; self; end
metaclass.send(:private, name)
end
private_class_method :private_class_method
# Turn the specified class method into a memoized one. If the given
# class method is called without arguments, then its result will be
# memoized, frozen, and returned upon subsequent calls without arguments.
# Calls with arguments are never memoized.
#
# If +cache_to_disk+ is true and a cache directory has been set with
# <tt>PlatformInfo.cache_dir=</tt> then result is cached to a file on disk,
# so that memoized results persist over multiple process runs. This
# cache file expires in +cache_time+ seconds (1 hour by default) after
# it has been written.
#
# def self.foo(max = 10)
# rand(max)
# end
# memoize :foo
#
# foo # => 3
# foo # => 3
# foo(100) # => 49
# foo(100) # => 26
# foo # => 3
def self.memoize(method, cache_to_disk = false, cache_time = 3600)
# We use class_eval here because Ruby 1.8.5 doesn't support class_variable_get/set.
metaclass = class << self; self; end
metaclass.send(:alias_method, "_unmemoized_#{method}", method)
variable_name = "@@memoized_#{method}".sub(/\?/, '')
check_variable_name = "@@has_memoized_#{method}".sub(/\?/, '')
eval(%Q{
#{variable_name} = nil
#{check_variable_name} = false
})
line = __LINE__ + 1
source = %Q{
def self.#{method}(*args) # def self.httpd(*args)
if args.empty? # if args.empty?
if !#{check_variable_name} # if !@@has_memoized_httpd
if @@cache_dir # if @@cache_dir
cache_file = File.join(@@cache_dir, "#{method}") # cache_file = File.join(@@cache_dir, "httpd")
end # end
read_from_cache_file = false # read_from_cache_file = false
if #{cache_to_disk} && cache_file && File.exist?(cache_file) # if #{cache_to_disk} && File.exist?(cache_file)
cache_file_stat = File.stat(cache_file) # cache_file_stat = File.stat(cache_file)
read_from_cache_file = # read_from_cache_file =
Time.now - cache_file_stat.mtime < #{cache_time} # Time.now - cache_file_stat.mtime < #{cache_time}
end # end
if read_from_cache_file # if read_from_cache_file
data = File.read(cache_file) # data = File.read(cache_file)
#{variable_name} = Marshal.load(data).freeze # @@memoized_httpd = Marshal.load(data).freeze
#{check_variable_name} = true # @@has_memoized_httpd = true
else # else
#{variable_name} = _unmemoized_#{method}.freeze # @@memoized_httpd = _unmemoized_httpd.freeze
#{check_variable_name} = true # @@has_memoized_httpd = true
if cache_file && #{cache_to_disk} # if cache_file && #{cache_to_disk}
begin # begin
if !File.directory?(@@cache_dir) # if !File.directory?(@@cache_dir)
Dir.mkdir(@@cache_dir) # Dir.mkdir(@@cache_dir)
end # end
File.open(cache_file, "wb") do |f| # File.open(cache_file, "wb") do |f|
f.write(Marshal.dump(#{variable_name})) # f.write(Marshal.dump(@@memoized_httpd))
end # end
rescue Errno::EACCES # rescue Errno::EACCES
# Ignore permission error. # # Ignore permission error.
end # end
end # end
end # end
end # end
#{variable_name} # @@memoized_httpd
else # else
_unmemoized_#{method}(*args) # _unmemoized_httpd(*args)
end # end
end # end
}
class_eval(source, __FILE__, line)
end
private_class_method :memoize
# Look in the directory +dir+ and check whether there's an executable
# whose base name is equal to one of the elements in +possible_names+.
# If so, returns the full filename. If not, returns nil.
def self.select_executable(dir, *possible_names)
possible_names.each do |name|
filename = "#{dir}/#{name}"
if File.file?(filename) && File.executable?(filename)
return filename
end
end
return nil
end
private_class_method :select_executable
def self.read_file(filename)
return File.read(filename)
rescue
return ""
end
private_class_method :read_file
public
class RuntimeError < ::RuntimeError
end
# Check whether the specified command is in $PATH, and return its
# absolute filename. Returns nil if the command is not found.
#
# This function exists because system('which') doesn't always behave
# correctly, for some weird reason.
def self.find_command(name)
name = name.to_s
ENV['PATH'].to_s.split(File::PATH_SEPARATOR).detect do |directory|
path = File.join(directory, name)
if File.file?(path) && File.executable?(path)
return path
end
end
return nil
end
def self.env_defined?(name)
return !ENV[name].nil? && !ENV[name].empty?
end
def self.tmpdir
result = ENV['TMPDIR']
if result && !result.empty?
return result.sub(/\/+\Z/, '')
else
return '/tmp'
end
end
memoize :tmpdir
# Returns the directory in which test executables should be placed. The
# returned directory is guaranteed to be writable and guaranteed to
# not be mounted with the 'noexec' option.
# If no such directory can be found then it will raise a PlatformInfo::RuntimeError
# with an appropriate error message.
def self.tmpexedir
basename = "test-exe.#{Process.pid}.#{Thread.current.object_id}"
attempts = []
dir = tmpdir
filename = "#{dir}/#{basename}"
begin
File.open(filename, 'w').close
File.chmod(0700, filename)
if File.executable?(filename)
return dir
else
attempts << { :dir => dir,
:error => "This directory's filesystem is mounted with the 'noexec' option." }
end
rescue Errno::ENOENT
attempts << { :dir => dir, :error => "This directory doesn't exist." }
rescue Errno::EACCES
attempts << { :dir => dir, :error => "This program doesn't have permission to write to this directory." }
rescue SystemCallError => e
attempts << { :dir => dir, :error => e.message }
ensure
File.unlink(filename) rescue nil
end
dir = Dir.pwd
filename = "#{dir}/#{basename}"
begin
File.open(filename, 'w').close
File.chmod(0700, filename)
if File.executable?(filename)
return dir
else
attempts << { :dir => dir,
:error => "This directory's filesystem is mounted with the 'noexec' option." }
end
rescue Errno::ENOENT
attempts << { :dir => dir, :error => "This directory doesn't exist." }
rescue Errno::EACCES
attempts << { :dir => dir, :error => "This program doesn't have permission to write to this directory." }
rescue SystemCallError => e
attempts << { :dir => dir, :error => e.message }
ensure
File.unlink(filename) rescue nil
end
message = "In order to run certain tests, this program " +
"must be able to write temporary\n" +
"executable files to some directory. However no such " +
"directory can be found. \n" +
"The following directories have been tried:\n\n"
attempts.each do |attempt|
message << " * #{attempt[:dir]}\n"
message << " #{attempt[:error]}\n"
end
message << "\nYou can solve this problem by telling this program what directory to write\n" <<
"temporary executable files to.\n" <<
"\n" <<
" Set the $TMPDIR environment variable to the desired directory's filename and\n" <<
" re-run this program.\n" <<
"\n" <<
"Notes:\n" <<
"\n" <<
" * If you're using 'sudo'/'rvmsudo', remember that 'sudo'/'rvmsudo' unsets all\n" <<
" environment variables, so you must set the environment variable *after*\n" <<
" having gained root privileges.\n" <<
" * The directory you choose must writeable and must not be mounted with the\n" <<
" 'noexec' option."
raise RuntimeError, message
end
memoize :tmpexedir
def self.cc
return ENV['CC'] || "gcc"
end
def self.cxx
return ENV['CXX'] || "g++"
end
def self.try_compile(language, source, flags = nil)
if language == :c
compiler = cc
elsif language == :cxx
compiler = cxx
else
raise ArgumentError,"Unsupported language '#{language}'"
end
Dir.mktmpdir("passenger.", tmpexedir) do |dir|
filename = File.join(dir, "check.c")
File.open(filename, "w") do |f|
f.puts(source)
end
return system("(#{compiler} #{flags} -c '#{filename}' -o '#{filename}.o') >/dev/null 2>/dev/null")
end
end
private_class_method :try_compile
def self.try_link(language, source, flags = nil)
if language == :c
compiler = cc
elsif language == :cxx
compiler = cxx
else
raise ArgumentError,"Unsupported language '#{language}'"
end
Dir.mktmpdir("passenger.", tmpexedir) do |dir|
filename = File.join(dir, "check.c")
File.open(filename, "w") do |f|
f.puts(source)
end
return system("(#{compiler} #{flags} '#{filename}' -o '#{filename}.out') >/dev/null 2>/dev/null")
end
end
private_class_method :try_link
def self.try_compile_and_run(language, source, flags = nil)
if language == :c
compiler = cc
elsif language == :cxx
compiler = cxx
else
raise ArgumentError,"Unsupported language '#{language}'"
end
Dir.mktmpdir("passenger.", tmpexedir) do |dir|
filename = File.join(dir, "check.c")
File.open(filename, "w") do |f|
f.puts(source)
end
if system("(#{compiler} #{flags} '#{filename}' -o '#{filename}.out') >/dev/null 2>/dev/null")
if Process.respond_to?(:spawn)
pid = Process.spawn("#{filename}.out",
:out => ["/dev/null", "w"],
:err => ["/dev/null", "w"])
else
pid = fork do
STDOUT.reopen("/dev/null", "w")
STDERR.reopen("/dev/null", "w")
exec("#{filename}.out")
end
end
pid = Process.waitpid(pid) rescue nil
return pid && $?.exitstatus == 0
else
return false
end
end
end
private_class_method :try_compile_and_run
def self.rb_config
if defined?(::RbConfig)
return ::RbConfig::CONFIG
else
return ::Config::CONFIG
end
end
private_class_method :rb_config
end
end # module PhusionPassenger
|