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

115 lines
3.0 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-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-01-31 22:46:47 +01:00
if ( boost::filesystem::file_size( root ) == 0 )
return;
2009-01-28 03:37:56 +01:00
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() ) {
BSONObj o( data );
_conn.insert( ns.c_str() , o );
read += o.objsize();
data += o.objsize();
2009-02-09 16:55:59 +01:00
2009-01-28 03:37:56 +01:00
if ( ! ( ++num % 1000 ) )
out() << "read " << read << "/" << mmf.length() << " bytes so far. " << 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
}