Commit Graph

1081 Commits

Author SHA1 Message Date
Tyler Brock 9be394b623 Merge pull request #104 from seamusabshere/from_uri_implicit_arg
Make ENV['MONGODB_URI'] the default first arg for `Mongo::Connection.from_uri`
2012-06-04 20:59:35 -07:00
Seamus Abshere 90773ebeb8 Make ENV['MONGODB_URI'] the default first arg for `Mongo::Connection.from_uri` 2012-06-04 12:57:01 -05:00
Seamus Abshere d88e6d730f Since it's confusing anyway that CGI.parse returns values as arrays, use an array-specific method (as opposed to one that could be for strings or hashes) to access it 2012-06-04 12:55:31 -05:00
Seamus Abshere d8f94e6f63 Since `URI.decode_www_form` is Ruby 1.9-only, use `CGI.parse` instead
Conflicts:
	lib/mongo/util/uri_parser.rb - replaced @TylerBrock's (temp?) fix with this one, which uses the stdlib
	test/uri_test.rb - reintroduced test for conflicting URL separators... and added a new test for URL-encoded parts
2012-06-04 12:54:48 -05:00
Tyler Brock 9d859d2b5c minor: URI.decode_www_form not available pre 1.9.x, alternative solution 2012-06-04 13:24:30 -04:00
John Bintz f93e05de83 use collection#save instead of collection#insert to save gridio chunks so that replacement chunks overwrite existing ones 2012-06-04 13:24:30 -04:00
Seamus Abshere 1454210d9f Use ENV["MONGODB_URI"] if available. 2012-06-04 13:24:30 -04:00
Tyler Brock 4df2564519 RUBY-444
Additional fix for threading tests to ensure a manager for a new thread is always set.
2012-06-01 15:47:10 -04:00
Tyler Brock a3555ba404 minor: logger fix for mocha tests that expect an non-hash argument 2012-06-01 15:16:05 -04:00
Tyler Brock c76160c2f2 Merge pull request #97 from asinbow/fix_log_debug_level_detect
fix log debug level detect
2012-06-01 11:38:37 -07:00
Tyler Brock 4c032c4d31 Merge pull request #101 from farrel/master
Added BSON::ObjectId#to_ary
2012-06-01 11:33:52 -07:00
Tyler Brock 291a9334b6 RUBY-444
During a refresh Thread.current[:managers] has the potential to be nil.

This fix checks to make sure Thread.current[:managers] exists before
trying to access the managers hash.
2012-06-01 14:20:25 -04:00
Tyler Brock f55fc95bf4 RUBY-432
Do not encode strings to utf-8 after checking that utf-8 is valid.

Before this fix, an encoding operation could turn valid utf-8 into
invalid utf-8 if an encoding that requires conversion is forced on a
valid string.
2012-06-01 14:20:15 -04:00
Tyler Brock 65a1ecc42d RUBY-441
Remove connect_nonblock from tcp_socket implementation to reduce
problems due to inconsistent implementation in JRuby and Windows.

Connection timeouts are now reverted to using the timeout module for all
platforms.
2012-06-01 12:25:42 -04:00
Brian Alexander beea7d1320 Fix copy-paste mistake in doc comment 2012-05-29 15:05:50 -06:00
Farrel Lifson 078354a39a Added BSON::ObjectId#to_ary 2012-05-26 01:16:11 +02:00
Kyle Banker 5591e3dfe3 RUBY-444 keep multiple replica set connections separate 2012-05-25 13:58:07 -04:00
Tyler Brock 9b38c3a70f minor: JRUBY hacks 2012-05-15 16:52:59 -04:00
Tyler Brock 2de3dcab94 RUBY-442
Using sysread so Ruby 1.8.x won't complain about nonblocking IO#read
2012-05-15 16:52:58 -04:00
Tyler Brock 8a49614c7e RUBY-437
Document batchSize better
2012-05-14 16:03:08 -04:00
Tyler Brock 6663660d92 RUBY-442
Use read instead of readpartial.
Rescue ETIMEDOUT and raise appropriate ConnectionError
2012-05-14 16:03:08 -04:00
Gary Murakami ca7bf209dd DOCS-197 Fully qualify examples in the code with Mongo:: 2012-05-02 17:43:54 -04:00
asinbow.wang 56968e8ad3 fix log debug level detect
* reason
  there hardcodes DEBUG_LEVEL in logging.rb:
    DEBUG_LEVEL = defined?(Logger) ? Logger::DEBUG : 0
  this could cause some incompatibility between different logger tools

  for Logger, DEBUG/0 < INFO/1 < WARN/2 < ERROR/3 < FATAL/4,
  for Log4r,  ALL/0 < DETAIL/1 < DEBUG/2 < INFO/3 < WARN/4 < ERROR/5 < FATAL/6.

  anyway, it is not in good pattern.

