| Package | Description |
|---|---|
| org.lsst.ccs |
This package deals with core classes for subsystems.
|
| org.lsst.ccs.description | |
| org.lsst.ccs.description.classname | |
| org.lsst.ccs.description.groovy | |
| org.lsst.ccs.framework |
| Modifier and Type | Method and Description |
|---|---|
static ComponentLookup |
BootUtils.buildComponentLookupFromDescription(Map<String,String> args,
String alias) |
static ComponentLookup |
BootUtils.buildComponentLookupFromDescription(Map<String,String> args,
String alias,
Properties buildProperties) |
static ComponentLookup |
BootUtils.buildComponentLookupFromDescription(String fullDescription,
String config,
String alias)
Builds a
ComponentLookup given a description name and a startup configuration. |
static ComponentLookup |
BootUtils.buildComponentLookupFromDescription(String fullDescription,
String config,
String alias,
Properties buildProperties)
Builds a
ComponentLookup given a description name and a startup configuration. |
ComponentLookup |
Agent.getComponentLookup()
Provides access to the inner modular structure of this Subsystem.
|
| Modifier and Type | Method and Description |
|---|---|
static Subsystem |
BootUtils.getSubsystemFromLookup(ComponentLookup componentLookup,
String alias)
Builds a
Subsystem given a ComponentLookup. |
protected void |
Agent.populateComponentLookup(ComponentLookup lookup)
Sets the component lookup for this Agent.
|
| Modifier and Type | Method and Description |
|---|---|
static ComponentLookup |
ComponentNodeBuilder.buildComponentNode(Map<String,String> buildArgs,
Properties props) |
static ComponentLookup |
ComponentNodeBuilder.buildComponentNode(String fullDescription)
Build a Descriptive node given a fullDescription string of the form
"protocol:descriptionStr".
|
ComponentLookup |
ComponentNodeBuilder.ComponentNodeFactory.buildComponentNode(String descriptionStr,
Properties props)
Build a descriptive node from the provided description String.
|
static ComponentLookup |
ComponentNodeBuilder.buildComponentNode(String fullDescription,
String startupConfig,
Properties props) |
| Modifier and Type | Method and Description |
|---|---|
ComponentLookup |
ClassComponentNodeFactory.buildComponentNode(String descriptionStr,
Properties props) |
| Modifier and Type | Method and Description |
|---|---|
ComponentLookup |
GroovyComponentNodeFactory.buildComponentNode(String descriptionStr,
Properties props) |
| Modifier and Type | Method and Description |
|---|---|
static <A> void |
TreeWalkerUtils.proceduralBiWalk(ComponentLookup lookup,
ComponentNode startingNode,
Class<A> klass,
BiConsumer<ComponentNode,A> pre,
BiConsumer<ComponentNode,A> post)
Full tree walking of the component node.
|
static void |
TreeWalkerUtils.proceduralNodeWalk(ComponentLookup lookup,
ComponentNode startingNode,
Consumer<ComponentNode> pre,
Consumer<ComponentNode> post)
Full tree walking of the component node targeted on the node itself.
|
static <A> void |
TreeWalkerUtils.proceduralWalk(ComponentLookup lookup,
ComponentNode startingNode,
Class<A> klass,
Consumer<A> pre,
Consumer<A> post)
Full Tree walking method targeted on the node's inner object.
|
static <A> void |
TreeWalkerUtils.treeBiWalk(ComponentLookup lookup,
ComponentNode startingNode,
Class<A> klass,
BiFunction<ComponentNode,A,TreeWalkerDiag> func,
BiConsumer<ComponentNode,A> post)
Walks the components tree recursively, applying rules of
TreeWalkerDiag (the walk can be interrupted by HANDLING_CHILDREN
(the code is not invoked on children) or STOP (the code abruptly ends) on
the node's inner component. |
static <A> void |
TreeWalkerUtils.treeWalk(ComponentLookup lookup,
ComponentNode startingNode,
Class<A> klass,
Function<A,TreeWalkerDiag> func,
Consumer<A> post)
Walks the components tree recursively, applying rules of
TreeWalkerDiag (the walk can be interrupted by HANDLING_CHILDREN
(the code is not invoked on children) or STOP (the code abruptly ends) on
the node's inner component. |
Copyright © 2024 LSST. All rights reserved.