/src/test/com/mongodb/ReplPairTest.java

http://github.com/mongodb/mongo-java-driver · Java · 87 lines · 58 code · 13 blank · 16 comment · 3 complexity · 6b5e5c84480c5b45bbd1d24902db7949 MD5 · raw file

  1. /*
  2. * Copyright (c) 2008-2014 MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. // ReplPairTest.java
  17. package com.mongodb;
  18. import java.util.ArrayList;
  19. import java.util.List;
  20. public class ReplPairTest {
  21. static class R extends Thread {
  22. @SuppressWarnings("deprecation")
  23. R( ServerAddress a ){
  24. _a = a;
  25. _mongo = new MongoClient(a);
  26. _db = _mongo.getDB( "test" );
  27. _coll = _db.getCollection( "foo" );
  28. _coll.slaveOk();
  29. }
  30. public void run(){
  31. while ( true ){
  32. try {
  33. Thread.sleep( 500 );
  34. _coll.findOne();
  35. }
  36. catch ( NullPointerException n ){
  37. n.printStackTrace();
  38. }
  39. catch ( Exception e ){
  40. System.out.println( _a + "\t" + e );
  41. }
  42. }
  43. }
  44. final ServerAddress _a;
  45. final Mongo _mongo;
  46. final DB _db;
  47. final DBCollection _coll;
  48. }
  49. @SuppressWarnings("deprecation")
  50. public static void main( String args[] )
  51. throws Exception {
  52. List<ServerAddress> addrs = new ArrayList<ServerAddress>();
  53. addrs.add( new ServerAddress( "localhost" , 9998 ) );
  54. addrs.add( new ServerAddress( "localhost" , 9999 ) );
  55. Mongo m = new Mongo ( addrs );
  56. DB db = m.getDB( "test" );
  57. DBCollection c = db.getCollection( "foo" );
  58. c.insert( new BasicDBObject( "_id" , 17 ) );
  59. c.slaveOk();
  60. for ( ServerAddress a : addrs ){
  61. new R(a).start();
  62. }
  63. while ( true ){
  64. Thread.sleep( 500 );
  65. try {
  66. System.out.println( c.findOne() );
  67. c.update( new BasicDBObject( "_id" , 17 ) , new BasicDBObject( "$inc" , new BasicDBObject( "x" , 1 ) ) );
  68. }
  69. catch ( Exception e ){
  70. e.printStackTrace();
  71. }
  72. }
  73. }
  74. }