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

org.scalatest.diagrams.DiagrammedExpr.scala Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2001-2013 Artima, Inc.
 *
 * 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 org.scalatest.diagrams

private[diagrams] case class AnchorValue(anchor: Int, value: Any)

/**
 * A trait that represent an expression recorded by DiagrammedExprMacro, which includes the following members:
 *
 * 
    *
  • a boolean value
  • *
  • an anchor that records the position of this expression
  • *
  • anchor values of this expression (including sub-expressions)
  • *
* * DiagrammedExpr is used by code generated from DiagrammedAssertionsMacro, it needs to be public * so that the generated code can be compiled. It is expected that ScalaTest users would ever need to use DiagrammedExpr * directly. */ trait DiagrammedExpr[+T] { val anchor: Int def anchorValues: List[AnchorValue] def value: T protected[diagrams] def eliminateDuplicates(anchorValues: List[AnchorValue]): List[AnchorValue] = (anchorValues.groupBy(_.anchor).map { case (anchor, group) => group.last }).toList } /** * DiagrammedExpr companion object that provides factory methods to create different sub types of DiagrammedExpr * * DiagrammedExpr is used by code generated from DiagrammedAssertionsMacro, it needs to be public * so that the generated code can be compiled. It is expected that ScalaTest users would ever need to use DiagrammedExpr * directly. */ object DiagrammedExpr { /** * Create simple DiagrammedExpr that wraps expressions that is not Select, Apply or TypeApply. * * @param expression the expression value * @param anchor the anchor of the expression * @return a simple DiagrammedExpr */ def simpleExpr[T](expression: T, anchor: Int): DiagrammedExpr[T] = new DiagrammedSimpleExpr(expression, anchor) /** * Create by-name DiagrammedExpr that wraps by-name or Function expression. * The created DiagrammedExpr will not be displayed in the diagram as value. * * @param expression the by-name expression value * @param anchor the anchor of the expression * @return a by-name DiagrammedExpr */ def byNameExpr[T](expression: => T, anchor: Int): DiagrammedExpr[T] = new DiagrammedByNameExpr(expression, anchor) /** * Create apply DiagrammedExpr that wraps Apply or TypeApply expression. * * @param qualifier the qualifier of the Apply or TypeApply expression * @param args the arguments of the Apply or TypeApply expression * @param value the expression value * @param anchor the anchor of the expression * @return an apply DiagrammedExpr */ def applyExpr[T](qualifier: DiagrammedExpr[_], args: List[DiagrammedExpr[_]], value: T, anchor: Int): DiagrammedExpr[T] = new DiagrammedApplyExpr(qualifier, args, value, anchor) /** * Create select DiagrammedExpr that wraps Select expression. * * @param qualifier the qualifier of the Apply or TypeApply expression * @param value the expression value * @param anchor the anchor of the expression * @return a select DiagrammedExpr */ def selectExpr[T](qualifier: DiagrammedExpr[_], value: T, anchor: Int): DiagrammedExpr[T] = new DiagrammedSelectExpr(qualifier, value, anchor) } private[diagrams] class DiagrammedSimpleExpr[T](val value: T, val anchor: Int) extends DiagrammedExpr[T] { def anchorValues = List(AnchorValue(anchor, value)) } private[diagrams] class DiagrammedByNameExpr[T](valueFun: => T, val anchor: Int) extends DiagrammedExpr[T] { lazy val value: T = valueFun def anchorValues = List.empty } private[diagrams] class DiagrammedApplyExpr[T](qualifier: DiagrammedExpr[_], args: List[DiagrammedExpr[_]], val value: T, val anchor: Int) extends DiagrammedExpr[T] { def anchorValues = { val quantifierAnchorValues = eliminateDuplicates(qualifier.anchorValues) val argsAnchorValues = args.flatMap { arg => eliminateDuplicates(arg.anchorValues) } quantifierAnchorValues.toList ::: AnchorValue(anchor, value) :: argsAnchorValues.filter(_.anchor >= 0) } } private[diagrams] class DiagrammedSelectExpr[T](qualifier: DiagrammedExpr[_], val value: T, val anchor: Int) extends DiagrammedExpr[T] { def anchorValues = { val quantifierAnchorValues = eliminateDuplicates(qualifier.anchorValues) quantifierAnchorValues.toList ::: List(AnchorValue(anchor, value)) } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy