mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* numeric.c (flo_eq): alway check if operands are NaN.
[ruby-list:39685] * lib/cgi/session.rb: use LOCK_SH to read, and a few other improvements. [ruby-core:02328] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4e8eeeb244
commit
4c36359dea
7 changed files with 44 additions and 30 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,8 @@
|
|||
Thu May 20 12:38:06 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* numeric.c (flo_eq): alway check if operands are NaN.
|
||||
[ruby-list:39685]
|
||||
|
||||
Thu May 20 12:34:39 2004 Dave Thomas <dave@pragprog.com>
|
||||
|
||||
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_visibility):
|
||||
|
@ -7,8 +12,7 @@ Thu May 20 12:34:39 2004 Dave Thomas <dave@pragprog.com>
|
|||
Thu May 20 12:22:13 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (have_type): do not check pointer to incomplete type,
|
||||
which always get compiled.
|
||||
[ruby-list:39683]
|
||||
which always get compiled. [ruby-list:39683]
|
||||
|
||||
Wed May 19 11:09:00 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||
|
||||
|
@ -1297,6 +1301,11 @@ Thu Jan 29 15:33:23 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|||
|
||||
* sample/openssl/gen_csr.rb: use OpenSSL::X509::Name.parse.
|
||||
|
||||
Wed Jan 28 04:29:41 2004 Eric Schwartz <emschwar@fc.hp.com>
|
||||
|
||||
* lib/cgi/session.rb: use LOCK_SH to read, and a few other
|
||||
improvements. [ruby-core:02328]
|
||||
|
||||
Tue Jan 27 11:09:29 2004 FUKUMOTO Atsushi <fukumoto@nospam.imasy.or.jp>
|
||||
|
||||
* ext/socket/socket.c (s_recvfrom): sending length should be an
|
||||
|
|
|
@ -350,6 +350,8 @@ freebsd*) LIBS="-lm $LIBS"
|
|||
;;
|
||||
bow) ac_cv_func_setitimer=no
|
||||
;;
|
||||
superux*) ac_cv_func_setitimer=no
|
||||
;;
|
||||
*) LIBS="-lm $LIBS";;
|
||||
esac
|
||||
AC_CHECK_LIB(crypt, crypt)
|
||||
|
|
|
@ -56,6 +56,9 @@
|
|||
#endif
|
||||
#include <netdb.h>
|
||||
#if defined(HAVE_RESOLV_H)
|
||||
#ifdef _SX
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
#include <resolv.h>
|
||||
#endif
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -51,6 +51,9 @@
|
|||
#endif
|
||||
#include <netdb.h>
|
||||
#if defined(HAVE_RESOLV_H)
|
||||
#ifdef _SX
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
#include <resolv.h>
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -364,16 +364,11 @@ class CGI
|
|||
unless check_id(id)
|
||||
raise ArgumentError, "session_id `%s' is invalid" % id
|
||||
end
|
||||
path = dir+"/"+prefix+id
|
||||
path.untaint
|
||||
unless File::exist? path
|
||||
@path = dir+"/"+prefix+id
|
||||
@path.untaint
|
||||
unless File::exist? @path
|
||||
@hash = {}
|
||||
end
|
||||
begin
|
||||
@f = open(path, "r+")
|
||||
rescue Errno::ENOENT
|
||||
@f = open(path, "w+")
|
||||
end
|
||||
end
|
||||
|
||||
# Restore session state from the session's FileStore file.
|
||||
|
@ -382,13 +377,17 @@ class CGI
|
|||
def restore
|
||||
unless @hash
|
||||
@hash = {}
|
||||
@f.flock File::LOCK_EX
|
||||
@f.rewind
|
||||
for line in @f
|
||||
begin
|
||||
f = File.open(@path, 'r')
|
||||
f.flock File::LOCK_SH
|
||||
for line in f
|
||||
line.chomp!
|
||||
k, v = line.split('=',2)
|
||||
@hash[CGI::unescape(k)] = CGI::unescape(v)
|
||||
end
|
||||
ensure
|
||||
f.close unless f.nil?
|
||||
end
|
||||
end
|
||||
@hash
|
||||
end
|
||||
|
@ -396,25 +395,25 @@ class CGI
|
|||
# Save session state to the session's FileStore file.
|
||||
def update
|
||||
return unless @hash
|
||||
@f.rewind
|
||||
begin
|
||||
f = File.open(@path, 'w')
|
||||
f.flock File::LOCK_EX
|
||||
for k,v in @hash
|
||||
@f.printf "%s=%s\n", CGI::escape(k), CGI::escape(String(v))
|
||||
f.printf "%s=%s\n", CGI::escape(k), CGI::escape(String(v))
|
||||
end
|
||||
ensure
|
||||
f.close unless f.nil?
|
||||
end
|
||||
@f.truncate @f.tell
|
||||
end
|
||||
|
||||
# Update and close the session's FileStore file.
|
||||
def close
|
||||
return if @f.closed?
|
||||
update
|
||||
@f.close
|
||||
end
|
||||
|
||||
# Close and delete the session's FileStore file.
|
||||
def delete
|
||||
path = @f.path
|
||||
@f.close
|
||||
File::unlink path
|
||||
File::unlink @path
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -582,7 +582,7 @@ def check_sizeof(type, header = nil, &b)
|
|||
end
|
||||
message(a = size ? "#{size}\n" : "failed\n")
|
||||
Logging::message "-------------------- %s\n", a
|
||||
r
|
||||
size
|
||||
end
|
||||
|
||||
def find_executable0(bin, path = nil)
|
||||
|
|
|
@ -833,9 +833,7 @@ flo_eq(x, y)
|
|||
return num_equal(x, y);
|
||||
}
|
||||
a = RFLOAT(x)->value;
|
||||
#if defined __BORLANDC__
|
||||
if (isnan(a) || isnan(b)) return Qfalse;
|
||||
#endif
|
||||
return (a == b)?Qtrue:Qfalse;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue