forked from GitHub-Mirror/riotX-android
Timeline : change some database details to make it faster
This commit is contained in:
parent
4154df7c21
commit
a6366e47fe
@ -89,16 +89,20 @@ internal fun ChunkEntity.add(roomId: String,
|
|||||||
var currentDisplayIndex = lastDisplayIndex(direction, 0)
|
var currentDisplayIndex = lastDisplayIndex(direction, 0)
|
||||||
if (direction == PaginationDirection.FORWARDS) {
|
if (direction == PaginationDirection.FORWARDS) {
|
||||||
currentDisplayIndex += 1
|
currentDisplayIndex += 1
|
||||||
|
forwardsDisplayIndex = currentDisplayIndex
|
||||||
} else {
|
} else {
|
||||||
currentDisplayIndex -= 1
|
currentDisplayIndex -= 1
|
||||||
|
backwardsDisplayIndex = currentDisplayIndex
|
||||||
}
|
}
|
||||||
var currentStateIndex = lastStateIndex(direction, defaultValue = stateIndexOffset)
|
var currentStateIndex = lastStateIndex(direction, defaultValue = stateIndexOffset)
|
||||||
if (direction == PaginationDirection.FORWARDS && EventType.isStateEvent(event.type)) {
|
if (direction == PaginationDirection.FORWARDS && EventType.isStateEvent(event.type)) {
|
||||||
currentStateIndex += 1
|
currentStateIndex += 1
|
||||||
|
forwardsStateIndex = currentStateIndex
|
||||||
} else if (direction == PaginationDirection.BACKWARDS && events.isNotEmpty()) {
|
} else if (direction == PaginationDirection.BACKWARDS && events.isNotEmpty()) {
|
||||||
val lastEventType = events.last()?.type ?: ""
|
val lastEventType = events.last()?.type ?: ""
|
||||||
if (EventType.isStateEvent(lastEventType)) {
|
if (EventType.isStateEvent(lastEventType)) {
|
||||||
currentStateIndex -= 1
|
currentStateIndex -= 1
|
||||||
|
backwardsStateIndex = currentStateIndex
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val eventEntity = event.toEntity(roomId).apply {
|
val eventEntity = event.toEntity(roomId).apply {
|
||||||
@ -119,14 +123,14 @@ private fun ChunkEntity.assertIsManaged() {
|
|||||||
|
|
||||||
internal fun ChunkEntity.lastDisplayIndex(direction: PaginationDirection, defaultValue: Int = 0): Int {
|
internal fun ChunkEntity.lastDisplayIndex(direction: PaginationDirection, defaultValue: Int = 0): Int {
|
||||||
return when (direction) {
|
return when (direction) {
|
||||||
PaginationDirection.FORWARDS -> events.where().sort(EventEntityFields.DISPLAY_INDEX, Sort.DESCENDING).findFirst()?.displayIndex
|
PaginationDirection.FORWARDS -> forwardsDisplayIndex
|
||||||
PaginationDirection.BACKWARDS -> events.where().sort(EventEntityFields.DISPLAY_INDEX, Sort.ASCENDING).findFirst()?.displayIndex
|
PaginationDirection.BACKWARDS -> backwardsDisplayIndex
|
||||||
} ?: defaultValue
|
} ?: defaultValue
|
||||||
}
|
}
|
||||||
|
|
||||||
internal fun ChunkEntity.lastStateIndex(direction: PaginationDirection, defaultValue: Int = 0): Int {
|
internal fun ChunkEntity.lastStateIndex(direction: PaginationDirection, defaultValue: Int = 0): Int {
|
||||||
return when (direction) {
|
return when (direction) {
|
||||||
PaginationDirection.FORWARDS -> events.where().sort(EventEntityFields.STATE_INDEX, Sort.DESCENDING).findFirst()?.stateIndex
|
PaginationDirection.FORWARDS -> forwardsStateIndex
|
||||||
PaginationDirection.BACKWARDS -> events.where().sort(EventEntityFields.STATE_INDEX, Sort.ASCENDING).findFirst()?.stateIndex
|
PaginationDirection.BACKWARDS -> backwardsStateIndex
|
||||||
} ?: defaultValue
|
} ?: defaultValue
|
||||||
}
|
}
|
@ -26,7 +26,11 @@ internal open class ChunkEntity(@Index var prevToken: String? = null,
|
|||||||
@Index var nextToken: String? = null,
|
@Index var nextToken: String? = null,
|
||||||
var events: RealmList<EventEntity> = RealmList(),
|
var events: RealmList<EventEntity> = RealmList(),
|
||||||
@Index var isLastForward: Boolean = false,
|
@Index var isLastForward: Boolean = false,
|
||||||
@Index var isLastBackward: Boolean = false
|
@Index var isLastBackward: Boolean = false,
|
||||||
|
var backwardsDisplayIndex: Int? = null,
|
||||||
|
var forwardsDisplayIndex: Int? = null,
|
||||||
|
var backwardsStateIndex: Int? = null,
|
||||||
|
var forwardsStateIndex: Int? = null
|
||||||
) : RealmObject() {
|
) : RealmObject() {
|
||||||
|
|
||||||
@LinkingObjects("chunks")
|
@LinkingObjects("chunks")
|
||||||
|
@ -29,13 +29,11 @@ import im.vector.matrix.android.internal.session.group.DefaultGroupService
|
|||||||
import im.vector.matrix.android.internal.session.group.GroupSummaryUpdater
|
import im.vector.matrix.android.internal.session.group.GroupSummaryUpdater
|
||||||
import im.vector.matrix.android.internal.session.room.DefaultRoomService
|
import im.vector.matrix.android.internal.session.room.DefaultRoomService
|
||||||
import im.vector.matrix.android.internal.session.room.RoomAvatarResolver
|
import im.vector.matrix.android.internal.session.room.RoomAvatarResolver
|
||||||
import im.vector.matrix.android.internal.session.room.RoomSummaryUpdater
|
|
||||||
import im.vector.matrix.android.internal.session.room.members.RoomDisplayNameResolver
|
import im.vector.matrix.android.internal.session.room.members.RoomDisplayNameResolver
|
||||||
import im.vector.matrix.android.internal.session.room.members.RoomMemberDisplayNameResolver
|
import im.vector.matrix.android.internal.session.room.members.RoomMemberDisplayNameResolver
|
||||||
import im.vector.matrix.android.internal.session.room.prune.EventsPruner
|
import im.vector.matrix.android.internal.session.room.prune.EventsPruner
|
||||||
import im.vector.matrix.android.internal.session.user.DefaultUserService
|
import im.vector.matrix.android.internal.session.user.DefaultUserService
|
||||||
import im.vector.matrix.android.internal.session.user.UserEntityUpdater
|
import im.vector.matrix.android.internal.session.user.UserEntityUpdater
|
||||||
import im.vector.matrix.android.internal.session.user.UserModule
|
|
||||||
import im.vector.matrix.android.internal.util.md5
|
import im.vector.matrix.android.internal.util.md5
|
||||||
import io.realm.RealmConfiguration
|
import io.realm.RealmConfiguration
|
||||||
import org.koin.dsl.module.module
|
import org.koin.dsl.module.module
|
||||||
@ -84,7 +82,7 @@ internal class SessionModule(private val sessionParams: SessionParams) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
scope(DefaultSession.SCOPE) {
|
scope(DefaultSession.SCOPE) {
|
||||||
RoomDisplayNameResolver(get(), get(), sessionParams.credentials)
|
RoomDisplayNameResolver(get(), get(), get(), sessionParams.credentials)
|
||||||
}
|
}
|
||||||
|
|
||||||
scope(DefaultSession.SCOPE) {
|
scope(DefaultSession.SCOPE) {
|
||||||
@ -112,11 +110,10 @@ internal class SessionModule(private val sessionParams: SessionParams) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
scope(DefaultSession.SCOPE) {
|
scope(DefaultSession.SCOPE) {
|
||||||
val roomSummaryUpdater = RoomSummaryUpdater(get(), get(), get(), get(), sessionParams.credentials)
|
|
||||||
val groupSummaryUpdater = GroupSummaryUpdater(get())
|
val groupSummaryUpdater = GroupSummaryUpdater(get())
|
||||||
val eventsPruner = EventsPruner(get())
|
val eventsPruner = EventsPruner(get())
|
||||||
val userEntityUpdater = UserEntityUpdater(get(), get(), get())
|
val userEntityUpdater = UserEntityUpdater(get(), get(), get())
|
||||||
listOf<LiveEntityObserver>(roomSummaryUpdater, groupSummaryUpdater, eventsPruner, userEntityUpdater)
|
listOf<LiveEntityObserver>(groupSummaryUpdater, eventsPruner, userEntityUpdater)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,74 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2019 New Vector Ltd
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package im.vector.matrix.android.internal.session.room
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import com.zhuinden.monarchy.Monarchy
|
|
||||||
import im.vector.matrix.android.api.auth.data.Credentials
|
|
||||||
import im.vector.matrix.android.api.session.events.model.EventType
|
|
||||||
import im.vector.matrix.android.api.session.events.model.toModel
|
|
||||||
import im.vector.matrix.android.api.session.room.model.RoomTopicContent
|
|
||||||
import im.vector.matrix.android.internal.database.RealmLiveEntityObserver
|
|
||||||
import im.vector.matrix.android.internal.database.mapper.asDomain
|
|
||||||
import im.vector.matrix.android.internal.database.model.EventEntity
|
|
||||||
import im.vector.matrix.android.internal.database.model.RoomEntity
|
|
||||||
import im.vector.matrix.android.internal.database.model.RoomSummaryEntity
|
|
||||||
import im.vector.matrix.android.internal.database.query.latestEvent
|
|
||||||
import im.vector.matrix.android.internal.database.query.prev
|
|
||||||
import im.vector.matrix.android.internal.database.query.where
|
|
||||||
import im.vector.matrix.android.internal.session.room.members.RoomDisplayNameResolver
|
|
||||||
import im.vector.matrix.android.internal.session.room.members.RoomMembers
|
|
||||||
import io.realm.Realm
|
|
||||||
import io.realm.kotlin.createObject
|
|
||||||
|
|
||||||
internal class RoomSummaryUpdater(monarchy: Monarchy,
|
|
||||||
private val roomDisplayNameResolver: RoomDisplayNameResolver,
|
|
||||||
private val roomAvatarResolver: RoomAvatarResolver,
|
|
||||||
private val context: Context,
|
|
||||||
private val credentials: Credentials
|
|
||||||
) : RealmLiveEntityObserver<RoomEntity>(monarchy) {
|
|
||||||
|
|
||||||
override val query = Monarchy.Query<RoomEntity> { RoomEntity.where(it) }
|
|
||||||
|
|
||||||
override fun processChanges(inserted: List<RoomEntity>, updated: List<RoomEntity>, deleted: List<RoomEntity>) {
|
|
||||||
val rooms = (inserted + updated).map { it.roomId }
|
|
||||||
monarchy.writeAsync { realm ->
|
|
||||||
rooms.forEach { updateRoom(realm, it) }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun updateRoom(realm: Realm, roomId: String?) {
|
|
||||||
if (roomId == null) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
val roomSummary = RoomSummaryEntity.where(realm, roomId).findFirst()
|
|
||||||
?: realm.createObject(roomId)
|
|
||||||
|
|
||||||
val lastEvent = EventEntity.latestEvent(realm, roomId, includedTypes = listOf(EventType.MESSAGE))
|
|
||||||
val lastTopicEvent = EventEntity.where(realm, roomId, EventType.STATE_ROOM_TOPIC).prev()?.asDomain()
|
|
||||||
|
|
||||||
val otherRoomMembers = RoomMembers(realm, roomId).getLoaded().filterKeys { it != credentials.userId }
|
|
||||||
|
|
||||||
roomSummary.displayName = roomDisplayNameResolver.resolve(context, roomId).toString()
|
|
||||||
roomSummary.avatarUrl = roomAvatarResolver.resolve(roomId)
|
|
||||||
roomSummary.topic = lastTopicEvent?.content.toModel<RoomTopicContent>()?.topic
|
|
||||||
roomSummary.lastMessage = lastEvent
|
|
||||||
roomSummary.otherMemberIds.clear()
|
|
||||||
roomSummary.otherMemberIds.addAll(otherRoomMembers.keys)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -36,7 +36,8 @@ import im.vector.matrix.android.internal.database.query.where
|
|||||||
/**
|
/**
|
||||||
* This class computes room display name
|
* This class computes room display name
|
||||||
*/
|
*/
|
||||||
internal class RoomDisplayNameResolver(private val monarchy: Monarchy,
|
internal class RoomDisplayNameResolver(private val context: Context,
|
||||||
|
private val monarchy: Monarchy,
|
||||||
private val roomMemberDisplayNameResolver: RoomMemberDisplayNameResolver,
|
private val roomMemberDisplayNameResolver: RoomMemberDisplayNameResolver,
|
||||||
private val credentials: Credentials
|
private val credentials: Credentials
|
||||||
) {
|
) {
|
||||||
@ -44,11 +45,10 @@ internal class RoomDisplayNameResolver(private val monarchy: Monarchy,
|
|||||||
/**
|
/**
|
||||||
* Compute the room display name
|
* Compute the room display name
|
||||||
*
|
*
|
||||||
* @param context
|
|
||||||
* @param roomId: the roomId to resolve the name of.
|
* @param roomId: the roomId to resolve the name of.
|
||||||
* @return the room display name
|
* @return the room display name
|
||||||
*/
|
*/
|
||||||
fun resolve(context: Context, roomId: String): CharSequence {
|
fun resolve(roomId: String): CharSequence {
|
||||||
// this algorithm is the one defined in
|
// this algorithm is the one defined in
|
||||||
// https://github.com/matrix-org/matrix-js-sdk/blob/develop/lib/models/room.js#L617
|
// https://github.com/matrix-org/matrix-js-sdk/blob/develop/lib/models/room.js#L617
|
||||||
// calculateRoomName(room, userId)
|
// calculateRoomName(room, userId)
|
||||||
@ -111,16 +111,16 @@ internal class RoomDisplayNameResolver(private val monarchy: Monarchy,
|
|||||||
val member1 = memberIds[0]
|
val member1 = memberIds[0]
|
||||||
val member2 = memberIds[1]
|
val member2 = memberIds[1]
|
||||||
name = context.getString(R.string.room_displayname_two_members,
|
name = context.getString(R.string.room_displayname_two_members,
|
||||||
roomMemberDisplayNameResolver.resolve(member1, otherRoomMembers),
|
roomMemberDisplayNameResolver.resolve(member1, otherRoomMembers),
|
||||||
roomMemberDisplayNameResolver.resolve(member2, otherRoomMembers)
|
roomMemberDisplayNameResolver.resolve(member2, otherRoomMembers)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
else -> {
|
else -> {
|
||||||
val member = memberIds[0]
|
val member = memberIds[0]
|
||||||
name = context.resources.getQuantityString(R.plurals.room_displayname_three_and_more_members,
|
name = context.resources.getQuantityString(R.plurals.room_displayname_three_and_more_members,
|
||||||
roomMembers.getNumberOfJoinedMembers() - 1,
|
roomMembers.getNumberOfJoinedMembers() - 1,
|
||||||
roomMemberDisplayNameResolver.resolve(member, otherRoomMembers),
|
roomMemberDisplayNameResolver.resolve(member, otherRoomMembers),
|
||||||
roomMembers.getNumberOfJoinedMembers() - 1)
|
roomMembers.getNumberOfJoinedMembers() - 1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,20 +17,29 @@
|
|||||||
package im.vector.matrix.android.internal.session.sync
|
package im.vector.matrix.android.internal.session.sync
|
||||||
|
|
||||||
import com.zhuinden.monarchy.Monarchy
|
import com.zhuinden.monarchy.Monarchy
|
||||||
|
import im.vector.matrix.android.api.auth.data.Credentials
|
||||||
import im.vector.matrix.android.api.session.events.model.Event
|
import im.vector.matrix.android.api.session.events.model.Event
|
||||||
import im.vector.matrix.android.api.session.events.model.EventType
|
import im.vector.matrix.android.api.session.events.model.EventType
|
||||||
import im.vector.matrix.android.api.session.events.model.toModel
|
import im.vector.matrix.android.api.session.events.model.toModel
|
||||||
import im.vector.matrix.android.api.session.room.model.MyMembership
|
import im.vector.matrix.android.api.session.room.model.MyMembership
|
||||||
|
import im.vector.matrix.android.api.session.room.model.RoomTopicContent
|
||||||
import im.vector.matrix.android.api.session.room.model.tag.RoomTagContent
|
import im.vector.matrix.android.api.session.room.model.tag.RoomTagContent
|
||||||
import im.vector.matrix.android.internal.database.helper.addAll
|
import im.vector.matrix.android.internal.database.helper.addAll
|
||||||
import im.vector.matrix.android.internal.database.helper.addOrUpdate
|
import im.vector.matrix.android.internal.database.helper.addOrUpdate
|
||||||
import im.vector.matrix.android.internal.database.helper.addStateEvents
|
import im.vector.matrix.android.internal.database.helper.addStateEvents
|
||||||
import im.vector.matrix.android.internal.database.helper.lastStateIndex
|
import im.vector.matrix.android.internal.database.helper.lastStateIndex
|
||||||
|
import im.vector.matrix.android.internal.database.mapper.asDomain
|
||||||
import im.vector.matrix.android.internal.database.model.ChunkEntity
|
import im.vector.matrix.android.internal.database.model.ChunkEntity
|
||||||
|
import im.vector.matrix.android.internal.database.model.EventEntity
|
||||||
import im.vector.matrix.android.internal.database.model.RoomEntity
|
import im.vector.matrix.android.internal.database.model.RoomEntity
|
||||||
import im.vector.matrix.android.internal.database.model.RoomSummaryEntity
|
import im.vector.matrix.android.internal.database.model.RoomSummaryEntity
|
||||||
import im.vector.matrix.android.internal.database.query.findLastLiveChunkFromRoom
|
import im.vector.matrix.android.internal.database.query.findLastLiveChunkFromRoom
|
||||||
|
import im.vector.matrix.android.internal.database.query.latestEvent
|
||||||
|
import im.vector.matrix.android.internal.database.query.prev
|
||||||
import im.vector.matrix.android.internal.database.query.where
|
import im.vector.matrix.android.internal.database.query.where
|
||||||
|
import im.vector.matrix.android.internal.session.room.RoomAvatarResolver
|
||||||
|
import im.vector.matrix.android.internal.session.room.members.RoomDisplayNameResolver
|
||||||
|
import im.vector.matrix.android.internal.session.room.members.RoomMembers
|
||||||
import im.vector.matrix.android.internal.session.room.timeline.PaginationDirection
|
import im.vector.matrix.android.internal.session.room.timeline.PaginationDirection
|
||||||
import im.vector.matrix.android.internal.session.sync.model.InvitedRoomSync
|
import im.vector.matrix.android.internal.session.sync.model.InvitedRoomSync
|
||||||
import im.vector.matrix.android.internal.session.sync.model.RoomSync
|
import im.vector.matrix.android.internal.session.sync.model.RoomSync
|
||||||
@ -44,6 +53,9 @@ import io.realm.kotlin.createObject
|
|||||||
|
|
||||||
internal class RoomSyncHandler(private val monarchy: Monarchy,
|
internal class RoomSyncHandler(private val monarchy: Monarchy,
|
||||||
private val readReceiptHandler: ReadReceiptHandler,
|
private val readReceiptHandler: ReadReceiptHandler,
|
||||||
|
private val roomDisplayNameResolver: RoomDisplayNameResolver,
|
||||||
|
private val roomAvatarResolver: RoomAvatarResolver,
|
||||||
|
private val credentials: Credentials,
|
||||||
private val roomTagHandler: RoomTagHandler) {
|
private val roomTagHandler: RoomTagHandler) {
|
||||||
|
|
||||||
sealed class HandlingStrategy {
|
sealed class HandlingStrategy {
|
||||||
@ -51,6 +63,7 @@ internal class RoomSyncHandler(private val monarchy: Monarchy,
|
|||||||
data class INVITED(val data: Map<String, InvitedRoomSync>) : HandlingStrategy()
|
data class INVITED(val data: Map<String, InvitedRoomSync>) : HandlingStrategy()
|
||||||
data class LEFT(val data: Map<String, RoomSync>) : HandlingStrategy()
|
data class LEFT(val data: Map<String, RoomSync>) : HandlingStrategy()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun handle(roomsSyncResponse: RoomsSyncResponse) {
|
fun handle(roomsSyncResponse: RoomsSyncResponse) {
|
||||||
monarchy.runTransactionSync { realm ->
|
monarchy.runTransactionSync { realm ->
|
||||||
handleRoomSync(realm, RoomSyncHandler.HandlingStrategy.JOINED(roomsSyncResponse.join))
|
handleRoomSync(realm, RoomSyncHandler.HandlingStrategy.JOINED(roomsSyncResponse.join))
|
||||||
@ -107,9 +120,7 @@ internal class RoomSyncHandler(private val monarchy: Monarchy,
|
|||||||
roomEntity.addOrUpdate(chunkEntity)
|
roomEntity.addOrUpdate(chunkEntity)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (roomSync.summary != null) {
|
handleRoomSummary(realm, roomId, roomSync.summary)
|
||||||
handleRoomSummary(realm, roomId, roomSync.summary)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (roomSync.unreadNotifications != null) {
|
if (roomSync.unreadNotifications != null) {
|
||||||
handleUnreadNotifications(realm, roomId, roomSync.unreadNotifications)
|
handleUnreadNotifications(realm, roomId, roomSync.unreadNotifications)
|
||||||
@ -171,20 +182,33 @@ internal class RoomSyncHandler(private val monarchy: Monarchy,
|
|||||||
|
|
||||||
private fun handleRoomSummary(realm: Realm,
|
private fun handleRoomSummary(realm: Realm,
|
||||||
roomId: String,
|
roomId: String,
|
||||||
roomSummary: RoomSyncSummary) {
|
roomSummary: RoomSyncSummary?) {
|
||||||
|
|
||||||
val roomSummaryEntity = RoomSummaryEntity.where(realm, roomId).findFirst()
|
val roomSummaryEntity = RoomSummaryEntity.where(realm, roomId).findFirst()
|
||||||
?: RoomSummaryEntity(roomId)
|
?: RoomSummaryEntity(roomId)
|
||||||
|
|
||||||
if (roomSummary.heroes.isNotEmpty()) {
|
val lastEvent = EventEntity.latestEvent(realm, roomId, includedTypes = listOf(EventType.MESSAGE))
|
||||||
roomSummaryEntity.heroes.clear()
|
val lastTopicEvent = EventEntity.where(realm, roomId, EventType.STATE_ROOM_TOPIC).prev()?.asDomain()
|
||||||
roomSummaryEntity.heroes.addAll(roomSummary.heroes)
|
|
||||||
}
|
val otherRoomMembers = RoomMembers(realm, roomId).getLoaded().filterKeys { it != credentials.userId }
|
||||||
if (roomSummary.invitedMembersCount != null) {
|
roomSummaryEntity.displayName = roomDisplayNameResolver.resolve(roomId).toString()
|
||||||
roomSummaryEntity.invitedMembersCount = roomSummary.invitedMembersCount
|
roomSummaryEntity.avatarUrl = roomAvatarResolver.resolve(roomId)
|
||||||
}
|
roomSummaryEntity.topic = lastTopicEvent?.content.toModel<RoomTopicContent>()?.topic
|
||||||
if (roomSummary.joinedMembersCount != null) {
|
roomSummaryEntity.lastMessage = lastEvent
|
||||||
roomSummaryEntity.joinedMembersCount = roomSummary.joinedMembersCount
|
roomSummaryEntity.otherMemberIds.clear()
|
||||||
|
roomSummaryEntity.otherMemberIds.addAll(otherRoomMembers.keys)
|
||||||
|
|
||||||
|
if (roomSummary != null) {
|
||||||
|
if (roomSummary.heroes.isNotEmpty()) {
|
||||||
|
roomSummaryEntity.heroes.clear()
|
||||||
|
roomSummaryEntity.heroes.addAll(roomSummary.heroes)
|
||||||
|
}
|
||||||
|
if (roomSummary.invitedMembersCount != null) {
|
||||||
|
roomSummaryEntity.invitedMembersCount = roomSummary.invitedMembersCount
|
||||||
|
}
|
||||||
|
if (roomSummary.joinedMembersCount != null) {
|
||||||
|
roomSummaryEntity.joinedMembersCount = roomSummary.joinedMembersCount
|
||||||
|
}
|
||||||
}
|
}
|
||||||
realm.insertOrUpdate(roomSummaryEntity)
|
realm.insertOrUpdate(roomSummaryEntity)
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ internal class SyncModule {
|
|||||||
}
|
}
|
||||||
|
|
||||||
scope(DefaultSession.SCOPE) {
|
scope(DefaultSession.SCOPE) {
|
||||||
RoomSyncHandler(get(), get(), get())
|
RoomSyncHandler(get(), get(), get(),get(),get(),get())
|
||||||
}
|
}
|
||||||
|
|
||||||
scope(DefaultSession.SCOPE) {
|
scope(DefaultSession.SCOPE) {
|
||||||
|
@ -19,6 +19,7 @@ package im.vector.matrix.android.internal.session.sync
|
|||||||
import arrow.core.Try
|
import arrow.core.Try
|
||||||
import im.vector.matrix.android.internal.session.sync.model.SyncResponse
|
import im.vector.matrix.android.internal.session.sync.model.SyncResponse
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
import kotlin.system.measureTimeMillis
|
||||||
|
|
||||||
internal class SyncResponseHandler(private val roomSyncHandler: RoomSyncHandler,
|
internal class SyncResponseHandler(private val roomSyncHandler: RoomSyncHandler,
|
||||||
private val userAccountDataSyncHandler: UserAccountDataSyncHandler,
|
private val userAccountDataSyncHandler: UserAccountDataSyncHandler,
|
||||||
@ -26,16 +27,19 @@ internal class SyncResponseHandler(private val roomSyncHandler: RoomSyncHandler,
|
|||||||
|
|
||||||
fun handleResponse(syncResponse: SyncResponse, fromToken: String?, isCatchingUp: Boolean): Try<SyncResponse> {
|
fun handleResponse(syncResponse: SyncResponse, fromToken: String?, isCatchingUp: Boolean): Try<SyncResponse> {
|
||||||
return Try {
|
return Try {
|
||||||
Timber.v("Handle sync response")
|
Timber.v("Start handling sync")
|
||||||
if (syncResponse.rooms != null) {
|
val measure = measureTimeMillis {
|
||||||
roomSyncHandler.handle(syncResponse.rooms)
|
if (syncResponse.rooms != null) {
|
||||||
}
|
roomSyncHandler.handle(syncResponse.rooms)
|
||||||
if (syncResponse.groups != null) {
|
}
|
||||||
groupSyncHandler.handle(syncResponse.groups)
|
if (syncResponse.groups != null) {
|
||||||
}
|
groupSyncHandler.handle(syncResponse.groups)
|
||||||
if (syncResponse.accountData != null) {
|
}
|
||||||
userAccountDataSyncHandler.handle(syncResponse.accountData)
|
if (syncResponse.accountData != null) {
|
||||||
|
userAccountDataSyncHandler.handle(syncResponse.accountData)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Timber.v("Finish handling sync in $measure ms")
|
||||||
syncResponse
|
syncResponse
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user