Packages

c

molecule.datomic.base.api

DatomicEntity

abstract class DatomicEntity extends Quoted

Entity wrapper with actions on entity.

Source
DatomicEntity.scala
Linear Supertypes
Quoted, AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. DatomicEntity
  2. Quoted
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DatomicEntity(conn: Conn, eid: Any)

    conn

    Implicit Conn in scope

    eid

    Entity id of type Object

Type Members

  1. case class RetractMolecule(txMeta: MoleculeBase) extends Product with Serializable

    Wrapper to add retract methods on entity with transaction meta data.

    Wrapper to add retract methods on entity with transaction meta data.

    RetractMolecule is created from calling Tx:

    val benId = Person.name("Ben").Tx(MyMetaData.action("add member")).save.eid
    
    // Retract entity with tx meta data
    benId.Tx(MyMetaData.action("moved away")).retract
    
    // Query for Ben's history and why he was retracted
    Person(benId).name.t.op.Tx(MyMetaData.action).getHistory === List(
      ("Ben", 1028, true, "add member"), // Ben added as member
      ("Ben", 1030, false, "moved away") // Ben retracted since he moved away
    )
    txMeta

    A molecule with transaction meta data to be saved with entity retraction

Abstract Value Members

  1. abstract def keySet: Set[String]
  2. abstract def keys: List[String]
  3. abstract def rawValue(key: String): Any

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def Tx(txMeta: MoleculeBase): RetractMolecule

    Entity retraction transaction meta data constructor.

    Entity retraction transaction meta data constructor.

    Build on from entity with Tx and apply a transaction meta data molecule to save transaction meta data with retraction of the entity.

    val benId = Person.name("Ben").Tx(MyMetaData.action("add member")).save.eid
    
    // Retract entity with tx meta data
    benId.Tx(MyMetaData.action("moved away")).retract
    
    // Query for Ben's history and why he was retracted
    Person(benId).name.t.op.Tx(MyMetaData.action).getHistory === List(
      ("Ben", 1028, true, "add member"), // Ben added as member
      ("Ben", 1030, false, "moved away") // Ben retracted since he moved away
    )
    returns

    RetractMolecule - a simple wrapper for adding retraction tx meta data

  5. def apply(kw1: String, kw2: String, kws: String*): List[Option[Any]]

    Get List of two or more unchecked/untyped attribute values of entity.

    Get List of two or more unchecked/untyped attribute values of entity.

    Apply two or more namespaced attribute names to return a List of unchecked/untyped optional attribute values.

    Referenced entities can be cast to an Option[Map[String, Any]].

    val List(benId, benAddressId) = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eids
    
    // Type ascription is still unchecked since it is eliminated by erasure
    val List(
      optName: Option[String],
      optAge: Option[Int],
      optAddress: Option[Map[String, Any]]
    ) = benId(
      ":Person/name",
      ":Person/age",
      ":Person/address"
    )
    
    val name: String = optName.getOrElse("no name")
    
    // Type casting necessary to get right value type from Map[String, Any]
    val address: Map[String, Any] = optAddress.getOrElse(Map.empty[String, Any])
    val street: String = address.getOrElse(":Address/street", "no street").asInstanceOf[String]
    
    name === "Ben"
    street === "Hollywood Rd"

    Typed apply is likely more convenient if typed values are required.

    kw1

    First namespaced attribute name: ":[namespace with lowercase first letter]/[attribute name]"

    kw2

    Second namespaced attribute name

    kws

    Further namespaced attribute names

    returns

    List of optional unchecked/untyped attribute values

  6. def apply[T](key: String): Option[T]

    Get typed attribute value of entity.

    Get typed attribute value of entity.

    Apply namespaced attribute name with a type parameter to return an optional typed value.

    Note how referenced entities are returned as a Map so that we can continue traverse the entity graph.

    val List(benId, benAddressId) = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eids
    
    // Level 1
    benId[String](":Person/name") === Some("Ben")
    benId[Int](":Person/age") === Some(42)
    
    // Level 2
    val refMap = benId[Map[String, Any]](":Person/address").getOrElse(Map.empty[String, Any])
    benAddressId[String](":Address/street") === Some("Hollywood Rd")
    
    // Non-asserted or non-existing attribute returns None
    benId[Int](":Person/non-existing-attribute") === None
    benId[Int](":Person/existing-but-non-asserted-attribute") === None
    T

    Type of attribute

    key

    Attribute: ":ns/attr"

    returns

    Optional typed attribute value

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def asList(depth: Int, maxDepth: Int): List[(String, Any)]
    Attributes
    protected
  9. def asMap(depth: Int, maxDepth: Int): Map[String, Any]
    Attributes
    protected
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def getRetractTx: List[List[RetractEntity]]

    Get entity retraction transaction data without affecting the database.

    Get entity retraction transaction data without affecting the database.

    Call getRetractTx to retrieve the generated transaction data of the method retract on an entity

    // Get entity id of Ben
    val benId = Person.e.name_("Ben").get.head
    
    // Retraction transaction data
    benId.getRetractTx === List(List(RetractEntity(17592186045445)))
    returns

    List[List[Retractentity[Long]]]

  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. lazy val ident: Keyword
    Attributes
    protected
  18. def inspectRetract: Unit

    Inspect entity transaction data of method retract without affecting the database.

    Inspect entity transaction data of method retract without affecting the database.

    // Inspect retraction of an entity
    eid.inspectRetract

    This will print generated Datomic transaction statements in a readable format to output:

    ## 1 ## Inspect `retract` on entity
    ========================================================================
    1          List(
      1          List(
        1          :db/retractEntity   17592186045445))
    ========================================================================
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def quote(value: Any): String
    Attributes
    protected
    Definition Classes
    Quoted
  24. def quote2(value: Any): String
    Attributes
    protected
    Definition Classes
    Quoted
  25. def retract: TxReport

    Retract single entity using entity id.

    Retract single entity using entity id.

    Given the implicit conversion of Long's in molecule.datomic.base.api.EntityOps to an Entity we can can call retract on an entity id directly:

    // Get entity id of Ben
    val benId = Person.e.name_("Ben").get.head
    
    // Retract Ben entity
    benId.retract

    To retract single entity id with tx meta data, use
    eid.Tx(MyMetaData.action("my meta data")).retract

    To retract multiple entities (with or without tx meta data), use
    retract(eids, txMetaDataMolecules*) in molecule.datomic.base.api.EntityOps.

    returns

    molecule.datomic.base.facade.TxReport with result of retraction

  26. def retractAsync(implicit ec: ExecutionContext): Future[TxReport]

    Asynchronously retract single entity using entity id.

    Asynchronously retract single entity using entity id.

    Given the implicit conversion of Long's in molecule.datomic.base.api.EntityOps to an Entity we can can call retractAsync on an entity id directly:

    // Get entity id of Ben
    val benId = Person.e.name_("Ben").get.head
    
    // Retract Ben entity asynchronously
    benId.retractAsync.map { tx =>
      // ..ben was retracted
    }

    To retract single entity id with tx meta data, use
    eid.Tx(MyMetaData.action("my meta data")).retract

    To retract multiple entities (with or without tx meta data), use
    retract(eids, txMetaDataMolecules*) in molecule.datomic.base.api.EntityOps.

    returns

    molecule.datomic.base.facade.TxReport with result of retraction

  27. def sortList(l: List[Any]): List[Any]
  28. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def touch: Map[String, Any]

    Get entity graph as Map.

    Get entity graph as Map.

    If entity has reference(s) to other entities it can be a nested graph. Default max levels retrieved is 5.

    • Keys of returned Map are namespaced names of attributes
    • Values of returned Map are untyped attribute values. For references to other entities, the value is a Map itself of the referenced entity attributes, etc.
    val benId = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eid
    
    benId.touch === Map(
      ":db/id" -> 17592186045445L,
      ":Person/age" -> 42,
      ":Person/address" -> Map(
        ":db/id" -> 17592186045446L,
        ":Address/street" -> "Hollywood Rd"),
      ":Person/name" -> "Ben"
    )
    returns

    Map[key: String, value: Any] where value can be a primitive or another nested Map of the entity graph

  31. def touchList: List[(String, Any)]

    Get entity graph as List.

    Get entity graph as List.

    If entity has reference(s) to other entities it can be a nested graph. Default max levels retrieved is 5.

    • Keys of returned Map are namespaced names of attributes
    • Values of returned Map are untyped attribute values. For references to other entities, the value is a Map itself of the referenced entity attributes, etc.
    val benId = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eid
    
    benId.touchList === List(
      ":db/id" -> 17592186045445L,
      ":Person/age" -> 42,
      ":Person/address" -> List(
        ":db/id" -> 17592186045446L,
        ":Address/street" -> "Hollywood Rd"),
      ":Person/name" -> "Ben"
    )
    returns

    List[(key: String, value: Any)] where value can be a primitive or another nested List of the entity graph

  32. def touchListMax(maxDepth: Int): List[(String, Any)]

    Get entity graph to some depth as List.

    Get entity graph to some depth as List.

    • Keys of returned Map are namespaced names of attributes
    • Values of returned Map are untyped attribute values. For references to other entities, the value is a Map itself of the referenced entity attributes, etc.
    val benId = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eid
    
    // 2 levels returned
    benId.touchListMax(2) === List(
      ":db/id" -> 17592186045445L,
      ":Person/age" -> 42,
      ":Person/address" -> List(
        ":db/id" -> 17592186045446L,
        ":Address/street" -> "Hollywood Rd"),
      ":Person/name" -> "Ben"
    )
    
    // 1 level returned
    benId.touchListMax(1) === List(
      ":db/id" -> 17592186045445L,
      ":Person/age" -> 42,
      ":Person/address" -> 17592186045446L // Only reference returned
      ":Person/name" -> "Ben"
    )
    returns

    List[(key: String, value: Any)] where value can be a primitive or another nested Map of the entity graph

    To do

    remove overload hack (by avoiding implicit apply method of scala.collection.LinearSeqOptimized ?)

  33. def touchListQuoted: String

    Get entity graph as List-string (for tests).

    Get entity graph as List-string (for tests).

    If entity has reference(s) to other entities it can be a nested graph. Default max levels retrieved is 5.

    • Keys of returned Map are namespaced names of attributes
    • Values of returned Map are untyped attribute values. For references to other entities, the value is a Map itself of the referenced entity attributes, etc.
    val benId = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eid
    
    benId.touchListQuoted ===
      """List(
        |  ":db/id" -> 17592186045445L,
        |  ":Person/age" -> 42,
        |  ":Person/address" -> List(
        |    ":db/id" -> 17592186045446L,
        |    ":Address/street" -> "Hollywood Rd"),
        |  ":Person/name" -> "Ben")""",stripMargin
    returns

    String

  34. def touchListQuotedMax(maxDepth: Int): String

    Get entity graph to some depth as List-string (for tests).

    Get entity graph to some depth as List-string (for tests).

    • Keys of returned Map are namespaced names of attributes
    • Values of returned Map are untyped attribute values. For references to other entities, the value is a Map itself of the referenced entity attributes, etc.
    val benId = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eid
    
    // 2 levels (in this case all levels) returned
    benId.touchListQuotedMax(2) ===
      """List(
        |  ":db/id" -> 17592186045445L,
        |  ":Person/age" -> 42,
        |  ":Person/address" -> List(
        |    ":db/id" -> 17592186045446L,
        |    ":Address/street" -> "Hollywood Rd"),
        |  ":Person/name" -> "Ben")""",stripMargin
    
    // 1 level returned
    // Note that only reference to Address entity on level 2 is returned
    benId.touchListQuotedMax(1) ===
      """List(
        |  ":db/id" -> 17592186045445L,
        |  ":Person/age" -> 42,
        |  ":Person/address" -> 17592186045446L,
        |  ":Person/name" -> "Ben")""",stripMargin
    returns

    String

  35. def touchMax(maxDepth: Int): Map[String, Any]

    Get entity graph to some depth as Map.

    Get entity graph to some depth as Map.

    • Keys of returned Map are namespaced names of attributes
    • Values of returned Map are untyped attribute values. For references to other entities, the value is a Map itself of the referenced entity attributes, etc.
    val benId = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eid
    
    // 2 levels returned
    benId.touchMax(2) === Map(
      ":db/id" -> 17592186045445L,
      ":Person/age" -> 42,
      ":Person/address" -> Map(
        ":db/id" -> 17592186045446L,
        ":Address/street" -> "Hollywood Rd"),
      ":Person/name" -> "Ben"
    )
    
    // 1 level returned
    benId.touchMax(1) === Map(
      ":db/id" -> 17592186045445L,
      ":Person/age" -> 42,
      ":Person/address" -> 17592186045446L // Only reference returned
      ":Person/name" -> "Ben"
    )
    returns

    Map[key: String, value: Any] where value can be a primitive or another nested Map of the entity graph

  36. def touchQuoted: String

    Get entity graph as Map-string (for presentation).

    Get entity graph as Map-string (for presentation).

    To show the entity graph, this method quotes all text strings so that you can paste the whole graph into any presentation. Pasting it into test code is less useful, since the order of key/value pairs in a Map is not guaranteed. In that case, touchListQuoted is recommended since a List guarantees order.

    If entity has reference(s) to other entities it can be a nested graph. Default max levels retrieved is 5.

    • Keys of returned Map are namespaced names of attributes
    • Values of returned Map are untyped attribute values. For references to other entities, the value is a Map itself of the referenced entity attributes, etc.
    val benId = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eid
    
    benId.touchQuoted ===
      """Map(
        |  ":db/id" -> 17592186045445L,
        |  ":Person/age" -> 42,
        |  ":Person/address" -> Map(
        |    ":db/id" -> 17592186045446L,
        |    ":Address/street" -> "Hollywood Rd"),
        |  ":Person/name" -> "Ben")""".stripMargin
    returns

    String

  37. def touchQuotedMax(maxDepth: Int): String

    Get entity graph to some depth as Map-string (for presentation).

    Get entity graph to some depth as Map-string (for presentation).

    To show the entity graph, this method quotes all text strings so that you can paste the whole graph into any presentation. Pasting it into test code is less useful, since the order of key/value pairs in a Map is not guaranteed. In that case, touchListQuoted(maxLevel) is recommended since a List guarantees order.

    • Keys of returned Map are namespaced names of attributes
    • Values of returned Map are untyped attribute values. For references to other entities, the value is a Map itself of the referenced entity attributes, etc.
    val benId = Person.name.age.Address.street.insert("Ben", 42, "Hollywood Rd").eid
    
    // 2 levels (in this case all levels) returned
    benId.touchQuotedMax(2) ===
      """Map(
        |  ":db/id" -> 17592186045445L,
        |  ":Person/age" -> 42,
        |  ":Person/address" -> Map(
        |    ":db/id" -> 17592186045446L,
        |    ":Address/street" -> "Hollywood Rd"),
        |  ":Person/name" -> "Ben")""".stripMargin
    
    // 1 level returned
    // Note that only reference to Address entity on level 2 is returned
    benId.touchQuotedMax(1) ===
      """Map(
        |  ":db/id" -> 17592186045445L,
        |  ":Person/age" -> 42,
        |  ":Person/address" -> 17592186045446L,
        |  ":Person/name" -> "Ben")""".stripMargin
    returns

    String

  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Quoted

Inherited from AnyRef

Inherited from Any

Entity retraction

Entity retraction with transaction meta data

Traverse entity graph

Touch entity graph

Ungrouped