0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 09:06:21 +01:00
mongodb/tools/tool.cpp

272 lines
8.5 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2010 10gen Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2009-01-27 21:16:09 +01:00
// Tool.cpp
2009-09-24 17:02:00 +02:00
#include "tool.h"
2009-01-27 21:16:09 +01:00
#include <iostream>
#include <boost/filesystem/operations.hpp>
#include <pcrecpp.h>
2009-01-27 21:16:09 +01:00
#include "util/file_allocator.h"
2009-01-27 21:16:09 +01:00
using namespace std;
using namespace mongo;
namespace po = boost::program_options;
2010-02-28 18:36:40 +01:00
namespace mongo {
Tool::Tool( string name , bool localDBAllowed , string defaultDB , string defaultCollection ) :
_name( name ) , _db( defaultDB ) , _coll( defaultCollection ) , _conn(0), _paired(false) {
2010-02-21 16:42:38 +01:00
2010-02-28 18:36:40 +01:00
_options = new po::options_description( "options" );
2010-02-21 16:42:38 +01:00
_options->add_options()
2010-02-28 18:36:40 +01:00
("help","produce help message")
("verbose,v", "be more verbose (include multiple times for more verbosity e.g. -vvvvv)")
("host,h",po::value<string>(), "mongo host to connect to (\"left,right\" for pairs)" )
("db,d",po::value<string>(), "database to use" )
("collection,c",po::value<string>(), "collection to use (some commands)" )
("username,u",po::value<string>(), "username" )
("password,p",po::value<string>(), "password" )
;
if ( localDBAllowed )
_options->add_options()
("dbpath",po::value<string>(), "directly access mongod data files in this path, instead of connecting to a mongod instance" )
("directoryperdb", "if dbpath specified, each db is in a separate directory" )
;
_hidden_options = new po::options_description( name + " hidden options" );
/* support for -vv -vvvv etc. */
for (string s = "vv"; s.length() <= 10; s.append("v")) {
_hidden_options->add_options()(s.c_str(), "verbose");
}
}
2009-01-27 21:16:09 +01:00
2010-02-28 18:36:40 +01:00
Tool::~Tool(){
delete( _options );
delete( _hidden_options );
if ( _conn )
delete _conn;
}
2009-01-27 21:16:09 +01:00
2010-02-28 18:36:40 +01:00
void Tool::printExtraHelp( ostream & out ){
}
2010-02-28 18:36:40 +01:00
void Tool::printHelp(ostream &out) {
printExtraHelp(out);
_options->print(out);
}
2010-02-28 18:36:40 +01:00
int Tool::main( int argc , char ** argv ){
cmdLine.prealloc = false;
2010-02-28 18:36:40 +01:00
boost::filesystem::path::default_name_check( boost::filesystem::no_check );
2009-06-25 22:11:38 +02:00
2010-02-28 18:36:40 +01:00
_name = argv[0];
2010-02-28 18:36:40 +01:00
/* using the same style as db.cpp */
int command_line_style = (((po::command_line_style::unix_style ^
po::command_line_style::allow_guessing) |
po::command_line_style::allow_long_disguise) ^
po::command_line_style::allow_sticky);
try {
po::options_description all_options("all options");
all_options.add(*_options).add(*_hidden_options);
2010-02-28 18:36:40 +01:00
po::store( po::command_line_parser( argc , argv ).
options(all_options).
positional( _positonalOptions ).
style(command_line_style).run() , _params );
2010-02-28 18:36:40 +01:00
po::notify( _params );
} catch (po::error &e) {
cerr << "ERROR: " << e.what() << endl << endl;
printHelp(cerr);
return EXIT_BADOPTIONS;
}
2009-01-27 21:16:09 +01:00
2010-02-28 18:36:40 +01:00
if ( _params.count( "help" ) ){
printHelp(cerr);
return 0;
}
2010-02-28 18:36:40 +01:00
if ( _params.count( "verbose" ) ) {
logLevel = 1;
}
2010-02-28 18:36:40 +01:00
for (string s = "vv"; s.length() <= 10; s.append("v")) {
if (_params.count(s)) {
logLevel = s.length();
}
}
2009-07-13 20:09:43 +02:00
2010-02-28 18:36:40 +01:00
bool useDirectClient = hasParam( "dbpath" );
2010-02-28 18:36:40 +01:00
if ( ! useDirectClient ) {
_host = "127.0.0.1";
if ( _params.count( "host" ) )
_host = _params["host"].as<string>();
2009-09-01 21:43:23 +02:00
2010-02-28 18:36:40 +01:00
if ( _host.find( "," ) == string::npos ){
DBClientConnection * c = new DBClientConnection();
_conn = c;
2009-09-01 21:43:23 +02:00
2010-02-28 18:36:40 +01:00
string errmsg;
if ( ! c->connect( _host , errmsg ) ){
cerr << "couldn't connect to [" << _host << "] " << errmsg << endl;
return -1;
}
}
else {
log(1) << "using pairing" << endl;
DBClientPaired * c = new DBClientPaired();
_paired = true;
_conn = c;
if ( ! c->connect( _host ) ){
cerr << "couldn't connect to paired server: " << _host << endl;
return -1;
}
}
2010-02-28 18:36:40 +01:00
cerr << "connected to: " << _host << endl;
}
else {
2010-02-28 18:36:40 +01:00
if ( _params.count( "directoryperdb" ) ) {
directoryperdb = true;
}
2010-02-28 18:36:40 +01:00
Client::initThread("tools");
_conn = new DBDirectClient();
_host = "DIRECT";
static string myDbpath = getParam( "dbpath" );
dbpath = myDbpath.c_str();
acquirePathLock();
theFileAllocator().start();
}
2009-06-25 22:11:38 +02:00
2010-02-28 18:36:40 +01:00
if ( _params.count( "db" ) )
_db = _params["db"].as<string>();
2009-06-25 22:11:38 +02:00
2010-02-28 18:36:40 +01:00
if ( _params.count( "collection" ) )
_coll = _params["collection"].as<string>();
2009-09-01 21:43:23 +02:00
2010-02-28 18:36:40 +01:00
if ( _params.count( "username" ) )
_username = _params["username"].as<string>();
2009-08-12 22:31:22 +02:00
2010-02-28 18:36:40 +01:00
if ( _params.count( "password" ) )
_password = _params["password"].as<string>();
2009-09-01 21:43:23 +02:00
2010-02-28 18:36:40 +01:00
int ret = -1;
try {
ret = run();
}
catch ( DBException& e ){
cerr << "assertion: " << e.toString() << endl;
ret = -1;
}
2009-10-27 16:44:22 +01:00
2010-02-28 18:36:40 +01:00
if ( currentClient.get() )
currentClient->shutdown();
2010-02-02 03:35:54 +01:00
2010-02-28 18:36:40 +01:00
if ( useDirectClient )
dbexit( EXIT_CLEAN );
return ret;
}
2009-08-12 22:31:22 +02:00
2010-02-28 18:36:40 +01:00
DBClientBase& Tool::conn( bool slaveIfPaired ){
if ( _paired && slaveIfPaired )
return ((DBClientPaired*)_conn)->slaveConn();
return *_conn;
}
2010-02-28 18:36:40 +01:00
void Tool::addFieldOptions(){
add_options()
("fields,f" , po::value<string>() , "comma seperated list of field names e.g. -f name,age" )
("fieldFile" , po::value<string>() , "file with fields names - 1 per line" )
;
}
2009-10-12 21:05:42 +02:00
2010-02-28 18:36:40 +01:00
void Tool::needFields(){
2009-10-12 21:05:42 +02:00
2010-02-28 18:36:40 +01:00
if ( hasParam( "fields" ) ){
BSONObjBuilder b;
2009-10-12 21:05:42 +02:00
2010-02-28 18:36:40 +01:00
string fields_arg = getParam("fields");
pcrecpp::StringPiece input(fields_arg);
2009-10-12 21:05:42 +02:00
2010-02-28 18:36:40 +01:00
string f;
pcrecpp::RE re("([\\w\\.]+),?" );
while ( re.Consume( &input, &f ) ){
_fields.push_back( f );
b.append( f.c_str() , 1 );
}
2009-10-12 21:05:42 +02:00
2010-02-28 18:36:40 +01:00
_fieldsObj = b.obj();
return;
}
2009-10-12 21:05:42 +02:00
2010-02-28 18:36:40 +01:00
if ( hasParam( "fieldFile" ) ){
string fn = getParam( "fieldFile" );
if ( ! exists( fn ) )
throw UserException( 9999 , ((string)"file: " + fn ) + " doesn't exist" );
const int BUF_SIZE = 1024;
char line[ 1024 + 128];
ifstream file( fn.c_str() );
BSONObjBuilder b;
while ( file.rdstate() == ios_base::goodbit ){
file.getline( line , BUF_SIZE );
const char * cur = line;
while ( isspace( cur[0] ) ) cur++;
if ( strlen( cur ) == 0 )
continue;
_fields.push_back( cur );
b.append( cur , 1 );
}
_fieldsObj = b.obj();
return;
2009-10-12 21:05:42 +02:00
}
2010-02-28 18:36:40 +01:00
throw UserException( 9998 , "you need to specify fields" );
2009-10-12 21:05:42 +02:00
}
2010-02-28 18:36:40 +01:00
void Tool::auth( string dbname ){
if ( ! dbname.size() )
dbname = _db;
2010-02-28 18:36:40 +01:00
if ( ! ( _username.size() || _password.size() ) )
return;
2009-08-12 22:31:22 +02:00
2010-02-28 18:36:40 +01:00
string errmsg;
if ( _conn->auth( dbname , _username , _password , errmsg ) )
return;
2009-08-12 22:31:22 +02:00
2010-02-28 18:36:40 +01:00
// try against the admin db
string err2;
if ( _conn->auth( "admin" , _username , _password , errmsg ) )
return;
2009-09-01 21:43:23 +02:00
2010-02-28 18:36:40 +01:00
throw UserException( 9997 , (string)"auth failed: " + errmsg );
}
2009-09-01 21:43:23 +02:00
2009-08-12 22:31:22 +02:00
}