mixin

Funcs

Funcs : Funcs

meta mixin slots specLib

Load or lookup a Xeto library by its string or ref name

specLibs

List Xeto libraries as a list of their dict representation

spec

Load or lookup a Xeto spec by its string or ref qname

specs

List Xeto specs as a list of their dict representation

instance

Load or lookup a instance from a Xeto library by its string or ref qname as a Dict

instances

Lookup instances from Xeto libs as a list of dicts

instantiate

Create the default instance for a given spec

specx

Compute the extended type spec by merging all meta and slots from mixins

specParent

Parent spec which contains given spec and scopes its name

specName

Return simple name of spec

specQName

Return fully qualified name of the spec

specType

Data type of the spec

specBase

Base spec from which the given spec directly inherits

specMeta

Get the spec's effective declared meta-data as dict

specMetaOwn

Get the spec's own declared meta-data as dict

specMembersOwn

Get the spec's declared children slots and globals as dict of Specs

specMembers

Get the effective children slots and globals as a dict of Specs

specMember

Get the effective child slot or global member

specSlotsOwn

Get the spec's declared children slots as dict of Specs

specSlots

Get the effective children slots as a dict of Specs

specSlot

Get the effective child slot

specGlobalsOwn

Get the spec's declared children globals as dict of Specs

specGlobals

Get the effective children globals as a dict of Specs

specGlobal

Get the effective global slot

specOf

Return the Xeto spec of the given value

specIs

Return if spec a inherits from spec b based on nominal typing

specFits

Return if spec a fits spec b based on structural typing

choiceOf

Given a choice spec, return the most specific choice subtype implemented by the instance

fits

Return if the given instance fits the spec via structural typing

specFitsExplain

Return a grid explaining why spec a does not fit b

fitsExplain

Return grid which explains how data fits the given spec

fitsMatchAll

Match dict recs against specs to find all the specs that fit

query

Evaluate a relationship query and return record dict

queryAll

Evaluate a relationship query and return grid of results

queryNamed

Evaluate a relationship query and return the named constraints as a dict

specLib (name: Obj, checked: Bool) => Lib?

Load or lookup a Xeto library by its string or ref name. Return the dict representation. If not found raise exception or return null based on checked flag.

Examples:

specLib("ph.points")            // load by dotted name
specLib(@lib:ph.points)         // load by lib ref id
specLib("bad.lib.name")         // raises exception if not found
specLib("bad.lib.name", false)  // unchecked returns null

specLibs (filter: Filter) => List

List Xeto libraries as a list of their dict representation. Is scope is null then return all installed libs (libs not yet loaded will not have their metadata). Otherwise scope must be a filter expression used to filter the dict representation.

Examples:

specLibs()             // all installed libs
specLibs(loaded)       // only libs loaded into memory

spec (qname: Obj, checked: Bool) => Spec?

Load or lookup a Xeto spec by its string or ref qname. Return the dict representation. If not found raise exception or return null based on checked flag.

NOTE: returns the same Spec instance as returned by Namespace. The spec meta is modeled using full fidelity and not haystack fidelity. Use specMeta to normalize to haystack fidelity for use inside Axon.

Examples:

spec("ph::Meter")         // type string
spec(@ph::Meter)          // type id
spec("sys::Spec.of")      // slot
spec("foo::Bad")          // raises exception if not found
spec("foo::Bad", false)   // unchecked returns null

specs (scope: Obj?, filter: Filter) => List

List Xeto specs as a list of their dict representation. Scope may one of the following:

  • null: return all the top-level specs currently in the using scope
  • lib: return all the top-level specs declared in given library
  • list of lib: all specs in given libraries

A filter may be specified to filter the specs found in the scope. The dict representation for filtering supports a "slots" tag on each spec with a Dict of the effective slots name. This allows filtering slots using the syntax slots->someName.

NOTE: returns the same Spec instances as returned by Namespace. The spec meta is modeled using full fidelity and not haystack fidelity. Use specMeta to normalize to haystack fidelity for use inside Axon.

Examples:

specs()                  // specs in using scope
specLib("ph").specs      // specs in a given library
specs(null, abstract)    // filter specs with filter expression
specs(null, slots->ahu)  // filter specs have ahu tag

instance (qname: Obj, checked: Bool) => Dict?

Load or lookup a instance from a Xeto library by its string or ref qname as a Dict. If not found raise exception or return null based on checked flag.

NOTE: this function returns the instance using Haystack level fidelity

Examples:

instance("icons::apple")             // qname string
instance(@icons::apple)              // qname Ref id
instance("icons::bad-name")          // raises exception if not found
instance("icons::bad-name", false)   // unchecked returns null

instances (scope: Obj?, filter: Filter) => List

Lookup instances from Xeto libs as a list of dicts.

Scope may one of the following:

  • null: all instances from all libs currently in the using scope
  • lib: all instances declared in given library
  • list of lib: all instances in given libraries

