From 7ecf75273aa4bb58e28db780a0a42474c787f495 Mon Sep 17 00:00:00 2001 From: usrdno Date: Mon, 1 Sep 2008 14:15:56 +0000 Subject: [PATCH] Added static, cache enabled, get method that uses currency ISO code as key. --- base/src/org/compiere/model/MCurrency.java | 56 +++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/base/src/org/compiere/model/MCurrency.java b/base/src/org/compiere/model/MCurrency.java index 2c12bc1b2d..50f3308ffe 100644 --- a/base/src/org/compiere/model/MCurrency.java +++ b/base/src/org/compiere/model/MCurrency.java @@ -16,17 +16,22 @@ *****************************************************************************/ package org.compiere.model; +import java.sql.*; import java.util.*; +import java.util.logging.Level; + import org.compiere.util.*; /** * Currency Model. * * @author Jorg Janke - * @version $Id: MCurrency.java,v 1.3 2006/07/30 00:54:54 jjanke Exp $ */ public class MCurrency extends X_C_Currency { + + private static CLogger log = CLogger.getCLogger(MCurrency.class); + /** * Currency Constructor * @param ctx context @@ -45,6 +50,17 @@ public class MCurrency extends X_C_Currency } } // MCurrency + /** + * Resultset constructor + * + * @param ctx + * @param rs + * @param trxName + */ + public MCurrency(Properties ctx, ResultSet rs, String trxName) { + super(ctx, rs, trxName); + } + /** * Currency Constructor * @param ctx context @@ -71,6 +87,44 @@ public class MCurrency extends X_C_Currency /** Store System Currencies **/ private static CCache s_currencies = new CCache("C_Currency", 50); + /** Cache System Currencies by using ISO code as key **/ + private static CCache s_currenciesISO = new CCache("C_Currency", 50); + + /** + * Get Currency using ISO code + * @param ctx Context + * @param ISOcode Iso code + * @return MCurrency + */ + public static MCurrency get (Properties ctx, String ISOcode) + { + // Try Cache + MCurrency retValue = (MCurrency)s_currenciesISO.get(ISOcode); + if (retValue != null) + return retValue; + + // Try database + try { + Connection conn = DB.createConnection(true, true, Connection.TRANSACTION_READ_COMMITTED); + PreparedStatement ps = conn.prepareStatement("select * from c_currency where iso_code=?"); + ps.setString(1, ISOcode); + ResultSet rs = ps.executeQuery(); + if (rs.next()) { + retValue = new MCurrency(ctx, rs, null); + } + rs.close(); + ps.close(); + conn.close(); + } catch (Exception ee) { + log.log(Level.WARNING, ee.getMessage(), ee); + } + + // Save + if (retValue!=null) + s_currenciesISO.put(ISOcode, retValue); + return retValue; + } + /** * Get Currency