* suggestion
  logger.debug { ... }
  if current level is greater than DEBUG, the block will not be
  evaluated. it is also efficient.

  following is also supported by most loggers.
  logger.info { ... }
  logger.warn { ... }
  logger.error { ... }
  ...
2012-04-27 15:26:49 +08:00
Tyler Brock d176c2a0f3 RUBY-436 Handle IRB::Abort Exception 2012-04-26 13:53:21 -04:00
Tyler Brock 4c717f0873 RUBY-436 Handle IRB::Abort Exception 2012-04-23 16:58:11 -04:00
Tyler Brock 00cea59c10 minor: refactor TCP_NODELAY 2012-04-08 10:48:25 -04:00
Tyler Brock 95a831c0b3 RELEASE 1.6.2 2012-04-05 13:51:20 -04:00
Tyler Brock ca6f4ecaa5 RUBY-433 prevent additonal possible IOError 2012-04-05 12:47:58 -04:00
Tyler Brock 0bd7d3830d RUBY-429 wrap IO errors from select and read 2012-04-05 12:47:17 -04:00
Tyler Brock 4f9aceacf4 RUBY-433 fixes IOError stream closed 2012-04-05 10:52:13 -04:00
Tyler Brock a5b5d5e3e3 RUBY-429 tweaks to rescued errors 2012-04-04 20:45:29 -04:00
Tyler Brock 58f0ee8fff RUBY-429 rescue granularity 2012-04-04 20:12:36 -04:00
Tyler Brock d42eee278b minor: testing fixes, cleaning output 2012-04-04 16:44:01 -04:00
Tyler Brock 7337a06311 RUBY-429 rescue additional socket and IO errors 2012-04-04 15:10:58 -04:00
Tyler Brock 76bf4dffe5 RUBY-429 rescue and raise appropriate errors 2012-04-04 13:51:04 -04:00
Tyler Brock 92af319412 minor: test cleanup 2012-04-04 13:51:04 -04:00
Tyler Brock 01f28b47ff RUBY-429 non-blocking IO for socket timeouts
Should greatly improve performance for highly threaded applications
using connection and operation timeouts.
2012-04-03 16:06:37 -04:00
Tyler Brock aab3cf7b74 minor: cleanup thread_to_socket pruning code and test 2012-04-03 16:06:37 -04:00
Tyler Brock 0e8eef6cdd RUBY-420 enforce lower bound on refresh interval 2012-03-21 19:01:37 -04:00
Tyler Brock 6944794fb2 RUBY-422 Cleanup testing output 2012-03-16 16:17:33 -04:00
Tyler Brock ec86275b60 RUBY-424 Authenticating with only secondary fails
Authentication command now prefers to use primary node but will fall
back on secondary if no primary is available
2012-03-15 13:50:02 -04:00
Tyler Brock ddc3e893cb RELEASE 1.6.1 2012-03-07 16:59:27 -05:00
Tyler Brock 5fde3de4a6 RUBY-417 only show logging warning if level is :debug 2012-03-07 14:15:10 -05:00
Tyler Brock 0ae757c69b RUBY-416 unit test stub fix 2012-03-07 12:38:04 -05:00
Tyler Brock 06bc50fe46 RUBY-416 do not checkout closed sockets 2012-03-07 12:00:10 -05:00
Tyler Brock 03eb8a8c96 RUBY-416 fixes for current thread manager state 2012-03-06 22:32:20 -05:00
Tyler Brock 274ce690e7 RUBY-416 threading with refresh test fixes 2012-03-05 14:40:05 -05:00
Tyler Brock bf9bb83b6d minor: whitespace fixes 2012-03-02 19:25:17 -05:00
Tyler Brock 93b2f3da9b minor: Added TCPSocket Class w/ pool accessor
Sockets now know what pool they were checked out from
SSLSocket updated as well
2012-03-02 19:16:14 -05:00
Kyle Banker c5890cd56d minor: reverting to 1.6.0 for BSON version 2012-02-28 12:09:23 -05:00