Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package breeze.generic
/*
Copyright 2012 David Hall
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.
*/
import collection.mutable.{ArrayBuffer, HashMap}
import java.util.concurrent.ConcurrentHashMap
import breeze.util.ReflectionUtil
import collection.mutable
/**
* A Multimethod is basically a glorified registry that uses dynamic reflection (and subtyping) to determine which
* version of the method to invoke.
*
* @author dlwh
*/
trait Multimethod[Method, A <: AnyRef, R] extends MMRegistry1[Method] { this: Method =>
protected def bindingMissing(a: A): R = throw new UnsupportedOperationException("Types not found!")
protected def multipleOptions(a: A, m: Map[Class[_],Method]) = {
throw new RuntimeException("Multiple bindings for method: " + m)
}
protected def doMethod(m: Method, a: A): R
def apply(a: A): R = {
val ac = a.asInstanceOf[AnyRef].getClass
val cached = cache.get(ac)
if(cached != null) {
doMethod(cached.asInstanceOf, a)
} else {
val options = resolve(ac)
options.size match {
case 0 => bindingMissing(a)
case 1 =>
val method = options.values.head
cache.put(ac, method)
doMethod(method, a)
case _ =>
val selected = selectBestOption(options)
if(selected.size != 1) {
multipleOptions(a, options)
} else {
val method = selected.values.head
cache.put(ac, method)
doMethod(method, a)
}
}
}
}
def register[AA <: A](op: Method)(implicit manA: Manifest[AA]) {
super.register(manA.runtimeClass.asInstanceOf[Class[AA]], op)
}
}
/**
* Basically Function1, but not because we don't want these coming up when implicit search happens...
* @tparam A
* @tparam R
*/
trait MethodImpl[A,+R] {
def apply(a: A):R
}
trait Multimethod2[Method[AA,BB,RR]<:Function2[AA,BB,RR],A, B, R] extends ((A, B) => R) with MMRegistry2[Method[_<:A, _<:B, _<:R]] { this: Method[A, B, R] =>
protected def bindingMissing(a: A, b: B):R = throw new UnsupportedOperationException("Types not found!" + a + b + " " + ops)
protected def multipleOptions(a: A, b: B, m: Map[(Class[_],Class[_]),Method[_ <: A, _ <: B, _ <: R]]) = {
throw new RuntimeException("Multiple bindings for method: " + m)
}
def apply(a: A, b: B): R = {
val ac = a.asInstanceOf[AnyRef].getClass
val bc = b.asInstanceOf[AnyRef].getClass
val cached = cache.get(ac -> bc)
if(cached != null) {
cached match {
case None => bindingMissing(a, b)
case Some(m) =>
m.asInstanceOf[Method[A, B, R]].apply(a, b)
}
} else {
val options = resolve(ac, bc.asInstanceOf[Class[_<:B]])
options.size match {
case 0 =>
cache.put(ac -> bc, None)
bindingMissing(a, b)
case 1 =>
val method = options.values.head
cache.put(ac -> bc, Some(method))
method.asInstanceOf[Method[A, B, R]].apply(a, b)
case _ =>
val selected = selectBestOption(options)
if(selected.size != 1)
multipleOptions(a, b, options)
else {
val method = selected.values.head
cache.put(ac -> bc, Some(method))
method.asInstanceOf[Method[A, B, R]].apply(a, b)
}
}
}
}
def register[AA<:A, BB<:B](op: Method[AA, BB, _ <: R])(implicit manA: Manifest[AA], manB: Manifest[BB]) {
super.register(manA.runtimeClass.asInstanceOf[Class[_]], manB.runtimeClass.asInstanceOf[Class[_]], op)
}
}
/**
* A Multiproc2 is a Multimethod that is guaranteed to return Unit
* @author dlwh
*/
trait Multiproc2[Method[AA,BB]<:(AA, BB) => Unit,A<:AnyRef,B] extends ((A, B) => Unit) with MMRegistry2[Method[_<:A, _<:B]] { this: Method[A, B] =>
protected def bindingMissing(a: A, b: B):Unit = throw new UnsupportedOperationException("Types not found!")
protected def multipleOptions(a: A, b: B, m: Map[(Class[_],Class[_]),Method[_ <: A, _ <: B]]) = {
throw new RuntimeException("Multiple bindings for method: " + m)
}
def apply(a: A, b: B):Unit = {
val ac = a.asInstanceOf[AnyRef].getClass
val bc = b.asInstanceOf[AnyRef].getClass
val cached = cache.get(ac -> bc)
if(cached != null) {
cached match {
case None => bindingMissing(a, b)
case Some(m) =>
m.asInstanceOf[Method[A, B]].apply(a, b)
}
} else {
val m = resolve(a.getClass, b.asInstanceOf[AnyRef].getClass.asInstanceOf[Class[_<:B]])
m.size match {
case 0 =>
cache.put(ac -> bc, None)
bindingMissing(a, b)
case 1 =>
val method = m.values.head
cache.put(ac -> bc, Some(method))
method.asInstanceOf[Method[A, B]].apply(a, b)
case _ =>
val selected = selectBestOption(m)
if(selected.size != 1)
multipleOptions(a, b, m)
else {
val method = selected.values.head
cache.put(ac -> bc, Some(method))
selected.values.head.asInstanceOf[Method[A, B]].apply(a, b)
}
}
}
}
def register[AA<:A, BB<:B](op: Method[AA, BB])(implicit manA: Manifest[AA], manB: Manifest[BB]) {
super.register(manA.runtimeClass.asInstanceOf[Class[AA]], manB.runtimeClass.asInstanceOf[Class[BB]], op)
}
}
// TODO: switch to identity hashing!
trait MMRegistry2[R] {
protected val ops = HashMap[(Class[_],Class[_]), R]()
protected val cache = new ConcurrentHashMap[(Class[_], Class[_]), Option[R]]()
def register(a: Class[_], b: Class[_], op: R) {
ops(a -> b) = op
if(b.isPrimitive) {
ops(a -> ReflectionUtil.boxedFromPrimitive(b)) = op
}
if(a.isPrimitive) {
ops(ReflectionUtil.boxedFromPrimitive(a) -> b) = op
if(b.isPrimitive) {
ops(ReflectionUtil.boxedFromPrimitive(a) -> ReflectionUtil.boxedFromPrimitive(b)) = op
}
}
cache.clear()
}
private def closeSupertypes(a: Class[_]) = {
val result = collection.mutable.Set[Class[_]]()
val queue = new mutable.Queue[Class[_]]()
queue.enqueue(a)
while(queue.nonEmpty) {
val t = queue.dequeue()
result += t
val s = t.getSuperclass
if(s != null) {
queue += s
}
for(i <- t.getInterfaces) {
if(!result(i)) {
queue += i
}
}
}
result
}
def resolve(a: Class[_], b: Class[_]):Map[(Class[_], Class[_]), R] = {
ops.get(a -> b) match {
case Some(m) => Map((a->b) -> m)
case None =>
val sa = closeSupertypes(a)
val sb = closeSupertypes(b)
val candidates = ArrayBuffer[((Class[_], Class[_]), R)]()
for( aa <- sa; bb <- sb; op <- ops.get(aa -> bb)) {
candidates += ((aa -> bb) -> op)
}
candidates.toMap[(Class[_], Class[_]), R]
}
}
/** This selects based on the partial order induced by the inheritance hierarchy.
* If there is ambiguity, all are returned.
**/
protected def selectBestOption(options:Map[(Class[_],Class[_]),R]) = {
var bestCandidates = Set[(Class[_],Class[_])]()
for ( pair@(aa,bb) <- options.keys) {
// if there is no option (aaa,bbb) s.t. aaa <: aa && bbb <: bb, then add it to the list
if (!bestCandidates.exists(pair => aa.isAssignableFrom(pair._1) && bb.isAssignableFrom(pair._2))) {
bestCandidates = bestCandidates.filterNot(pair => pair._1.isAssignableFrom(aa) && pair._2.isAssignableFrom(bb))
bestCandidates += pair
}
}
options.filterKeys(bestCandidates)
}
}
// TODO: switch to identity hashing!
trait MMRegistry3[R] {
protected val ops = HashMap[(Class[_],Class[_], Class[_]), R]()
protected val cache = new ConcurrentHashMap[(Class[_], Class[_], Class[_]), Option[R]]()
def register(a: Class[_], b: Class[_], c: Class[_], op: R) {
ops( (a, b, c)) = op
def choicesFor(a: Class[_]) = if(a.isPrimitive) Seq(a, ReflectionUtil.boxedFromPrimitive(a)) else Seq(a)
for(ac <- choicesFor(a); bc <- choicesFor(b); cc <- choicesFor(c)) {
ops( (ac, bc, cc)) = op
}
cache.clear()
}
private def closeSupertypes(a: Class[_]) = {
val result = collection.mutable.Set[Class[_]]()
val queue = new mutable.Queue[Class[_]]()
queue.enqueue(a)
while(queue.nonEmpty) {
val t = queue.dequeue()
result += t
val s = t.getSuperclass
if(s != null) {
queue += s
}
for(i <- t.getInterfaces) {
if(!result(i)) {
queue += i
}
}
}
result
}
def resolve(a: Class[_], b: Class[_], c: Class[_]):Map[(Class[_], Class[_], Class[_]), R] = {
ops.get((a,b,c)) match {
case Some(m) => Map((a, b, c) -> m)
case None =>
val sa = closeSupertypes(a)
val sb = closeSupertypes(b)
val sc = closeSupertypes(c)
val candidates = ArrayBuffer[((Class[_], Class[_], Class[_]), R)]()
for( aa <- sa; bb <- sb; cc <- sc; op <- ops.get((aa,bb,cc))) {
candidates += ((aa, bb, cc) -> op)
}
candidates.toMap[(Class[_], Class[_], Class[_]), R]
}
}
/** This selects based on the partial order induced by the inheritance hierarchy.
* If there is ambiguity, all are returned.
**/
protected def selectBestOption(options:Map[(Class[_],Class[_], Class[_]),R]) = {
var bestCandidates = Set[(Class[_],Class[_], Class[_])]()
for ( pair@(aa,bb,cc) <- options.keys) {
// if there is no option (aaa,bbb) s.t. aaa <: aa && bbb <: bb, then add it to the list
if (!bestCandidates.exists(pair => aa.isAssignableFrom(pair._1) && bb.isAssignableFrom(pair._2)) && cc.isAssignableFrom(pair._3)) {
bestCandidates = bestCandidates.filterNot(pair => pair._1.isAssignableFrom(aa) && pair._2.isAssignableFrom(bb) && pair._3.isAssignableFrom(cc))
bestCandidates += pair
}
}
options.filterKeys(bestCandidates)
}
}
trait MMRegistry1[M] {
protected val ops = HashMap[Class[_], M]()
protected val cache = new ConcurrentHashMap[Class[_], M]()
def register(a: Class[_], op: M) {
ops(a) = op
if(a.isPrimitive) {
ops(ReflectionUtil.boxedFromPrimitive(a)) = op
}
cache.clear()
}
protected def resolve(a: Class[_], checkedA: Set[Class[_]] = Set.empty):Map[Class[_], M] = {
ops.get(a) match {
case Some(m) => Map(a -> m)
case None =>
val newCA = checkedA ++ a.getInterfaces
val sa = a.getSuperclass +: a.getInterfaces.filterNot(checkedA)
val allParents = for(aa <- sa; if aa != null; m <- resolve(aa, newCA)) yield {
m
}
allParents.toMap
}
}
/** This selects based on the partial order induced by the inheritance hierarchy.
* If there is ambiguity, all are returned.
**/
protected def selectBestOption(options:Map[Class[_],M]) = {
var bestCandidates = Set[Class[_]]()
for ( aa <- options.keys) {
// if there is no option (aaa,bbb) s.t. aaa <: aa && bbb <: bb, then add it to the list
if (!bestCandidates.exists(c => aa.isAssignableFrom(c))) {
bestCandidates = bestCandidates.filterNot(c => c.isAssignableFrom(aa))
bestCandidates += aa
}
}
options.filterKeys(bestCandidates)
}
}