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

114 lines
3.4 KiB
C++
Raw Normal View History

2008-12-29 23:52:45 +01:00
// dump.cpp
/**
* Copyright (C) 2008 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/>.
*/
#include "../stdafx.h"
#include "../client/dbclient.h"
2009-01-27 21:16:09 +01:00
#include "Tool.h"
2008-12-29 23:52:45 +01:00
#include <fcntl.h>
2009-01-27 21:16:09 +01:00
using namespace mongo;
2008-12-29 23:52:45 +01:00
2009-01-27 21:16:09 +01:00
namespace po = boost::program_options;
2009-01-14 23:17:24 +01:00
2009-01-27 21:16:09 +01:00
class Dump : public Tool {
public:
Dump() : Tool( "dump" , "*" ){
add_options()
("out,o" , po::value<string>() , "output directory" )
;
}
void doCollection( const string coll , path outputFile ) {
cout << "\t" << coll << " to " << outputFile.string() << endl;
int out = open( outputFile.string().c_str() , O_WRONLY | O_CREAT | O_TRUNC , 0666 );
assert( out );
2009-03-19 21:23:04 +01:00
auto_ptr<DBClientCursor> cursor = _conn.query( coll.c_str() , BSONObj() , 0 , 0 , 0 , Option_SlaveOk );
2009-01-27 21:16:09 +01:00
int num = 0;
while ( cursor->more() ) {
BSONObj obj = cursor->next();
write( out , obj.objdata() , obj.objsize() );
num++;
}
2009-01-27 21:16:09 +01:00
cout << "\t\t " << num << " objects" << endl;
close( out );
}
void go( const string db , const path outdir ) {
cout << "DATABASE: " << db << "\t to \t" << outdir.string() << endl;
create_directories( outdir );
string sns = db + ".system.namespaces";
2009-03-19 21:23:04 +01:00
auto_ptr<DBClientCursor> cursor = _conn.query( sns.c_str() , BSONObj() , 0 , 0 , 0 , Option_SlaveOk );
2009-01-27 21:16:09 +01:00
while ( cursor->more() ) {
BSONObj obj = cursor->next();
if ( obj.toString().find( ".$" ) != string::npos )
continue;
const string name = obj.getField( "name" ).valuestr();
const string filename = name.substr( db.size() + 1 );
doCollection( name.c_str() , outdir / ( filename + ".bson" ) );
}
}
2009-01-14 23:17:24 +01:00
int run(){
2009-01-27 21:16:09 +01:00
path root( getParam( "out" , "dump" ) );
string db = _db;
if ( db == "*" ){
cout << "all dbs" << endl;
2009-01-30 00:38:35 +01:00
BSONObj res = _conn.findOne( "admin.$cmd" , BSON( "listDatabases" << 1 ) );
2009-01-27 21:16:09 +01:00
BSONObj dbs = res.getField( "databases" ).embeddedObjectUserCheck();
set<string> keys;
dbs.getFieldNames( keys );
for ( set<string>::iterator i = keys.begin() ; i != keys.end() ; i++ ) {
string key = *i;
BSONObj dbobj = dbs.getField( key ).embeddedObjectUserCheck();
const char * dbName = dbobj.getField( "name" ).valuestr();
if ( (string)dbName == "local" )
continue;
2009-01-14 23:17:24 +01:00
2009-01-27 21:16:09 +01:00
go ( dbName , root / dbName );
}
}
2009-01-27 21:16:09 +01:00
else {
go( db , root / db );
2008-12-29 23:52:45 +01:00
}
return 0;
2008-12-29 23:52:45 +01:00
}
2009-01-27 21:16:09 +01:00
};
2008-12-29 23:52:45 +01:00
2009-01-27 21:16:09 +01:00
int main( int argc , char ** argv ) {
Dump d;
return d.main( argc , argv );
2008-12-29 23:52:45 +01:00
}