Module mcpu
source code
Module implementing the logic behind the cluster operations
This module implements the logic for doing operations in the cluster.
There are two kinds of classes defined:
-
logical units, which know how to deal with their specific opcode only
-
the processor, which dispatches the opcodes to their logical units
|
_CalculateLockAttemptTimeouts()
Calculate timeouts for lock attempts. |
source code
|
|
|
_LUNameForOpName(opname)
Computes the LU name for a given OpCode name. |
source code
|
|
|
_ComputeDispatchTable()
Computes the opcode-to-lu dispatch table. |
source code
|
|
|
|
|
|
|
|
a list of strings
|
|
|
sighupReceived = [False]
|
|
lusExecuting = [0]
|
|
_OP_PREFIX = "Op"
|
|
_LU_PREFIX = "LU"
|
Imports:
sys,
logging,
random,
time,
itertools,
traceback,
opcodes,
opcodes_base,
constants,
errors,
hooksmaster,
cmdlib,
locking,
utils,
compat,
wconfd
Copies basic opcode parameters.
- Parameters:
src (opcodes.OpCode) - Source opcode
defcomment (string) - Comment to specify if not already given
dst (opcodes.OpCode) - Destination opcode
|
Examines opcode result.
If necessary, additional processing on the result is done.
|
If 'names' is a string, make it a single-element list.
- Parameters:
names (list or string or NoneType) - Lock names
- Returns: a list of strings
- if 'names' argument is an iterable, a list of it; if it's a
string, make it a one-element list; if locking.ALL_SET, locking.ALL_SET
|