123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /*************************************************************************
- *
- * Copyright 2016 Realm 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.
- *
- **************************************************************************/
- #ifndef REALM_GROUP_SHARED_OPTIONS_HPP
- #define REALM_GROUP_SHARED_OPTIONS_HPP
- #include <functional>
- #include <string>
- #include <realm/backup_restore.hpp>
- namespace realm {
- struct DBOptions {
- /// The persistence level of the DB.
- /// uint16_t is the type of DB::SharedInfo::durability
- enum class Durability : uint16_t {
- Full,
- MemOnly,
- Unsafe // If you use this, you loose ACID property
- };
- explicit DBOptions(Durability level = Durability::Full, const char* key = nullptr)
- : durability(level)
- , encryption_key(key)
- {
- }
- explicit DBOptions(const char* key)
- : encryption_key(key)
- {
- }
- /// The persistence level of the Realm file. See Durability.
- Durability durability = Durability::Full;
- /// The key to encrypt and decrypt the Realm file with, or nullptr to
- /// indicate that encryption should not be used.
- const char* encryption_key;
- /// If \a allow_file_format_upgrade is set to `true`, this function will
- /// automatically upgrade the file format used in the specified Realm file
- /// if necessary (and if it is possible). In order to prevent this, set \a
- /// allow_upgrade to `false`.
- ///
- /// If \a allow_upgrade is set to `false`, only two outcomes are possible:
- ///
- /// - the specified Realm file is already using the latest file format, and
- /// can be used, or
- ///
- /// - the specified Realm file uses a deprecated file format, resulting a
- /// the throwing of FileFormatUpgradeRequired.
- bool allow_file_format_upgrade = true;
- /// Optionally allows a custom function to be called immediately after the
- /// Realm file is upgraded. The two parameters in the function are the
- /// previous version and the version just upgraded to, respectively.
- /// If the callback function throws, the Realm file will safely abort the
- /// upgrade (rollback the transaction) but the DB will not be opened.
- std::function<void(int, int)> upgrade_callback;
- /// Optionally supply a logger
- std::shared_ptr<util::Logger> logger;
- /// A path to a directory where Realm can write temporary files or pipes to.
- /// This string should include a trailing slash '/'.
- std::string temp_dir = sys_tmp_dir;
- /// Controls the feature of collecting various metrics to the DB.
- /// A prerequisite is compiling with REALM_METRICS=ON.
- bool enable_metrics = false;
- /// The maximum number of entries stored by the metrics (if enabled). If this number
- /// is exceeded without being consumed, only the most recent entries will be stored.
- size_t metrics_buffer_size = 10000;
- /// is_immutable should be set to true if run from a read-only file system.
- /// this will prevent the DB from making any writes, also disabling the creation
- /// of write transactions.
- bool is_immutable = false;
- /// Disable automatic backup at file format upgrade by setting to false
- bool backup_at_file_format_change = true;
- /// List of versions we can upgrade from
- BackupHandler::VersionList accepted_versions = BackupHandler::accepted_versions_;
- /// List of versions for which backup files are automatically removed at specified age.
- BackupHandler::VersionTimeList to_be_deleted = BackupHandler::delete_versions_;
- /// Must be set for the async writes feature to be used. On some platforms
- /// this will make *all* writes async and then wait on the result, which has
- /// a performance impact.
- bool enable_async_writes = false;
- /// sys_tmp_dir will be used if the temp_dir is empty when creating DBOptions.
- /// It must be writable and allowed to create pipe/fifo file on it.
- /// set_sys_tmp_dir is not a thread-safe call and it is only supposed to be called once
- // when process starts.
- static void set_sys_tmp_dir(const std::string& dir) noexcept
- {
- sys_tmp_dir = dir;
- }
- static std::string get_sys_tmp_dir() noexcept
- {
- return sys_tmp_dir;
- }
- private:
- static std::string sys_tmp_dir;
- };
- } // end namespace realm
- #endif // REALM_GROUP_SHARED_OPTIONS_HPP
|