0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/tools/export.cpp

133 lines
3.8 KiB
C++
Raw Normal View History

2009-02-02 18:17:20 +01:00
// export.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"
#include "db/json.h"
2009-09-24 17:02:00 +02:00
#include "tool.h"
2009-02-02 18:17:20 +01:00
#include <fstream>
#include <iostream>
#include <boost/program_options.hpp>
using namespace mongo;
namespace po = boost::program_options;
class Export : public Tool {
public:
Export() : Tool( "export" ){
add_options()
2009-06-25 22:17:42 +02:00
("query,q" , po::value<string>() , "query filter, as a JSON string" )
("fields,f" , po::value<string>() , "comma seperated list of field names e.g. -f name,age" )
2009-02-02 18:17:20 +01:00
("csv","export to csv instead of json")
2009-05-20 17:28:55 +02:00
("out,o", po::value<string>(), "output file; if not specified, stdout is used")
2009-02-02 18:17:20 +01:00
;
}
2009-02-02 18:17:20 +01:00
int run(){
string ns;
2009-02-02 18:17:20 +01:00
const bool csv = hasParam( "csv" );
2009-05-20 17:28:55 +02:00
ostream *outPtr = &cout;
string outfile = getParam( "out" );
2009-10-10 04:11:15 +02:00
auto_ptr<ofstream> fileStream;
if ( hasParam( "out" ) ){
size_t idx = outfile.rfind( "/" );
if ( idx != string::npos ){
string dir = outfile.substr( 0 , idx + 1 );
create_directories( dir );
}
ofstream * s = new ofstream( outfile.c_str() , ios_base::out );
2009-10-10 04:11:15 +02:00
fileStream.reset( s );
outPtr = s;
if ( ! s->good() ){
cerr << "couldn't open [" << outfile << "]" << endl;
return -1;
}
}
2009-05-20 17:28:55 +02:00
ostream &out = *outPtr;
2009-06-25 22:11:38 +02:00
2009-02-02 18:17:20 +01:00
BSONObj * fieldsToReturn = 0;
BSONObj realFieldsToReturn;
2009-06-25 22:11:38 +02:00
try {
ns = getNS();
} catch (...) {
printHelp(cerr);
return 1;
}
2009-08-12 22:31:22 +02:00
auth();
2009-02-02 18:17:20 +01:00
if ( hasParam( "fields" ) ){
needFields();
fieldsToReturn = &_fieldsObj;
2009-02-02 18:17:20 +01:00
}
2009-06-25 22:11:38 +02:00
if ( csv && _fields.size() == 0 ){
2009-02-02 18:17:20 +01:00
cerr << "csv mode requires a field list" << endl;
return -1;
}
2009-06-25 22:11:38 +02:00
2009-02-02 18:17:20 +01:00
2010-01-03 22:37:38 +01:00
auto_ptr<DBClientCursor> cursor = conn().query( ns.c_str() , ((Query)(getParam( "query" , "" ))).snapshot() , 0 , 0 , fieldsToReturn , QueryOption_SlaveOk | QueryOption_NoCursorTimeout );
2009-06-25 22:11:38 +02:00
2009-02-02 18:17:20 +01:00
if ( csv ){
for ( vector<string>::iterator i=_fields.begin(); i != _fields.end(); i++ ){
if ( i != _fields.begin() )
2009-05-20 17:28:55 +02:00
out << ",";
out << *i;
2009-02-02 18:17:20 +01:00
}
2009-05-20 17:28:55 +02:00
out << endl;
2009-02-02 18:17:20 +01:00
}
2009-10-10 04:11:15 +02:00
long long num = 0;
2009-02-02 18:17:20 +01:00
while ( cursor->more() ) {
2009-10-10 04:11:15 +02:00
num++;
2009-02-02 18:17:20 +01:00
BSONObj obj = cursor->next();
if ( csv ){
for ( vector<string>::iterator i=_fields.begin(); i != _fields.end(); i++ ){
if ( i != _fields.begin() )
2009-05-20 17:28:55 +02:00
out << ",";
const BSONElement & e = obj.getFieldDotted(i->c_str());
if ( ! e.eoo() ){
out << e.jsonString( Strict , false );
}
2009-06-25 22:11:38 +02:00
}
2009-05-20 17:28:55 +02:00
out << endl;
2009-02-02 18:17:20 +01:00
}
else {
2009-05-20 17:28:55 +02:00
out << obj.jsonString() << endl;
2009-02-02 18:17:20 +01:00
}
}
2009-10-10 04:11:15 +02:00
cerr << "exported " << num << " records" << endl;
2009-02-02 18:17:20 +01:00
return 0;
}
};
int main( int argc , char ** argv ) {
Export e;
return e.main( argc , argv );
}