%DeepSee.CubeUtils
class %DeepSee.CubeUtils extends %Library.RegisteredObject
Method Inventory
Methods
classmethod %GetCubeGroups(ByRef pGroups, ByRef pCubes, ByRef pBuildOrders) as %Status
Calculates the natural groups for all cubes on the system. Group information is
returned in array form. These arrays are organized as follows:
pGroups(groupName,cubeKey) = buildOrder
pCubes(cubeKey) = groupName
pBuildOrders(groupName,buildPosition) = cubeKey
If the cube has dependencies, there will be an additional array
pCubes(cubeKey,"dependents")
which will list the cubes that must be updated if this one has been updated.
pGroups(groupName,cubeKey) = buildOrder
pCubes(cubeKey) = groupName
pBuildOrders(groupName,buildPosition) = cubeKey
If the cube has dependencies, there will be an additional array
pCubes(cubeKey,"dependents")
which will list the cubes that must be updated if this one has been updated.
classmethod %GetDependentCubes(pCubeName="", Output pDependentCubes, ByRef pGroups, ByRef pCubes, ByRef pBuildOrders) as %Status
This method accumulates the complete list of cubes dependent on this target
cube, based on defined relationships. Every cube in pDependentCubes must be
built following a build of pCubeName. This is an alphabetical
list, it is not a build order.
Optionally the pGroups, pCubes, and pBuildOrders arrays may be returned as output to the caller, or they may be provided by reference avoiding the recalculation of natural groups on the system.
Optionally the pGroups, pCubes, and pBuildOrders arrays may be returned as output to the caller, or they may be provided by reference avoiding the recalculation of natural groups on the system.
classmethod %GetUpdateLists(pTargetCubes, Output pBuildOrders, Output pGroupsToUpdate, Output pCubesToUpdate) as %String
Given a list of one or more pTargetCubes, return the complete list of all cubes that require updating, and the names of the
relationship groups which contain all of the cubes in that list. In addition, return the complete Build Orders index which can be directly used to
assign build order and minimal grouping to the expanded list pcubesToUpdate.
Inherited Members
Inherited Methods
- %AddToSaveSet()
- %ClassIsLatestVersion()
- %ClassName()
- %ConstructClone()
- %DispatchClassMethod()
- %DispatchGetModified()
- %DispatchGetProperty()
- %DispatchMethod()
- %DispatchSetModified()
- %DispatchSetMultidimProperty()
- %DispatchSetProperty()
- %Extends()
- %GetParameter()
- %IsA()
- %IsModified()
- %New()
- %NormalizeObject()
- %ObjectModified()
- %OriginalNamespace()
- %PackageName()
- %RemoveFromSaveSet()
- %SerializeObject()
- %SetModified()
- %ValidateObject()