-
Notifications
You must be signed in to change notification settings - Fork 739
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/fga/more realm fixing #5330
Merged
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
fb2ed9a
Rename getTimeLine to getTimeline to align naming. Also create Timeli…
beeee7c
Realm: avoid opening realm if not necessary in ReadReceiptsSummaryMapper
f7c79a6
Realm: fix remaining frozen result
fd48fc9
Add changelog
ca8b69e
Use correct copyright
bmarty e32e006
Add SDK changelog.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Continue improving realm usage. |
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
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
64 changes: 64 additions & 0 deletions
64
...ain/java/org/matrix/android/sdk/internal/session/room/timeline/TimelineEventDataSource.kt
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,64 @@ | ||
/* | ||
* Copyright (c) 2022 New Vector Ltd | ||
bmarty marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* | ||
* 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 org.matrix.android.sdk.internal.session.room.timeline | ||
|
||
import androidx.lifecycle.LiveData | ||
import com.zhuinden.monarchy.Monarchy | ||
import io.realm.Sort | ||
import io.realm.kotlin.where | ||
import org.matrix.android.sdk.api.session.events.model.isImageMessage | ||
import org.matrix.android.sdk.api.session.events.model.isVideoMessage | ||
import org.matrix.android.sdk.api.session.room.timeline.TimelineEvent | ||
import org.matrix.android.sdk.api.util.Optional | ||
import org.matrix.android.sdk.internal.database.RealmSessionProvider | ||
import org.matrix.android.sdk.internal.database.mapper.TimelineEventMapper | ||
import org.matrix.android.sdk.internal.database.model.TimelineEventEntity | ||
import org.matrix.android.sdk.internal.database.model.TimelineEventEntityFields | ||
import org.matrix.android.sdk.internal.database.query.where | ||
import org.matrix.android.sdk.internal.di.SessionDatabase | ||
import org.matrix.android.sdk.internal.task.TaskExecutor | ||
import javax.inject.Inject | ||
|
||
internal class TimelineEventDataSource @Inject constructor(private val realmSessionProvider: RealmSessionProvider, | ||
private val timelineEventMapper: TimelineEventMapper, | ||
private val taskExecutor: TaskExecutor, | ||
@SessionDatabase private val monarchy: Monarchy) { | ||
|
||
fun getTimelineEvent(roomId: String, eventId: String): TimelineEvent? { | ||
return realmSessionProvider.withRealm { realm -> | ||
TimelineEventEntity.where(realm, roomId = roomId, eventId = eventId).findFirst()?.let { | ||
timelineEventMapper.map(it) | ||
} | ||
} | ||
} | ||
|
||
fun getTimelineEventLive(roomId: String, eventId: String): LiveData<Optional<TimelineEvent>> { | ||
return LiveTimelineEvent(monarchy, taskExecutor.executorScope, timelineEventMapper, roomId, eventId) | ||
} | ||
|
||
fun getAttachmentMessages(roomId: String): List<TimelineEvent> { | ||
// TODO pretty bad query.. maybe we should denormalize clear type in base? | ||
return realmSessionProvider.withRealm { realm -> | ||
realm.where<TimelineEventEntity>() | ||
.equalTo(TimelineEventEntityFields.ROOM_ID, roomId) | ||
.sort(TimelineEventEntityFields.DISPLAY_INDEX, Sort.ASCENDING) | ||
.findAll() | ||
?.mapNotNull { timelineEventMapper.map(it).takeIf { it.root.isImageMessage() || it.root.isVideoMessage() } } | ||
.orEmpty() | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a file
5330.sdk
to announce the 2 API name changes?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done