forked from GitHub-Mirror/riotX-android
Add Doc
This commit is contained in:
parent
cbd62b9e93
commit
79e273b1ca
@ -25,6 +25,7 @@ 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.EventEntity
|
||||||
import im.vector.matrix.android.internal.database.model.EventEntityFields
|
import im.vector.matrix.android.internal.database.model.EventEntityFields
|
||||||
import im.vector.matrix.android.internal.database.query.fastContains
|
import im.vector.matrix.android.internal.database.query.fastContains
|
||||||
|
import im.vector.matrix.android.internal.extensions.assertIsManaged
|
||||||
import im.vector.matrix.android.internal.session.room.timeline.PaginationDirection
|
import im.vector.matrix.android.internal.session.room.timeline.PaginationDirection
|
||||||
import io.realm.Sort
|
import io.realm.Sort
|
||||||
|
|
||||||
@ -69,6 +70,7 @@ internal fun ChunkEntity.addAll(roomId: String,
|
|||||||
events: List<Event>,
|
events: List<Event>,
|
||||||
direction: PaginationDirection,
|
direction: PaginationDirection,
|
||||||
stateIndexOffset: Int = 0,
|
stateIndexOffset: Int = 0,
|
||||||
|
// Set to true for Event retrieved from a Permalink (i.e. not linked to live Chunk)
|
||||||
isUnlinked: Boolean = false) {
|
isUnlinked: Boolean = false) {
|
||||||
assertIsManaged()
|
assertIsManaged()
|
||||||
events.forEach { event ->
|
events.forEach { event ->
|
||||||
@ -105,12 +107,6 @@ internal fun ChunkEntity.add(roomId: String,
|
|||||||
events.add(position, eventEntity)
|
events.add(position, eventEntity)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun ChunkEntity.assertIsManaged() {
|
|
||||||
if (!isManaged) {
|
|
||||||
throw IllegalStateException("Chunk entity should be managed to use this function")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
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 -> events.where().sort(EventEntityFields.STATE_INDEX, Sort.DESCENDING).findFirst()?.stateIndex
|
||||||
|
@ -22,6 +22,7 @@ import im.vector.matrix.android.internal.database.mapper.updateWith
|
|||||||
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.RoomEntity
|
import im.vector.matrix.android.internal.database.model.RoomEntity
|
||||||
import im.vector.matrix.android.internal.database.query.fastContains
|
import im.vector.matrix.android.internal.database.query.fastContains
|
||||||
|
import im.vector.matrix.android.internal.extensions.assertIsManaged
|
||||||
|
|
||||||
|
|
||||||
internal fun RoomEntity.deleteOnCascade(chunkEntity: ChunkEntity) {
|
internal fun RoomEntity.deleteOnCascade(chunkEntity: ChunkEntity) {
|
||||||
@ -40,9 +41,8 @@ internal fun RoomEntity.addStateEvents(stateEvents: List<Event>,
|
|||||||
stateIndex: Int = Int.MIN_VALUE,
|
stateIndex: Int = Int.MIN_VALUE,
|
||||||
filterDuplicates: Boolean = false,
|
filterDuplicates: Boolean = false,
|
||||||
isUnlinked: Boolean = false) {
|
isUnlinked: Boolean = false) {
|
||||||
if (!isManaged) {
|
assertIsManaged()
|
||||||
throw IllegalStateException("Chunk entity should be managed to use fast contains")
|
|
||||||
}
|
|
||||||
stateEvents.forEach { event ->
|
stateEvents.forEach { event ->
|
||||||
if (event.eventId == null || (filterDuplicates && fastContains(event.eventId))) {
|
if (event.eventId == null || (filterDuplicates && fastContains(event.eventId))) {
|
||||||
return@forEach
|
return@forEach
|
||||||
|
@ -0,0 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* 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.extensions
|
||||||
|
|
||||||
|
import io.realm.RealmObject
|
||||||
|
|
||||||
|
internal fun RealmObject.assertIsManaged() {
|
||||||
|
if (!isManaged) {
|
||||||
|
throw IllegalStateException("${javaClass.simpleName} entity should be managed to use this function")
|
||||||
|
}
|
||||||
|
}
|
@ -27,9 +27,73 @@ import im.vector.matrix.android.internal.database.query.findAllIncludingEvents
|
|||||||
import im.vector.matrix.android.internal.database.query.where
|
import im.vector.matrix.android.internal.database.query.where
|
||||||
import im.vector.matrix.android.internal.util.tryTransactionSync
|
import im.vector.matrix.android.internal.util.tryTransactionSync
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Insert Chunk in DB, and eventually merge with existing chunk event
|
||||||
|
*/
|
||||||
internal class TokenChunkEventPersistor(private val monarchy: Monarchy) {
|
internal class TokenChunkEventPersistor(private val monarchy: Monarchy) {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <pre>
|
||||||
|
* ========================================================================================================
|
||||||
|
* | Backward case |
|
||||||
|
* ========================================================================================================
|
||||||
|
*
|
||||||
|
* *--------------------------* *--------------------------*
|
||||||
|
* | startToken1 | | startToken1 |
|
||||||
|
* *--------------------------* *--------------------------*
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* | receivedChunk backward | | |
|
||||||
|
* | Events | | |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* *--------------------------* *--------------------------* | |
|
||||||
|
* | startToken0 | | endToken1 | => | Merged chunk |
|
||||||
|
* *--------------------------* *--------------------------* | Events |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* | Current Chunk | | |
|
||||||
|
* | Events | | |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* *--------------------------* *--------------------------*
|
||||||
|
* | endToken0 | | endToken0 |
|
||||||
|
* *--------------------------* *--------------------------*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* ========================================================================================================
|
||||||
|
* | Forward case |
|
||||||
|
* ========================================================================================================
|
||||||
|
*
|
||||||
|
* *--------------------------* *--------------------------*
|
||||||
|
* | startToken0 | | startToken0 |
|
||||||
|
* *--------------------------* *--------------------------*
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* | Current Chunk | | |
|
||||||
|
* | Events | | |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* *--------------------------* *--------------------------* | |
|
||||||
|
* | endToken0 | | startToken1 | => | Merged chunk |
|
||||||
|
* *--------------------------* *--------------------------* | Events |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* | receivedChunk forward | | |
|
||||||
|
* | Events | | |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* | | | |
|
||||||
|
* *--------------------------* *--------------------------*
|
||||||
|
* | endToken1 | | endToken1 |
|
||||||
|
* *--------------------------* *--------------------------*
|
||||||
|
*
|
||||||
|
* ========================================================================================================
|
||||||
|
* </pre>
|
||||||
|
*/
|
||||||
fun insertInDb(receivedChunk: TokenChunkEvent,
|
fun insertInDb(receivedChunk: TokenChunkEvent,
|
||||||
roomId: String,
|
roomId: String,
|
||||||
direction: PaginationDirection): Try<Boolean> {
|
direction: PaginationDirection): Try<Boolean> {
|
||||||
@ -60,11 +124,10 @@ internal class TokenChunkEventPersistor(private val monarchy: Monarchy) {
|
|||||||
|
|
||||||
var currentChunk = if (direction == PaginationDirection.FORWARDS) {
|
var currentChunk = if (direction == PaginationDirection.FORWARDS) {
|
||||||
prevChunk?.apply { this.nextToken = nextToken }
|
prevChunk?.apply { this.nextToken = nextToken }
|
||||||
?: ChunkEntity.create(realm, prevToken, nextToken)
|
|
||||||
} else {
|
} else {
|
||||||
nextChunk?.apply { this.prevToken = prevToken }
|
nextChunk?.apply { this.prevToken = prevToken }
|
||||||
?: ChunkEntity.create(realm, prevToken, nextToken)
|
|
||||||
}
|
}
|
||||||
|
?: ChunkEntity.create(realm, prevToken, nextToken)
|
||||||
|
|
||||||
currentChunk.addAll(roomId, receivedChunk.events, direction, isUnlinked = currentChunk.isUnlinked())
|
currentChunk.addAll(roomId, receivedChunk.events, direction, isUnlinked = currentChunk.isUnlinked())
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user