summaryrefslogtreecommitdiff
path: root/db/background.h
blob: ea424c97107d94626c9e6fb93e8ab759db460124 (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
/**
*    Copyright (C) 2010 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/>.
*/

/* background.h

   Concurrency coordination for administrative operations.
*/

#pragma once

namespace mongo {

    /* these are administrative operations / jobs
       for a namespace running in the background, and that only one
       at a time per namespace is permitted, and that if in progress,
       you aren't allowed to do other NamespaceDetails major manipulations
       (such as dropping ns or db) even in the foreground and must
       instead uassert.

       It's assumed this is not for super-high RPS things, so we don't do
       anything special in the implementation here to be fast.
    */
    class BackgroundOperation : public boost::noncopyable {
    public:
        static bool inProgForDb(const char *db);
        static bool inProgForNs(const char *ns);
        static void assertNoBgOpInProgForDb(const char *db);
        static void assertNoBgOpInProgForNs(const char *ns);
        static void dump(stringstream&);

        /* check for in progress before instantiating */
        BackgroundOperation(const char *ns);

        virtual ~BackgroundOperation();

    private:
        NamespaceString _ns;
        static map<string, unsigned> dbsInProg;
        static set<string> nsInProg;
    };

} // namespace mongo