If the filter is null, then it filters the instances from the scope.

NOTE: this function returns the instances using Haystack level fidelity

Examples:

instances()                  // all instances in scope
specLib("icons").instances   // instances in a given library
instances(null, a and b)     // filter instances with filter expression

instantiate (spec: Spec, opts: Dict?) => Obj?

Create the default instance for a given spec. Raise exception if spec is abstract.

The default behavior for dict types is to return a single Dict. However, if the type has a constrainted query, then an entire graph can be instantiated via the {graph} option in which case a Dict[] is returned. In graph mode an id is generated for recs for cross-linking.

Also see Namespace.instantiate.

NOTE: this function forces the haystack option to force all non-Haystack scalars to be simple strings.

Options:

  • graph: marker tag to instantiate a graph of recs
  • abstract: marker to supress error if spec is abstract

Examples:

// evaluates to 2000-01-01
instantiate(Date)

// evaluates to dict {equip, vav, hotWaterHeating, ...}
instantiate(G36ReheatVav)

// evaluates to dict[] of vav + points from constrained query
instantiate(G36ReheatVav, {graph})

specx (spec: Spec) => Spec

Compute the extended type spec by merging all meta and slots from mixins. This call can be quite expensive; so cache and reuse the result for your operation.

Examples:

specx(Site)

specParent (spec: Spec) => Spec?

Parent spec which contains given spec and scopes its name. Returns null for top-level specs within their library.

Examples:

specParent(Str)  >>  sys

specName (spec: Spec) => Str

Return simple name of spec.

Examples:

specName(Dict)  >>  "Dict"
specName(Site)  >>  "Site"

specQName (spec: Spec) => Str

Return fully qualified name of the spec:

  • Top-level type will return "foo.bar::Baz"
  • Slot spec will return "foo.bar::Baz.qux"
  • Derived specs will return "derived123::{name}"

Examples:

specQName(Dict)  >>  "sys::Dict"
specQName(Site)  >>  "ph::Site"

specType (spec: Spec) => Spec

Data type of the spec. Returns the spec itself if given a top-level type.

Examples:

specType(Str)                      >>  sys:Str
spec("ph::Equip.equip").specType   >>  sys::Marker

specBase (spec: Spec) => Spec?

Base spec from which the given spec directly inherits. Returns null if spec is sys::Obj itself.

Examples:

specBase(Str)    >>  sys::Scalar
specBase(Meter)  >>  ph::Equip
specType(Equip)  >>  ph::Entity

specMeta (spec: Spec) => Dict

Get the spec's effective declared meta-data as dict.

NOTE: this function returns the meta using haystack level fidelity

Examples:

specMeta(Date)  >>  {sealed, val:2000-01-01, doc:"...", pattern:"..."}

specMetaOwn (spec: Spec) => Dict

Get the spec's own declared meta-data as dict.

NOTE: this function returns the meta using haystack level fidelity

Examples:

specMetaOwn(Date)  >>  {sealed, val:2000-01-01, doc:"...", pattern:"..."}

specMembersOwn (spec: Spec) => Dict

Get the spec's declared children slots and globals as dict of Specs.

Examples:

specMembersOwn(Ahu)

specMembers (spec: Spec) => Dict

Get the effective children slots and globals as a dict of Specs.

Examples:

specMembers(Ahu)

specMember (spec: Spec, name: Str, checked: Bool) => Dict

Get the effective child slot or global member.

Examples:

specMember(Ahu, "equipRef")

specSlotsOwn (spec: Spec) => Dict

Get the spec's declared children slots as dict of Specs.

Examples:

specSlotsOwn(Ahu)

specSlots (spec: Spec) => Dict

Get the effective children slots as a dict of Specs.

Examples:

specSlots(Ahu)

specSlot (spec: Spec, name: Str, checked: Bool) => Dict

Get the effective child slot.

Examples:

specSlot(Ahu, "equipRef")

specGlobalsOwn (spec: Spec) => Dict

Get the spec's declared children globals as dict of Specs.

Examples:

specGlobalsOwn(Ahu)

specGlobals (spec: Spec) => Dict

Get the effective children globals as a dict of Specs.

Examples:

specGlobals(Ahu)

specGlobal (spec: Spec, name: Str, checked: Bool) => Dict

Get the effective global slot.

Examples:

specGlobal(Ahu, "equipRef")

specOf (val: Obj?, checked: Bool) => Spec?

Return the Xeto spec of the given value. Raise exception if value type is not mapped into the data type system. Also see is() and fits().

Examples:

 specOf("hi")                 >>  sys::Str
 specOf(@id)                  >>  sys::Ref
 specOf({})                   >>  sys::Dict
 specOf({spec:@ph::Equip})    >>  ph::Dict

specIs (a: Spec, b: Spec) => Bool

