Skip to content
Snippets Groups Projects
Commit 6daf26a0 authored by Guido Trotter's avatar Guido Trotter
Browse files

Add NodeRoleQuery


This implements CONFD_REQ_NODE_ROLE_BYNAME.

Signed-off-by: default avatarGuido Trotter <ultrotter@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent e843991b
No related branches found
No related tags found
No related merge requests found
...@@ -75,3 +75,37 @@ class PingQuery(ConfdQuery): ...@@ -75,3 +75,37 @@ class PingQuery(ConfdQuery):
return status, answer return status, answer
class NodeRoleQuery(ConfdQuery):
"""An empty confd query.
It will return success on an empty argument, and an error on any other argument.
"""
def Exec(self, query):
"""EmptyQuery main execution
"""
node = query
if self.reader.GetMasterNode() == node:
status = constants.CONFD_REPL_STATUS_OK
answer = constants.CONFD_NODE_ROLE_MASTER
return status, answer
flags = self.reader.GetNodeStatusFlags(node)
if flags is None:
status = constants.CONFD_REPL_STATUS_ERROR
answer = constants.CONFD_ERROR_UNKNOWN_ENTRY
return status, answer
master_candidate, drained, offline = flags
if master_candidate:
answer = constants.CONFD_NODE_ROLE_CANDIDATE
elif drained:
answer = constants.CONFD_NODE_ROLE_DRAINED
elif offline:
answer = constants.CONFD_NODE_ROLE_OFFLINE
else:
answer = constants.CONFD_NODE_ROLE_REGULAR
return constants.CONFD_REPL_STATUS_OK, answer
...@@ -44,7 +44,7 @@ class ConfdProcessor(object): ...@@ -44,7 +44,7 @@ class ConfdProcessor(object):
""" """
DISPATCH_TABLE = { DISPATCH_TABLE = {
constants.CONFD_REQ_PING: querylib.PingQuery, constants.CONFD_REQ_PING: querylib.PingQuery,
constants.CONFD_REQ_NODE_ROLE_BYNAME: querylib.ConfdQuery, constants.CONFD_REQ_NODE_ROLE_BYNAME: querylib.NodeRoleQuery,
constants.CONFD_REQ_NODE_PIP_BY_INSTANCE_IP: querylib.ConfdQuery, constants.CONFD_REQ_NODE_PIP_BY_INSTANCE_IP: querylib.ConfdQuery,
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment