summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/storage_engine.h
blob: 85008da0f5c37f2248a687505bd7b04080e40af2 (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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// storage_engine.h

/**
 *    Copyright (C) 2014 MongoDB 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/>.
 *
 *    As a special exception, the copyright holders give permission to link the
 *    code of portions of this program with the OpenSSL library under certain
 *    conditions as described in each individual source file and distribute
 *    linked combinations including the program with the OpenSSL library. You
 *    must comply with the GNU Affero General Public License in all respects for
 *    all of the code used other than as permitted herein. If you modify file(s)
 *    with this exception, you may extend this exception to your version of the
 *    file(s), but you are not obligated to do so. If you do not wish to do so,
 *    delete this exception statement from your version. If you delete this
 *    exception statement from all source files in the program, then also delete
 *    it in the license file.
 */

#pragma once

#include <string>
#include <vector>

#include "mongo/base/status.h"
#include "mongo/bson/bsonobj.h"
#include "mongo/util/mongoutils/str.h"

namespace mongo {

    class DatabaseCatalogEntry;
    class OperationContext;
    class RecoveryUnit;
    struct StorageGlobalParams;
    class StorageEngineLockFile;
    class StorageEngineMetadata;

    /**
     * The StorageEngine class is the top level interface for creating a new storage
     * engine.  All StorageEngine(s) must be registered by calling registerFactory in order
     * to possibly be activated.
     */
    class StorageEngine {
    public:

        /**
         * The interface for creating new instances of storage engines.
         *
         * A storage engine provides an instance of this class (along with an associated
         * name) to the global environment, which then sets the global storage engine
         * according to the provided configuration parameter.
         */
        class Factory {
        public:
            virtual ~Factory() { }

            /**
             * Return a new instance of the StorageEngine.  Caller owns the returned pointer.
             */
            virtual StorageEngine* create(const StorageGlobalParams& params,
                                          const StorageEngineLockFile& lockFile) const = 0;

            /**
             * Returns the name of the storage engine.
             *
             * Implementations that change the value of the returned string can cause
             * data file incompatibilities.
             */
            virtual StringData getCanonicalName() const = 0;

            /**
             * Validates creation options for a collection in the StorageEngine.
             * Returns an error if the creation options are not valid.
             *
             * Default implementation only accepts empty objects (no options).
             */
            virtual Status validateCollectionStorageOptions(const BSONObj& options) const {
                if (options.isEmpty()) return Status::OK();
                return Status(ErrorCodes::InvalidOptions,
                              str::stream() << "storage engine " << getCanonicalName()
                                            << " does not support any collection storage options");
            }

            /**
             * Validates creation options for an index in the StorageEngine.
             * Returns an error if the creation options are not valid.
             *
             * Default implementation only accepts empty objects (no options).
             */
            virtual Status validateIndexStorageOptions(const BSONObj& options) const {
                if (options.isEmpty()) return Status::OK();
                return Status(ErrorCodes::InvalidOptions,
                              str::stream() << "storage engine " << getCanonicalName()
                                            << " does not support any index storage options");
            }

             /**
              * Validates existing metadata in the data directory against startup options.
              * Returns an error if the storage engine initialization should not proceed
              * due to any inconsistencies between the current startup options and the creation
              * options stored in the metadata.
              */
             virtual Status validateMetadata(const StorageEngineMetadata& metadata,
                                             const StorageGlobalParams& params) const = 0;

             /**
              * Returns a new document suitable for storing in the data directory metadata.
              * This document will be used by validateMetadata() to check startup options
              * on restart.
              */
             virtual BSONObj createMetadataOptions(const StorageGlobalParams& params) const = 0;
        };

        /**
         * Called after the globalStorageEngine pointer has been set up, before any other methods
         * are called. Any initialization work that requires the ability to create OperationContexts
         * should be done here rather than in the constructor.
         */
        virtual void finishInit() {}

        /**
         * Returns a new interface to the storage engine's recovery unit.  The recovery
         * unit is the durability interface.  For details, see recovery_unit.h
         *
         * Caller owns the returned pointer.
         */
        virtual RecoveryUnit* newRecoveryUnit() = 0;

        /**
         * List the databases stored in this storage engine.
         *
         * XXX: why doesn't this take OpCtx?
         */
        virtual void listDatabases( std::vector<std::string>* out ) const = 0;

        /**
         * Return the DatabaseCatalogEntry that describes the database indicated by 'db'.
         *
         * StorageEngine owns returned pointer.
         * It should not be deleted by any caller.
         */
        virtual DatabaseCatalogEntry* getDatabaseCatalogEntry( OperationContext* opCtx,
                                                               StringData db ) = 0;

        /**
         * Returns whether the storage engine supports its own locking locking below the collection
         * level. If the engine returns true, MongoDB will acquire intent locks down to the
         * collection level and will assume that the engine will ensure consistency at the level of
         * documents. If false, MongoDB will lock the entire collection in Shared/Exclusive mode
         * for read/write operations respectively.
         */
        virtual bool supportsDocLocking() const = 0;

        /**
         * Returns whether the engine supports a journalling concept or not.
         */
        virtual bool isDurable() const = 0;

        /**
         * Only MMAPv1 should override this and return true to trigger MMAPv1-specific behavior.
         */
        virtual bool isMmapV1() const { return false; }

        /**
         * Closes all file handles associated with a database.
         */
        virtual Status closeDatabase( OperationContext* txn, StringData db ) = 0;

        /**
         * Deletes all data and metadata for a database.
         */
        virtual Status dropDatabase( OperationContext* txn, StringData db ) = 0;

        /**
         * @return number of files flushed
         */
        virtual int flushAllFiles( bool sync ) = 0;

        /**
         * Recover as much data as possible from a potentially corrupt RecordStore.
         * This only recovers the record data, not indexes or anything else.
         *
         * Generally, this method should not be called directly except by the repairDatabase()
         * free function.
         *
         * NOTE: MMAPv1 does not support this method and has its own repairDatabase() method.
         */
        virtual Status repairRecordStore(OperationContext* txn, const std::string& ns) = 0;

        /**
         * This method will be called before there is a clean shutdown.  Storage engines should
         * override this method if they have clean-up to do that is different from unclean shutdown.
         * MongoDB will not call into the storage subsystem after calling this function.
         *
         * On error, the storage engine should assert and crash.
         * There is intentionally no uncleanShutdown().
         */
        virtual void cleanShutdown() = 0;

    protected:
        /**
         * The destructor will never be called. See cleanShutdown instead.
         */
        virtual ~StorageEngine() {}
    };

}  // namespace mongo