Return if spec a inherits from spec b based on nominal typing. This method checks the explicit inheritance hierarchy via specBase(). Use is() to check if an instance is of a given type. Also see fits() and specFits() to check using structural typing.

Examples:

specIs(Str, Scalar)     >>  true
specIs(Equip, Scalar)   >>  false
specIs(Equip, Dict)     >>  true
specIs(Meter, Equip)    >>  true
specIs(Meter, Point)    >>  false

specFits (a: Spec, b: Spec) => Bool

Return if spec a fits spec b based on structural typing. Use fits() to check if an instance fits a given type. Also see is() and specIs() to check using nominal typing.

Examples:

specFits(Meter, Equip)    >>  true
specFits(Meter, Point)    >>  false

choiceOf (instance: Obj, choice: Spec, checked: Bool) => Spec?

Given a choice spec, return the most specific choice subtype implemented by the instance. If the instance implements zero or more than one subtype of the choice, then return null or raise an exception based on the checked flag. The instance may be anything accepted by the toRec() function.

Example:

choiceOf({discharge, duct}, DuctSection)  >>  DischargeDuct
choiceOf({hot, water}, Fluid)             >>  HotWater

fits (val: Obj?, spec: Spec, opts: Dict?) => Bool

Return if the given instance fits the spec via structural typing. Use specFits() to check structural typing between two types. Also see is() and specIs() to check via nominal typing. Use fitsExplain() to explain why fits returns true or false.

If the val is a Dict, then the default behavior is to only check the dict's tags against the given spec. In this mode all spec query slots are ignored. Pass the {graph} option to also check queries to validate the graph of entities. For example, the graph option can be used with equip specs to validate required points.

Options:

  • graph: marker to also check graph of references such as required points
  • ignoreRefs: marker to not validate if refs exist or match target spec

Examples:

 fits("foo", Str)               >>  true
 fits(123, Str)                 >>  false
 fits(equipRec, Equip)          >>  true
 fits(equipRec, Site)           >>  false
 fits(vav, MyVavSpec)           >> validate tags only
 fits(vav, MyVavSpec, {graph})  >> validate tags and required points

specFitsExplain (a: Spec, b: Spec) => Grid

Return a grid explaining why spec a does not fit b. If a does fit b then return an empty grid.

fitsExplain (recs: Obj?, spec: Spec?, opts: Dict?) => Grid

Return grid which explains how data fits the given spec. This function takes one or more recs and returns a grid. For each rec zero or more rows are returned with an error why the rec does not fit the given type. If a rec does fit the type, then zero rows are returned for that record.

If you pass null for the spec, then each record is fit against its declared spec tag. If a given rec is missing a spec tag then it is reported an error.

See fits() for list of options.

Example:

 // validate tags on records only
 readAll(vav and hotWaterHeating).fitsExplain(G36ReheatVav)

 // validate tags and required points and other graph queries
 readAll(vav and hotWaterHeating).fitsExplain(G36ReheatVav, {graph})

fitsMatchAll (recs: Obj?, specs: Obj?, opts: Dict?) => Grid

Match dict recs against specs to find all the specs that fit. The recs argument can be anything accepted by toRecList(). Specs must be a Spec or list of Specs. If specs argument is omitted, then we match against all the non-abstract types currently in scope. Only the most specific subtype is returned.

Result is a grid for each input rec with the following columns:

  • id: of the input record
  • num: number of matches
  • specs: list of Spec for all matching specs

See fits() for a list of supported fit options.

Example:

 readAll(equip).fitsMatchAll

query (subject: Obj, spec: Spec, checked: Bool) => Dict?

Evaluate a relationship query and return record dict. If no matches found throw UnknownRecErr or return null based on checked flag. If there are multiple matches it is indeterminate which one is returned. Subject must be a record id or dict in the database. Spec must be a Spec typed as a sys::Query. Also see queryAll.

Example:

read(point).query(spec("ph::Point.equips"))

queryAll (subject: Obj, spec: Spec, opts: Dict?) => Grid

Evaluate a relationship query and return grid of results. Subject must be a record id or dict in the database. Spec must be a Spec typed as a sys::Query. Also see query.

Options:

  • limit: max number of recs to return

  • sort: sort by display name Example:

    read(ahu).queryAll(spec("ph::Equip.points"))

queryNamed (subject: Obj, spec: Spec, opts: Dict?) => Dict

Evaluate a relationship query and return the named constraints as a dict. The query slot names are the dict names and the matching record dicts are the dict values. Missing matches are silently ignored and ambiguous matches return an indeterminate record.

Example:

// spec
MyAhu: Equip {
  points: {
    dat: DischargeAirTempSensor
    rat: DischargeAirTempSensor
  }
}

// axon
myAhuPoints: read(ahu).queryNamed(spec("mylib::MyAhu.points"))

// result
{
  dat: {dis:"DAT", discharge, air, temp, sensor, ...},
  rat: {dis:"RAT", return, air, temp, sensor, ...}
}

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST