August'24: Kamaelia is in maintenance mode and will recieve periodic updates, about twice a year, primarily targeted around Python 3 and ecosystem compatibility. PRs are always welcome. Latest Release: 1.14.32 (2024/3/24)
The Introspector component introspects the current local topology of a Kamaelia system - that is what components there are and how they are wired up.
It continually outputs any changes that occur to the topology.
Introspect and display whats going on inside the system:
MyComplexSystem().activate()
Pipeline( Introspector(),
text_to_token_lists()
AxonVisualiser(),
)
Once activated, this component introspects the current local topology of a Kamaelia system.
Local? This component examines its scheduler to find components and postmen. It then examines them to determine their inboxes and outboxes and the linkages between them. In effect, it determines the current topology of the system.
If this component is not active, then it will see no scheduler and will report nothing.
What is output is how the topology changes. Immediately after activation, the topology is assumed to be empty, so the first set of changes describes adding nodes and linkages to the topology to build up the current state of it.
Subsequent output just describes the changes - adding or deleting linkages and nodes as appropriate.
Nodes in the topology represent components and postboxes. A linkage between a component node and a postbox node expresses the fact that that postbox belongs to that component. A linkage between two postboxes represents a linkage in the Axon system, from one component to another.
This topology change data is output as string containing one or more lines. It is output through the "outbox" outbox. Each line may be one of the following:
the <id> and <name> fields may be encapsulated in double quote marks ("). This will definitely be so if they contain space characters.
If there are no topology changes then nothing is output.
This component ignores anything arriving at its "inbox" inbox.
If a shutdownMicroprocess message is received on the "control" inbox, it is sent on to the "signal" outbox and the component will terminate.
Got a problem with the documentation? Something unclear that could be clearer? Want to help improve it? Constructive criticism is very welcome - especially if you can suggest a better rewording!
Please leave you feedback here in reply to the documentation thread in the Kamaelia blog.
-- Automatic documentation generator, 05 Jun 2009 at 03:01:38 UTC/GMT