org.webpieces.plugin.hibernate.TransactionHelper Maven / Gradle / Ivy
package org.webpieces.plugin.hibernate;
import io.micrometer.core.instrument.MeterRegistry;
import io.micrometer.core.instrument.Tags;
import org.webpieces.microsvc.api.MicroSvcHeader;
import org.webpieces.plugin.hibernate.metrics.DatabaseMetric;
import org.webpieces.plugin.hibernate.metrics.DatabaseTransactionTags;
import org.webpieces.util.context.Context;
import javax.inject.Inject;
import javax.inject.Singleton;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.EntityTransaction;
import java.util.concurrent.TimeUnit;
import java.util.function.Supplier;
/**
* @deprecated Replaced by {@link PersistenceHelper}.
*/
@Deprecated
@Singleton
public class TransactionHelper {
private final EntityManagerFactory factory;
private final TxCompleters txCompleters;
private final MeterRegistry meterRegistry;
@Inject
public TransactionHelper(EntityManagerFactory factory, TxCompleters txCompleters, MeterRegistry meterRegistry) {
this.factory = factory;
this.txCompleters = txCompleters;
this.meterRegistry = meterRegistry;
}
public Resp runWithEm(Supplier function) {
if (Em.get() != null) {
throw new IllegalStateException("Cannot open another entityManager when are already have one open");
}
EntityManager mgr = factory.createEntityManager();
Em.set(mgr);
try {
Resp resp = function.get();
mgr.close();
return resp;
} catch (Throwable t) {
txCompleters.closeEm(t, mgr);
throw t;
} finally {
Em.set(null);
}
}
/**
* @deprecated Use {@link #runTransaction(String, Supplier)} instead where you can supply a name for the transaction
*/
@Deprecated
public Resp runTransaction(Supplier supplier) {
return runTransaction("unknown", supplier);
}
public Resp runTransaction(String transactionName, Supplier supplier) {
if (Em.get() == null) {
return runWithEm(() -> runTransactionImpl(transactionName, supplier));
} else {
return runTransactionImpl(transactionName, supplier);
}
}
private Resp runTransactionImpl(String transactionName, Supplier supplier) {
long begin = System.currentTimeMillis();
EntityTransaction tx = Em.get().getTransaction();
if (tx.isActive()) {
throw new IllegalStateException("Cannot open another transaction when one is already open");
}
tx.begin();
try {
Resp resp = supplier.get();
tx.commit();
return resp;
} catch (RuntimeException e) {
txCompleters.rollbackTx(e, tx);
// Rethrow with suppressed exception if the rollback fails too
throw e;
} finally {
monitorTransactionTime(transactionName, begin);
}
}
private void monitorTransactionTime(String transactionName, long begin) {
String requestPath = Context.getMagic(MicroSvcHeader.REQUEST_PATH);
if (requestPath == null || requestPath.isBlank()) {
requestPath = "unknown";
}
Tags transactionTags = Tags.of(
DatabaseTransactionTags.EXECUTION_ID, transactionName,
DatabaseTransactionTags.REQUEST, requestPath
);
meterRegistry.timer(DatabaseMetric.EXECUTION_TIME.getDottedMetricName(), transactionTags)
.record(System.currentTimeMillis() - begin, TimeUnit.MILLISECONDS);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy