Sha256: f265bc10345e3ea20da75aaaf304723dfe869cc2fcfbc521a970bdab7e905049
Contents?: true
Size: 1.15 KB
Versions: 5
Compression:
Stored size: 1.15 KB
Contents
from javonet.core.handler.AbstractCommandHandler import * class SetStaticFieldHandler(AbstractCommandHandler): def __init__(self): self._required_parameters_count = 3 def process(self, command): try: if len(command.payload) != self._required_parameters_count: raise Exception("SetStaticFieldHandler parameters mismatch!") clazz = command.payload[0] field = command.payload[1] new_value = command.payload[2] try: setattr(clazz, field, new_value) except AttributeError: fields = [field for field in dir(clazz) if not callable(getattr(clazz, field))] message = "Field {} not found in class {}. Available fields:\n".format(field, clazz.__name__) for field in fields: message += "{}\n".format(field) raise AttributeError(message) return 0 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
5 entries across 5 versions & 1 rubygems