All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scray.querying.source.package.scala Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
// See the LICENCE.txt file distributed with this work for additional
// information regarding copyright ownership.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package scray.querying

import com.twitter.util.Future
import com.twitter.concurrent.Spool
import scray.querying.description.Row
import scray.querying.description.Column

package object source {
  type LazyDataFuture = Future[Spool[Row]]
  type EagerDataFuture = Future[Seq[Row]]
  
  /**
   * compares two rows according to a column
   * empty rows or rows without column in question are "bigger" than the others 
   */
  def rowCompWithOrdering[T](column: Column, ordering: Ordering[T], descending: Boolean): (Row, Row) => Boolean = (row1, row2) => {
    val a = row1.getColumnValue(column)
    val b = row2.getColumnValue(column)
    if(a.isEmpty) { 
      if(b.isEmpty) {
        descending ^ true
      } else {
        descending ^ false
      }
    } else { 
      if(b.isDefined) { 
        descending ^ ordering.compare(a.get, b.get) <= 0
      } else { 
        descending ^ true 
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy