0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/tools/restore.cpp

125 lines
3.5 KiB
C++
Raw Normal View History

2009-02-09 17:24:21 +01:00
// restore.cpp
2009-01-12 05:02:19 +01:00
/**
* 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-02-09 17:24:21 +01:00
class Restore : public Tool {
2009-01-28 03:37:56 +01:00
public:
2009-02-09 17:24:21 +01:00
Restore() : Tool( "restore" ){
2009-01-28 03:37:56 +01:00
add_options()
2009-02-09 17:24:21 +01:00
("dir",po::value<string>() , "directory to restore from" )
2009-01-28 03:37:56 +01:00
;
addPositionArg( "dir" , 1 );
}
int run(){
2009-08-12 22:31:22 +02:00
auth();
2009-01-28 03:37:56 +01:00
drillDown( getParam( "dir" ) );
return 0;
2009-01-28 03:37:56 +01:00
}
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-28 03:37:56 +01:00
return;
}
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;
}
2009-05-20 18:15:41 +02:00
if ( boost::filesystem::file_size( root ) == 0 ) {
2009-07-13 19:44:03 +02:00
out() << "file " + root.native_file_string() + " empty, skipping" << endl;
2009-05-20 18:15:41 +02:00
return;
}
2009-01-31 22:46:47 +01:00
2009-01-28 03:37:56 +01:00
out() << "\t going into namespace [" << ns << "]" << endl;
MemoryMappedFile mmf;
2009-07-09 22:56:34 +02:00
long fileLength;
2009-06-11 18:32:19 +02:00
assert( mmf.map( root.string().c_str() , fileLength ) );
2009-01-28 03:37:56 +01:00
2009-07-13 20:10:16 +02:00
log(1) << "\t file size: " << fileLength << endl;
2009-01-28 03:37:56 +01:00
char * data = (char*)mmf.viewOfs();
2009-07-13 17:24:43 +02:00
long read = 0;
2009-01-28 03:37:56 +01:00
2009-07-13 17:24:43 +02:00
long num = 0;
2009-01-28 03:37:56 +01:00
2009-07-13 20:10:16 +02:00
int msgDelay = (int)(1000 * ( 1 + ( mmf.length() / ( 1024.0 * 1024 * 400 ) ) ) );
log(1) << "\t msg delay: " << msgDelay << endl;
2009-01-28 03:37:56 +01:00
while ( read < mmf.length() ) {
BSONObj o( data );
conn().insert( ns.c_str() , o );
2009-01-28 03:37:56 +01:00
read += o.objsize();
data += o.objsize();
2009-02-09 16:55:59 +01:00
2009-07-13 20:10:16 +02:00
num++;
if ( logLevel > 0 && num < 10 || ! ( num % msgDelay ) )
2009-07-13 19:48:08 +02:00
out() << "read " << read << "/" << mmf.length() << " bytes so far. (" << (int)( (read * 100) / mmf.length()) << "%) " << num << " objects" << endl;
}
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 ) {
2009-02-09 17:24:21 +01:00
Restore restore;
return restore.main( argc , argv );
2009-01-12 05:02:19 +01:00
}