Class ProtocolStack
java.lang.Object
org.jgroups.stack.Protocol
org.jgroups.stack.ProtocolStack
- All Implemented Interfaces:
Transport
A ProtocolStack manages a number of protocols layered above each other. It creates all
protocol classes, initializes them and, when ready, starts all of them, beginning with the
bottom most protocol. It also dispatches messages received from the stack to registered
objects (e.g. channel, GMP) and sends messages sent by those objects down the stack.
The ProtocolStack makes use of the Configurator to setup and initialize stacks, and to destroy them again when not needed anymore
- Version:
- $Id: ProtocolStack.java,v 1.59.2.9.2.1 2009/03/31 16:34:13 belaban Exp $
- Author:
- Bela Ban
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionOnly used by Simulator; don't useProtocolStack(JChannel channel, String setup_string) -
Method Summary
Modifier and TypeMethodDescriptioncreateProtocol(String prot_spec) Creates a new protocol given the protocol specification.voiddestroy()This method is called on aChannel.close().An event is to be sent down the stack.Deprecated.findProtocol(Class<?> clazz) findProtocol(String name) Returns a given protocol or null if not foundvoidDeprecated.getLocks()getName()Returns all protocols in a list, from top to bottom.static ConcurrentMap<String, Tuple<TP, Short>> Deprecated.UseProtocol.getThreadFactory()insteadstatic ThreadFactoryDeprecated.intDeprecated.UseTP.getTimer()to fetch the timer and call getCorePoolSize() directlyReturns the bottom most protocolvoidinsertProtocol(Protocol prot, int position, Class<? extends Protocol> neighbor_prot) voidinsertProtocol(Protocol prot, int position, String neighbor_prot) Inserts an already created (and initialized) protocol into the protocol list.voidinsertProtocol(Protocol prot, int position, Protocol neighbor_prot) printProtocolSpec(boolean include_properties) Prints the names of the protocols, from the bottom to top.receive(long timeout) removeProtocol(String prot_name) Removes a protocol from the stack.voidvoidDeprecated.UseProtocol.getThreadFactory()insteadstatic voidDeprecated.voidsetup()voidstartStack(String cluster_name) Start all layers.voidIterates through all the protocols from top to bottom and does the following: Waits until all messages in the down queue have been flushed (ie., size is 0) Calls stop() on the protocolAn event was received from the layer below.Methods inherited from class Protocol
downThreadEnabled, enableStats, getDownProtocol, getProperties, getProtocolStack, getUpProtocol, init, printStats, providedDownServices, providedUpServices, requiredDownServices, requiredUpServices, resetStats, setDownProtocol, setProperties, setPropertiesInternal, setProtocolStack, setUpProtocol, start, statsEnabled, stop, upThreadEnabled
-
Field Details
-
ABOVE
public static final int ABOVE- See Also:
-
BELOW
public static final int BELOW- See Also:
-
-
Constructor Details
-
ProtocolStack
- Throws:
ChannelException
-
ProtocolStack
Only used by Simulator; don't use- Throws:
ChannelException
-
-
Method Details
-
getThreadFactory
Deprecated.UseProtocol.getThreadFactory()insteadDescription copied from class:ProtocolSupposed to be overwritten by subclasses. Usually the transport returns a valid non-null thread factory, but thread factories can also be created by individual protocols- Overrides:
getThreadFactoryin classProtocol- Returns:
-
getTimerThreadFactory
Deprecated. -
setThreadFactory
Deprecated.UseProtocol.getThreadFactory()instead- Parameters:
f-
-
setTimerThreadFactory
Deprecated.- Parameters:
f-
-
getLocks
-
getChannel
-
getTimerThreads
public int getTimerThreads()Deprecated.UseTP.getTimer()to fetch the timer and call getCorePoolSize() directly- Returns:
-
getProtocols
-
getTransport
-
getSingletonTransports
-
dumpStats
-
dumpStats
-
dumpTimerQueue
Deprecated.UseTP.getTimer()instead to fetch the timer from the transport and then invoke the method on it- Returns:
-
printProtocolSpec
Prints the names of the protocols, from the bottom to top. If include_properties is true, the properties for each protocol will also be printed. -
printProtocolSpecAsXML
-
printProtocolSpecAsPlainString
-
setup
-
createProtocol
Creates a new protocol given the protocol specification.- Parameters:
prot_spec- The specification of the protocol. Same convention as for specifying a protocol stack. An exception will be thrown if the class cannot be created. Example:"VERIFY_SUSPECT(timeout=1500)"
Note that no colons (:) have to be specified- Returns:
- Protocol The newly created protocol
- Throws:
Exception- Will be thrown when the new protocol cannot be created
-
insertProtocol
Inserts an already created (and initialized) protocol into the protocol list. Sets the links to the protocols above and below correctly and adjusts the linked list of protocols accordingly. Note that this method may change the value of top_prot or bottom_prot.- Parameters:
prot- The protocol to be inserted. Before insertion, a sanity check will ensure that none of the existing protocols have the same name as the new protocol.position- Where to place the protocol with respect to the neighbor_prot (ABOVE, BELOW)neighbor_prot- The name of the neighbor protocol. An exception will be thrown if this name is not found- Throws:
Exception- Will be thrown when the new protocol cannot be created, or inserted.
-
insertProtocol
-
insertProtocol
-
removeProtocol
Removes a protocol from the stack. Stops the protocol and readjusts the linked lists of protocols.- Parameters:
prot_name- The name of the protocol. Since all protocol names in a stack have to be unique (otherwise the stack won't be created), the name refers to just 1 protocol.- Throws:
Exception- Thrown if the protocol cannot be stopped correctly.
-
findProtocol
-
findProtocol
-
destroy
public void destroy()Description copied from class:ProtocolThis method is called on aChannel.close(). Does some cleanup; after the call the VM will terminate -
startStack
Start all layers. TheProtocol.start()method is called in each protocol, from top to bottom. Each layer can perform some initialization, e.g. create a multicast socket- Throws:
Exception
-
stopStack
Iterates through all the protocols from top to bottom and does the following:- Waits until all messages in the down queue have been flushed (ie., size is 0)
- Calls stop() on the protocol
-
flushEvents
public void flushEvents()Deprecated.Not needed anymore, just left in here for backwards compatibility with JBoss AS -
send
-
receive
-
getName
-
up
Description copied from class:ProtocolAn event was received from the layer below. Usually the current layer will want to examine the event type and - depending on its type - perform some computation (e.g. removing headers from a MSG event type, or updating the internal membership list when receiving a VIEW_CHANGE event). Finally the event is either a) discarded, or b) an event is sent down the stack usingdown_prot.down()or c) the event (or another event) is sent up the stack usingup_prot.up(). -
down
Description copied from class:ProtocolAn event is to be sent down the stack. The layer may want to examine its type and perform some action on it, depending on the event's type. If the event is a message MSG, then the layer may need to add a header to it (or do nothing at all) before sending it down the stack usingdown_prot.down(). In case of a GET_ADDRESS event (which tries to retrieve the stack's address from one of the bottom layers), the layer may need to send a new response event back up the stack usingup_prot.up().
-
TP.getTimer()instead to fetch the timer from the transport and then invoke the method on it