Mercurial > dive4elements > river
view flys-backend/src/main/java/de/intevation/flys/model/Wst.java @ 5779:ebec12def170
Datacage: Add a pool of builders to make it multi threadable.
XML DOM is not thread safe. Therefore the old implementation only allowed one thread
to use the builder at a time. As the complexity of the configuration
has increased over time this has become a bottleneck of the whole application
because it took quiet some time to build a result. Furthermore the builder code path
is visited very frequent. So many concurrent requests were piled up
resulting in long waits for the users.
To mitigate this problem a round robin pool of builders is used now.
Each of the pooled builders has an independent copy of the XML template
and can be run in parallel.
The number of builders is determined by the system property
'flys.datacage.pool.size'. It defaults to 4.
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Sun, 21 Apr 2013 12:48:09 +0200 |
parents | c41bb1293acb |
children |
line wrap: on
line source
package de.intevation.flys.model; import java.io.Serializable; import java.math.BigDecimal; import java.util.List; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.GeneratedValue; import javax.persistence.Column; import javax.persistence.SequenceGenerator; import javax.persistence.GenerationType; import javax.persistence.JoinColumn; import javax.persistence.OneToOne; import javax.persistence.OneToMany; import org.apache.log4j.Logger; import org.hibernate.Session; import org.hibernate.SQLQuery; import org.hibernate.Query; import org.hibernate.type.StandardBasicTypes; import de.intevation.flys.backend.SessionHolder; @Entity @Table(name = "wsts") public class Wst implements Serializable { private static Logger logger = Logger.getLogger(Wst.class); private Integer id; private River river; private String description; private Integer kind; private List<WstColumn> columns; public static final String SQL_SELECT_MINMAX = "select min(q) as minQ, max(q) as maxQ from wst_q_values " + "where wst_id = :wst and not (a > :km or b < :km)"; public Wst() { } public Wst(River river, String description) { this(river, description, 0); } public Wst(River river, String description, Integer kind) { this.river = river; this.description = description; this.kind = kind; } @Id @SequenceGenerator( name = "SEQUENCE_WSTS_ID_SEQ", sequenceName = "WSTS_ID_SEQ", allocationSize = 1) @GeneratedValue( strategy = GenerationType.SEQUENCE, generator = "SEQUENCE_WSTS_ID_SEQ") @Column(name = "id") public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } @OneToOne @JoinColumn(name = "river_id" ) public River getRiver() { return river; } public void setRiver(River river) { this.river = river; } @Column(name = "description") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } @Column(name = "kind") public Integer getKind() { return kind; } public void setKind(Integer kind) { this.kind = kind; } @OneToMany @JoinColumn(name="wst_id") public List<WstColumn> getColumns() { return columns; } public void setColumns(List<WstColumn> columns) { this.columns = columns; } /** * Determines the min and max Q values of this WST. The min value is placed * in the first field of the resulting array - the max value is placed in * the second field. * * @return the min and max Q values of this WST. */ public double[] determineMinMaxQ() { double[] ab = river.determineMinMaxDistance(); return determineMinMaxQ(new Range(ab[0], ab[1], river)); } /** * Determines the min and max Q values of this WST in the given range. The * min value is placed in the first field of the resulting array - the max * value is placed in the second field. * * @param range The range used for querying the Q values. * * @return the min and max Q values of this WST. */ public double[] determineMinMaxQ(Range range) { if (range != null) { return determineMinMaxQ( range.getA().doubleValue(), range.getB().doubleValue()); } return null; } /** * Determines the min and max Q values of this WST in the given range. The * min value is placed in the first field of the resulting array - the max * value is placed in the second field. * * @param fromKm the lower km value. * @param toKm the upper km value. * * @return the min and max Q values of this WST. */ public double[] determineMinMaxQ(double fromKm, double toKm) { Session session = SessionHolder.HOLDER.get(); Query query = session.createQuery( "select min(q), max(q) from WstQRange where " + " id in " + " (select wstQRange.id from WstColumnQRange where " + " wstColumn.id in (select id from WstColumn where wst.id = :wst)) " + " and range.id in " + " (select id from Range where not (a > :end or b < :start))"); query.setParameter("wst", getId()); query.setParameter("start", new BigDecimal(fromKm)); query.setParameter("end", new BigDecimal(toKm)); List<Object []> results = query.list(); if (results.isEmpty()) { return null; } Object [] result = results.get(0); return new double [] { ((BigDecimal)result[0]).doubleValue(), ((BigDecimal)result[1]).doubleValue() }; } public double[] determineMinMaxQFree(double km) { Session session = SessionHolder.HOLDER.get(); SQLQuery sqlQuery = session.createSQLQuery(SQL_SELECT_MINMAX) .addScalar("minQ", StandardBasicTypes.DOUBLE) .addScalar("maxQ", StandardBasicTypes.DOUBLE); sqlQuery.setInteger("wst", getId()); sqlQuery.setDouble("km", km); List<Object[]> minmaxQ = sqlQuery.list(); if (minmaxQ.isEmpty()) { return null; } Object[] mm = minmaxQ.get(0); if (mm[0] == null || mm[1] == null) { logger.warn ("No min/max Q for km " + km + " found."); return null; } return new double[] { (Double) mm[0], (Double) mm[1] }; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :