db_options.hpp 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*************************************************************************
  2. *
  3. * Copyright 2016 Realm Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. **************************************************************************/
  18. #ifndef REALM_GROUP_SHARED_OPTIONS_HPP
  19. #define REALM_GROUP_SHARED_OPTIONS_HPP
  20. #include <functional>
  21. #include <string>
  22. #include <realm/backup_restore.hpp>
  23. namespace realm {
  24. struct DBOptions {
  25. /// The persistence level of the DB.
  26. /// uint16_t is the type of DB::SharedInfo::durability
  27. enum class Durability : uint16_t {
  28. Full,
  29. MemOnly,
  30. Unsafe // If you use this, you loose ACID property
  31. };
  32. explicit DBOptions(Durability level = Durability::Full, const char* key = nullptr)
  33. : durability(level)
  34. , encryption_key(key)
  35. {
  36. }
  37. explicit DBOptions(const char* key)
  38. : encryption_key(key)
  39. {
  40. }
  41. /// The persistence level of the Realm file. See Durability.
  42. Durability durability = Durability::Full;
  43. /// The key to encrypt and decrypt the Realm file with, or nullptr to
  44. /// indicate that encryption should not be used.
  45. const char* encryption_key;
  46. /// If \a allow_file_format_upgrade is set to `true`, this function will
  47. /// automatically upgrade the file format used in the specified Realm file
  48. /// if necessary (and if it is possible). In order to prevent this, set \a
  49. /// allow_upgrade to `false`.
  50. ///
  51. /// If \a allow_upgrade is set to `false`, only two outcomes are possible:
  52. ///
  53. /// - the specified Realm file is already using the latest file format, and
  54. /// can be used, or
  55. ///
  56. /// - the specified Realm file uses a deprecated file format, resulting a
  57. /// the throwing of FileFormatUpgradeRequired.
  58. bool allow_file_format_upgrade = true;
  59. /// Optionally allows a custom function to be called immediately after the
  60. /// Realm file is upgraded. The two parameters in the function are the
  61. /// previous version and the version just upgraded to, respectively.
  62. /// If the callback function throws, the Realm file will safely abort the
  63. /// upgrade (rollback the transaction) but the DB will not be opened.
  64. std::function<void(int, int)> upgrade_callback;
  65. /// Optionally supply a logger
  66. std::shared_ptr<util::Logger> logger;
  67. /// A path to a directory where Realm can write temporary files or pipes to.
  68. /// This string should include a trailing slash '/'.
  69. std::string temp_dir = sys_tmp_dir;
  70. /// Controls the feature of collecting various metrics to the DB.
  71. /// A prerequisite is compiling with REALM_METRICS=ON.
  72. bool enable_metrics = false;
  73. /// The maximum number of entries stored by the metrics (if enabled). If this number
  74. /// is exceeded without being consumed, only the most recent entries will be stored.
  75. size_t metrics_buffer_size = 10000;
  76. /// is_immutable should be set to true if run from a read-only file system.
  77. /// this will prevent the DB from making any writes, also disabling the creation
  78. /// of write transactions.
  79. bool is_immutable = false;
  80. /// Disable automatic backup at file format upgrade by setting to false
  81. bool backup_at_file_format_change = true;
  82. /// List of versions we can upgrade from
  83. BackupHandler::VersionList accepted_versions = BackupHandler::accepted_versions_;
  84. /// List of versions for which backup files are automatically removed at specified age.
  85. BackupHandler::VersionTimeList to_be_deleted = BackupHandler::delete_versions_;
  86. /// Must be set for the async writes feature to be used. On some platforms
  87. /// this will make *all* writes async and then wait on the result, which has
  88. /// a performance impact.
  89. bool enable_async_writes = false;
  90. /// sys_tmp_dir will be used if the temp_dir is empty when creating DBOptions.
  91. /// It must be writable and allowed to create pipe/fifo file on it.
  92. /// set_sys_tmp_dir is not a thread-safe call and it is only supposed to be called once
  93. // when process starts.
  94. static void set_sys_tmp_dir(const std::string& dir) noexcept
  95. {
  96. sys_tmp_dir = dir;
  97. }
  98. static std::string get_sys_tmp_dir() noexcept
  99. {
  100. return sys_tmp_dir;
  101. }
  102. private:
  103. static std::string sys_tmp_dir;
  104. };
  105. } // end namespace realm
  106. #endif // REALM_GROUP_SHARED_OPTIONS_HPP