Skip to content

Commit e7a0f70

Browse files
committed
LRU tests pass
1 parent 26e9896 commit e7a0f70

File tree

3 files changed

+88
-26
lines changed

3 files changed

+88
-26
lines changed

firestore/integration_test_internal/src/firestore_test.cc

+36
Original file line numberDiff line numberDiff line change
@@ -1588,6 +1588,42 @@ TEST_F(FirestoreIntegrationTest, CannotMixNewAndLegacyCacheConfig) {
15881588
}
15891589
}
15901590

1591+
TEST_F(FirestoreIntegrationTest, CanGetDocumentFromCacheWithMemoryLruGC) {
1592+
auto* db = TestFirestore("new_persistent_cache");
1593+
auto settings = db->settings();
1594+
settings.set_local_cache_settings(
1595+
MemoryCacheSettings::Create().WithGarbageCollectorSettings(
1596+
MemoryLruGCSettings::Create()));
1597+
db->set_settings(std::move(settings));
1598+
1599+
Await(db->Document("rooms/eros")
1600+
.Set(MapFieldValue{{"desc", FieldValue::String("eros")}}));
1601+
1602+
auto get_future = db->Document("rooms/eros").Get(Source::kCache);
1603+
const DocumentSnapshot* snapshot = Await(get_future);
1604+
EXPECT_EQ(get_future.status(), FutureStatus::kFutureStatusComplete);
1605+
EXPECT_TRUE(snapshot->is_valid());
1606+
EXPECT_THAT(snapshot->GetData(),
1607+
ContainerEq(MapFieldValue{{"desc", FieldValue::String("eros")}}));
1608+
}
1609+
1610+
TEST_F(FirestoreIntegrationTest, CannotGetDocumentFromCacheFromMemoryEagerGC) {
1611+
auto* db = TestFirestore("new_persistent_cache");
1612+
auto settings = db->settings();
1613+
settings.set_local_cache_settings(
1614+
MemoryCacheSettings::Create().WithGarbageCollectorSettings(
1615+
MemoryEagerGCSettings::Create()));
1616+
db->set_settings(std::move(settings));
1617+
1618+
Await(db->Document("rooms/eros")
1619+
.Set(MapFieldValue{{"desc", FieldValue::String("eros")}}));
1620+
1621+
auto get_future = db->Document("rooms/eros").Get(Source::kCache);
1622+
const DocumentSnapshot* snapshot = Await(get_future);
1623+
EXPECT_EQ(get_future.status(), FutureStatus::kFutureStatusComplete);
1624+
EXPECT_FALSE(snapshot->is_valid());
1625+
}
1626+
15911627
// Note: this test only exists in C++.
15921628
TEST_F(FirestoreIntegrationTest, DomainObjectsReferToSameFirestoreInstance) {
15931629
EXPECT_EQ(TestFirestore(), TestFirestore()->Document("foo/bar").firestore());

firestore/src/common/local_cache_settings.cc

+10
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,16 @@ MemoryCacheSettings::MemoryCacheSettings(const MemoryCacheSettings& other) {
9797

9898
MemoryCacheSettings::~MemoryCacheSettings() { settings_internal_.reset(); }
9999

100+
MemoryCacheSettings MemoryCacheSettings::WithGarbageCollectorSettings(
101+
const MemoryGarbageCollectorSettings& settings) const {
102+
MemoryCacheSettings result{*this};
103+
CoreMemorySettings core_settings = result.settings_internal_->core_settings();
104+
result.settings_internal_->set_core_settings(
105+
core_settings.WithMemoryGarbageCollectorSettings(
106+
settings.core_gc_settings()));
107+
return result;
108+
}
109+
100110
const CoreCacheSettings& MemoryCacheSettings::core_cache_settings() const {
101111
return settings_internal_->core_settings();
102112
}

firestore/src/include/firebase/firestore/local_cache_settings.h

+42-26
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ namespace firebase {
2828
namespace firestore {
2929

3030
using CoreCacheSettings = api::LocalCacheSettings;
31+
using CoreMemoryGarbageCollectorSettings = api::MemoryGargabeCollectorSettings;
3132

3233
class PersistentCacheSettingsInternal;
3334
class MemoryCacheSettingsInternal;
@@ -57,7 +58,6 @@ class PersistentCacheSettings final : public LocalCacheSettings {
5758
friend class Settings;
5859

5960
PersistentCacheSettings();
60-
PersistentCacheSettings(const PersistentCacheSettingsInternal& other);
6161

6262
api::LocalCacheSettings::Kind kind() const override {
6363
return api::LocalCacheSettings::Kind::kPersistent;
@@ -68,57 +68,73 @@ class PersistentCacheSettings final : public LocalCacheSettings {
6868
std::unique_ptr<PersistentCacheSettingsInternal> settings_internal_;
6969
};
7070

71+
class MemoryGarbageCollectorSettings;
72+
73+
class MemoryCacheSettings final : public LocalCacheSettings {
74+
public:
75+
static MemoryCacheSettings Create();
76+
MemoryCacheSettings(const MemoryCacheSettings& other);
77+
~MemoryCacheSettings();
78+
79+
MemoryCacheSettings WithGarbageCollectorSettings(
80+
const MemoryGarbageCollectorSettings& settings) const;
81+
82+
private:
83+
friend class Settings;
84+
85+
MemoryCacheSettings();
86+
87+
api::LocalCacheSettings::Kind kind() const override {
88+
return api::LocalCacheSettings::Kind::kMemory;
89+
}
90+
91+
const CoreCacheSettings& core_cache_settings() const override;
92+
93+
std::unique_ptr<MemoryCacheSettingsInternal> settings_internal_;
94+
};
95+
7196
class MemoryGarbageCollectorSettings {
7297
public:
7398
virtual ~MemoryGarbageCollectorSettings() = default;
7499

75100
private:
101+
friend class MemoryCacheSettings;
102+
virtual const CoreMemoryGarbageCollectorSettings& core_gc_settings()
103+
const = 0;
76104
};
77105

78-
class MemoryEagerGCSettings final : MemoryGarbageCollectorSettings {
106+
class MemoryEagerGCSettings final : public MemoryGarbageCollectorSettings {
107+
public:
79108
static MemoryEagerGCSettings Create();
80109
~MemoryEagerGCSettings();
81110

82111
private:
112+
friend class MemoryCacheSettings;
83113
MemoryEagerGCSettings();
84114

115+
const CoreMemoryGarbageCollectorSettings& core_gc_settings() const override {
116+
return settings_internal_->core_settings();
117+
}
118+
85119
std::unique_ptr<MemoryEagerGCSettingsInternal> settings_internal_;
86120
};
87121

88-
class MemoryLruGCSettings final : MemoryGarbageCollectorSettings {
122+
class MemoryLruGCSettings final : public MemoryGarbageCollectorSettings {
123+
public:
89124
static MemoryLruGCSettings Create();
90125
~MemoryLruGCSettings();
91126
MemoryLruGCSettings WithSizeBytes(int64_t size);
92127

93128
private:
129+
friend class MemoryCacheSettings;
94130
MemoryLruGCSettings();
95131
MemoryLruGCSettings(const MemoryLruGCSettingsInternal& other);
96132

97-
std::unique_ptr<MemoryLruGCSettingsInternal> settings_internal_;
98-
};
99-
100-
class MemoryCacheSettings final : public LocalCacheSettings {
101-
public:
102-
static MemoryCacheSettings Create();
103-
MemoryCacheSettings(const MemoryCacheSettings& other);
104-
~MemoryCacheSettings();
105-
106-
MemoryCacheSettings WithGarbageCollectorSettings(
107-
const MemoryGarbageCollectorSettings& settings);
108-
109-
private:
110-
friend class Settings;
111-
112-
MemoryCacheSettings();
113-
MemoryCacheSettings(const MemoryCacheSettingsInternal& other);
114-
115-
api::LocalCacheSettings::Kind kind() const override {
116-
return api::LocalCacheSettings::Kind::kMemory;
133+
const CoreMemoryGarbageCollectorSettings& core_gc_settings() const override {
134+
return settings_internal_->core_settings();
117135
}
118136

119-
const CoreCacheSettings& core_cache_settings() const override;
120-
121-
std::unique_ptr<MemoryCacheSettingsInternal> settings_internal_;
137+
std::unique_ptr<MemoryLruGCSettingsInternal> settings_internal_;
122138
};
123139

124140
} // namespace firestore

0 commit comments

Comments
 (0)