-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SessionToken persistence implementation (#13684)
Co-authored-by: Wu-Hui <[email protected]>
- Loading branch information
1 parent
96ca3cd
commit 2893101
Showing
18 changed files
with
594 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/** | ||
* @license | ||
* Copyright 2024 Google LLC | ||
* | ||
* 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 FIRESTORE_CORE_SRC_LOCAL_GLOBALS_CACHE_H_ | ||
#define FIRESTORE_CORE_SRC_LOCAL_GLOBALS_CACHE_H_ | ||
|
||
#include "Firestore/core/src/nanopb/byte_string.h" | ||
|
||
using firebase::firestore::nanopb::ByteString; | ||
|
||
namespace firebase { | ||
namespace firestore { | ||
namespace local { | ||
|
||
/** | ||
* General purpose cache for global values. | ||
* | ||
* Global state that cuts across components should be saved here. Following are | ||
* contained herein: | ||
* | ||
* `sessionToken` tracks server interaction across Listen and Write streams. | ||
* This facilitates cache synchronization and invalidation. | ||
*/ | ||
class GlobalsCache { | ||
public: | ||
virtual ~GlobalsCache() = default; | ||
|
||
/** | ||
* Gets session token. | ||
*/ | ||
virtual ByteString GetSessionToken() const = 0; | ||
|
||
/** | ||
* Sets session token. | ||
*/ | ||
virtual void SetSessionToken(const ByteString& session_token) = 0; | ||
}; | ||
|
||
} // namespace local | ||
} // namespace firestore | ||
} // namespace firebase | ||
|
||
#endif // FIRESTORE_CORE_SRC_LOCAL_GLOBALS_CACHE_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright 2024 Google LLC | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include <string> | ||
|
||
#include "Firestore/core/src/local/leveldb_globals_cache.h" | ||
#include "Firestore/core/src/local/leveldb_key.h" | ||
#include "Firestore/core/src/local/leveldb_persistence.h" | ||
|
||
namespace firebase { | ||
namespace firestore { | ||
namespace local { | ||
|
||
namespace { | ||
|
||
const char* kSessionToken = "session_token"; | ||
|
||
} | ||
|
||
LevelDbGlobalsCache::LevelDbGlobalsCache(LevelDbPersistence* db) | ||
: db_(NOT_NULL(db)) { | ||
} | ||
|
||
ByteString LevelDbGlobalsCache::GetSessionToken() const { | ||
auto key = LevelDbGlobalKey::Key(kSessionToken); | ||
|
||
std::string encoded; | ||
auto done = db_->current_transaction()->Get(key, &encoded); | ||
|
||
if (!done.ok()) { | ||
return ByteString(); | ||
} | ||
|
||
return ByteString(encoded); | ||
} | ||
|
||
void LevelDbGlobalsCache::SetSessionToken(const ByteString& session_token) { | ||
auto key = LevelDbGlobalKey::Key(kSessionToken); | ||
db_->current_transaction()->Put(key, session_token.ToString()); | ||
} | ||
|
||
} // namespace local | ||
} // namespace firestore | ||
} // namespace firebase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright 2024 Google LLC | ||
* | ||
* 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 FIRESTORE_CORE_SRC_LOCAL_LEVELDB_GLOBALS_CACHE_H_ | ||
#define FIRESTORE_CORE_SRC_LOCAL_LEVELDB_GLOBALS_CACHE_H_ | ||
|
||
#include "Firestore/core/src/local/globals_cache.h" | ||
|
||
namespace firebase { | ||
namespace firestore { | ||
namespace local { | ||
|
||
class LevelDbPersistence; | ||
|
||
class LevelDbGlobalsCache : public GlobalsCache { | ||
public: | ||
/** Creates a new bundle cache in the given LevelDB. */ | ||
explicit LevelDbGlobalsCache(LevelDbPersistence* db); | ||
|
||
/** | ||
* Gets session token. | ||
*/ | ||
ByteString GetSessionToken() const override; | ||
|
||
/** | ||
* Sets session token. | ||
*/ | ||
void SetSessionToken(const ByteString& session_token) override; | ||
|
||
private: | ||
// The LevelDbGlobalsCache is owned by LevelDbPersistence. | ||
LevelDbPersistence* db_ = nullptr; | ||
}; | ||
|
||
} // namespace local | ||
} // namespace firestore | ||
} // namespace firebase | ||
|
||
#endif // FIRESTORE_CORE_SRC_LOCAL_LEVELDB_GLOBALS_CACHE_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright 2024 Google LLC | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include "Firestore/core/src/local/memory_globals_cache.h" | ||
|
||
namespace firebase { | ||
namespace firestore { | ||
namespace local { | ||
|
||
ByteString MemoryGlobalsCache::GetSessionToken() const { | ||
return session_token_; | ||
} | ||
|
||
void MemoryGlobalsCache::SetSessionToken(const ByteString& session_token) { | ||
session_token_ = session_token; | ||
} | ||
|
||
} // namespace local | ||
} // namespace firestore | ||
} // namespace firebase |
Oops, something went wrong.