summaryrefslogtreecommitdiff
path: root/tools/import.cpp
blob: f74d2af0e1d7a4bca3d3175c88b8a59213b82f9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// 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"

#include <boost/program_options.hpp>

#include <fcntl.h>

namespace po = boost::program_options;

namespace import {
    
    void drillDown( DBClientConnection & conn , path root ){
        
        if ( is_directory( root ) ){
            directory_iterator end;
            directory_iterator i(root);
            while ( i != end ){
                path p = *i;
                drillDown( conn , p );
                i++;
            }
            return;
        }
        
        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;
        }
        

        cout << 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;
        }
        
        cout << "\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 ){
                cout << "\t ** got unexpected end of file **  continuing..." << endl;
                break;
            }
            
            BSONObj o( data );
            
            conn.insert( ns.c_str() , o );
            
            read += o.objsize();
            data += o.objsize();
            
            if ( ! ( ++num % 1000 ) )
                cout << "read " << read << "/" << mmf.length() << " bytes so far. " << num << " objects" << endl;
        }
        
        cout << "\t "  << num << " objects" << endl;
        
    }

    
    void go( const char * dbHost , const char * dirRoot ){
        DBClientConnection conn;
        string errmsg;
        if ( ! conn.connect( dbHost , errmsg ) ){
            cout << "couldn't connect : " << errmsg << endl;
            throw -11;
        }

        drillDown( conn , dirRoot );
    }
}

int main( int argc , char ** argv ){

    boost::filesystem::path::default_name_check( boost::filesystem::no_check );
    
    po::options_description options("import parameters");
    options.add_options()
        ("help", "produce help message")
        ("host,h", po::value<string>() , "mongo host to connect to")
        ("dir" , po::value<string>(), "directory to import from" )
        ;

    po::positional_options_description argsOptions;
    argsOptions.add( "dir" , 1 );
    
    po::variables_map vm;       
    
    po::store( po::command_line_parser( argc , argv ).
               options(options).positional(argsOptions).run(), vm );
    
    po::notify(vm);   
    
    if ( vm.count("help") ){
        options.print( cerr );
        return 1;
    }

    const char * host = "127.0.0.1";
    const char * dir = "dump";

    if ( vm.count( "host" ) )
        host = vm["host"].as<string>().c_str();
    
    if ( vm.count( "dir" ) )
        dir = vm["dir"].as<string>().c_str();

    cout << "mongo dump" << endl;
    cout << "\t host        \t" << host << endl;
    cout << "\t dir         \t" << dir << endl;

    import::go( host , dir );
    return 0;
}