Add cache for serviceId to recipient id/address mapping

This commit is contained in:
AsamK 2023-10-17 15:20:14 +02:00
parent 1addffe622
commit 2c5edbc981

View file

@ -47,6 +47,8 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
private final Object recipientsLock = new Object();
private final Map<Long, Long> recipientsMerged = new HashMap<>();
private final Map<ServiceId, RecipientWithAddress> recipientAddressCache = new HashMap<>();
public static void createSql(Connection connection) throws SQLException {
// When modifying the CREATE statement here, also add a migration in AccountDatabase.java
try (final var statement = connection.createStatement()) {
@ -176,15 +178,18 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
@Override
public RecipientId resolveRecipient(final ServiceId serviceId) {
synchronized (recipientsLock) {
final RecipientId recipientId;
final var recipientWithAddress = recipientAddressCache.get(serviceId);
if (recipientWithAddress != null) {
return recipientWithAddress.id();
}
try (final var connection = database.getConnection()) {
connection.setAutoCommit(false);
recipientId = resolveRecipientLocked(connection, serviceId);
final var recipientId = resolveRecipientLocked(connection, serviceId);
connection.commit();
return recipientId;
} catch (SQLException e) {
throw new RuntimeException("Failed read recipient store", e);
}
return recipientId;
}
}
@ -357,7 +362,7 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
FROM %s r
WHERE (r.number IS NOT NULL OR r.uuid IS NOT NULL) AND %s
"""
).formatted(TABLE_RECIPIENT, sqlWhere.size() == 0 ? "TRUE" : String.join(" AND ", sqlWhere));
).formatted(TABLE_RECIPIENT, sqlWhere.isEmpty() ? "TRUE" : String.join(" AND ", sqlWhere));
try (final var connection = database.getConnection()) {
try (final var statement = connection.prepareStatement(sql)) {
if (blocked.isPresent()) {
@ -429,6 +434,11 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
public void deleteRecipientData(RecipientId recipientId) {
logger.debug("Deleting recipient data for {}", recipientId);
synchronized (recipientsLock) {
recipientAddressCache.entrySet()
.stream()
.filter(e -> e.getValue().id().equals(recipientId))
.forEach(e -> recipientAddressCache.remove(e.getKey()));
try (final var connection = database.getConnection()) {
connection.setAutoCommit(false);
storeContact(connection, recipientId, null);
@ -441,6 +451,7 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
throw new RuntimeException("Failed update recipient store", e);
}
}
}
@Override
public Profile getProfile(final RecipientId recipientId) {
@ -691,11 +702,17 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
}
}
if (pair.second().size() > 0) {
if (!pair.second().isEmpty()) {
try (final var connection = database.getConnection()) {
for (final var toBeMergedRecipientId : pair.second()) {
recipientMergeHandler.mergeRecipients(connection, pair.first(), toBeMergedRecipientId);
deleteRecipient(connection, toBeMergedRecipientId);
synchronized (recipientsLock) {
recipientAddressCache.entrySet()
.stream()
.filter(e -> e.getValue().id().equals(toBeMergedRecipientId))
.forEach(e -> recipientAddressCache.remove(e.getKey()));
}
}
} catch (SQLException e) {
throw new RuntimeException("Failed update recipient store", e);
@ -789,6 +806,11 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
}
private void removeRecipientAddress(Connection connection, RecipientId recipientId) throws SQLException {
synchronized (recipientsLock) {
recipientAddressCache.entrySet()
.stream()
.filter(e -> e.getValue().id().equals(recipientId))
.forEach(e -> recipientAddressCache.remove(e.getKey()));
final var sql = (
"""
UPDATE %s
@ -801,10 +823,16 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
statement.executeUpdate();
}
}
}
private void updateRecipientAddress(
Connection connection, RecipientId recipientId, final RecipientAddress address
) throws SQLException {
synchronized (recipientsLock) {
recipientAddressCache.entrySet()
.stream()
.filter(e -> e.getValue().id().equals(recipientId))
.forEach(e -> recipientAddressCache.remove(e.getKey()));
final var sql = (
"""
UPDATE %s
@ -822,6 +850,7 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
statement.executeUpdate();
}
}
}
private void deleteRecipient(final Connection connection, final RecipientId recipientId) throws SQLException {
final var sql = (
@ -900,6 +929,10 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
private Optional<RecipientWithAddress> findByServiceId(
final Connection connection, final ServiceId serviceId
) throws SQLException {
var recipientWithAddress = Optional.ofNullable(recipientAddressCache.get(serviceId));
if (recipientWithAddress.isPresent()) {
return recipientWithAddress;
}
final var sql = """
SELECT r._id, r.number, r.uuid, r.pni, r.username
FROM %s r
@ -908,7 +941,9 @@ public class RecipientStore implements RecipientIdCreator, RecipientResolver, Re
""".formatted(TABLE_RECIPIENT);
try (final var statement = connection.prepareStatement(sql)) {
statement.setBytes(1, UuidUtil.toByteArray(serviceId.getRawUuid()));
return Utils.executeQueryForOptional(statement, this::getRecipientWithAddressFromResultSet);
recipientWithAddress = Utils.executeQueryForOptional(statement, this::getRecipientWithAddressFromResultSet);
recipientWithAddress.ifPresent(r -> recipientAddressCache.put(serviceId, r));
return recipientWithAddress;
}
}