2009-01-12 05:02:19 +01:00
|
|
|
// import.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 "../util/mmap.h"
|
2009-01-28 03:37:56 +01:00
|
|
|
#include "Tool.h"
|
2009-01-12 05:02:19 +01:00
|
|
|
|
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2009-01-28 03:37:56 +01:00
|
|
|
using namespace mongo;
|
2009-01-14 23:17:24 +01:00
|
|
|
|
2009-01-28 03:37:56 +01:00
|
|
|
namespace po = boost::program_options;
|
2009-01-14 23:17:24 +01:00
|
|
|
|
2009-01-28 03:37:56 +01:00
|
|
|
class Import : public Tool {
|
|
|
|
public:
|
|
|
|
Import() : Tool( "import" ){
|
|
|
|
add_options()
|
|
|
|
("dir",po::value<string>() , "directory to import from" )
|
|
|
|
;
|
|
|
|
addPositionArg( "dir" , 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(){
|
|
|
|
drillDown( getParam( "dir" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void drillDown( path root ) {
|
|
|
|
|
|
|
|
if ( is_directory( root ) ) {
|
|
|
|
directory_iterator end;
|
|
|
|
directory_iterator i(root);
|
|
|
|
while ( i != end ) {
|
|
|
|
path p = *i;
|
|
|
|
drillDown( p );
|
|
|
|
i++;
|
2009-01-15 16:17:11 +01:00
|
|
|
}
|
2009-01-28 03:37:56 +01:00
|
|
|
return;
|
2009-01-15 16:17:11 +01:00
|
|
|
}
|
2009-01-28 03:37:56 +01:00
|
|
|
|
|
|
|
if ( ! ( endsWith( root.string().c_str() , ".bson" ) ||
|
|
|
|
endsWith( root.string().c_str() , ".bin" ) ) ) {
|
|
|
|
cerr << "don't know what to do with [" << root.string() << "]" << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
out() << root.string() << endl;
|
|
|
|
|
|
|
|
string ns;
|
|
|
|
{
|
|
|
|
string dir = root.branch_path().string();
|
|
|
|
if ( dir.find( "/" ) == string::npos )
|
|
|
|
ns += dir;
|
|
|
|
else
|
|
|
|
ns += dir.substr( dir.find_last_of( "/" ) + 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
string l = root.leaf();
|
|
|
|
l = l.substr( 0 , l.find_last_of( "." ) );
|
|
|
|
ns += "." + l;
|
|
|
|
}
|
|
|
|
|
|
|
|
out() << "\t going into namespace [" << ns << "]" << endl;
|
|
|
|
|
|
|
|
MemoryMappedFile mmf;
|
|
|
|
assert( mmf.map( root.string().c_str() ) );
|
|
|
|
|
|
|
|
char * data = (char*)mmf.viewOfs();
|
|
|
|
int read = 0;
|
|
|
|
|
|
|
|
int num = 0;
|
|
|
|
|
|
|
|
while ( read < mmf.length() ) {
|
|
|
|
if ( ! *data ) {
|
|
|
|
out() << "\t ** got unexpected end of file ** continuing..." << endl;
|
|
|
|
break;
|
2009-01-15 16:17:11 +01:00
|
|
|
}
|
2009-01-28 03:37:56 +01:00
|
|
|
|
|
|
|
BSONObj o( data );
|
|
|
|
|
|
|
|
_conn.insert( ns.c_str() , o );
|
|
|
|
|
|
|
|
read += o.objsize();
|
|
|
|
data += o.objsize();
|
|
|
|
|
|
|
|
if ( ! ( ++num % 1000 ) )
|
|
|
|
out() << "read " << read << "/" << mmf.length() << " bytes so far. " << num << " objects" << endl;
|
2009-01-15 16:17:11 +01:00
|
|
|
}
|
2009-01-28 03:37:56 +01:00
|
|
|
|
|
|
|
out() << "\t " << num << " objects" << endl;
|
2009-01-12 05:02:19 +01:00
|
|
|
}
|
2009-01-28 03:37:56 +01:00
|
|
|
};
|
2009-01-12 05:02:19 +01:00
|
|
|
|
2009-01-28 03:37:56 +01:00
|
|
|
int main( int argc , char ** argv ) {
|
|
|
|
Import import;
|
|
|
|
return import.main( argc , argv );
|
2009-01-12 05:02:19 +01:00
|
|
|
}
|