db_options.hpp 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. Async, ///< Not yet supported on windows.
  31. Unsafe // If you use this, you loose ACID property
  32. };
  33. using version_list_t = BackupHandler::version_list_t;
  34. using version_time_list_t = BackupHandler::version_time_list_t;
  35. explicit DBOptions(Durability level = Durability::Full, const char* key = nullptr, bool allow_upgrade = true,
  36. std::function<void(int, int)> file_upgrade_callback = std::function<void(int, int)>(),
  37. std::string temp_directory = sys_tmp_dir, bool track_metrics = false,
  38. size_t metrics_history_size = 10000, bool backup_at_file_format_change = true)
  39. : durability(level)
  40. , encryption_key(key)
  41. , allow_file_format_upgrade(allow_upgrade)
  42. , upgrade_callback(file_upgrade_callback)
  43. , temp_dir(temp_directory)
  44. , enable_metrics(track_metrics)
  45. , metrics_buffer_size(metrics_history_size)
  46. , backup_at_file_format_change(backup_at_file_format_change)
  47. , accepted_versions(BackupHandler::accepted_versions_)
  48. , to_be_deleted(BackupHandler::delete_versions_)
  49. {
  50. }
  51. explicit DBOptions(const char* key)
  52. : durability(Durability::Full)
  53. , encryption_key(key)
  54. , allow_file_format_upgrade(true)
  55. , upgrade_callback(std::function<void(int, int)>())
  56. , temp_dir(sys_tmp_dir)
  57. , enable_metrics(false)
  58. , metrics_buffer_size(10000)
  59. , backup_at_file_format_change(true)
  60. , accepted_versions(BackupHandler::accepted_versions_)
  61. , to_be_deleted(BackupHandler::delete_versions_)
  62. {
  63. }
  64. /// The persistence level of the Realm file. See Durability.
  65. Durability durability;
  66. /// The key to encrypt and decrypt the Realm file with, or nullptr to
  67. /// indicate that encryption should not be used.
  68. const char* encryption_key;
  69. /// If \a allow_file_format_upgrade is set to `true`, this function will
  70. /// automatically upgrade the file format used in the specified Realm file
  71. /// if necessary (and if it is possible). In order to prevent this, set \a
  72. /// allow_upgrade to `false`.
  73. ///
  74. /// If \a allow_upgrade is set to `false`, only two outcomes are possible:
  75. ///
  76. /// - the specified Realm file is already using the latest file format, and
  77. /// can be used, or
  78. ///
  79. /// - the specified Realm file uses a deprecated file format, resulting a
  80. /// the throwing of FileFormatUpgradeRequired.
  81. bool allow_file_format_upgrade;
  82. /// Optionally allows a custom function to be called immediately after the
  83. /// Realm file is upgraded. The two parameters in the function are the
  84. /// previous version and the version just upgraded to, respectively.
  85. /// If the callback function throws, the Realm file will safely abort the
  86. /// upgrade (rollback the transaction) but the DB will not be opened.
  87. std::function<void(int, int)> upgrade_callback;
  88. /// A path to a directory where Realm can write temporary files or pipes to.
  89. /// This string should include a trailing slash '/'.
  90. std::string temp_dir;
  91. /// Controls the feature of collecting various metrics to the DB.
  92. /// A prerequisite is compiling with REALM_METRICS=ON.
  93. bool enable_metrics;
  94. /// The maximum number of entries stored by the metrics (if enabled). If this number
  95. /// is exceeded without being consumed, only the most recent entries will be stored.
  96. size_t metrics_buffer_size;
  97. /// is_immutable should be set to true if run from a read-only file system.
  98. /// this will prevent the DB from making any writes, also disabling the creation
  99. /// of write transactions.
  100. bool is_immutable = false;
  101. /// Disable automatic backup at file format upgrade by setting to false
  102. bool backup_at_file_format_change;
  103. /// List of versions we can upgrade from
  104. BackupHandler::version_list_t accepted_versions;
  105. /// List of versions for which backup files are automatically removed at specified age.
  106. BackupHandler::version_time_list_t to_be_deleted;
  107. /// sys_tmp_dir will be used if the temp_dir is empty when creating DBOptions.
  108. /// It must be writable and allowed to create pipe/fifo file on it.
  109. /// set_sys_tmp_dir is not a thread-safe call and it is only supposed to be called once
  110. // when process starts.
  111. static void set_sys_tmp_dir(const std::string& dir) noexcept
  112. {
  113. sys_tmp_dir = dir;
  114. }
  115. static std::string get_sys_tmp_dir() noexcept
  116. {
  117. return sys_tmp_dir;
  118. }
  119. private:
  120. static std::string sys_tmp_dir;
  121. };
  122. } // end namespace realm
  123. #endif // REALM_GROUP_SHARED_OPTIONS_HPP