Code Monkey home page Code Monkey logo

mongo-query-streams's Introduction

Mongo-query-streams

Mongo query language

Design goals:

  • Provide mongo query creation in type safe manner
  • Write resource safe code
  • Use compositionality, expressiveness of scalaz-streams as advantage in mongo querying
  • Consider the result as ScalazStream or RxScala.

Getting Started

First, you will need to add the Bintray resolver settings to your SBT file:

    resolvers += "bintray-repo" at "http://dl.bintray.com/haghard/releases"    

and

  libraryDependencies += "org.mongo.scalaz"    %% "mongo-query-streams" %  "0.6.8"   

Examples

There are several way to create mongo query in type safe manner and treat it like a scalaz-stream process

Using native query which will be parser and validated

    import mongo.query._
    create { b 
      b.q(""" { "article" : 1 } """)
      b.collection("tmp")
      b.db("test_db")
    }
    

Using mongo.dsl._

    import mongo._
    import query._    
    create { b 
      b.q(&&("num" $gt 3, "name" $eq "James"))
      b.sort("num" $eq -1)
      b.collection("tmp")
      b.db("test_db")
    }
    

Using mongo.dsl2_

    import mongo._
    import query._
    import dsl2._
    val q = Obj($and().op -> List(Obj("num" -> Obj(($gte(), 3), ($lt(), 10))), Obj("name" -> literal("Bauer"))))
    create { b 
      b.q(q.toString)
      b.collection("tmp")
      b.db("test_db")
    }
    

Using monadic query composition

    import mongo._    
    import dsl._    
    
    val query = for {
    _  "producer_num" $eq 1
    x  "article" $gt 0 $lt 6 $nin Seq(4, 5)
    } yield x
    
    //string 
    query.toQuery    
    //DBObject
    query.toDBObject    

Using package dsl3 you can easy fetch one/batch/stream

    import mongo._
    import dsl3._
    import Query._
    import Interaction._
    import rx.lang.scala.{ Observable, Subscriber }
  
    val query = for {
      _  "producer_num" $gt 1 $lt 10
      _  "article" $gt 0 $lt 6 $nin Seq(4, 5)
      q <- sort("producer_num" -> Descending)
    } yield q
    
    //scalar result
    query.findOne(client, DB_NAME, PRODUCT).attemptRun
    
    //batch result
    query.list(client, DB_NAME, PRODUCT).attemptRun    
    
    //or stream of BasicDBObject     
    query.stream[MProcess](TEST_DB, LANGS)
        
    //or stream of Int from field "f2" using Observable    
    query.stream[Observable](TEST_DB, LANGS).column[Int]("f2")
    
    //or stream of Strings from field "f" using Process
    query.sChannel[MStream](TEST_DB, LANGS).column[String]("f")    
    
    

Here's a basic example how to build query, run and get results:

  import mongo_  
  import query._
  import dsl._
  import scalaz.concurrent.Task
  import scalaz.stream.process._
  import scalaz.stream.Process

  val client: MongoClient = ...
  val Resource = eval(Task.delay(client))
  
  val buffer: Buffer[Int] = Buffer.empty
  val sink = scalaz.stream.io.fillBuffer(buffer)
  
  implicit val exec = newFixedThreadPool(2, new NamedThreadFactory("db-worker"))

  val products = create { b 
    b.q("article" $gt 2 $lt 40)
    b.collection(PRODUCT)
    b.db(TEST_DB)
  }.column[Int]("article")
  
   (for {
    article  Resource through products.out
    _  article to sink
   } yield ())          
    .onFailure { th  logger.debug(s"Failure: ${th.getMessage}"); halt }
    .onComplete(P.eval(Task.delay(logger.debug(s"Interaction has been completed"))))
    .run.run
   
  //result here
  buffer
   

Big win here is that products value incapsulates a full interaction lifecycle for with mongo client (get db by name, get collection by name, submit query with preferences, fetch records from cursor, close the cursor). If exception occurs cursor will close.

We do support join between 2 collections and 2 different streaming library RxScala and ScalazStream through single type mongo.join.Join which can by parametrized with MongoProcess and MongoObservable

We have two methods for join collections: joinByPk and join. If you ok with output type from left stream only with key field you should use joinByPk. If you aren't, than use join for unlimited opportunities in output record.

Here's a example of how you can do joinByPk between collections LANGS and PROGRAMMERS by LANGS.index == PROGRAMMERS.lang using Scalaz Streams

  import mongo._
  import join._    
  import dsl._
  import Query._
  import scalaz.stream.Process
  import mongo.join.process.MongoProcessStream
  
  val buffer = Buffer.empty[String]
  val Sink = scalaz.stream.io.fillBuffer(buffer)
    
  val qLang = for { 
      _  "index" $gte 0 $lte 5
      q <- sort("index" -> Descending)
    } yield q
    
  def qProg(id: Int) = for { q  "lang" $eq id } yield q
  
  implicit val exec = newFixedThreadPool(2, new NamedThreadFactory("db-worker"))
  implicit val c = client
  val joiner = Join[MongoProcess]
      
  val query = joiner.joinByPk(qLang, LANGS, "index", qProg(_: Int), PROGRAMMERS, TEST_DB) { (l, r: DBObject) 
    s"Primary-key:$l - val:[Foreign-key:${r.get("lang")} - ${r.get("name")}]"
  }              
          
  for {
    e  Process.eval(Task.delay(client)) through query.out
    _  e to Sink
  } yield ()
    .onFailure { th  logger.debug(s"Failure: ${th.getMessage}"); halt }
    .onComplete(P.eval(Task.delay(logger.debug(s"Interaction has been completed"))))
    .run.run      
  

Join using rx.lang.scala.Observable

  import mongo._
  import join._
  import dsl._
  import Query._
  import rx.lang.scala.Subscriber  
  import rx.lang.scala.schedulers.ExecutionContextScheduler
  import mongo.join.observable.MongoObservableStream
  
  val buffer = Buffer.empty[String]
  val Sink = io.fillBuffer(buffer)
      
  val qLang = for { 
    _  "index" $gte 0 $lte 5
    q <- sort("index" -> Descending)
  } yield q
  
  def qProg(id: Int) = for { q  "lang" $eq id } yield q
  
  implicit val exec = newFixedThreadPool(2, new NamedThreadFactory("db-worker"))
  implicit val c = client
  val joiner = Join[MongoObservable]
  
  val query = joiner.joinByPk(qLang, LANGS, "index", qProg(_: Int), PROGRAMMERS, TEST_DB) { (l, r: DBObject) 
    s"Primary-key:$l - val:[Foreign-key:${r.get("lang")} - ${r.get("name")}]"
  }
  
  val testSubs = new Subscriber[String] {
    override def onStart(): Unit = request(1)
    override def onNext(n: String) = request(1)    
    override def onError(e: Throwable) = logger.info(s"OnError: ${e.getMessage}")
    override def onCompleted(): Unit = logger.info("Interaction has been completed")          
  }
  
  query.observeOn(ExecutionContextScheduler(ExecutionContext.fromExecutor(executor)))
    .subscribe(testSubs)
    

To run tests: sbt test

html pages: sbt test-only -- html

markdown files: sbt test-only -- markdown

To run output on console test-only -- console

Generated files can be found in /target/spec2-reports

Status

0.6.9 version

mongo-query-streams's People

Contributors

haghard avatar

Watchers

James Cloos avatar  avatar

mongo-query-streams's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.