Sha256: 45383db69ca579a640a2ba23e9773fa1425e2dfe1d50caad432d507fe469a04b
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
import traceback from javonet.core.handler.CommandHandler.AbstractCommandHandler import * class InvokeStaticMethodHandler(AbstractCommandHandler): def __init__(self): self._required_parameters_count = 2 def process(self, command): try: if len(command.payload) < self._required_parameters_count: raise Exception("InvokeStaticMethod Parameters mismatch!") clazz = command.payload[0] try: method = getattr(clazz, command.payload[1]) except AttributeError: methods = [method for method in dir(clazz) if callable(getattr(clazz, method))] message = "Method {} not found in class {}. Available methods:\n".format(command.payload[1], clazz.__name__) for method in methods: message += "{}\n".format(method) raise AttributeError(message) if len(command.payload) > 2: method_arguments = command.payload[2:] return method(*method_arguments) return method() except Exception as e: exc_type, exc_value = type(e), e new_exc = exc_type(exc_value).with_traceback(e.__traceback__) raise new_exc from None
Version data entries
6 entries across 6 versions & 1 rubygems