17
17
#include " firestore/src/include/firebase/firestore/local_cache_settings.h"
18
18
#include < memory>
19
19
20
- #include " Firestore/core/src/api/settings.h"
21
20
#include " firestore/src/common/hard_assert_common.h"
22
21
#if defined(__ANDROID__)
23
22
#else
27
26
namespace firebase {
28
27
namespace firestore {
29
28
30
- namespace {
31
- using CoreCacheSettings = api::LocalCacheSettings;
32
- using CorePersistentSettings = api::PersistentCacheSettings;
33
- using CoreMemorySettings = api::MemoryCacheSettings;
34
- using CoreMemoryGarbageCollectorSettings = api::MemoryGargabeCollectorSettings;
35
- using CoreMemoryEagerGcSettings = api::MemoryEagerGcSettings;
36
- using CoreMemoryLruGcSettings = api::MemoryLruGcSettings;
37
- } // namespace
38
-
39
29
PersistentCacheSettings PersistentCacheSettings::Create () { return {}; }
40
30
41
31
PersistentCacheSettings::PersistentCacheSettings () {
42
- settings_internal_ = std::make_shared<PersistentCacheSettingsInternal>(
43
- CorePersistentSettings{});
32
+ settings_internal_ = std::make_shared<PersistentCacheSettingsInternal>();
44
33
}
45
34
46
35
PersistentCacheSettings PersistentCacheSettings::WithSizeBytes (
47
36
int64_t size) const {
48
- PersistentCacheSettings new_settings{*this };
49
- new_settings.settings_internal_ ->set_core_settings (
50
- new_settings.settings_internal_ ->core_settings ().WithSizeBytes (size));
37
+ PersistentCacheSettings new_settings;
38
+ new_settings.settings_internal_ =
39
+ std::make_shared<PersistentCacheSettingsInternal>(
40
+ this ->settings_internal_ ->WithSizeBytes (size));
51
41
return new_settings;
52
42
}
53
43
54
44
int64_t PersistentCacheSettings::size_bytes () const {
55
- return settings_internal_->core_settings (). size_bytes ();
45
+ return settings_internal_->size_bytes ();
56
46
}
57
47
58
- const CoreCacheSettings & PersistentCacheSettings::core_settings () const {
59
- return settings_internal_-> core_settings () ;
48
+ const LocalCacheSettingsInternal & PersistentCacheSettings::internal () const {
49
+ return * settings_internal_;
60
50
}
61
51
62
52
MemoryEagerGCSettings MemoryEagerGCSettings::Create () { return {}; }
63
53
64
54
MemoryEagerGCSettings::MemoryEagerGCSettings () {
65
- settings_internal_ = std::make_shared<MemoryEagerGCSettingsInternal>(
66
- CoreMemoryEagerGcSettings{});
55
+ settings_internal_ = std::make_shared<MemoryEagerGCSettingsInternal>();
67
56
}
68
57
69
- const CoreMemoryGarbageCollectorSettings & MemoryEagerGCSettings::core_settings ()
58
+ const MemoryGarbageCollectorSettingsInternal & MemoryEagerGCSettings::internal ()
70
59
const {
71
- return settings_internal_-> core_settings () ;
60
+ return * settings_internal_;
72
61
}
73
62
74
63
MemoryLruGCSettings MemoryLruGCSettings::Create () { return {}; }
75
64
76
65
MemoryLruGCSettings::MemoryLruGCSettings () {
77
- settings_internal_ =
78
- std::make_shared<MemoryLruGCSettingsInternal>(CoreMemoryLruGcSettings{});
66
+ settings_internal_ = std::make_shared<MemoryLruGCSettingsInternal>();
79
67
}
80
68
81
69
MemoryLruGCSettings::MemoryLruGCSettings (
@@ -84,42 +72,41 @@ MemoryLruGCSettings::MemoryLruGCSettings(
84
72
}
85
73
86
74
MemoryLruGCSettings MemoryLruGCSettings::WithSizeBytes (int64_t size) {
87
- return {MemoryLruGCSettingsInternal{
88
- settings_internal_->core_settings ().WithSizeBytes (size)}};
75
+ MemoryLruGCSettings result;
76
+ result.settings_internal_ = std::make_shared<MemoryLruGCSettingsInternal>(
77
+ this ->settings_internal_ ->WithSizeBytes (size));
78
+ return result;
89
79
}
90
80
91
81
int64_t MemoryLruGCSettings::size_bytes () const {
92
- return settings_internal_->core_settings (). size_bytes ();
82
+ return settings_internal_->size_bytes ();
93
83
}
94
84
95
- const CoreMemoryGarbageCollectorSettings & MemoryLruGCSettings::core_settings ()
85
+ const MemoryGarbageCollectorSettingsInternal & MemoryLruGCSettings::internal ()
96
86
const {
97
- return settings_internal_-> core_settings () ;
87
+ return * settings_internal_;
98
88
}
99
89
100
90
MemoryCacheSettings MemoryCacheSettings::Create () { return {}; }
101
91
102
92
MemoryCacheSettings::MemoryCacheSettings () {
103
- settings_internal_ =
104
- std::make_shared<MemoryCacheSettingsInternal>(CoreMemorySettings{});
93
+ settings_internal_ = std::make_shared<MemoryCacheSettingsInternal>();
105
94
}
106
95
107
96
MemoryCacheSettings MemoryCacheSettings::WithGarbageCollectorSettings (
108
97
const MemoryGarbageCollectorSettings& settings) const {
109
- MemoryCacheSettings result{*this };
110
- CoreMemorySettings core_settings = result.settings_internal_ ->core_settings ();
111
- result.settings_internal_ ->set_core_settings (
112
- core_settings.WithMemoryGarbageCollectorSettings (
113
- settings.core_settings ()));
98
+ MemoryCacheSettings result;
99
+ result.settings_internal_ = std::make_shared<MemoryCacheSettingsInternal>(
100
+ this ->settings_internal_ ->WithGarbageCollectorSettings (settings));
114
101
return result;
115
102
}
116
103
117
- const CoreCacheSettings & MemoryCacheSettings::core_settings () const {
118
- return settings_internal_-> core_settings () ;
104
+ const LocalCacheSettingsInternal & MemoryCacheSettings::internal () const {
105
+ return * settings_internal_;
119
106
}
120
107
121
108
bool operator ==(const LocalCacheSettings& lhs, const LocalCacheSettings& rhs) {
122
- return lhs.kind () == rhs.kind () && lhs.core_settings () == rhs.core_settings ();
109
+ return lhs.kind () == rhs.kind () && lhs.internal () == rhs.internal ();
123
110
}
124
111
125
112
bool operator ==(const MemoryCacheSettings& lhs,
@@ -134,7 +121,7 @@ bool operator==(const PersistentCacheSettings& lhs,
134
121
135
122
bool operator ==(const MemoryGarbageCollectorSettings& lhs,
136
123
const MemoryGarbageCollectorSettings& rhs) {
137
- return lhs.core_settings () == rhs.core_settings ();
124
+ return lhs.internal () == rhs.internal ();
138
125
}
139
126
140
127
bool operator ==(const MemoryEagerGCSettings& lhs,
0 commit comments