Funcs
Funcs : Funcs
Load or lookup a Xeto library by its string or ref name
List Xeto libraries as a list of their dict representation
Load or lookup a Xeto spec by its string or ref qname
List Xeto specs as a list of their dict representation
Load or lookup a instance from a Xeto library by its string or ref qname as a Dict
Lookup instances from Xeto libs as a list of dicts
Create the default instance for a given spec
Compute the extended type spec by merging all meta and slots from mixins
Parent spec which contains given spec and scopes its name
Return simple name of spec
Return fully qualified name of the spec
Data type of the spec
Base spec from which the given spec directly inherits
Get the spec's effective declared meta-data as dict
Get the spec's own declared meta-data as dict
Get the spec's declared children slots and globals as dict of Specs
Get the effective children slots and globals as a dict of Specs
Get the effective child slot or global member
Get the spec's declared children slots as dict of Specs
Get the effective children slots as a dict of Specs
Get the effective child slot
Get the spec's declared children globals as dict of Specs
Get the effective children globals as a dict of Specs
Get the effective global slot
Return the Xeto spec of the given value
Return if spec a inherits from spec b based on nominal typing
Return if spec a fits spec b based on structural typing
Given a choice spec, return the most specific choice subtype implemented by the instance
Return if the given instance fits the spec via structural typing
Return a grid explaining why spec a does not fit b
Return grid which explains how data fits the given spec
Match dict recs against specs to find all the specs that fit
Evaluate a relationship query and return record dict
Evaluate a relationship query and return grid of results
Evaluate a relationship query and return the named constraints as a dict
(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
(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
(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
(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
(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
(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
(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 recsabstract: 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})
(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)
(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
(spec: Spec) => Str
Return simple name of spec.
Examples:
specName(Dict) >> "Dict"
specName(Site) >> "Site"
(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"
(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
(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
(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:"..."}
(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:"..."}
(spec: Spec) => Dict
Get the spec's declared children slots and globals as dict of Specs.
Examples:
specMembersOwn(Ahu)
(spec: Spec) => Dict
Get the effective children slots and globals as a dict of Specs.
Examples:
specMembers(Ahu)
(spec: Spec, name: Str, checked: Bool) => Dict
Get the effective child slot or global member.
Examples:
specMember(Ahu, "equipRef")
(spec: Spec) => Dict
Get the spec's declared children slots as dict of Specs.
Examples:
specSlotsOwn(Ahu)
(spec: Spec) => Dict
Get the effective children slots as a dict of Specs.
Examples:
specSlots(Ahu)
(spec: Spec, name: Str, checked: Bool) => Dict
Get the effective child slot.
Examples:
specSlot(Ahu, "equipRef")
(spec: Spec) => Dict
Get the spec's declared children globals as dict of Specs.
Examples:
specGlobalsOwn(Ahu)
(spec: Spec) => Dict
Get the effective children globals as a dict of Specs.
Examples:
specGlobals(Ahu)
(spec: Spec, name: Str, checked: Bool) => Dict
Get the effective global slot.
Examples:
specGlobal(Ahu, "equipRef")
(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
(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
(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
(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
(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 pointsignoreRefs: 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
(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.
(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})
(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
(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"))
(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"))
(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, ...}
}