CacheManager.java

  1. package org.drip.service.env;

  2. /*
  3.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  4.  */

  5. /*!
  6.  * Copyright (C) 2020 Lakshmi Krishnamurthy
  7.  * Copyright (C) 2019 Lakshmi Krishnamurthy
  8.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  9.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  10.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  11.  * Copyright (C) 2015 Lakshmi Krishnamurthy
  12.  *
  13.  *  This file is part of DROP, an open-source library targeting analytics/risk, transaction cost analytics,
  14.  *      asset liability management analytics, capital, exposure, and margin analytics, valuation adjustment
  15.  *      analytics, and portfolio construction analytics within and across fixed income, credit, commodity,
  16.  *      equity, FX, and structured products. It also includes auxiliary libraries for algorithm support,
  17.  *      numerical analysis, numerical optimization, spline builder, model validation, statistical learning,
  18.  *      and computational support.
  19.  *  
  20.  *      https://lakshmidrip.github.io/DROP/
  21.  *  
  22.  *  DROP is composed of three modules:
  23.  *  
  24.  *  - DROP Product Core - https://lakshmidrip.github.io/DROP-Product-Core/
  25.  *  - DROP Portfolio Core - https://lakshmidrip.github.io/DROP-Portfolio-Core/
  26.  *  - DROP Computational Core - https://lakshmidrip.github.io/DROP-Computational-Core/
  27.  *
  28.  *  DROP Product Core implements libraries for the following:
  29.  *  - Fixed Income Analytics
  30.  *  - Loan Analytics
  31.  *  - Transaction Cost Analytics
  32.  *
  33.  *  DROP Portfolio Core implements libraries for the following:
  34.  *  - Asset Allocation Analytics
  35.  *  - Asset Liability Management Analytics
  36.  *  - Capital Estimation Analytics
  37.  *  - Exposure Analytics
  38.  *  - Margin Analytics
  39.  *  - XVA Analytics
  40.  *
  41.  *  DROP Computational Core implements libraries for the following:
  42.  *  - Algorithm Support
  43.  *  - Computation Support
  44.  *  - Function Analysis
  45.  *  - Model Validation
  46.  *  - Numerical Analysis
  47.  *  - Numerical Optimizer
  48.  *  - Spline Builder
  49.  *  - Statistical Learning
  50.  *
  51.  *  Documentation for DROP is Spread Over:
  52.  *
  53.  *  - Main                     => https://lakshmidrip.github.io/DROP/
  54.  *  - Wiki                     => https://github.com/lakshmiDRIP/DROP/wiki
  55.  *  - GitHub                   => https://github.com/lakshmiDRIP/DROP
  56.  *  - Repo Layout Taxonomy     => https://github.com/lakshmiDRIP/DROP/blob/master/Taxonomy.md
  57.  *  - Javadoc                  => https://lakshmidrip.github.io/DROP/Javadoc/index.html
  58.  *  - Technical Specifications => https://github.com/lakshmiDRIP/DROP/tree/master/Docs/Internal
  59.  *  - Release Versions         => https://lakshmidrip.github.io/DROP/version.html
  60.  *  - Community Credits        => https://lakshmidrip.github.io/DROP/credits.html
  61.  *  - Issues Catalog           => https://github.com/lakshmiDRIP/DROP/issues
  62.  *  - JUnit                    => https://lakshmidrip.github.io/DROP/junit/index.html
  63.  *  - Jacoco                   => https://lakshmidrip.github.io/DROP/jacoco/index.html
  64.  *
  65.  *  Licensed under the Apache License, Version 2.0 (the "License");
  66.  *      you may not use this file except in compliance with the License.
  67.  *  
  68.  *  You may obtain a copy of the License at
  69.  *      http://www.apache.org/licenses/LICENSE-2.0
  70.  *  
  71.  *  Unless required by applicable law or agreed to in writing, software
  72.  *      distributed under the License is distributed on an "AS IS" BASIS,
  73.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  74.  *  
  75.  *  See the License for the specific language governing permissions and
  76.  *      limitations under the License.
  77.  */

  78. /**
  79.  * <i>CacheManager</i> implements the DRIP Cache Management Functionality, and contains the Functions to Add,
  80.  * Delete, Retrieve, and Time out a Key-Value Pair along the lines of memcached.
  81.  *
  82.  * <br><br>
  83.  *  <ul>
  84.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationalCore.md">Computational Core Module</a></li>
  85.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationSupportLibrary.md">Computation Support</a></li>
  86.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/service/README.md">Environment, Product/Definition Containers, and Scenario/State Manipulation APIs</a></li>
  87.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/service/env/README.md">Library Module Loader Environment Manager</a></li>
  88.  *  </ul>
  89.  * <br><br>
  90.  *
  91.  * @author Lakshmi Krishnamurthy
  92.  */

  93. public class CacheManager {
  94.     private static final boolean s_bLog = true;
  95.     private static java.util.concurrent.ConcurrentHashMap<java.lang.String, java.lang.String> s_mapCache =
  96.         null;

  97.     private static final java.util.concurrent.ScheduledExecutorService _ses =
  98.         java.util.concurrent.Executors.newScheduledThreadPool (1);

  99.     /**
  100.      * Initialize the Cache Manager
  101.      *
  102.      * @return TRUE - The Cache Manager successfully initialized
  103.      */

  104.     public static final boolean Init()
  105.     {
  106.         if (null != s_mapCache) return true;

  107.         s_mapCache = new java.util.concurrent.ConcurrentHashMap<java.lang.String, java.lang.String>();

  108.         return true;
  109.     }

  110.     /**
  111.      * The Put Method adds a Key/Value Pair to the In-Memory KV Store
  112.      *
  113.      * @param strKey The Key
  114.      * @param strValue The Value
  115.      * @param lSecondsToExpiry The Time to Expiry of the Key/Value Pair
  116.      *
  117.      * @return Return Value from the Underlying HashMap.put
  118.      */

  119.     public static final java.lang.String Put (
  120.         final java.lang.String strKey,
  121.         final java.lang.String strValue,
  122.         final long lSecondsToExpiry)
  123.     {
  124.         if (null == strKey || strKey.isEmpty() || null == strValue || strValue.isEmpty()) return null;

  125.         if (0 < lSecondsToExpiry) {
  126.             java.lang.Runnable timedTask = new java.lang.Runnable() {
  127.                 @Override public void run() {
  128.                     if (s_bLog)
  129.                         System.out.println ("\t\t[" + new java.util.Date() + "] Removing " + strKey +
  130.                             " from Thread " + java.lang.Thread.currentThread());

  131.                     if (s_mapCache.contains (strKey)) s_mapCache.remove (strKey);
  132.                 }
  133.             };

  134.             _ses.schedule (timedTask, lSecondsToExpiry, java.util.concurrent.TimeUnit.SECONDS);
  135.         }

  136.         return s_mapCache.put (strKey, strValue);
  137.     }

  138.     /**
  139.      * The Contains Method checks the Presence of the specified Key
  140.      *
  141.      * @param strKey The Key
  142.      *
  143.      * @return Return Value from the Underlying HashMap.contains
  144.      */

  145.     public static final boolean Contains (
  146.         final java.lang.String strKey)
  147.     {
  148.         if (null == strKey || strKey.isEmpty()) return false;

  149.         return s_mapCache.contains (strKey);
  150.     }

  151.     /**
  152.      * The Get Method retrieves the Value given the Key
  153.      *
  154.      * @param strKey The Key
  155.      *
  156.      * @return Return Value from the Underlying HashMap.get
  157.      */

  158.     public static final java.lang.String Get (
  159.         final java.lang.String strKey)
  160.     {
  161.         if (null == strKey || strKey.isEmpty()) return null;

  162.         return s_mapCache.get (strKey);
  163.     }
  164. }