/ParaBond/src/scaly/parabond/test/Par00.scala
Scala | 178 lines | 78 code | 48 blank | 52 comment | 8 complexity | 5a8eb1db9248c7592bf1fe1e7dfcee16 MD5 | raw file
- /*
- * Copyright (c) Scaly Contributors
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the Scaly Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- package scaly.parabond.test
-
- import org.scalatest.junit.JUnitSuite
- import org.junit.Assert._
- import org.junit.Test
- import scaly.parabond.mr.MapReduce
- import com.mongodb.casbah.MongoConnection
- import com.mongodb.casbah.commons.MongoDBObject
- import com.mongodb.casbah.MongoCursor
- import scaly.parabond.util.MongoHelper
- import scaly.parabond.value.SimpleBondValuator
- import scala.util.Random
- import scaly.parabond.util.Helper
- import scaly.parabond.util.Data
- import scaly.parabond.util.Result
-
- /**
- * This class uses parallel collections to price n portfolios in the
- * parabond database using the composite "naive" algorithm.
- * @author Ron Coleman
- */
- class Par00 {
- /** Number of bond portfolios to analyze */
- val PORTF_NUM = 100
-
- /** Connect to the parabond DB */
- val mongo = MongoConnection(MongoHelper.getHost)("parabond")
-
- /** Initialize the random number generator */
- val ran = new Random(0)
-
- /** Write a detailed report */
- val details = false
-
- @Test
- def test {
- // Set the number of portfolios to analyze
- val arg = System.getProperty("n")
-
- val n = if(arg == null) PORTF_NUM else arg.toInt
-
- var me = this.getClass().getSimpleName()
- var outFile = me + "-dat.txt"
-
- var fos = new java.io.FileOutputStream(outFile,true)
- var os = new java.io.PrintStream(fos)
-
- os.print(me+" "+ "N: "+n+" ")
-
- val details = if(System.getProperty("details") != null) true else false
-
- // Build the portfolio list
- val inputs = for(i <- 0 until n) yield Data(ran.nextInt(100000)+1,null,null)
-
- val list = inputs.toList
-
- // Parallel map the input
- val now = System.nanoTime
-
- val outputs = inputs.par.map(price)
-
- val t1 = System.nanoTime
-
- // Generate the detailed output report
- if(details) {
- println("%6s %10.10s %-5s %-2s".format("PortId","Price","Bonds","dt"))
-
- outputs.foreach { output =>
- val id = output.id
-
- val dt = (output.result.t1 - output.result.t0) / 1000000000.0
-
- val bondCount = output.result.bondCount
-
- val price = output.result.price
-
- println("%6d %10.2f %5d %6.4f %12d %12d".format(id, price, bondCount, dt, output.result.t1 - now, output.result.t0 - now))
- }
- }
-
- val dt1 = outputs.foldLeft(0.0) { (sum, output) =>
- sum + (output.result.t1 - output.result.t0)
-
- } / 1000000000.0
-
- val dtN = (t1 - now) / 1000000000.0
-
- val speedup = dt1 / dtN
-
- val numCores = Runtime.getRuntime().availableProcessors()
-
- val e = speedup / numCores
-
- os.println("dt(1): %7.4f dt(N): %7.4f cores: %d R: %5.2f e: %5.2f ".
- format(dt1,dtN,numCores,speedup,e))
-
- os.flush
-
- os.close
-
- println(me+" DONE! %d %7.4f".format(n,dtN))
- }
-
- /**
- * Prices a portfolio using the "basic" algorithm.
- */
- def price(input: Data): Data = {
- // Value each bond in the portfolio
- val t0 = System.nanoTime
-
- // Connect to the portfolio collection
- val portfsCollecton = mongo("Portfolios")
-
- // Retrieve the portfolio
- val portfId = input.id
-
- val portfsQuery = MongoDBObject("id" -> portfId)
-
- val portfsCursor : MongoCursor = portfsCollecton.find(portfsQuery)
-
- // Get the bonds ids in the portfolio
- val bondIds = MongoHelper.asList(portfsCursor,"instruments")
-
- // Connect to the bonds collection
- val bondsCollection = mongo("Bonds")
-
- // Price each bond and sum all the prices
- val value = bondIds.foldLeft(0.0) { (sum, id) =>
- // Get the bond from the bond collection by its key id
- val bondQuery = MongoDBObject("id" -> id)
-
- val bondCursor: MongoCursor = bondsCollection.find(bondQuery)
-
- val bond = MongoHelper.asBond(bondCursor)
-
- // Price the bond
- val valuator = new SimpleBondValuator(bond, Helper.curveCoeffs)
-
- val price = valuator.price
-
- // The price into the aggregate sum
- sum + price
- }
-
- // Update the portfolio price
- MongoHelper.updatePrice(portfId,value)
-
- val t1 = System.nanoTime
-
- Data(portfId,null,Result(portfId,value,bondIds.size,t0,t1))
- }
- }