summaryrefslogtreecommitdiff
path: root/client/connpool.h
blob: 520461a0bd718eb71103464a1f06bea8b67da022 (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
/** @file connpool.h */

/*    Copyright 2009 10gen Inc.
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */

#pragma once

#include <stack>
#include "dbclient.h"
#include "redef_macros.h"

namespace mongo {

    class Shard;
    
    struct PoolForHost {
        PoolForHost()
            : created(0){}
        PoolForHost( const PoolForHost& other ){
            assert(other.pool.size() == 0);
            created = other.created;
            assert( created == 0 );
        }
            
        std::stack<DBClientBase*> pool;
        long long created;
    };
    
    class DBConnectionHook {
    public:
        virtual ~DBConnectionHook(){}
        virtual void onCreate( DBClientBase * conn ){}
        virtual void onHandedOut( DBClientBase * conn ){}
    };

    /** Database connection pool.

        Generally, use ScopedDbConnection and do not call these directly.

        This class, so far, is suitable for use with unauthenticated connections. 
        Support for authenticated connections requires some adjustements: please 
        request...

        Usage:
        
        {
           ScopedDbConnection c("myserver");
           c.conn()...
        }
    */
    class DBConnectionPool {
        mongo::mutex _mutex;
        map<string,PoolForHost> _pools; // servername -> pool
        list<DBConnectionHook*> _hooks;

        DBClientBase* _get( const string& ident );
        
        DBClientBase* _finishCreate( const string& ident , DBClientBase* conn );

    public:        
        DBConnectionPool() : _mutex("DBConnectionPool") { }
        ~DBConnectionPool();


        void onCreate( DBClientBase * conn );
        void onHandedOut( DBClientBase * conn );

        void flush();

        DBClientBase *get(const string& host);
        DBClientBase *get(const ConnectionString& host);

        void release(const string& host, DBClientBase *c) {
            if ( c->isFailed() ){
                delete c;
                return;
            }

            {
                scoped_lock L(_mutex);
                if ( _pools[host].pool.size() < 50 ) {
                    _pools[host].pool.push(c);
                    return;
                }
            }

            // if we get here it means we didn't add for some reason
            delete c;
        }
        void addHook( DBConnectionHook * hook );
        void appendInfo( BSONObjBuilder& b );
    };
    
    extern DBConnectionPool pool;

    class AScopedConnection : boost::noncopyable {
    public:
        virtual ~AScopedConnection(){}
        virtual DBClientBase* get() = 0;
        virtual void done() = 0;
        virtual string getHost() const = 0;
    };

    /** Use to get a connection from the pool.  On exceptions things
       clean up nicely.
    */
    class ScopedDbConnection : public AScopedConnection {
        const string _host;
        DBClientBase *_conn;
    public:
        /** get the associated connection object */
        DBClientBase* operator->(){ 
            uassert( 11004 ,  "did you call done already" , _conn );
            return _conn; 
        }
        
        /** get the associated connection object */
        DBClientBase& conn() {
            uassert( 11005 ,  "did you call done already" , _conn );
            return *_conn;
        }

        /** get the associated connection object */
        DBClientBase* get() {
            uassert( 13102 ,  "did you call done already" , _conn );
            return _conn;
        }
        
        ScopedDbConnection()
            : _host( "" ) , _conn(0) {
        }

        /** throws UserException if can't connect */
        ScopedDbConnection(const string& host)
            : _host(host), _conn( pool.get(host) ) {
        }
        
        ScopedDbConnection(const string& host, DBClientBase* conn )
            : _host( host ) , _conn( conn ){
        }
        
        ScopedDbConnection(const Shard& shard );
        ScopedDbConnection(const Shard* shard );

        ScopedDbConnection(const ConnectionString& url )
            : _host(url.toString()), _conn( pool.get(url) ) {
        }


        string getHost() const { return _host; }

        /** Force closure of the connection.  You should call this if you leave it in
            a bad state.  Destructor will do this too, but it is verbose.
        */
        void kill() {
            delete _conn;
            _conn = 0;
        }

        /** Call this when you are done with the connection.
            
            If you do not call done() before this object goes out of scope, 
            we can't be sure we fully read all expected data of a reply on the socket.  so
            we don't try to reuse the connection in that situation.
        */
        void done() {
            if ( ! _conn )
                return;

            /* we could do this, but instead of assume one is using autoreconnect mode on the connection 
            if ( _conn->isFailed() )
                kill();
            else
            */
            pool.release(_host, _conn);
            _conn = 0;
        }
        
        ScopedDbConnection * steal();

        ~ScopedDbConnection();

    };

} // namespace mongo

#include "undef_macros.h"