summaryrefslogtreecommitdiff
path: root/dbgrid/dbgrid.cpp
blob: 5d5cc6f4540aa9357e15a616c150ebb9c75490cb (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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// dbgrid.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 "../grid/message.h"
#include "../util/unittest.h"
#include "../client/connpool.h"
#include "gridconfig.h"

namespace mongo {

bool dashDashInfer = false;
vector<string> dashDashGridDb;
int port = 27017;
const char *curNs = "";
Database *database = 0;

string getDbContext() {
    return "?";
}

#if !defined(_WIN32)

} // namespace mongo

#include <signal.h>

namespace mongo {

void pipeSigHandler( int signal ) {
    psignal( signal, "Signal Received : ");
}

#else
void setupSignals() {}
#endif

void usage() {
    cout << "Mongo dbgrid usage:\n\n";
    cout << " --port <portno>\n";
    cout << " --griddb <griddbname> [<griddbname>...]\n";
    cout << " --infer                                   infer griddbname by replacing \"-n<n>\"\n";
    cout << "                                           in our hostname with \"-grid\".\n";
    cout << endl;
}

MessagingPort *grab = 0;
void processRequest(Message&, MessagingPort&);

void _dbGridConnThread() {
    MessagingPort& dbMsgPort = *grab;
    grab = 0;
    Message m;
    while ( 1 ) {
        m.reset();

        if ( !dbMsgPort.recv(m) ) {
            log() << "end connection " << dbMsgPort.farEnd.toString() << endl;
            dbMsgPort.shutdown();
            break;
        }

        processRequest(m, dbMsgPort);
    }

}

void dbGridConnThread() {
    MessagingPort *p = grab;
    try {
        _dbGridConnThread();
    } catch ( ... ) {
        problem() << "uncaught exception in dbgridconnthread, closing connection" << endl;
        delete p;
    }
}

class DbGridListener : public Listener {
public:
    DbGridListener(int p) : Listener(p) { }
    virtual void accepted(MessagingPort *mp) {
        assert( grab == 0 );
        grab = mp;
        boost::thread thr(dbGridConnThread);
        while ( grab )
            sleepmillis(1);
    }
};

void start() {
    gridDatabase.init();
    /*
        try {
    cout << "TEMP" << endl;
    {
        ScopedDbConnection c("localhost");
        cout << c.conn().findOne("dwight.bar", emptyObj).toString() << endl;
        c.done();
        cout << "OK1" << endl;
    }
    {
        ScopedDbConnection c("localhost");
        c.conn().findOne("dwight.bar", emptyObj);
        c.done();
        cout << "OK1" << endl;
    }
    cout << "OK2" << endl;
        } catch(...) {
    cout << "exception" << endl;
        }
    */

    log() << "waiting for connections on port " << port << "..." << endl;
    DbGridListener l(port);
    l.listen();
}

} // namespace mongo

using namespace mongo;

int main(int argc, char* argv[], char *envp[] ) {
#if !defined(_WIN32)
    signal(SIGPIPE, pipeSigHandler);
#endif

    if ( argc <= 1 ) {
        usage();
        return 3;
    }

    for (int i = 1; i < argc; i++)  {
        if ( argv[i] == 0 ) continue;
        string s = argv[i];
        if ( s == "--port" ) {
            port = atoi(argv[++i]);
        }
        else if ( s == "--infer" ) {
            dashDashInfer = true;
        }
        else if ( s == "--griddb" ) {
            assert( !dashDashInfer );
            int n = 0;
            while ( ++i < argc ) {
                dashDashGridDb.push_back(argv[i]);
                n++;
            }
            if ( n == 0 ) {
                cout << "error: no args for --griddb\n";
                return 4;
            }
            if ( n > 2 ) {
                cout << "error: --griddb does not support more than 2 parameters yet\n";
                return 5;
            }
        }
        else {
            usage();
            return 3;
        }
    }

    bool ok = port != 0;

    if ( !ok ) {
        usage();
        return 1;
    }

    log() << "dbgrid starting (--help for usage)" << endl;
    UnitTest::runTests();
    start();
    dbexit(0);
    return 0;
}

namespace mongo {

#undef exit
void dbexit(int rc, const char *why) {
    log() << "dbexit: " << why << " rc:" << rc << endl;
    exit(rc);
}

} // namespace mongo