|
|
|
@ -256,14 +256,7 @@ class ConfigFactory @Inject constructor(
|
|
|
|
|
|
|
|
|
|
private fun <T> doWithMutableGroupConfigs(
|
|
|
|
|
groupId: AccountId,
|
|
|
|
|
recreateConfigInstances: Boolean,
|
|
|
|
|
cb: (GroupConfigsImpl) -> Pair<T, Boolean>): T {
|
|
|
|
|
if (recreateConfigInstances) {
|
|
|
|
|
synchronized(groupConfigs) {
|
|
|
|
|
groupConfigs.remove(groupId)
|
|
|
|
|
}?.second?.dumpIfNeeded(clock)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val (lock, configs) = ensureGroupConfigsInitialized(groupId)
|
|
|
|
|
val (result, changed) = lock.write {
|
|
|
|
|
cb(configs)
|
|
|
|
@ -285,7 +278,7 @@ class ConfigFactory @Inject constructor(
|
|
|
|
|
recreateConfigInstances: Boolean,
|
|
|
|
|
cb: (MutableGroupConfigs) -> T
|
|
|
|
|
): T {
|
|
|
|
|
return doWithMutableGroupConfigs(recreateConfigInstances = recreateConfigInstances, groupId = groupId) {
|
|
|
|
|
return doWithMutableGroupConfigs(groupId = groupId) {
|
|
|
|
|
cb(it) to it.dumpIfNeeded(clock)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -328,7 +321,7 @@ class ConfigFactory @Inject constructor(
|
|
|
|
|
info: List<ConfigMessage>,
|
|
|
|
|
members: List<ConfigMessage>
|
|
|
|
|
) {
|
|
|
|
|
val changed = doWithMutableGroupConfigs(groupId, false) { configs ->
|
|
|
|
|
val changed = doWithMutableGroupConfigs(groupId) { configs ->
|
|
|
|
|
// Keys must be loaded first as they are used to decrypt the other config messages
|
|
|
|
|
val keysLoaded = keys.fold(false) { acc, msg ->
|
|
|
|
|
configs.groupKeys.loadKey(msg.data, msg.hash, msg.timestamp, configs.groupInfo.pointer, configs.groupMembers.pointer) || acc
|
|
|
|
@ -398,7 +391,7 @@ class ConfigFactory @Inject constructor(
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
doWithMutableGroupConfigs(groupId, false) { configs ->
|
|
|
|
|
doWithMutableGroupConfigs(groupId) { configs ->
|
|
|
|
|
members?.let { (push, result) -> configs.groupMembers.confirmPushed(push.seqNo, result.hash) }
|
|
|
|
|
info?.let { (push, result) -> configs.groupInfo.confirmPushed(push.seqNo, result.hash) }
|
|
|
|
|
keysPush?.let { (hash, timestamp) ->
|
|
|
|
|