int main( int argc , const char ** argv ) { unsigned nThreads = 1; bool print = false; for ( int i=1; i<argc; i++ ) { if ( mongoutils::str::equals( "--threads" , argv[i] ) ) { nThreads = atoi( argv[++i] ); } else if ( mongoutils::str::equals( "--print" , argv[1] ) ) { print = true; } else { cerr << "unknown option: " << argv[i] << endl; return 1; } } string errmsg; ConnectionString cs = ConnectionString::parse( "foo/127.0.0.1" , errmsg ); if ( ! cs.isValid() ) { cout << "error parsing url: " << errmsg << endl; return 1; } DBClientReplicaSet * conn = (DBClientReplicaSet*)cs.connect( errmsg ); if ( ! conn ) { cout << "error connecting: " << errmsg << endl; return 2; } string collName = "test.rs1"; conn->dropCollection( collName ); vector<boost::shared_ptr<boost::thread> > threads; for ( unsigned i=0; i<nThreads; i++ ) { string errmsg; threads.push_back( boost::shared_ptr<boost::thread>( new boost::thread( boost::bind( workerThread , collName , print , (DBClientReplicaSet*)cs.connect(errmsg) ) ) ) ); } for ( unsigned i=0; i<threads.size(); i++ ) { threads[i]->join(); } }
int main( int argc , const char ** argv ) { unsigned nThreads = 1; bool print = false; bool testTimeout = false; for ( int i=1; i<argc; i++ ) { if ( mongoutils::str::equals( "--threads" , argv[i] ) ) { nThreads = atoi( argv[++i] ); } else if ( mongoutils::str::equals( "--print" , argv[i] ) ) { print = true; } // Run a special mode to demonstrate the DBClientReplicaSet so_timeout option. else if ( mongoutils::str::equals( "--testTimeout" , argv[i] ) ) { testTimeout = true; } else { cerr << "unknown option: " << argv[i] << endl; return EXIT_FAILURE; } } Status status = client::initialize(); if ( !status.isOK() ) { std::cout << "failed to initialize the client driver: " << status.toString() << endl; return EXIT_FAILURE; } string errmsg; ConnectionString cs = ConnectionString::parse( "foo/127.0.0.1" , errmsg ); if ( ! cs.isValid() ) { cout << "error parsing url: " << errmsg << endl; return EXIT_FAILURE; } DBClientReplicaSet * conn = static_cast<DBClientReplicaSet*>( cs.connect( errmsg, testTimeout ? 10 : 0 ) ); if ( ! conn ) { cout << "error connecting: " << errmsg << endl; return EXIT_FAILURE; } string collName = "test.rs1"; conn->dropCollection( collName ); if ( testTimeout ) { conn->insert( collName, BSONObj() ); try { conn->count( collName, BSON( "$where" << "sleep(40000)" ) ); } catch( DBException& ) { return EXIT_SUCCESS; } cout << "expected socket exception" << endl; return EXIT_FAILURE; } vector<boost::shared_ptr<boost::thread> > threads; for ( unsigned i=0; i<nThreads; i++ ) { string errmsg; threads.push_back( boost::shared_ptr<boost::thread>( new boost::thread( boost::bind( workerThread , collName , print , static_cast<DBClientReplicaSet*>( cs.connect(errmsg) ) ) ) ) ); } for ( unsigned i=0; i<threads.size(); i++ ) { threads[i]->join(); } return EXIT_SUCCESS; }