packages feed

hydra-0.12.0: src/main/haskell/Hydra/Sources/Kernel/Terms/Variants.hs

{-# LANGUAGE OverloadedStrings #-}

module Hydra.Sources.Kernel.Terms.Variants where

-- Standard imports for term-level kernel modules
import Hydra.Kernel
import Hydra.Sources.Libraries
import qualified Hydra.Dsl.Accessors     as Accessors
import qualified Hydra.Dsl.Ast           as Ast
import qualified Hydra.Dsl.Coders        as Coders
import qualified Hydra.Dsl.Compute       as Compute
import qualified Hydra.Dsl.Core          as Core
import qualified Hydra.Dsl.Grammar       as Grammar
import qualified Hydra.Dsl.Graph         as Graph
import qualified Hydra.Dsl.Json          as Json
import qualified Hydra.Dsl.Lib.Chars     as Chars
import qualified Hydra.Dsl.Lib.Equality  as Equality
import qualified Hydra.Dsl.Lib.Flows     as Flows
import qualified Hydra.Dsl.Lib.Lists     as Lists
import qualified Hydra.Dsl.Lib.Literals  as Literals
import qualified Hydra.Dsl.Lib.Logic     as Logic
import qualified Hydra.Dsl.Lib.Maps      as Maps
import qualified Hydra.Dsl.Lib.Math      as Math
import qualified Hydra.Dsl.Lib.Optionals as Optionals
import           Hydra.Dsl.Phantoms      as Phantoms
import qualified Hydra.Dsl.Lib.Sets      as Sets
import           Hydra.Dsl.Lib.Strings   as Strings
import qualified Hydra.Dsl.Mantle        as Mantle
import qualified Hydra.Dsl.Module        as Module
import qualified Hydra.Dsl.TTerms        as TTerms
import qualified Hydra.Dsl.TTypes        as TTypes
import qualified Hydra.Dsl.Terms         as Terms
import qualified Hydra.Dsl.Topology      as Topology
import qualified Hydra.Dsl.Types         as Types
import qualified Hydra.Dsl.Typing        as Typing
import           Hydra.Sources.Kernel.Types.All
import           Prelude hiding ((++))
import qualified Data.Int                as I
import qualified Data.List               as L
import qualified Data.Map                as M
import qualified Data.Set                as S
import qualified Data.Maybe              as Y


module_ :: Module
module_ = Module (Namespace "hydra.variants") elements
    []
    kernelTypesModules $
    Just ("Functions for working with term, type, and literal type variants, as well as numeric precision.")
  where
    elements = [
      el eliminationVariantDef,
      el eliminationVariantsDef,
      el floatTypePrecisionDef,
      el floatTypesDef,
      el floatValueTypeDef,
      el functionVariantDef,
      el functionVariantsDef,
      el integerTypeIsSignedDef,
      el integerTypePrecisionDef,
      el integerTypesDef,
      el integerValueTypeDef,
      el literalTypeDef,
      el literalTypeVariantDef,
      el literalTypesDef,
      el literalVariantDef,
      el literalVariantsDef,
      el termVariantDef,
      el termVariantsDef,
      el typeVariantDef,
      el typeVariantsDef]

define :: String -> TTerm a -> TBinding a
define = definitionInModule module_

eliminationVariantDef :: TBinding (Elimination -> EliminationVariant)
eliminationVariantDef = define "eliminationVariant" $
  doc "Find the elimination variant (constructor) for a given elimination term" $
  match _Elimination Nothing [
    _Elimination_product>>: constant Mantle.eliminationVariantProduct,
    _Elimination_record>>: constant Mantle.eliminationVariantRecord,
    _Elimination_union>>: constant Mantle.eliminationVariantUnion,
    _Elimination_wrap>>: constant Mantle.eliminationVariantWrap]

eliminationVariantsDef :: TBinding [EliminationVariant]
eliminationVariantsDef = define "eliminationVariants" $
  doc "All elimination variants (constructors), in a canonical order" $
  list $ unitVariant _EliminationVariant <$> [
    _EliminationVariant_product,
    _EliminationVariant_record,
    _EliminationVariant_union,
    _EliminationVariant_wrap]

floatTypePrecisionDef :: TBinding (FloatType -> Precision)
floatTypePrecisionDef = define "floatTypePrecision" $
  doc "Find the precision of a given floating-point type" $
  match _FloatType Nothing [
    _FloatType_bigfloat>>: constant Mantle.precisionArbitrary,
    _FloatType_float32>>: constant $ Mantle.precisionBits $ int32 32,
    _FloatType_float64>>: constant $ Mantle.precisionBits $ int32 64]

floatTypesDef :: TBinding [FloatType]
floatTypesDef = define "floatTypes" $
  doc "All floating-point types in a canonical order" $
  list $ unitVariant _FloatType <$> [
    _FloatType_bigfloat,
    _FloatType_float32,
    _FloatType_float64]

floatValueTypeDef :: TBinding (FloatValue -> FloatType)
floatValueTypeDef = define "floatValueType" $
  doc "Find the float type for a given floating-point value" $
  match _FloatValue Nothing [
    _FloatValue_bigfloat>>: constant Core.floatTypeBigfloat,
    _FloatValue_float32>>: constant Core.floatTypeFloat32,
    _FloatValue_float64>>: constant Core.floatTypeFloat64]

functionVariantDef :: TBinding (Function -> FunctionVariant)
functionVariantDef = define "functionVariant" $
  doc "Find the function variant (constructor) for a given function" $
  match _Function Nothing [
    _Function_elimination>>: constant Mantle.functionVariantElimination,
    _Function_lambda>>: constant Mantle.functionVariantLambda,
    _Function_primitive>>: constant Mantle.functionVariantPrimitive]

functionVariantsDef :: TBinding [FunctionVariant]
functionVariantsDef = define "functionVariants" $
  doc "All function variants (constructors), in a canonical order" $
  list $ unitVariant _FunctionVariant <$> [
    _FunctionVariant_elimination,
    _FunctionVariant_lambda,
    _FunctionVariant_primitive]

integerTypeIsSignedDef :: TBinding (IntegerType -> Bool)
integerTypeIsSignedDef = define "integerTypeIsSigned" $
  doc "Find whether a given integer type is signed (true) or unsigned (false)" $
  match _IntegerType Nothing [
    _IntegerType_bigint>>: constant true,
    _IntegerType_int8>>:   constant true,
    _IntegerType_int16>>:  constant true,
    _IntegerType_int32>>:  constant true,
    _IntegerType_int64>>:  constant true,
    _IntegerType_uint8>>:  constant false,
    _IntegerType_uint16>>: constant false,
    _IntegerType_uint32>>: constant false,
    _IntegerType_uint64>>: constant false]

integerTypePrecisionDef :: TBinding (IntegerType -> Precision)
integerTypePrecisionDef = define "integerTypePrecision" $
  doc "Find the precision of a given integer type" $
  match _IntegerType Nothing [
    _IntegerType_bigint>>: constant Mantle.precisionArbitrary,
    _IntegerType_int8>>: constant $ Mantle.precisionBits $ int32 8,
    _IntegerType_int16>>: constant $ Mantle.precisionBits $ int32 16,
    _IntegerType_int32>>: constant $ Mantle.precisionBits $ int32 32,
    _IntegerType_int64>>: constant $ Mantle.precisionBits $ int32 64,
    _IntegerType_uint8>>: constant $ Mantle.precisionBits $ int32 8,
    _IntegerType_uint16>>: constant $ Mantle.precisionBits $ int32 16,
    _IntegerType_uint32>>: constant $ Mantle.precisionBits $ int32 32,
    _IntegerType_uint64>>: constant $ Mantle.precisionBits $ int32 64]

integerTypesDef :: TBinding [IntegerType]
integerTypesDef = define "integerTypes" $
  doc "All integer types, in a canonical order" $
  list $ unitVariant _IntegerType <$> [
    _IntegerType_bigint,
    _IntegerType_int8,
    _IntegerType_int16,
    _IntegerType_int32,
    _IntegerType_int64,
    _IntegerType_uint8,
    _IntegerType_uint16,
    _IntegerType_uint32,
    _IntegerType_uint64]

integerValueTypeDef :: TBinding (IntegerValue -> IntegerType)
integerValueTypeDef = define "integerValueType" $
  doc "Find the integer type for a given integer value" $
  match _IntegerValue Nothing [
    _IntegerValue_bigint>>: constant Core.integerTypeBigint,
    _IntegerValue_int8>>: constant Core.integerTypeInt8,
    _IntegerValue_int16>>: constant Core.integerTypeInt16,
    _IntegerValue_int32>>: constant Core.integerTypeInt32,
    _IntegerValue_int64>>: constant Core.integerTypeInt64,
    _IntegerValue_uint8>>: constant Core.integerTypeUint8,
    _IntegerValue_uint16>>: constant Core.integerTypeUint16,
    _IntegerValue_uint32>>: constant Core.integerTypeUint32,
    _IntegerValue_uint64>>: constant Core.integerTypeUint64]

literalTypeDef :: TBinding (Literal -> LiteralType)
literalTypeDef = define "literalType" $
  doc "Find the literal type for a given literal value" $
  match _Literal Nothing [
    _Literal_binary>>: constant $ variant _LiteralType _LiteralType_binary unit,
    _Literal_boolean>>: constant $ variant _LiteralType _LiteralType_boolean unit,
    _Literal_float>>: injectLambda _LiteralType _LiteralType_float <.> ref floatValueTypeDef,
    _Literal_integer>>: injectLambda _LiteralType _LiteralType_integer <.> ref integerValueTypeDef,
    _Literal_string>>: constant $ variant _LiteralType _LiteralType_string unit]

literalTypeVariantDef :: TBinding (LiteralType -> LiteralVariant)
literalTypeVariantDef = define "literalTypeVariant" $
  doc "Find the literal type variant (constructor) for a given literal value" $
  match _LiteralType Nothing [
    _LiteralType_binary>>:  constant $ Mantle.literalVariantBinary,
    _LiteralType_boolean>>: constant $ Mantle.literalVariantBoolean,
    _LiteralType_float>>:   constant $ Mantle.literalVariantFloat,
    _LiteralType_integer>>: constant $ Mantle.literalVariantInteger,
    _LiteralType_string>>:  constant $ Mantle.literalVariantString]

literalTypesDef :: TBinding [LiteralType]
literalTypesDef = define "literalTypes" $
  doc "All literal types, in a canonical order" $
  Lists.concat $ list [
    list [
      Core.literalTypeBinary,
      Core.literalTypeBoolean],
    Lists.map (unaryFunction Core.literalTypeFloat) (ref floatTypesDef),
    Lists.map (unaryFunction Core.literalTypeInteger) (ref integerTypesDef),
    list [
      Core.literalTypeString]]

literalVariantDef :: TBinding (Literal -> LiteralVariant)
literalVariantDef = define "literalVariant" $
  doc "Find the literal variant (constructor) for a given literal value" $
  ref literalTypeVariantDef <.> ref literalTypeDef

literalVariantsDef :: TBinding [LiteralVariant]
literalVariantsDef = define "literalVariants" $
  doc "All literal variants, in a canonical order" $
  list $ unitVariant _LiteralVariant <$> [
    _LiteralVariant_binary,
    _LiteralVariant_boolean,
    _LiteralVariant_float,
    _LiteralVariant_integer,
    _LiteralVariant_string]

termVariantDef :: TBinding (Term -> TermVariant)
termVariantDef = define "termVariant" $
  doc "Find the term variant (constructor) for a given term" $
  match _Term Nothing [
    _Term_annotated>>: constant Mantle.termVariantAnnotated,
    _Term_application>>: constant Mantle.termVariantApplication,
    _Term_function>>: constant Mantle.termVariantFunction,
    _Term_let>>: constant Mantle.termVariantLet,
    _Term_list>>: constant Mantle.termVariantList,
    _Term_literal>>: constant Mantle.termVariantLiteral,
    _Term_map>>: constant Mantle.termVariantMap,
    _Term_optional>>: constant Mantle.termVariantOptional,
    _Term_product>>: constant Mantle.termVariantProduct,
    _Term_record>>: constant Mantle.termVariantRecord,
    _Term_set>>: constant Mantle.termVariantSet,
    _Term_sum>>: constant Mantle.termVariantSum,
    _Term_typeApplication>>: constant Mantle.termVariantTypeApplication,
    _Term_typeLambda>>: constant Mantle.termVariantTypeLambda,
    _Term_union>>: constant Mantle.termVariantUnion,
    _Term_unit>>: constant Mantle.termVariantUnit,
    _Term_variable>>: constant Mantle.termVariantVariable,
    _Term_wrap>>: constant Mantle.termVariantWrap]

termVariantsDef :: TBinding [TermVariant]
termVariantsDef = define "termVariants" $
  doc "All term (expression) variants, in a canonical order" $
  list $ unitVariant _TermVariant <$> [
    _TermVariant_annotated,
    _TermVariant_application,
    _TermVariant_literal,
    _TermVariant_function,
    _TermVariant_list,
    _TermVariant_map,
    _TermVariant_optional,
    _TermVariant_product,
    _TermVariant_record,
    _TermVariant_set,
    _TermVariant_sum,
    _TermVariant_typeLambda,
    _TermVariant_typeApplication,
    _TermVariant_union,
    _TermVariant_unit,
    _TermVariant_variable,
    _TermVariant_wrap]

typeVariantDef :: TBinding (Type -> TypeVariant)
typeVariantDef = define "typeVariant" $
  doc "Find the type variant (constructor) for a given type" $
  match _Type Nothing [
    _Type_annotated>>: constant Mantle.typeVariantAnnotated,
    _Type_application>>: constant Mantle.typeVariantApplication,
    _Type_function>>: constant Mantle.typeVariantFunction,
    _Type_forall>>: constant Mantle.typeVariantForall,
    _Type_list>>: constant Mantle.typeVariantList,
    _Type_literal>>: constant Mantle.typeVariantLiteral,
    _Type_map>>: constant Mantle.typeVariantMap,
    _Type_optional>>: constant Mantle.typeVariantOptional,
    _Type_product>>: constant Mantle.typeVariantProduct,
    _Type_record>>: constant Mantle.typeVariantRecord,
    _Type_set>>: constant Mantle.typeVariantSet,
    _Type_sum>>: constant Mantle.typeVariantSum,
    _Type_union>>: constant Mantle.typeVariantUnion,
    _Type_unit>>: constant Mantle.typeVariantUnit,
    _Type_variable>>: constant Mantle.typeVariantVariable,
    _Type_wrap>>: constant Mantle.typeVariantWrap]

typeVariantsDef :: TBinding [TypeVariant]
typeVariantsDef = define "typeVariants" $
  doc "All type variants, in a canonical order" $
  list $ unitVariant _TypeVariant <$> [
    _TypeVariant_annotated,
    _TypeVariant_application,
    _TypeVariant_function,
    _TypeVariant_forall,
    _TypeVariant_list,
    _TypeVariant_literal,
    _TypeVariant_map,
    _TypeVariant_wrap,
    _TypeVariant_optional,
    _TypeVariant_product,
    _TypeVariant_record,
    _TypeVariant_set,
    _TypeVariant_sum,
    _TypeVariant_union,
    _TypeVariant_unit,
    _TypeVariant_variable]