Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3390081
D7469.id25497.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
5 KB
Referenced Files
None
Subscribers
None
D7469.id25497.diff
View Options
diff --git a/lib/types/message-types.js b/lib/types/message-types.js
--- a/lib/types/message-types.js
+++ b/lib/types/message-types.js
@@ -452,6 +452,18 @@
+payload: ClientDBMessageInfo,
};
+export type ClientDBThreadMessageInfo = {
+ +id: string,
+ +start_reached: string,
+ +last_navigated_to: string,
+ +last_pruned: string,
+};
+
+export type ClientDBReplaceThreadsOperation = {
+ +type: 'replace_threads',
+ +payload: { +threads: $ReadOnlyArray<ClientDBThreadMessageInfo> },
+};
+
export type MessageStoreOperation =
| RemoveMessageOperation
| ReplaceMessageOperation
@@ -467,7 +479,10 @@
| ClientDBReplaceMessageOperation
| RekeyMessageOperation
| RemoveMessagesForThreadsOperation
- | RemoveAllMessagesOperation;
+ | RemoveAllMessagesOperation
+ | ClientDBReplaceThreadsOperation
+ | RemoveMessageStoreThreadsOperation
+ | RemoveMessageStoreAllThreadsOperation;
export const messageTruncationStatus = Object.freeze({
// EXHAUSTIVE means we've reached the start of the thread. Either the result
diff --git a/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp b/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
--- a/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
+++ b/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
@@ -436,6 +436,10 @@
"remove_messages_for_threads";
const std::string REMOVE_ALL_OPERATION = "remove_all";
+const std::string REPLACE_MESSAGE_THREADS_OPERATION = "replace_threads";
+const std::string REMOVE_MESSAGE_THREADS_OPERATION = "remove_threads";
+const std::string REMOVE_ALL_MESSAGE_THREADS_OPERATION = "remove_all_threads";
+
std::vector<std::unique_ptr<MessageStoreOperationBase>>
createMessageStoreOperations(jsi::Runtime &rt, const jsi::Array &operations) {
@@ -449,6 +453,11 @@
messageStoreOps.push_back(std::make_unique<RemoveAllMessagesOperation>());
continue;
}
+ if (op_type == REMOVE_ALL_MESSAGE_THREADS_OPERATION) {
+ messageStoreOps.push_back(
+ std::make_unique<RemoveAllMessageStoreThreadsOperation>());
+ continue;
+ }
auto payload_obj = op.getProperty(rt, "payload").asObject(rt);
if (op_type == REMOVE_OPERATION) {
@@ -467,6 +476,13 @@
messageStoreOps.push_back(
std::make_unique<RekeyMessageOperation>(rt, payload_obj));
+ } else if (op_type == REPLACE_MESSAGE_THREADS_OPERATION) {
+ messageStoreOps.push_back(
+ std::make_unique<ReplaceMessageThreadsOperation>(rt, payload_obj));
+ } else if (op_type == REMOVE_MESSAGE_THREADS_OPERATION) {
+ messageStoreOps.push_back(
+ std::make_unique<RemoveMessageStoreThreadsOperation>(
+ rt, payload_obj));
} else {
throw std::runtime_error("unsupported operation: " + op_type);
}
diff --git a/native/cpp/CommonCpp/NativeModules/MessageStoreOperations.h b/native/cpp/CommonCpp/NativeModules/MessageStoreOperations.h
--- a/native/cpp/CommonCpp/NativeModules/MessageStoreOperations.h
+++ b/native/cpp/CommonCpp/NativeModules/MessageStoreOperations.h
@@ -159,4 +159,64 @@
}
};
+class ReplaceMessageThreadsOperation : public MessageStoreOperationBase {
+public:
+ ReplaceMessageThreadsOperation(jsi::Runtime &rt, const jsi::Object &payload)
+ : msg_threads{} {
+ auto threads = payload.getProperty(rt, "threads").asObject(rt).asArray(rt);
+ for (size_t idx = 0; idx < threads.size(rt); idx++) {
+ auto thread = threads.getValueAtIndex(rt, idx).asObject(rt);
+
+ auto thread_id = thread.getProperty(rt, "id").asString(rt).utf8(rt);
+ auto start_reached = std::stoi(
+ thread.getProperty(rt, "start_reached").asString(rt).utf8(rt));
+ auto last_navigated_to = std::stoll(
+ thread.getProperty(rt, "last_navigated_to").asString(rt).utf8(rt));
+ auto last_pruned = std::stoll(
+ thread.getProperty(rt, "last_pruned").asString(rt).utf8(rt));
+
+ MessageStoreThread msg_thread = MessageStoreThread{
+ thread_id, start_reached, last_navigated_to, last_pruned};
+ this->msg_threads.push_back(msg_thread);
+ }
+ }
+
+ virtual void execute() override {
+ DatabaseManager::getQueryExecutor().replaceMessageStoreThreads(
+ this->msg_threads);
+ }
+
+private:
+ std::vector<MessageStoreThread> msg_threads;
+};
+
+class RemoveAllMessageStoreThreadsOperation : public MessageStoreOperationBase {
+public:
+ virtual void execute() override {
+ DatabaseManager::getQueryExecutor().removeAllMessageStoreThreads();
+ }
+};
+
+class RemoveMessageStoreThreadsOperation : public MessageStoreOperationBase {
+public:
+ RemoveMessageStoreThreadsOperation(
+ jsi::Runtime &rt,
+ const jsi::Object &payload)
+ : thread_ids{} {
+ auto payload_ids = payload.getProperty(rt, "ids").asObject(rt).asArray(rt);
+ for (size_t idx = 0; idx < payload_ids.size(rt); idx++) {
+ this->thread_ids.push_back(
+ payload_ids.getValueAtIndex(rt, idx).asString(rt).utf8(rt));
+ }
+ }
+
+ virtual void execute() override {
+ DatabaseManager::getQueryExecutor().removeMessageStoreThreads(
+ this->thread_ids);
+ }
+
+private:
+ std::vector<std::string> thread_ids;
+};
+
} // namespace comm
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 30, 10:02 PM (19 h, 24 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2602559
Default Alt Text
D7469.id25497.diff (5 KB)
Attached To
Mode
D7469: [CommCoreModule] implement ops for message store threads
Attached
Detach File
Event Timeline
Log In to Comment