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